:root {
  --white: #ffffff;
  --black: #101010;
  --primary: #293d82;
  --secondary: #de6b14;
}

* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Open Sans", sans-serif !important;
}

a,
a:hover {
  text-decoration: none !important;
}

body {
  background-color: var(--white);
  position: relative;
}

.container {
  max-width: 1080px;
}

.section {
  width: 100%;
  padding: 60px 0;
  display: block;
  position: relative;
  background-color: #fff;
}

.section_bg {
  background-color: var(--section-bg);
}

/* video */

.hero-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  max-height: 800px;
  height: auto;
  width: 100%;
  overflow: hidden;
  z-index: -1;
}

video {
  width: auto;
  min-height: 800px;
}

.stretch {
  margin-top: 800px;
}

.banner-text-logo {
  width: 100%;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.banner-text-logo img {
  margin-bottom: 60px;
}

.hero-wrapper .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.section-bg {
  width: 100%;
  background-color: var(--primary);
}

.h1-title {
  color: #fff;
  font-size: 68px;
  font-weight: 800;
}

.h2-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 60px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 25px;
}

.h2-title span {
  color: var(--secondary);
}

.sub-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 25px;
}

p {
  font-size: 16px;
  color: #353535;
  font-weight: 600;
  line-height: 24px !important;
  margin-bottom: 25px;
  text-align: justify;
  transition: all 0.3s;
}

.about-img {
  position: absolute;
  right: 0;
  z-index: 0;
  top: 0;
}

.services-div {
  width: calc(100% - 20px);
  margin: 15px auto;
  background: #48578d;
  border: 1px solid var(--secondary);
  border-radius: 5px;
  min-height: 150px;
  position: relative;
  transition: all 0.4s;
}

/* .services-div:hover {
  background: linear-gradient(
    180deg,
    rgba(222, 107, 20, 1) 0%,
    rgba(27, 46, 112, 1) 100%
  );
  transition: all 0.4s;
} */

.ser-overlay {
  width: 0;
  height: 0;
  background: linear-gradient(
    180deg,
    rgba(222, 107, 20, 1) 0%,
    rgba(27, 46, 112, 1) 100%
  );
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 5px;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}

.service-main:hover .ser-overlay {
  height: 100%;
  width: 100%;
  transition: all 0.2s;
}

.services-div img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 100%;
}

.service-main:hover p {
  color: #f79b56 !important;
  transition: all 0.3s;
}

/* footer */
footer {
  background-color: #0f1b46;
  padding: 40px 0 30px 0;
  width: 100%;
  border-bottom: 3px solid var(--secondary);
}

.footer-contact {
  color: #fff;
  font-size: 24px !important;
  font-weight: 600;
  line-height: 70px;
  margin-bottom: 20px;
}

.footer-contact a {
  color: #fff;
  font-weight: 700;
  transition: all 0.4s;
}

.footer-contact a:hover {
  color: var(--secondary);
  font-weight: 700;
  transition: all 0.4s;
}

.footer-contact i {
  width: 40px;
  height: 40px;
  background-color: var(--secondary);
  color: #0f1b46;
  text-align: center;
  line-height: 40px;
  border-radius: 40px;
  font-size: 20px;
}

footer p {
  color: #fff;
  text-align: center;
  margin: 0 !important;
}

footer p br,
.footer-contact br {
  display: none !important;
}

footer p i {
  display: block;
  font-size: 8px;
  color: var(--secondary);
}

.form-floating .form-control {
  background-color: #fff !important;
  color: #000 !important;
  height: 60px;
  font-weight: 700 !important;
  margin: 10px 0;
  font-size: 14px;
  border-radius: 5px !important;
  width: 100% !important;
  border: 1px solid var(--primary);
  font-weight: 400;
  border: 1px solid var(--secondary);
  outline: none !important;
  box-shadow: none !important;
}

.form-floating label {
  font-size: 14px;
  line-height: 25px;
  font-weight: 700 !important;
  color: #454545;
}

.btn-primary {
  background-color: var(--secondary);
  border-radius: 5px;
  height: 50px;
  line-height: 48px;
  color: #fff;
  padding: 0 25px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid var(--secondary) !important;
  transition: all 0.3s;
  margin-top: 25px !important;
}

.btn-primary:hover {
  background-color: #0f1b46;
  color: #fff;
  border: 1px solid var(--white) !important;
  transition: all 0.3s;
}

.thank-logo img {
  width: 250px;
}
