* {
  margin: 0;
  padding: 0;
}

/* Reset-ish */
*, *::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, li, ol {
  list-style: none;
}

input, button,
input:focus,
button:focus,
textarea:focus,
select:focus,
details:focus,
[href]:focus,
[tabindex]:not([tabindex="-1"]):focus,
[contenteditable=true]:focus {
  outline: none;
}

.container {
  width: min(1320px, 100% - 40px);
  margin-inline: auto;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.txt-center {
  text-align: center;
}

@media screen and (min-width: 800px) {
  .deskNone {
    display: none;
  }
}

.moNone {
  display: none;
}
@media screen and (min-width: 800px) {
  .moNone {
    display: block;
  }
}

.section-title {
  letter-spacing: -0.7px;
  font-size: clamp(22px, 2.2vw, 30px);
  margin: 0 0 18px;
  color: #0e1224;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.1);
  font-weight: 600;
}

body {
  font-size: 14px;
  line-height: 20px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: #504f4f;
  margin-top: 0;
}
@media screen and (min-width: 800px) {
  body {
    font-size: 16px;
    line-height: 24px;
  }
}

.dropdown-menu {
  display: none;
}
.dropdown-menu.is-open {
  display: block;
  position: absolute;
  background: #fff;
  padding: 10px;
  min-width: 120px;
  border-radius: 3px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.0509803922);
}

/* Sections */
section {
  padding: 40px 0 0;
}
@media screen and (min-width: 800px) {
  section {
    padding: 60px 0 0;
  }
}

.section-sub {
  margin: 0 0 28px;
}
@media screen and (min-width: 800px) {
  .section-sub {
    font-size: 18px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 5px 1rem;
  border-radius: 4px;
  background: linear-gradient(180deg, #0e1224, #0c1430);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: 0.1s ease-in;
}
.btn:hover {
  background: #fff;
  border: 1px solid #0e1224;
  color: #0e1224;
  transition: 0.1s ease-in;
}

.divider {
  width: 300px;
  border-top: 2px solid #006EAD;
  margin: 40px auto;
  position: relative;
}
@media screen and (min-width: 800px) {
  .divider {
    margin: 60px auto;
  }
}
.divider::before, .divider::after {
  content: "";
  position: absolute;
  width: 70%;
  left: 15%;
  height: 2px;
  background: #0e1224;
}
.divider::before {
  top: -7px;
  border-radius: 2px 2px 0 0;
}
.divider::after {
  bottom: -5px;
  border-radius: 0 0 2px 2px;
}

.pencil-banner {
  background: #0e1224;
  padding: 7px 0;
}
.pencil-banner .container > .flex {
  justify-content: space-between;
}
@media screen and (min-width: 800px) {
  .pencil-banner .moNone {
    display: inline-block;
  }
}
.pencil-banner .pencil-social span {
  color: #fff;
  font-weight: 600;
}
.pencil-banner a {
  color: #fff;
}
.pencil-banner a:not(:first-child) {
  padding-left: 20px;
}
.pencil-banner img {
  display: inline-block;
  vertical-align: sub;
}

/* ----- Header -----*/
header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.0509803922);
}
header .container > .flex {
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 800px) {
  header .container > .flex {
    flex-direction: row;
  }
}

.brand {
  max-width: 100%;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
  display: flex;
  align-items: center;
}
.brand img {
  max-width: 60px;
}
@media screen and (min-width: 800px) {
  .brand {
    max-width: 150px;
  }
  .brand img {
    max-width: 150px;
  }
}
@media screen and (max-width: 799px) {
  .brand .togglemenu, .brand .togglemenu::before,
  .brand .togglemenu:after {
    background: #006EAD;
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    width: 32px;
    right: 0;
  }
  .brand .togglemenu::before {
    top: calc(50% - 8px);
  }
  .brand .togglemenu:after {
    top: calc(50% + 6px);
  }
  .brand .togglemenu.is-open {
    background: transparent;
  }
  .brand .togglemenu.is-open::before {
    transform: rotate(45deg);
  }
  .brand .togglemenu.is-open::after {
    transform: rotate(-45deg);
    top: -6px;
  }
}

@media screen and (max-width: 799px) {
  .menu {
    position: absolute;
    bottom: 0;
    left: 0;
    display: none;
    height: calc(100vh - 64px);
    -webkit-overflow-scrolling: touch;
    right: 0;
    top: 64px;
    z-index: 20;
    background: #f2f2f2;
  }
  .menu.is-open {
    display: block;
  }
}
.menu .menu-ul {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 800px) {
  .menu .menu-ul {
    align-items: center;
    flex-direction: row;
  }
}
.menu .menu-ul .navPages {
  display: block;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  color: #0e1224;
  transition: 0.3s ease-in-out;
}
.menu .menu-ul .navPages:hover, .menu .menu-ul .navPages.active {
  color: #006EAD;
  transition: 0.3s ease-in-out;
}
.menu .menu-ul .navPages:hover .fas, .menu .menu-ul .navPages.active .fas {
  color: #006EAD;
}
.menu .menu-ul .navPages .fas {
  font-size: 12px;
}
@media screen and (min-width: 800px) {
  .menu .menu-ul .navPages {
    font-size: 14px;
    padding: 10px;
    border-radius: 10px;
  }
  .menu .menu-ul .navPages.lang {
    padding: 0 15px;
    margin-inline: 0;
  }
}

/* Footer */
footer {
  background: #0e1224;
  padding: 40px 0;
}
@media screen and (min-width: 800px) {
  footer {
    padding: 60px 0;
  }
}

.foot {
  display: grid;
  gap: 18px;
  grid-template-columns: 185px 1fr;
}
@media screen and (min-width: 600px) {
  .foot {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}
@media screen and (min-width: 800px) {
  .foot {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}
@media screen and (min-width: 1000px) {
  .foot {
    grid-template-columns: minmax(290px, 1fr) 0.7fr 0.7fr 0.7fr minmax(175px, 1fr);
    gap: 25px;
  }
}
.foot .ftr-brand-title {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
}
.foot .ftr-support img {
  display: inline-block;
  vertical-align: middle;
}
.foot p {
  color: #fff;
  padding: 0.25rem 0;
  font-size: clamp(14px, 2vw, 18px);
  font-style: italic;
}
.foot .ftr-tlt {
  color: #fff;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  margin: 0 0 10px;
}
.foot a {
  display: block;
  color: #fff;
  padding: 1px 0;
  font-size: clamp(14px, 1vw, 18px);
}

.copyright {
  background: #fff;
  color: #0e1224;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 0;
  /*.devlop {
    margin-top: 10px;
    @include media(450px){
      float: right;
      margin-top: 0;
    }
    a{
      color: $main-color;
      font-weight: 600;
      text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
    }
  }*/
}

.hero {
  background: url(../img/Home/bg.jpg);
  background-size: cover;
  padding: 0;
}
.hero .hero-bg {
  position: relative;
  padding: 60px 0 40px;
}
@media screen and (min-width: 800px) {
  .hero .hero-bg {
    padding: 100px 0;
  }
}
.hero .hero-bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
}

.hero-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.hero-wrap-content {
  width: 100%;
}
@media screen and (min-width: 800px) {
  .hero-wrap-content {
    width: 55%;
  }
}

.kicker {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  color: #fff;
  border: 1px solid #fff;
  padding: 0.35rem 1.5rem;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 14px;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.3;
  margin: 0 0 14px;
  color: #fff;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.1);
}
.hero h1 span {
  color: #0e1224;
}

.hero p {
  color: #fff;
  margin: 0 0 22px;
  font-size: clamp(16px, 2.2vw, 20px);
}

.cta {
  display: flex;
  gap: 12px;
}
.cta .btn.primary {
  background: #fff;
  color: #0e1224;
  border: none;
}
.cta .btn:hover {
  transform: translateY(-1px);
}

/* Highlights */
.why-techno {
  background: linear-gradient(180deg, rgba(0, 110, 173, 0.2), rgba(0, 110, 173, 0.1));
  padding-bottom: 40px;
  margin-top: 40px;
}
@media screen and (min-width: 800px) {
  .why-techno {
    padding-bottom: 60px;
    margin-top: 100px;
  }
}

.highlights {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
@media screen and (min-width: 450px) {
  .highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 900px) {
  .highlights {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hi {
  border: 1px solid #0e1224;
  background: #0e1224;
  border-radius: 10px;
  padding: 16px;
}
.hi strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
  color: #fff;
  font-weight: 600;
}
.hi span {
  color: #fff;
  font-size: 14px;
}

#about {
  padding-bottom: 20px;
}
@media screen and (min-width: 800px) {
  #about {
    padding-bottom: 40px;
  }
}
#about .section-sub {
  font-size: 16px;
  margin: 0 0 20px;
}
#about .flex {
  flex-direction: column;
}
@media screen and (min-width: 800px) {
  #about .flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
#about .flex .left {
  order: 2;
}
@media screen and (min-width: 800px) {
  #about .flex .left {
    order: 1;
    width: 45%;
  }
}
#about .flex .left .section-title {
  margin-top: 30px;
}
@media screen and (min-width: 800px) {
  #about .flex .left .section-title {
    margin-top: 0;
  }
}
#about .flex .left .btn {
  border: 1px solid #0e1224;
}
#about .flex .right {
  order: 1;
  width: 100%;
}
#about .flex .right .abt-slide img {
  margin-inline: auto;
}
@media screen and (min-width: 800px) {
  #about .flex .right {
    order: 2;
    width: 45%;
    position: relative;
  }
  #about .flex .right:before, #about .flex .right:after {
    content: "";
    position: absolute;
    width: 100%;
    right: 0;
    z-index: -1;
  }
  #about .flex .right:before {
    left: -20px;
    bottom: -20px;
    top: 20px;
    background-color: rgba(0, 110, 173, 0.2);
  }
  #about .flex .right:after {
    left: -40px;
    bottom: -40px;
    top: 40px;
    background-color: rgba(0, 110, 173, 0.1);
  }
}

.vision-section {
  padding: 0;
}
.vision-section .grid {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 800px) {
  .vision-section .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.vision-section .contact-content::before {
  top: -60px;
  right: -55px;
}
@media screen and (min-width: 800px) {
  .vision-section .contact-content::before {
    top: -40px;
    right: -40px;
  }
}
.vision-section .contact-content::after {
  top: -70px;
  right: -70px;
}
@media screen and (min-width: 800px) {
  .vision-section .contact-content::after {
    top: -50px;
    right: -50px;
  }
}
.vision-section .contact-content::before, .vision-section .contact-content::after {
  background: rgba(0, 110, 173, 0.6);
}
.vision-section .contact-content img {
  width: 35px;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 3;
}
@media screen and (min-width: 800px) {
  .vision-section .contact-content img {
    width: 45px;
  }
}
.vision-section .contact-content h3 {
  font-size: clamp(20px, 2vw, 26px);
  margin-bottom: 25px;
  padding-bottom: 20px;
}
@media screen and (min-width: 800px) {
  .vision-section .contact-content p {
    font-size: 20px;
    line-height: 1.5;
  }
}

/* Products grid */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media screen and (min-width: 550px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 900px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  border: 1px solid rgba(14, 18, 36, 0.3);
  border-radius: 4px;
  transition: 0.3s ease-in;
}
.card:hover {
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.0509803922);
}

.card-fig {
  max-height: 270px;
}
.card-fig img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px 4px 0 0;
  margin-inline: auto;
  max-height: inherit;
}

.card-body {
  padding: 30px 16px 20px;
  background: rgba(0, 110, 173, 0.2);
}
.card-body h3 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #0e1224;
  font-weight: 600;
}
.card-body p {
  margin: 0;
  font-size: 14px;
}
.card-body .btn {
  margin-top: 20px;
}

.prdall-btn {
  margin: 20px auto 0;
}

/* Brands row */
#brands {
  background: rgba(0, 110, 173, 0.3);
  padding-bottom: 40px;
  margin-top: 40px;
}
@media screen and (min-width: 800px) {
  #brands {
    padding-bottom: 60px;
    margin-top: 60px;
  }
}
#brands .container {
  position: relative;
}

.brands .slick-list {
  margin: 0 -7px;
}
.brands .slick-arrow {
  position: absolute;
  top: 0;
  background: #0e1224;
  color: #fff;
  font-size: 0;
  border: none;
  border-radius: 3px;
  padding: 7px 10px 5px 10px;
  transition: 0.3s ease-in;
}
.brands .slick-arrow.slick-disabled {
  opacity: 0.5;
}
.brands .slick-arrow.slick-next {
  right: 0;
}
.brands .slick-arrow.slick-next::before {
  content: ">";
  font-size: 16px;
  font-weight: 600;
}
.brands .slick-arrow.slick-prev {
  right: 35px;
}
.brands .slick-arrow.slick-prev::before {
  content: "<";
  font-size: 16px;
  font-weight: 600;
}

.brand-tile .brand-img {
  display: grid;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 110, 173, 0.4);
  background-color: #fff;
  border-radius: 4px;
  padding: 0 20px;
  height: 80px;
  margin: 0 7px;
  transition: 0.3s ease-in-out;
}
.brand-tile .brand-img:hover {
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.0509803922);
  border: 1px solid rgba(0, 110, 173, 0.8);
}
@media screen and (min-width: 600px) {
  .brand-tile .brand-img {
    height: 100px;
  }
}

/* Projects */
.projects {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 26px;
}
@media screen and (min-width: 600px) {
  .projects {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 900px) {
  .projects {
    grid-template-columns: repeat(3, 1fr);
  }
}

.proj {
  overflow: hidden;
  position: relative;
  border-radius: 3px;
  transition: 0.3s ease-in-out;
}
.proj:hover {
  box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.0509803922);
}
.proj:hover .copy {
  background: #006EAD;
  transition: 0.3s ease-in-out;
}
.proj:hover .copy h4, .proj:hover .copy h3 {
  color: #fff;
  transition: 0.3s ease-in-out;
}
.proj:hover .copy a {
  background: #fff;
  color: #006EAD;
  transition: 0.3s ease-in-out;
}

.proj .copy {
  padding: 14px;
  position: absolute;
  background: #fff;
  bottom: 15px;
  left: 15px;
  right: 15px;
  border-radius: 3px;
  transition: 0.3s ease-in-out;
}

.proj h4 {
  margin: 0 0 6px;
  color: #006EAD;
  transition: 0.3s ease-in-out;
}

.proj h3 {
  margin: 0 0 6px;
  color: #0e1224;
  transition: 0.3s ease-in-out;
}

.proj a {
  background: #006EAD;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  border-radius: 3px;
  padding: 5px 15px;
  position: absolute;
  right: 15px;
  bottom: 27px;
  transition: 0.3s ease-in-out;
}

#testimonials {
  padding: 0;
  text-align: center;
}

.testi {
  position: relative;
  max-width: 800px;
  margin-inline: auto;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media screen and (min-width: 600px) {
  .testi {
    margin-bottom: 60px;
  }
}
.testi .slide {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  text-align: left;
}
@media screen and (min-width: 600px) {
  .testi .slide {
    flex-direction: row;
    align-items: top;
  }
}
.testi .slide .user-img {
  max-width: 150px;
  margin-bottom: 40px;
}
@media screen and (min-width: 600px) {
  .testi .slide .user-img {
    max-width: 25%;
  }
}
.testi .slide .user-img .user-img-inner {
  position: relative;
}
.testi .slide .user-img .user-img-inner:before, .testi .slide .user-img .user-img-inner:after {
  content: "";
  position: absolute;
  width: 100%;
  right: 0;
  z-index: -1;
}
.testi .slide .user-img .user-img-inner:before {
  left: -20px;
  bottom: -20px;
  top: 20px;
  background-color: rgba(0, 110, 173, 0.2);
}
.testi .slide .user-img .user-img-inner:after {
  left: -40px;
  bottom: -40px;
  top: 40px;
  background-color: rgba(0, 110, 173, 0.1);
}
.testi .slide .user-info {
  max-width: 100%;
  padding: 0 30px;
}
@media screen and (min-width: 600px) {
  .testi .slide .user-info {
    max-width: 65%;
  }
}
@media screen and (min-width: 800px) {
  .testi .slide .user-info {
    padding: 0 50px;
  }
}
.testi .slide img {
  -o-object-fit: cover;
     object-fit: cover;
}
.testi .slide i.fa-solid.fa-user-tie {
  color: #006EAD;
  font-size: 104px;
}
.testi .slide h3 {
  margin: 0 0 15px;
  color: #006EAD;
  font-size: 42px;
  font-size: clamp(28px, 2.2vw, 42px);
  font-weight: 600;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
}
.testi .slide h4 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  color: #0e1224;
}
.testi .slide p {
  padding: 25px 0px;
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.5;
  position: relative;
}
.testi .slide p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: url(../img/Home/top.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  height: 20px;
}
.testi .slide p::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background: url(../img/Home/bottom.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  height: 20px;
}
.testi .slick-arrow {
  position: absolute;
  top: 50%;
  background: #0e1224;
  color: #fff;
  font-size: 0;
  border: none;
  border-radius: 3px;
  padding: 7px 10px 5px 10px;
  transition: 0.3s ease-in;
}
.testi .slick-arrow.slick-disabled {
  opacity: 0.5;
}
.testi .slick-arrow.slick-next {
  right: 0;
}
.testi .slick-arrow.slick-next::before {
  content: ">";
  font-size: 16px;
  font-weight: 600;
}
.testi .slick-arrow.slick-prev {
  left: 0;
}
.testi .slick-arrow.slick-prev::before {
  content: "<";
  font-size: 16px;
  font-weight: 600;
}
.testi .slick-dots {
  margin: 0px auto 0;
  display: grid;
  grid-template-columns: repeat(50, 1fr);
  width: -moz-min-content;
  width: min-content;
}
.testi .slick-dots li {
  width: 25px;
  height: 6px;
}
.testi .slick-dots li button {
  font-size: 0;
  border: none;
  background: #504f4f;
  width: 20px;
  height: 6px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
}
.testi .slick-dots li.slick-active button {
  background: #006EAD;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #f5f8fc, #ffffff);
  padding-bottom: 40px;
}
@media screen and (min-width: 800px) {
  .contact-section {
    padding-bottom: 60px;
  }
}
.contact-section .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.contact-content {
  background: #fff;
  border-radius: 10px;
  padding: 25px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-content::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: rgba(0, 110, 173, 0.3);
  border-radius: 50%;
  z-index: 2;
}

.contact-content::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(0, 110, 173, 0.3);
  border-radius: 50%;
  z-index: 2;
}

.contact-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.contact-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #006EAD;
  border-bottom: 2px solid #eee;
  padding-bottom: 8px;
  font-weight: 500;
}

.contact-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 45px auto;
  row-gap: 15px;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: center;
}

.contact-content ul li {
  font-size: 15px;
  line-height: 1.6;
}

.contact-content .contact-i {
  background: #006EAD;
  color: #fff;
  height: 45px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.1);
}

.contact-content .content-i {
  font-weight: 500;
}
.contact-content .content-i:last-child {
  font-size: 14px;
}
.contact-content .content-i a {
  transition: color 0.3s;
}

/* Contact Section */
/* Contact Card */
/*.contact-content {
  background: #fff;
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.contact-content::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: rgba($main-color, 0.3);
  border-radius: 50%;
  z-index: 2;
}
.contact-content::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba($main-color, 0.3);
  border-radius: 50%;
  z-index: 2;
}
.contact-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
.contact-content h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: $main-color;
  border-bottom: 2px solid #eee;
  padding-bottom: 8px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.contact-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 35px auto;
  row-gap: 18px;
  column-gap: 12px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.contact-i img {
  width: 22px;
  height: 22px;
  display: block;
  filter: grayscale(100%) brightness(0.4);
  transition: filter 0.3s;
}

.contact-content:hover .contact-i img {
  filter: none;
}

.content-i {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

.content-i a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.content-i a:hover {
  color: #005f99;
}
  */
/* CTA */
#cta-band {
  background: rgba(0, 110, 173, 0.3);
  padding: 40px 0;
}
@media screen and (min-width: 600px) {
  #cta-band {
    padding: 60px 0;
  }
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 600px) {
  .cta-band {
    grid-template-columns: 1fr auto;
  }
}
.cta-band h3 {
  font-size: clamp(16px, 2vw, 28px);
  line-height: 1.5;
  color: #0e1224;
  margin-bottom: 10px;
  font-weight: 600;
}
@media screen and (min-width: 800px) {
  .cta-band .btn {
    padding: 24px 4rem;
    font-size: 18px;
  }
}/*# sourceMappingURL=theme.css.map */