:root {
  --primary-color: #0069b1;
  --secondary-color: #e12e56;
  --white: #fff;
  --black: #000;
  --bg-grey: rgba(0, 45, 92, 0.05);
  --swiper-theme-color: #000000 !important;
}

@font-face {
  font-family: 'montserrat-semibold';
  src: url('../fonts/montserrat-semibold-webfont.woff2') format('woff2'),
    url('../fonts/montserrat-semibold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'montserrat-medium';
  src: url('../fonts/montserrat-medium-webfont.woff2') format('woff2'),
    url('../fonts/montserrat-medium-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'montserratthin';
  src: url('../fonts/montserrat-thin-webfont.woff2') format('woff2'),
    url('../fonts/montserrat-thin-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Gotham-Bold';
  src: url('../fonts/Gotham-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Gotham-Bold.otf') format('opentype'),
    url('../fonts/Gotham-Bold.woff') format('woff'),
    url('../fonts/Gotham-Bold.ttf') format('truetype'),
    url('../fonts/Gotham-Bold.svg#Gotham-Bold') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Gotham-Medium';
  src: url('../fonts/Gotham-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Gotham-Medium.otf') format('opentype'),
    url('../fonts/Gotham-Medium.woff') format('woff'),
    url('../fonts/Gotham-Medium.ttf') format('truetype'),
    url('../fonts/Gotham-Medium.svg#Gotham-Medium') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Gotham-Light';
  src: url('../fonts/Gotham-Light.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Gotham-Light.otf') format('opentype'),
    url('../fonts/Gotham-Light.woff') format('woff'),
    url('../fonts/Gotham-Light.ttf') format('truetype'),
    url('../fonts/Gotham-Light.svg#Gotham-Light') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Gotham-Book';
  src: url('../fonts/Gotham-Book.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Gotham-Book.otf') format('opentype'),
    url('../fonts/Gotham-Book.woff') format('woff'),
    url('../fonts/Gotham-Book.ttf') format('truetype'),
    url('../fonts/Gotham-Book.svg#Gotham-Book') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham-Light';
  src: url(../fonts/montserrat-regular-webfont.woff2) format('woff2'),
    url(../fonts/montserrat-regular-webfont.woff) format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham-Bold';
  src: url(../fonts/montserrat-bold-webfont.woff2) format('woff2'),
    url(../fonts/montserrat-bold-webfont.woff) format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: proxima_nova_ltsemibold;
  src: url(../fonts/proxima_nova_semibold-webfont.woff2) format('woff2'),
    url(../fonts/proxima_nova_semibold-webfont.woff) format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: proxima_nova_rgbold;
  src: url(../fonts/proxima_nova_bold-webfont.woff2) format('woff2'),
    url(../fonts/proxima_nova_bold-webfont.woff) format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: proxima_nova_ltlight;
  src: url(../fonts/proxima_nova_light-webfont.woff2) format('woff2'),
    url(../fonts/proxima_nova_light-webfont.woff) format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: proxima_nova_rgregular;
  src: url(../fonts/proxima_nova_regular-webfont.woff2) format('woff2'),
    url(../fonts/proxima_nova_regular-webfont.woff) format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: proxima_nova_ththin;
  src: url(../fonts/proxima_nova_thin-webfont.woff2) format('woff2'),
    url(../fonts/proxima_nova_thin-webfont.woff) format('woff');
  font-weight: 400;
  font-style: normal;
}

body {
  font-family: 'Gotham-Light';
  overflow-x: hidden;
}
.bg-grey {
  background-color: var(--bg-grey);
}
.bg-secondary {
  background-color: var(--secondary-color) !important;
}
.pt-80 {
  padding-top: 80px;
}
a {
  text-decoration: none;
  font-family: 'Gotham-Light';
}
p {
  font-family: 'Gotham-Light';
}
header {
  position: relative;
  width: 100%;
  transition: all 0.3s ease;
  background-color: var(--white);
  z-index: 1000;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-shadow: 0 4px 2px -2px #8080801a;
  z-index: 999;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 0 20px; */
  background-color: var(--white);
  color: var(--primary-color);
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: end;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--primary-color);
  display: block;
  font-family: 'Gotham-Medium';
  white-space: nowrap;
  font-size: 14px;
  padding: 5px 0;
}
.login {
  background-color: var(--primary-color);
  color: var(--white) !important;
}
@media (max-width: 1200px) {
  .navbar .logo {
    width: 150px !important;
  }
}
@media (max-width: 1200px) {
  .navbar .logo {
    width: 150px !important;
  }
  .dropdown-menu {
    top: 29px !important;
  }
}
@media (max-width: 991px) {
  .dropdown-menu li::after {
    top: 28px !important;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 58px;
    z-index: 9;
    background: #fff;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px;
  }
  .contact-head {
    max-width: 720px;
    margin: auto;
  }
  /* .nav-links a {
    padding: 5px;
  } */

  .nav-links li {
    position: relative;
    max-width: 720px;
    margin-inline: auto;
  }
  .burger {
    display: flex !important;
  }
  .dropdown-menu {
    /* display: block !important;
    opacity: 1 !important;
    visibility: visible !important; */
    position: relative !important;
    top: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    right: 0 !important;

    /* display: flex !important;
    opacity: 1 !important;
    visibility: visible !important; */
  }
  .nav-links li::after {
    top: 27px;
  }
  .nav-links a {
    padding: 8px !important;
  }
  .border-right {
    border-right: 0 !important;
  }

  /* .sub-dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  } */
  .nav-links li::after {
    left: 10px;
  }
}
/* @media (max-width: 768px) {
  .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
} */

.nav-links li:hover a {
  color: var(--secondary-color);
}

.nav-links li {
  /* position: relative; */
}

.nav-links li::after {
  content: '';
  position: absolute;
  top: 34px;
  /* left: 10px; */
  height: 2.5px;
  width: 0;
  background-color: var(--secondary-color);
  border-radius: 5px;
  transition: width 0.3s ease;
}

.nav-links li:hover::after {
  width: 35px;
}

.dropdown {
  /*position: relative;*/
  list-style: none;
}

.dropdown-menu {
  /* display: flex; */
  position: absolute;
  top: 38px;
  /* left: 0]; */
  right: 102px;
  background-color: #fff;
  color: var(--primary-color);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  padding: 10px;
  z-index: 1000;
  min-width: fit-content;
  border: 0;
  border-radius: 0;
  transition: opacity 0.3s ease;
  /* opacity: 1;
  visibility: visible; */
}

.dropdown-menu ul {
  padding: 5px 0 0 10px;
  min-width: 300px;
}

.dropdown-menu ul li {
  position: relative;
  list-style: none;
}
.dropdown-menu li::after {
  top: 23px;
}
.dropdown-menu ul li a {
  font-family: 'Gotham-Light';
  font-size: 14px;
  /* padding: 0; */
  color: var(--primary-color) !important;
}
.dropdown-menu ul li:hover a {
  color: var(--secondary-color) !important;
}
.dropdown-menu .parent .dropdown {
  position: relative;
}
.dropdown-menu .parent .dropdown {
  position: relative;
}
.dropdown-menu .parent .dropdown::after {
  content: '';
  position: absolute;
  top: 22px;
  height: 2.5px;
  width: 0;
  background-color: var(--secondary-color);
  border-radius: 5px;
  transition: width 0.3s ease;
}
.dropdown-menu .parent .dropdown:hover::after {
  width: 35px;
}

.sub-dropdown-menu {
  display: none;
  position: relative;
  left: 0;
  top: 0;
  background-color: var(--white);
  color: var(--primary-color);
  padding: 10px;
  z-index: 1001;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.sub-dropdown-menu li {
  padding: 0 0 0 15px;
  position: relative;
}

.sub-dropdown-menu li::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: var(--primary-color);
  border-radius: 5px;
  top: 10px;
  left: 1px;
}
.sub-dropdown-menu li::after {
  content: '';
  position: absolute;
  top: 22px;
  height: 2.5px;
  width: 0;
  background-color: var(--secondary-color);
  border-radius: 5px;
  transition: width 0.3s ease;
}

.sub-dropdown-menu li:hover {
  color: var(--secondary-color);
}

.sub-dropdown-menu li:hover::before {
  background-color: var(--secondary-color);
}
.sub-dropdown-menu li a {
  color: var(--primary-color) !important;
}

.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: fit-content;
  position: absolute;
  right: 5px;
  top: 14px;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 2px;
  transition: all 0.3s ease;
}

.contact-dropdown {
  right: 0;
  left: auto;
  width: 300px;
  min-width: 300px;
}
.footerLogo {
  width: 30px;
}
/* Responsive Styles */
@media (max-width: 768px) {
  /* .nav-links {
    position: absolute;
    right: 0;
    height: 100vh;
    top: 0;
    background-color: #333;
    flex-direction: column;
    align-items: center;
    width: 100%;
    transform: translateX(100%);
    transition: transform 0.3s ease-in;
  } */
  .dropdown {
    position: relative;
  }
  .dropdown-menu {
    grid-template-columns: 1fr 1fr;
    padding-left: 15px !important;
  }
  .nav-links ul {
    position: relative;
    padding: 0 !important;
  }
  .footerLogo {
    width: 50px;
    margin-top: 16px;
  }
  .col-md-6.text-end {
    text-align: left !important;
  }

  /* .col-md-6.text-center {
    text-align: start !important;
  } */

  /* .nav-links li {
      opacity: 0;
    } */

  /* .nav-links li a {
    padding: 20px;
  } */

  /* .nav-active {
    transform: translateX(0);
    z-index: 9;
  } */

  .nav-active li {
    opacity: 1;
    transition: opacity 0.3s ease-in;
  }
}

@media (max-width: 768px) {
  .footer-bottom ul {
    display: block !important;
  }
  .footer-bottom {
    padding: 25px 0 !important;
  }
  footer a::before {
    content: none !important;
  }
}

footer {
  background-color: #f4f4f4;
  padding: 30px 0 0;
}
footer h6 {
  color: var(--primary-color);
  font-family: 'Gotham-Medium';
  font-size: 14px;
}
footer a {
  color: var(--primary-color);
  font-size: 14px;
  font-family: 'Gotham-Light';
}
footer .col-md-3 {
  display: flex;
  flex-direction: column;
}
footer .sub-head {
  display: none;
}
footer i {
  font-size: 20px;
  padding: 4px;
  border: 2px solid var(--primary-color);
}
.footer-bottom {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 8px;
}
.footer-bottom a {
  color: var(--white);
}
.footer-bottom ul {
  display: flex;
  padding: 0;
}
.footer-bottom ul li {
  list-style: none;
  padding: 0 15px 0 0;
  position: relative;
}
.footer-bottom ul li::before {
  content: '';
  position: absolute;
  right: 7px;
  width: 1.5px;
  height: 60%;
  background-color: var(--white);
  top: 4px;
}
.footer-bottom ul li:last-child::before {
  content: none;
}

@media (min-width: 1200px) {
  .copyright {
    display: flex;
  }
  .footer-bottom ul {
    margin-left: 15px;
  }
}
.footer-nav {
  padding: 0 !important;
  display: flex;
}
.footer-nav li {
  list-style: none;
  padding-right: 10px;
  border-right: 1px solid var(--primary-color);
  margin-right: 10px;
  height: 14px;
  display: flex;
  align-items: center;
}
.footer-nav li:last-child {
  border-right: 0 solid var(--primary-color);
}
.contact-head {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  line-height: 1;
  display: flex !important;
  align-items: center;
}
@media (max-width: 480px) {
  footer i {
    font-size: 16px;
    padding: 4px;
  }
  .contact-container .contact-form {
    padding: 20px 20px;
  }
}

.main-wrapper .hero .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
