* {
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  box-sizing: border-box;
}

body {
  --light_color: #ffffff;
  --dark_color: #636363;
  --primary_color: #0C4A6E;
  --accent_color: #F59E0B;
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin: 0;
  padding: 0;
}

a {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.09px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

@media screen and (max-width: 575px) {
  a {
    font-size: 14px;
  }
}

a:hover {
  text-decoration: none;
}

.container {
  max-width: 1330px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

header {
  position: relative;
}

header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

header .inner .logo_main {
  color: var(--primary_color);
  font-size: 28.415px;
  font-weight: 700;
  line-height: 150%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

header .inner .logo_main img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: contain;
  object-fit: contain;
}

header .inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  min-width: 400px;
}

@media screen and (max-width: 991px) {
  header .inner ul {
    flex-direction: column;
    max-width: 100vw;
    width: 100vw;
    position: absolute;
    left: calc(50% + 15px);
    top: 100%;
    padding: 30px 15px;
    background-color: var(--light_color);
    transform: translatex(-300vw);
    transition: all 0.2s ease-in-out;
  }
}

header .inner ul a {
  color: var(--primary_color);
}

header .inner ul a:hover {
  color: var(--accent_color);
}

header .inner .toggler {
  display: none;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  header .inner .toggler {
    display: flex;
  }
}

header .inner .toggler i {
  font-size: 22px;
  color: var(--accent_color);
  transition: all 0.2s ease-in-out;
}

header .inner .toggler .bars {
  display: flex;
}

header .inner .toggler .cross {
  display: none;
}

header .inner .toggler:hover i {
  color: var(--primary_color);
}

header.active .toggler .bars {
  display: none;
}

header.active .toggler .cross {
  display: flex;
}

header.active .inner ul {
  transform: translatex(-50%);
}

.icon_link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon_link i {
  font-size: 18px;
  color: var(--accent_color);
}

.image_wrapper {
  border-radius: 6px;
  overflow: hidden;
  display: flex;
}

.image_wrapper img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

h1 {
  color: var(--primary_color);
  font-size: 42px;
  letter-spacing: -1.05px;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 38px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 32px;
  }
}

p {
  color: var(--dark_color);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 0;
  margin-top: 0;
}

@media screen and (max-width: 575px) {
  p {
    font-size: 14px;
  }
}

h2 {
  color: var(--primary_color);
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -0.75px;
}

@media screen and (max-width: 575px) {
  h2 {
    font-size: 26px;
  }
}

.two_col_sec {
  padding-bottom: 60px;
}

@media screen and (max-width: 991px) {
  .two_col_sec {
    padding: 0 0 50px 0;
  }
}

.two_col_sec .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

@media screen and (max-width: 991px) {
  .two_col_sec .inner {
    flex-direction: column-reverse;
  }
}

.two_col_sec .inner .image_wrapper {
  max-width: 684px;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .two_col_sec .inner .image_wrapper {
    max-width: 100%;
    max-height: 400px;
  }
}

.two_col_sec .details {
  width: 100%;
  max-width: 566px;
}

@media screen and (max-width: 991px) {
  .two_col_sec .details {
    max-width: 100%;
  }
}

.two_col_sec .details h1,
.two_col_sec .details h2 {
  margin-bottom: 20px;
  color: var(--primary_color);
  font-size: 42px;
  letter-spacing: -1.05px;
}

@media screen and (max-width: 991px) {

  .two_col_sec .details h1,
  .two_col_sec .details h2 {
    font-size: 38px;
  }
}

@media screen and (max-width: 767px) {

  .two_col_sec .details h1,
  .two_col_sec .details h2 {
    font-size: 32px;
  }
}

.two_col_sec .details p {
  margin-bottom: 15px;
}

.two_col_sec.inverse {
  padding: 60px 0;
  background: #F3F4F6;
}

.two_col_sec.inverse .inner {
  flex-direction: row-reverse;
}

@media screen and (max-width: 991px) {
  .two_col_sec.inverse .inner {
    flex-direction: column;
  }
}

.cards_sec {
  padding: 60px 0;
  background-color: #F3F4F6;
}

.cards_sec .card_wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media screen and (max-width: 991px) {
  .cards_sec .card_wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 25px;
  }

  .cards_sec .card_wrapper .details {
    margin-top: 0 !important;
  }
}

@media screen and (max-width: 575px) {
  .cards_sec .card_wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

}

.cards_sec .card_wrapper .details p {
    font-size: 15px;
}

.cards_sec .card_wrapper h5 {
  color: var(--primary_color);
  font-feature-settings: "liga" off, "clig" off;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 8px;
}

.cards_sec .card_wrapper .details {
  margin-top: 20px;
  background-color: var(--light_color);
  padding: 16px 20px;
  border-radius: 3px;
}

.cards_sec.inverse {
  background-color: #0C4A6E;
}

.cards_sec.inverse h2 {
  color: var(--light_color);
}

footer {
  background-color: var(--primary_color);
  padding: 60px 0;
}

footer h5 {
  color: var(--light_color);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin-bottom: 20px;
}

footer p {
  color: var(--light_color);
  font-size: 16px;
  letter-spacing: 0.09px;
  margin-bottom: 14px;
}

footer p strong {
  font-weight: 700;
}

footer p.links {
  display: flex;
  flex-direction: column;
}

footer p.links a {
  color: var(--light_color);
}

footer p.links a:hover {
  color: var(--accent_color);
}

footer .social_links {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  gap: 8px;
  list-style: none;
}

footer .social_links a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light_color);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  padding: 3px;
}

footer .social_links a i {
  font-size: 16px;
  color: var(--accent_color);
}

footer .nav_link {
  margin-bottom: 8px;
  display: flex;
  color: var(--light_color);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.09px;
}

footer .inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 767px) {
  footer .inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.copyright {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

@media screen and (max-width: 575px) {
  .copyright {
    flex-direction: column-reverse;
    justify-content: center;
  }
}

.copyright p {
  color: var(--dark_color);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.601px;
}

.copyright p a {
  color: var(--dark_color);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.601px;
}

.copyright p a:hover {
  text-decoration: underline;
}

footer a{
  font-weight: 400;
}

footer .nav_link  {
  font-weight: 400;
}

