@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --primary: #003b6d;
  --secondary: #f25025;
  --white: #ffffff;
  --border: #e1e4ed;
}

body {
  font-family: "Inter", sans-serif;
  color: #000000;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1480px;
    padding-inline: 20px;
  }
}

a {
  text-decoration: none;
}

.btn-base {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  padding: 9px 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border-radius: 6px;
  border: 1px solid var(--primary);
  background: var(--primary);
  color: var(--white);
  transition: all ease 0.3s;
}
.btn-base:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}
.btn-base.btn-outline:not(:hover) {
  background: transparent;
  color: var(--primary);
}
.btn-base.btn-outline:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.intro-content .title {
  font-weight: 600;
  margin-bottom: 20px;
}
.intro-content .text {
  max-width: 650px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .intro-content .title {
    font-size: 36px;
    line-height: 1.5;
  }
  .intro-content .text {
    font-size: 18px;
    line-height: 1.5;
  }
}
@media (min-width: 1200px) {
  .intro-content .title {
    font-size: 42px;
    line-height: 72px;
  }
  .intro-content .text {
    font-size: 20px;
    line-height: 1.7;
  }
}
@media (min-width: 1400px) {
  .intro-content .title {
    font-size: 56px;
    line-height: 81px;
  }
  .intro-content .text {
    font-size: 22px;
    line-height: 2;
  }
}
.intro-content .btn-base {
  min-width: 129px;
}
.intro-content .btn-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (min-width: 1200px) {
  .intro-content .btn-wrapper {
    gap: 22px;
  }
}

.intro-img {
  border-radius: 6px;
  padding-top: 80px;
  padding-right: 80px;
  display: flex;
  align-items: flex-end;
  min-height: 280px;
}
@media (max-width: 575px) {
  .intro-img {
    padding-right: 30px;
  }
}
.intro-img .content {
  border-radius: 0 8px 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 42px 20px;
  width: 80%;
  max-width: 380px;
  background: var(--white);
  position: relative;
}
.intro-img .content::before, .intro-img .content::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  border-bottom: 4px solid var(--white);
  transform: rotate(40deg) translate(0px, 2px);
  bottom: 100%;
  left: 0;
}
.intro-img .content::after {
  right: 0;
  left: unset;
  bottom: 0;
  transform: rotate(40deg) translate(9px, -6px);
}

.intro-wrapper {
  padding-top: 140px;
  padding-bottom: 110px;
}
@media (max-width: 1199px) {
  .intro-wrapper {
    padding-top: 110px;
    padding-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .intro-wrapper {
    padding-top: 80px;
  }
}

.text--secondary {
  color: var(--secondary);
}

.text-primary {
  color: var(--primary);
}

.expertise-wrapper {
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0px 1px 4px rgba(25, 33, 61, 0.08);
  border-radius: 10px;
  padding: 87px 40px;
  color: #222222;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  row-gap: 32px;
}
.expertise-wrapper .expertise-item {
  width: 100%;
  line-height: 24px;
  --max-width: 230px;
}
@media (min-width: 768px) {
  .expertise-wrapper .expertise-item {
    width: 33.3333333333%;
    border-right: 1px solid var(--border);
    padding: 0 20px;
  }
  .expertise-wrapper .expertise-item:nth-of-type(3n + 3) {
    border: none;
  }
}
.expertise-wrapper .expertise-item img {
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .expertise-wrapper .expertise-item img {
    max-width: 60px;
  }
}
.expertise-wrapper .expertise-item .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 24px;
}
.expertise-wrapper .expertise-item p {
  max-width: var(--max-width);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .expertise-wrapper .expertise-item p {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .expertise-wrapper {
    padding: 50px 24px;
  }
}
@media (max-width: 767px) {
  .expertise-wrapper {
    padding: 40px 0;
  }
}

.cta-section {
  background: var(--primary);
  padding: 70px 0;
}
.cta-section .cta-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-section .title {
  color: var(--white);
  max-width: 499px;
  font-weight: 700;
  width: 100%;
}
@media (min-width: 1200px) {
  .cta-section .title {
    font-size: 30px;
    font-weight: 800;
    line-height: 36px;
  }
}
.cta-section .btn-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cta-section .btn-wrapper .btn-base {
  border-color: var(--white);
  color: var(--white);
}
.cta-section .btn-wrapper .btn-base:hover {
  background: var(--white);
  color: var(--primary);
}
.cta-section .btn-wrapper .btn-base.btn-outline:not(:hover) {
  background: var(--white);
  color: var(--primary);
}

.choose-section {
  padding: 109px 0;
}
@media (max-width: 991px) {
  .choose-section {
    padding: 80px 0;
  }
}

.section-title {
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 30px;
  }
}
.section-title .title {
  font-size: 48px;
  line-height: 54px;
  font-weight: 600;
}
.section-title .subtitle {
  color: var(--secondary);
  font-weight: 500;
  line-height: 12px;
  margin-bottom: 22px;
  letter-spacing: 7px;
  display: inline-block;
}
@media (max-width: 991px) {
  .section-title .title {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .section-title .subtitle {
    margin-bottom: 16px;
  }
  .section-title .title {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .section-title .subtitle {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .section-title .title {
    font-size: 28px;
  }
}

.section-padding {
  padding: 90px 0;
}
@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}

.work-with-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 34px;
}
@media (max-width: 1399px) {
  .work-with-wrapper {
    gap: 24px;
  }
}
@media (max-width: 991px) {
  .work-with-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 575px) {
  .work-with-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

.work-with-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  padding: 14px 26px;
  padding-top: 160px;
}
.work-with-item::before {
  position: absolute;
  content: "";
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(0, 112, 223, 0) 0%, #003d79 100%);
  border-radius: 10px;
}
.work-with-item .count {
  font-size: 64px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 82px;
  position: relative;
  z-index: 1;
}
.work-with-item .title {
  font-size: 32px;
  color: var(--white);
  position: relative;
  z-index: 1;
  font-weight: 700;
}
@media (max-width: 1399px) {
  .work-with-item .count {
    font-size: 48px;
  }
  .work-with-item .title {
    font-size: 24px;
  }
}
@media (max-width: 1199px) {
  .work-with-item {
    padding: 15px;
  }
  .work-with-item .count {
    font-size: 40px;
  }
  .work-with-item .title {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .work-with-item .count {
    font-size: 30px;
    margin-bottom: 60px;
  }
  .work-with-item .title {
    font-size: 18px;
  }
}

.news-wrapper {
  padding: 28px 20px;
  background: var(--primary);
  border-radius: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.news-wrapper .img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1399px) {
  .news-wrapper {
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .news-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.news-wrapper .content {
  place-content: center;
  color: var(--white);
}
.news-wrapper .content .subtext {
  color: var(--secondary);
  letter-spacing: 3px;
  font-weight: 500;
  line-height: 22px;
  display: block;
  margin-bottom: 26px;
}
.news-wrapper .content .title {
  font-weight: 600;
  margin-bottom: 33px;
}
.news-wrapper .content .lists {
  margin: 0;
  padding: 0;
  list-style: none;
  padding-top: 36px;
  margin-top: 36px;
  --border: #5c5e66;
  border-top: 1px solid var(--border);
  margin-bottom: 36px;
}
@media (min-width: 1200px) {
  .news-wrapper .content .lists {
    padding-top: 36px;
  }
}
.news-wrapper .content .lists li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-weight: 300;
}
.news-wrapper .content .lists li svg,
.news-wrapper .content .lists li img,
.news-wrapper .content .lists li i {
  transform: translateY(5px);
}
@media (min-width: 768px) {
  .news-wrapper .content .lists li svg,
  .news-wrapper .content .lists li img,
  .news-wrapper .content .lists li i {
    transform: translateY(7px);
  }
}
.news-wrapper .content .lists li .txt {
  width: 0;
  flex-grow: 1;
}
.news-wrapper .content .text {
  font-weight: 300;
}
@media (min-width: 768px) {
  .news-wrapper .content .subtext {
    margin-bottom: 36px;
  }
  .news-wrapper .content .title {
    font-size: 32px;
    line-height: 44px;
    margin-bottom: 43px;
    max-width: 600px;
  }
  .news-wrapper .content .text {
    font-size: 22px;
    line-height: 26px;
    max-width: 600px;
  }
  .news-wrapper .content .lists {
    font-size: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
.news-wrapper .content .inner-div {
  max-width: 668px;
}
.news-wrapper .btn-base {
  background: var(--white) !important;
}
.news-wrapper .btn-base:hover {
  color: var(--primary);
}

.cta-section-2 .cta-wrapper {
  background: var(--primary);
  padding: 70px 15px;
  border-radius: 10px;
  text-align: center;
}
.cta-section-2 .cta-wrapper img {
  width: 120px;
  margin-bottom: 16px;
}
.cta-section-2 .cta-wrapper .inner-div {
  max-width: 368px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 0 auto;
}
.cta-section-2 .title {
  color: var(--white);
  max-width: 499px;
  font-weight: 700;
  width: 100%;
}
@media (min-width: 1200px) {
  .cta-section-2 .title {
    font-size: 30px;
    font-weight: 800;
    line-height: 36px;
  }
}
.cta-section-2 .btn-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cta-section-2 .btn-wrapper .btn-base {
  border-color: var(--white);
  color: var(--white);
}
.cta-section-2 .btn-wrapper .btn-base:hover {
  background: var(--white);
  color: var(--primary);
}
.cta-section-2 .btn-wrapper .btn-base.btn-outline:not(:hover) {
  background: var(--white);
  color: var(--primary);
}

.post-item {
  display: block;
  background: #fafafa;
  border-radius: 8px;
}
.post-item__img {
  position: relative;
  aspect-ratio: 454/300;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}
.post-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all ease 0.3s;
}
.post-item__img .post-badge {
  position: absolute;
  right: 24px;
  top: 24px;
  font-size: 14px;
  font-weight: 600;
  background: white;
  color: #222;
  padding: 5px 10px;
  border-radius: 3px;
  z-index: 1;
}
@media (max-width: 767px) {
  .post-item__img .post-badge {
    font-size: 13px;
    font-weight: 500;
  }
}
.post-item__content {
  padding: 40px 32px;
}
.post-item__content .subtitle {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 32px;
  color: #222222;
  font-weight: 600;
}
.post-item__content .post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.post-item__content .post-meta .author {
  display: flex;
  align-items: center;
  gap: 8px;
}
.post-item__content .post-meta .author .icon {
  width: 48px;
  aspect-ratio: 1;
  background: #f1f3f7;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.post-item__content .post-meta .author .name-area .name {
  color: #222222;
  font-size: 16px;
  font-weight: 22px;
  font-weight: 600;
  margin: 0;
}
.post-item__content .post-meta .author .name-area .date {
  display: block;
  color: #b4b9c9;
  font-size: 16px;
  font-weight: 22px;
  font-weight: 600;
}
.post-item__content .post-meta .read-min {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  background: #f1f3f7;
  padding: 5px 10px;
  border-radius: 3px;
}
@media (max-width: 1199px) {
  .post-item__content {
    padding: 30px 24px;
  }
  .post-item__content .subtitle {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .post-item__content {
    padding: 20px;
  }
  .post-item__content .subtitle {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.post-item:hover .post-item__img img {
  transform: scale(1.06);
}

.about-img {
  border-radius: 20px;
}

.about-content {
  max-width: 635px;
}
.about-content .title {
  max-width: 588px;
}
.about-content .text {
  line-height: 2;
  text-align: justify;
  font-weight: 300;
}
.about-content .text strong {
  font-weight: 700;
  color: #000;
}
@media (min-width: 768px) {
  .about-content .text {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .about-content .text {
    font-size: 22px;
  }
}

.service-content {
  max-width: 577px;
}
.service-content .text {
  line-height: 2;
  text-align: justify;
  font-weight: 300;
}
@media (min-width: 768px) {
  .service-content .text {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .service-content .text {
    font-size: 22px;
  }
}
.service-content .lists {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 30px;
}
.service-content .lists li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.service-content .lists li svg,
.service-content .lists li img,
.service-content .lists li i {
  transform: translateY(5px);
}
@media (min-width: 768px) {
  .service-content .lists li svg,
  .service-content .lists li img,
  .service-content .lists li i {
    transform: translateY(7px);
  }
}
.service-content .lists li .txt {
  width: 0;
  flex-grow: 1;
}
@media (min-width: 768px) {
  .service-content .lists {
    font-size: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

.service-tab-menu {
  display: flex;
  gap: 24px;
}
.service-tab-menu .service-tab-menu-item {
  overflow: hidden;
  transition: all ease 0.5s;
  width: 60px;
  background: var(--primary);
  border-radius: 10px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  height: 450px;
}
.service-tab-menu .service-tab-menu-item:nth-child(even) {
  background: var(--secondary);
}
.service-tab-menu .service-tab-menu-item .subtitle {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  margin: 0;
  padding: 20px 16px;
}
.service-tab-menu .service-tab-menu-item img {
  opacity: 0;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.service-tab-menu .service-tab-menu-item.active {
  flex-grow: 1;
}
.service-tab-menu .service-tab-menu-item.active img {
  opacity: 1;
}
.service-tab-menu .service-tab-menu-item.active .subtitle {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 60px;
  background: inherit;
}
.service-tab-menu .service-tab-menu-item:not(.active) .subtitle {
  position: absolute;
  width: 450px;
  transform: rotate(-90deg) translateX(-50%) translateY(-195px);
  top: 0;
  left: 0;
  height: 60px;
}
@media (max-width: 1199px) {
  .service-tab-menu {
    gap: 12px;
  }
}
@media (max-width: 767px) {
  .service-tab-menu {
    flex-direction: column;
  }
  .service-tab-menu .service-tab-menu-item {
    height: auto !important;
    width: 100%;
    max-width: 345px;
    margin: 0 auto;
  }
  .service-tab-menu .service-tab-menu-item .subtitle {
    position: relative !important;
    transform: unset !important;
    width: 100% !important;
    text-align: center;
  }
  .service-tab-menu .service-tab-menu-item img {
    max-height: 390px;
  }
  .service-tab-menu .service-tab-menu-item:not(.active) img {
    display: none;
  }
}

.service-tab-content {
  height: 100%;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.service-tab-item {
  height: 100%;
}
.service-tab-item .inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-tab-item:not(.active) {
  display: none;
}
.service-tab-item.active {
  animation: fadeInUp 0.4s;
  -webkit-animation: fadeInUp 0.4s;
  -moz-animation: fadeInUp 0.4s;
}
.service-tab-item:nth-child(even) .btn-base {
  background: var(--secondary);
  border-color: var(--secondary);
}
.service-tab-item:nth-child(even) .btn-base:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.header-section {
  background: #f5f5f5;
  padding: 24px 0;
}

.search-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: #f8faff;
  border-radius: 8px;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.header-wrapper .logo {
  display: block;
  width: 186px;
}
.header-wrapper .logo img {
  width: 100%;
}
@media (max-width: 575px) {
  .header-wrapper .logo {
    width: 150px;
  }
}
.header-wrapper .header-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-wrapper .header-menu .menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (min-width: 1200px) {
  .header-wrapper .header-menu .menu {
    -moz-column-gap: 34px;
         column-gap: 34px;
  }
}
.header-wrapper .header-menu .menu li a {
  padding: 5px;
  color: var(--primary);
}
@media (min-width: 1200px) {
  .header-wrapper .header-menu .menu li a {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .header-wrapper .header-menu .menu {
    position: absolute;
    left: 0;
    top: calc(100% + 24px);
    width: 100%;
    background: #fff;
    padding: 30px;
    flex-direction: column;
    border-radius: 12px;
    border: 1px solid var(--border);
  }
  .header-wrapper .header-menu .menu li {
    width: 100%;
  }
  .header-wrapper .header-menu .menu:not(.active) {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
  }
}

footer {
  background: var(--primary);
  color: var(--white);
}
footer .footer-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 92px;
  padding: 88px 0;
  border-bottom: 1px solid #dddddd;
}
@media (max-width: 1199px) {
  footer .footer-wrapper {
    gap: 36px;
  }
}
@media (max-width: 991px) {
  footer .footer-wrapper {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  footer .footer-wrapper {
    padding: 70px 0;
  }
}
footer .footer-wrapper .footer-about {
  width: 100%;
  max-width: 475px;
  --primary: var(--secondary);
}
footer .footer-wrapper .footer-about .logo {
  width: 158px;
  display: block;
  margin-bottom: 28px;
}
footer .footer-wrapper .footer-about .logo img {
  width: 100%;
}
footer .footer-wrapper .footer-about .newsletter-form {
  max-width: 404px;
  margin-bottom: 54px;
  display: flex;
  gap: 11px;
}
footer .footer-wrapper .footer-about .newsletter-form .form-control {
  font-weight: 300;
  padding-inline: 22px;
  font-weight: 300;
  width: 0;
  flex-grow: 1;
  height: 51px;
}
footer .footer-wrapper .footer-about .newsletter-form .form-control::-moz-placeholder {
  color: #5c5e66;
}
footer .footer-wrapper .footer-about .newsletter-form .form-control::placeholder {
  color: #5c5e66;
}
footer .footer-wrapper .footer-about .text {
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 27px;
}
@media (min-width: 768px) {
  footer .footer-wrapper .footer-about .text {
    font-size: 20px;
  }
}
footer .footer-wrapper .footer-links {
  width: 220px;
  display: flex;
  justify-content: space-between;
  max-width: 338px;
  gap: 24px;
}
footer .footer-wrapper .footer-links .subtitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
}
footer .footer-wrapper .footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}
footer .footer-wrapper .footer-links ul li a {
  color: var(--white);
}
footer .footer-wrapper .footer-right {
  width: 292px;
  --primary: var(--secondary);
}
footer .footer-wrapper .footer-right .subtitle {
  font-size: 26px;
  font-weight: 700;
  line-height: 44px;
  margin-bottom: 40px;
}
footer .footer-wrapper .footer-right .text {
  font-size: 18px;
  line-height: 27px;
  font-weight: 300;
  margin-bottom: 22px;
}
@media (min-width: 768px) {
  footer .footer-wrapper .footer-right .text {
    font-size: 22px;
    margin-bottom: 30px;
  }
}
footer .footer-wrapper .footer-right .btn-base {
  font-weight: 500;
  font-size: 18px;
  padding-inline: 40px;
  padding-block: 16px;
}
@media (max-width: 1199px) {
  footer .footer-wrapper .footer-right .subtitle {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  footer .footer-wrapper .footer-right .text {
    font-size: 16px;
  }
  footer .footer-wrapper .footer-right .btn-base {
    padding-inline: 20px;
  }
}
@media (max-width: 991px) {
  footer .footer-wrapper {
    flex-wrap: wrap;
    row-gap: 60px;
  }
  footer .footer-wrapper .footer-about {
    max-width: 100%;
  }
}
footer .logo-group img {
  max-width: 100%;
}
footer .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 36px 0px;
  font-weight: 300;
}
footer .footer-bottom .social {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
footer .footer-bottom .social li a {
  color: var(--white);
}
footer .footer-bottom .social li a:hover {
  color: var(--secondary);
}

.page-header {
  padding: 160px 0;
}
.page-header .content {
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .page-header {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .page-header {
    padding: 80px 0;
  }
}
.page-header .title {
  font-weight: 600;
  margin-bottom: 20px;
}
.page-header .text {
  margin: 0;
}
@media (min-width: 768px) {
  .page-header .title {
    font-size: 36px;
    line-height: 1.5;
  }
  .page-header .text {
    font-size: 18px;
    line-height: 1.5;
  }
}
@media (min-width: 1200px) {
  .page-header .title {
    font-size: 42px;
    line-height: 72px;
  }
  .page-header .text {
    font-size: 20px;
    line-height: 1.7;
  }
}
@media (min-width: 1400px) {
  .page-header .title {
    font-size: 56px;
    line-height: 81px;
  }
  .page-header .text {
    font-size: 22px;
    line-height: 2;
  }
}

.contact-us {
  background: #f6f6f6;
  padding: 63px 0 135px;
}
@media (max-width: 991px) {
  .contact-us {
    padding: 80px 0;
  }
}

.contact-wrapper {
  max-width: 1169px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 124px;
}
@media (max-width: 1199px) {
  .contact-wrapper {
    gap: 70px;
  }
}
@media (max-width: 991px) {
  .contact-wrapper {
    gap: 40px;
  }
}
.contact-wrapper .contact-form {
  width: 0;
  flex-grow: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 40px;
  -moz-column-gap: 87px;
       column-gap: 87px;
}
@media (max-width: 1199px) {
  .contact-wrapper .contact-form {
    gap: 32px;
  }
}
@media (max-width: 767px) {
  .contact-wrapper .contact-form {
    width: 100%;
    gap: 20px;
  }
}
.contact-wrapper .contact-form > * {
  grid-column: span 2;
}
.contact-wrapper .contact-info {
  width: 212px;
}
@media (max-width: 767px) {
  .contact-wrapper .contact-info {
    width: 100%;
  }
}

.col-span-2 {
  grid-column: span 2;
}

.form-label {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .form-label {
    margin-bottom: 16px;
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .form-label {
    margin-bottom: 8px;
  }
}

.form--control {
  height: 76px;
  border: 1px solid rgba(50, 57, 86, 0.24);
  border-radius: 5px;
  font-weight: 300;
  padding: 0 33px;
  outline: none !important;
  box-shadow: none !important;
}
@media (max-width: 991px) {
  .form--control {
    height: 60px;
  }
}
@media (max-width: 575px) {
  .form--control {
    padding: 0 18px;
    height: 50px;
    font-size: 16px;
  }
}
.form--control:where(textarea) {
  height: 204px;
  padding: 33px;
}
@media (max-width: 991px) {
  .form--control:where(textarea) {
    height: 160px;
  }
}

.form-check {
  font-weight: 300;
  line-height: 27px;
}
.form-check .form-check-input {
  box-shadow: none;
}
@media (min-width: 768px) {
  .form-check .form-check-input {
    width: 33px;
    height: 33px;
    transform: translateY(-8px);
  }
}
.form-check .form-check-label {
  font-weight: 300;
}
@media (min-width: 768px) {
  .form-check .form-check-label {
    padding-left: 25px;
    font-size: 18px;
  }
}
.form-check .form-check-label a {
  color: #003d79;
  text-decoration: underline;
}

.send-message-btn {
  width: 100%;
  height: 80px;
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 991px) {
  .send-message-btn {
    height: 60px;
  }
}

.blog-single {
  padding: 32px 0;
}
.blog-single .title {
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  max-width: 800px;
  margin-bottom: 20px;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .blog-single .title {
    font-size: 24px;
    line-height: 1.4;
  }
}
.blog-single .subtitle {
  color: #181a2a;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 767px) {
  .blog-single .subtitle {
    font-size: 20px;
    line-height: 1.4;
  }
}
.blog-single .text {
  color: #3b3c4a;
  font-family: "Source Serif Pro";
}
@media (min-width: 768px) {
  .blog-single .text {
    font-size: 20px;
    line-height: 32px;
  }
}
.blog-single .text:not(:last-child) {
  margin-bottom: 32px;
}
.blog-single .lists,
.blog-single .text2 {
  font-family: "Montserrat", sans-serif;
}
@media (min-width: 768px) {
  .blog-single .lists,
  .blog-single .text2 {
    font-size: 20px;
    line-height: 32px;
  }
}
.blog-single .text,
.blog-single .text2 {
  margin-bottom: 32px;
}
.blog-single .post-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: #696a75;
  margin-bottom: 32px;
}
.blog-single .post-meta .author {
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-single .post-meta .author .icon {
  width: 28px;
  aspect-ratio: 1;
  background: #f1f3f7;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.blog-single .post-meta .author .icon img {
  max-width: 100%;
}
.blog-single .post-meta .author .name-area .name {
  font-size: 14px;
  font-weight: 22px;
  font-weight: 500;
  margin: 0;
}
.blog-single .full-image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 32px;
  min-height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-single blockquote {
  padding: 32px;
  background: #f6f6f7;
  font-family: "Source Serif Pro";
  font-size: 24px;
  line-height: 32px;
  color: #181a2a;
  border-radius: 12px;
  font-style: italic;
  margin-bottom: 32px;
}

.ads-place-area {
  background: #e8e8ea;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  color: #696a75;
}
.ads-place-area .sub {
  font-size: 14px;
}
.ads-place-area .sub-text-title {
  font-size: 20px;
  font-weight: 600;
}
.ads-place-area .txt {
  font-size: 18px;
}

.primary-badge {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  padding: 6px 12px;
  background: var(--primary);
  color: var(--white);
  border-radius: 6px;
  display: inline-block;
}

.secondary-badge {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  padding: 6px 12px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 6px;
  display: inline-block;
}

.service-single {
  padding-top: 100px;
}
@media (max-width: 991px) {
  .service-single {
    padding-top: 80px;
  }
}
.service-single .full-image {
  width: 100%;
  border-radius: 12px;
  min-height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-single .img-wrapper {
  padding-bottom: 60px;
  margin-bottom: 100px;
}
.service-single .img-wrapper .title {
  padding: 40px;
  font-size: 36px;
  color: var(--white);
  background: var(--primary);
  border: 1px solid #e8e8ea;
  border-radius: 12px;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 767px) {
  .service-single .img-wrapper .title {
    font-size: 20px;
    line-height: 1.4;
    padding: 24px;
  }
}
.service-single .img-wrapper .title-area {
  width: 100%;
  padding: 0px 75px;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 1199px) {
  .service-single .img-wrapper .title-area {
    padding: 0px 35px;
  }
}
@media (max-width: 767px) {
  .service-single .img-wrapper .title-area {
    padding: 0px 20px;
  }
}
.service-single .lists {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 30px;
  font-weight: 300;
}
.service-single .lists li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.service-single .lists li svg,
.service-single .lists li img,
.service-single .lists li i {
  transform: translateY(5px);
}
@media (min-width: 768px) {
  .service-single .lists li svg,
  .service-single .lists li img,
  .service-single .lists li i {
    transform: translateY(7px);
  }
}
.service-single .lists li .txt {
  width: 0;
  flex-grow: 1;
}
@media (min-width: 768px) {
  .service-single .lists {
    font-size: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
.service-single .text {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .service-single .text {
    font-size: 24px;
    line-height: 32px;
  }
}

.blogs .ads-place-area {
  max-width: 750px;
  margin-inline: auto;
  margin-bottom: 60px;
}
@media (min-width: 992px) {
  .blogs .ads-place-area {
    margin-bottom: 80px;
  }
}
.blogs .full-image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 32px;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 240px;
}

.blogs-subtitle {
  margin-bottom: 32px;
  font-size: 24px;
  font-weight: 600;
}

.blogs .blogs-post-top {
  margin-bottom: 80px;
}
.blogs .blogs-post-top-content {
  padding: 40px;
  max-width: 698px;
  box-shadow: 0 0 24px rgba(24, 26, 42, 0.12);
  border-radius: 12px;
  margin: 0 15px;
  margin-top: -220px;
  position: relative;
  background: var(--white);
}
@media (min-width: 1200px) {
  .blogs .blogs-post-top-content {
    margin-inline: 75px;
  }
}
@media (max-width: 991px) {
  .blogs .blogs-post-top-content {
    margin-top: -100px;
    padding: 24px;
  }
}
.blogs .blogs-post-top .title {
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 24px;
  margin-top: 16px;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 767px) {
  .blogs .blogs-post-top .title {
    font-size: 24px;
    line-height: 1.4;
  }
}
.blogs .blogs-post-top .post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 12px;
  -moz-column-gap: 24px;
       column-gap: 24px;
  color: #97989f;
}
.blogs .blogs-post-top .post-meta .author {
  display: flex;
  align-items: center;
  gap: 8px;
}
.blogs .blogs-post-top .post-meta .author .icon {
  width: 28px;
  aspect-ratio: 1;
  background: #f1f3f7;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.blogs .blogs-post-top .post-meta .author .icon img {
  max-width: 100%;
}
.blogs .blogs-post-top .post-meta .author .name-area .name {
  color: #97989f;
  font-size: 16px;
  font-weight: 22px;
  font-weight: 500;
  margin: 0;
}
@media (min-width: 1200px) {
  .blogs {
    padding-top: 90px;
  }
}

.load-more {
  height: 48px;
  padding-inline: 24px;
}
.load-more:not(:hover) {
  border-color: rgba(105, 106, 117, 0.3);
  color: #696a75 !important;
}

.contact-info .item:not(:last-child) {
  margin-bottom: 12px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.contact-info .item img {
  margin-bottom: 36px;
}
.contact-info .item .subtitle {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}
.contact-info .item a {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #000;
}
.contact-info .item a:not(:last-child) {
  margin-bottom: 12px;
}
.contact-info .item .social-item:not(:last-child) {
  margin-bottom: 24px;
}

.blogs-section .section-title .subtitle {
  margin-bottom: 30px;
}

.contact-intro .text {
  font-weight: 300;
}/*# sourceMappingURL=style.css.map */