@font-face {
  font-family: "Nohemi";
  src: url("../font/Nohemi-Thin.woff2") format("woff2"), url("../font/Nohemi-Thin.woff") format("woff"), url("../font/Nohemi-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nohemi";
  src: url("../font/Nohemi-ExtraLight.woff2") format("woff2"), url("../font/Nohemi-ExtraLight.woff") format("woff"), url("../font/Nohemi-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nohemi";
  src: url("../font/Nohemi-Light.woff2") format("woff2"), url("../font/Nohemi-Light.woff") format("woff"), url("../font/Nohemi-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nohemi";
  src: url("../font/Nohemi-Regular.woff2") format("woff2"), url("../font/Nohemi-Regular.woff") format("woff"), url("../font/Nohemi-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nohemi";
  src: url("../font/Nohemi-Medium.woff2") format("woff2"), url("../font/Nohemi-Medium.woff") format("woff"), url("../font/Nohemi-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nohemi";
  src: url("../font/Nohemi-SemiBold.woff2") format("woff2"), url("../font/Nohemi-SemiBold.woff") format("woff"), url("../font/Nohemi-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nohemi";
  src: url("../font/Nohemi-Bold.woff2") format("woff2"), url("../font/Nohemi-Bold.woff") format("woff"), url("../font/Nohemi-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nohemi";
  src: url("../font/Nohemi-ExtraBold.woff2") format("woff2"), url("../font/Nohemi-ExtraBold.woff") format("woff"), url("../font/Nohemi-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nohemi";
  src: url("../font/Nohemi-Black.woff2") format("woff2"), url("../font/Nohemi-Black.woff") format("woff"), url("../font/Nohemi-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Nohemi", sans-serif;
}

.contact-section-svg-index {
  width: 100%;
  height: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
}
.site-header .header-main-section {
  padding: 1.5rem 0%;
  margin: 0 auto;
  max-width: 1116px;
  transition: padding 0.3s ease;
}
@media (max-width: 1300px) {
  .site-header .header-main-section {
    margin: 0 4rem;
  }
}
@media (max-width: 767px) {
  .site-header .header-main-section {
    margin: 0 32px;
  }
}
.site-header .header-main-section .header-flex-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-header .header-main-section .header-flex-section .menu-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 20px;
  z-index: 999999;
}
@media (max-width: 998px) {
  .site-header .header-main-section .header-flex-section .menu-section {
    display: none;
  }
}
.site-header .header-main-section .header-flex-section .menu-section .menu-list {
  position: relative;
}
.site-header .header-main-section .header-flex-section .menu-section .menu-list > a {
  text-decoration: none;
  margin-bottom: 0;
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 13px;
  color: #093869;
  position: relative;
  z-index: 100000;
  padding-bottom: 5px;
  transition: all 0.3s ease;
}
.site-header .header-main-section .header-flex-section .menu-section .menu-list:hover > a::after {
  width: 100%;
}
.site-header .header-main-section .header-flex-section .menu-section .menu-list .dropdown-menu {
  display: block !important;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  position: absolute;
  top: 100%;
  left: -10px;
  background: #fff;
  min-width: 280px;
  padding: 15px 0;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99999;
  margin-top: 5px;
  pointer-events: none;
}
.site-header .header-main-section .header-flex-section .menu-section .menu-list .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
}
.site-header .header-main-section .header-flex-section .menu-section .menu-list .dropdown-menu a {
  display: block;
  padding: 12px 25px;
  color: #093869;
  font-weight: 500;
  transition: all 0.2s;
  font-size: 14px;
  text-decoration: none;
  text-transform: none;
}
.site-header .header-main-section .header-flex-section .menu-section .menu-list .dropdown-menu a:hover {
  background: #f8f9fa;
  color: #3C80FF;
  padding-left: 30px;
}
.site-header .header-main-section .header-flex-section .menu-section .menu-list.dropdown-parent:hover .dropdown-menu, .site-header .header-main-section .header-flex-section .menu-section .menu-list:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.site-header .header-main-section .header-flex-section .header-btn-div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 998px) {
  .site-header .header-main-section .header-flex-section .header-btn-div {
    display: none;
  }
}
.site-header .header-main-section .header-flex-section .header-btn-div .bgless-btn {
  border: 1px solid #999999;
  border-radius: 8px;
  background: transparent;
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  line-height: 11px;
  color: #3C80FF;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.site-header .header-main-section .header-flex-section .header-btn-div .bg-btn {
  border: none;
  border-radius: 8px;
  background: #3C80FF;
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 300;
  font-size: 11px;
  line-height: 11px;
  color: #FFFFFF;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.site-footer * {
  transition: all 0.3s ease;
}

.site-footer .footer-main-section {
  margin: 3rem auto;
  position: relative;
  width: fit-content;
}
@media (max-width: 1044px) {
  .site-footer .footer-main-section {
    margin-bottom: 5rem;
  }
}
@media (max-width: 646px) {
  .site-footer .footer-main-section {
    margin-bottom: 10rem;
  }
}
.site-footer .footer-main-section .footer-bg-section {
  width: fit-content;
}
.site-footer .footer-main-section .footer-bg-section .footer-web-bg {
  width: fit-content;
  position: relative;
}
@media (max-width: 1044px) {
  .site-footer .footer-main-section .footer-bg-section .footer-web-bg {
    height: 100%;
  }
}
.site-footer .footer-main-section .footer-bg-section .footer-web-bg .extra-bg-footer {
  display: none;
}
@media (max-width: 1044px) {
  .site-footer .footer-main-section .footer-bg-section .footer-web-bg .extra-bg-footer {
    display: block;
    width: 100%;
    height: 9rem;
    background: #f8f8f8;
    border-radius: 0px 0px 30px 30px;
    margin-top: -4.5rem;
  }
}
@media (max-width: 900px) {
  .site-footer .footer-main-section .footer-bg-section .footer-web-bg .extra-bg-footer {
    height: 17rem;
  }
}
@media (max-width: 791px) {
  .site-footer .footer-main-section .footer-bg-section .footer-web-bg .extra-bg-footer {
    height: 31rem;
  }
}
@media (max-width: 646px) {
  .site-footer .footer-main-section .footer-bg-section .footer-web-bg .extra-bg-footer {
    height: 57rem;
  }
}
@media (max-width: 485px) {
  .site-footer .footer-main-section .footer-bg-section .footer-web-bg .extra-bg-footer {
    height: 63rem;
  }
}
@media (max-width: 375px) {
  .site-footer .footer-main-section .footer-bg-section .footer-web-bg .extra-bg-footer {
    height: 67rem;
  }
}
.site-footer .footer-main-section .footer-bg-section .footer-web-bg .extra-bg-footer::after {
  content: "";
  position: absolute;
  bottom: -57px;
  left: 0;
  width: 55%;
  height: 23%;
  background: #f8f8f8;
  border-radius: 0 0 30px 30px;
}
@media (max-width: 791px) {
  .site-footer .footer-main-section .footer-bg-section .footer-web-bg .extra-bg-footer::after {
    width: 40%;
  }
}
@media (max-width: 646px) {
  .site-footer .footer-main-section .footer-bg-section .footer-web-bg .extra-bg-footer::after {
    bottom: -44px;
  }
}
.site-footer .footer-main-section .footer-content-section {
  position: absolute;
  inset: 0;
  padding: 3rem 6rem;
}
@media (max-width: 1476px) {
  .site-footer .footer-main-section .footer-content-section {
    padding: 1rem 6rem;
  }
}
@media (max-width: 791px) {
  .site-footer .footer-main-section .footer-content-section {
    padding: 1rem 2rem;
  }
}
@media (max-width: 485px) {
  .site-footer .footer-main-section .footer-content-section {
    padding: 1.5rem 1rem;
  }
}
.site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 1305px) {
  .site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section {
    justify-content: flex-start;
  }
}
.site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 2rem;
  border-bottom: 1.20995px solid #A1A1A1;
  padding-left: 5rem;
}
@media (max-width: 1476px) {
  .site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item {
    padding-left: 3rem;
    padding-bottom: 1rem;
  }
}
@media (max-width: 1305px) {
  .site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item {
    padding-left: 1rem;
    padding-bottom: 1rem;
  }
}
@media (max-width: 791px) {
  .site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    padding-left: 3rem;
  }
}
@media (max-width: 646px) {
  .site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item {
    padding-left: 1rem;
  }
}
.site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item .footer-top-content-1 {
  width: 33rem;
}
@media (max-width: 1305px) {
  .site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item .footer-top-content-1 {
    width: 28rem;
  }
}
@media (max-width: 1044px) {
  .site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item .footer-top-content-1 {
    width: 20rem;
  }
}
@media (max-width: 485px) {
  .site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item .footer-top-content-1 {
    width: 100%;
  }
}
.site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item .footer-top-content-1 h3 {
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 500;
  font-size: 66.5475px;
  line-height: 130%;
  color: #093869;
  margin-bottom: 10px;
}
@media (max-width: 1476px) {
  .site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item .footer-top-content-1 h3 {
    font-size: 60px;
  }
}
@media (max-width: 1305px) {
  .site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item .footer-top-content-1 h3 {
    font-size: 54px;
    line-height: 106%;
  }
}
@media (max-width: 1044px) {
  .site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item .footer-top-content-1 h3 {
    font-size: 40px;
    line-height: 100%;
  }
}
.site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item .footer-top-content-1 h5 {
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 400;
  font-size: 24.8365px;
  line-height: 121%;
  color: #A1A1A1;
  margin-bottom: 0;
}
@media (max-width: 1476px) {
  .site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item .footer-top-content-1 h5 {
    font-size: 20px;
  }
}
@media (max-width: 1305px) {
  .site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item .footer-top-content-1 h5 {
    font-size: 16px;
  }
}
@media (max-width: 1044px) {
  .site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item .footer-top-content-1 h5 {
    font-size: 14px;
  }
}
.site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item .footer-big-btn {
  margin-bottom: 1rem;
}
@media (max-width: 791px) {
  .site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item .footer-big-btn {
    margin-bottom: 0;
  }
}
.site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item .footer-big-btn .big-btn {
  background: #093869;
  border-radius: 12px;
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 300;
  font-size: 29px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  padding: 10px 20px;
  width: 350px;
  height: 75px;
  border: 0;
  outline: none;
}
@media (max-width: 1476px) {
  .site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item .footer-big-btn .big-btn {
    font-size: 24px;
    width: 330px;
    height: 70px;
  }
}
@media (max-width: 1305px) {
  .site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item .footer-big-btn .big-btn {
    font-size: 20px;
    width: 280px;
    height: 60px;
  }
}
@media (max-width: 1044px) {
  .site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item .footer-big-btn .big-btn {
    font-size: 18px;
    width: 255px;
    height: 55px;
  }
}
@media (max-width: 646px) {
  .site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item .footer-big-btn .big-btn {
    font-size: 16px;
    width: 200px;
    height: 45px;
  }
}
.site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item-2 {
  padding: 1.5rem 1rem;
}
@media (max-width: 1476px) {
  .site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item-2 {
    padding: 1rem 1rem;
  }
}
.site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item-2 .footer-grid-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1476px) {
  .site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item-2 .footer-grid-section {
    gap: 10px;
  }
}
@media (max-width: 900px) {
  .site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item-2 .footer-grid-section {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (max-width: 646px) {
  .site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item-2 .footer-grid-section {
    grid-template-columns: repeat(1, 1fr);
  }
}
.site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item-2 .footer-grid-section .list-head {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 1476px) {
  .site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item-2 .footer-grid-section .list-head {
    gap: 10px;
  }
}
@media (max-width: 1195px) {
  .site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item-2 .footer-grid-section .list-head:nth-child(5) {
    grid-column: 1/span 2;
  }
}
@media (max-width: 900px) {
  .site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item-2 .footer-grid-section .list-head:nth-child(5) {
    grid-column: unset;
  }
}
@media (max-width: 791px) {
  .site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item-2 .footer-grid-section .list-head:nth-child(5) {
    grid-column: 1;
  }
}
.site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item-2 .footer-grid-section .list-head:last-child {
  grid-column: 3;
}
@media (max-width: 1195px) {
  .site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item-2 .footer-grid-section .list-head:last-child {
    grid-column: 3/span 2;
  }
}
@media (max-width: 900px) {
  .site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item-2 .footer-grid-section .list-head:last-child {
    grid-column: unset;
  }
}
@media (max-width: 791px) {
  .site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item-2 .footer-grid-section .list-head:last-child {
    grid-column: 3;
  }
}
@media (max-width: 646px) {
  .site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item-2 .footer-grid-section .list-head:last-child {
    grid-column: 1;
  }
}
.site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item-2 .footer-grid-section .list-head h5 {
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 130%;
  color: #0A3869;
  margin-bottom: 10px;
}
.site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item-2 .footer-grid-section .list-head .list-link {
  text-decoration: none;
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 130%;
  color: #A7A7A7;
  margin-bottom: 0;
}
.site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .footer-vertical-flex-item-2 .footer-grid-section .list-head .list-head-info {
  color: #0A3869;
}
.site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .bottom-copyright-section {
  padding-left: 1rem;
}
.site-footer .footer-main-section .footer-content-section .footer-vertical-flex-section .bottom-copyright-section p {
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  color: #A1A1A1;
  margin-bottom: 0;
}
.site-footer .footer-main-section .social-media-section {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 1195px) {
  .site-footer .footer-main-section .social-media-section {
    gap: 10px;
  }
}
@media (max-width: 1044px) {
  .site-footer .footer-main-section .social-media-section {
    bottom: -4rem;
  }
}
@media (max-width: 646px) {
  .site-footer .footer-main-section .social-media-section {
    bottom: -8rem;
    right: 50%;
    transform: translateX(50%);
  }
}
.site-footer .footer-main-section .social-media-section .social-media-icon {
  background: #F8F8F8;
  cursor: pointer;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
}

.footer-svg-bg {
  width: 1459px;
  height: 710px;
}
@media (max-width: 1476px) {
  .footer-svg-bg {
    width: 1260px;
    height: auto;
  }
}
@media (max-width: 1305px) {
  .footer-svg-bg {
    width: 1150px;
    height: auto;
  }
}
@media (max-width: 1195px) {
  .footer-svg-bg {
    width: 1020px;
    height: auto;
  }
}
@media (max-width: 1044px) {
  .footer-svg-bg {
    width: 860px;
    height: auto;
  }
}
@media (max-width: 900px) {
  .footer-svg-bg {
    width: 750px;
    height: auto;
  }
}
@media (max-width: 791px) {
  .footer-svg-bg {
    width: 600px;
    height: auto;
  }
}
@media (max-width: 646px) {
  .footer-svg-bg {
    width: 450px;
    height: auto;
  }
}
@media (max-width: 485px) {
  .footer-svg-bg {
    width: 345px;
    height: auto;
  }
}
@media (max-width: 375px) {
  .footer-svg-bg {
    width: 300px;
    height: auto;
  }
}

.home-main-section {
  margin: 0 auto;
  max-width: 77.5rem;
}
@media (max-width: 1300px) {
  .home-main-section {
    margin: 0 4rem;
  }
}
@media (max-width: 750px) {
  .home-main-section {
    margin: 0 32px;
    overflow-x: hidden;
    max-width: 100%;
  }
}
.home-main-section .home-section-1-div {
  width: fit-content;
  margin: 2rem auto;
}
@media (max-width: 676px) {
  .home-main-section .home-section-1-div {
    margin-top: 0px;
  }
}
.home-main-section .home-section-1-div .section-1-grid-div {
  display: flex;
  gap: 17px;
  max-width: 1116px;
}
@media (max-width: 1037px) {
  .home-main-section .home-section-1-div .section-1-grid-div {
    flex-direction: column-reverse;
  }
}
.home-main-section .home-section-1-div .section-1-grid-div .video-div {
  width: auto;
}
@media (max-width: 1201px) {
  .home-main-section .home-section-1-div .section-1-grid-div .video-div .home-video-tag {
    width: 38rem;
  }
}
@media (max-width: 1037px) {
  .home-main-section .home-section-1-div .section-1-grid-div .video-div .home-video-tag {
    width: 826px;
  }
}
@media (max-width: 868px) {
  .home-main-section .home-section-1-div .section-1-grid-div .video-div .home-video-tag {
    width: 675px;
  }
}
@media (max-width: 727px) {
  .home-main-section .home-section-1-div .section-1-grid-div .video-div .home-video-tag {
    width: 550px;
  }
}
@media (max-width: 646px) {
  .home-main-section .home-section-1-div .section-1-grid-div .video-div .home-video-tag {
    width: 450px;
  }
}
@media (max-width: 500px) {
  .home-main-section .home-section-1-div .section-1-grid-div .video-div .home-video-tag {
    width: 350px;
  }
}
@media (max-width: 400px) {
  .home-main-section .home-section-1-div .section-1-grid-div .video-div .home-video-tag {
    width: 325px;
  }
}
@media (max-width: 380px) {
  .home-main-section .home-section-1-div .section-1-grid-div .video-div .home-video-tag {
    width: 307px;
  }
}
@media (max-width: 375px) {
  .home-main-section .home-section-1-div .section-1-grid-div .video-div .home-video-tag {
    width: 300px;
  }
}
@media (max-width: 365px) {
  .home-main-section .home-section-1-div .section-1-grid-div .video-div .home-video-tag {
    width: 280px;
  }
}
.home-main-section .home-section-1-div .section-1-grid-div .section-1-content-div {
  position: relative;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}
@media (max-width: 727px) {
  .home-main-section .home-section-1-div .section-1-grid-div .section-1-content-div {
    width: 550px;
  }
}
@media (max-width: 646px) {
  .home-main-section .home-section-1-div .section-1-grid-div .section-1-content-div {
    width: 450px;
  }
}
.home-main-section .home-section-1-div .section-1-grid-div .section-1-content-div h2 {
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 400;
  font-size: 49px;
  line-height: 49px;
  color: #0A3869;
  margin-bottom: 0;
  position: absolute;
  left: -111%;
  top: 0.5rem;
}
@media (max-width: 1201px) {
  .home-main-section .home-section-1-div .section-1-grid-div .section-1-content-div h2 {
    font-size: 44px;
    left: -89%;
    top: 0.2rem;
  }
}
@media (max-width: 1037px) {
  .home-main-section .home-section-1-div .section-1-grid-div .section-1-content-div h2 {
    position: unset;
    left: unset;
    top: unset;
  }
}
@media (max-width: 547px) {
  .home-main-section .home-section-1-div .section-1-grid-div .section-1-content-div h2 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 646px) {
  .home-main-section .home-section-1-div .section-1-grid-div .section-1-content-div h2 {
    font-size: 40px;
  }
}
@media (max-width: 500px) {
  .home-main-section .home-section-1-div .section-1-grid-div .section-1-content-div h2 {
    width: 340px;
    font-size: 35px;
  }
}
.home-main-section .home-section-1-div .section-1-grid-div .section-1-content-div .p-div {
  display: flex;
  align-items: center;
  gap: 5px;
  position: absolute;
  left: -57%;
  top: 5rem;
}
@media (max-width: 1201px) {
  .home-main-section .home-section-1-div .section-1-grid-div .section-1-content-div .p-div {
    left: -47%;
    top: 3.5rem;
  }
}
@media (max-width: 1037px) {
  .home-main-section .home-section-1-div .section-1-grid-div .section-1-content-div .p-div {
    position: unset;
    left: unset;
    top: unset;
  }
}
.home-main-section .home-section-1-div .section-1-grid-div .section-1-content-div .p-div .img-flex-div {
  display: inline;
}
.home-main-section .home-section-1-div .section-1-grid-div .section-1-content-div .p-div .img-flex-div img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  box-sizing: border-box;
  border: 3.55479px solid #FFFFFF;
  border-radius: 100%;
}
@media (max-width: 1201px) {
  .home-main-section .home-section-1-div .section-1-grid-div .section-1-content-div .p-div .img-flex-div img {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 646px) {
  .home-main-section .home-section-1-div .section-1-grid-div .section-1-content-div .p-div .img-flex-div img {
    width: 40px;
    height: 40px;
  }
}
.home-main-section .home-section-1-div .section-1-grid-div .section-1-content-div .p-div .img-flex-div img:nth-child(2), .home-main-section .home-section-1-div .section-1-grid-div .section-1-content-div .p-div .img-flex-div img:nth-child(3) {
  margin-left: -1.5rem;
}
@media (max-width: 646px) {
  .home-main-section .home-section-1-div .section-1-grid-div .section-1-content-div .p-div .img-flex-div img:nth-child(2), .home-main-section .home-section-1-div .section-1-grid-div .section-1-content-div .p-div .img-flex-div img:nth-child(3) {
    margin-left: -1.3rem;
  }
}
.home-main-section .home-section-1-div .section-1-grid-div .section-1-content-div .section-1-flex-p.para-2 {
  position: absolute;
  left: -28%;
  top: 9.5rem;
}
@media (max-width: 1201px) {
  .home-main-section .home-section-1-div .section-1-grid-div .section-1-content-div .section-1-flex-p.para-2 {
    left: -22%;
    top: 7.1rem;
  }
}
@media (max-width: 1037px) {
  .home-main-section .home-section-1-div .section-1-grid-div .section-1-content-div .section-1-flex-p.para-2 {
    position: unset;
    left: unset;
    top: unset;
  }
}
@media (max-width: 435px) {
  .home-main-section .home-section-1-div .section-1-grid-div .section-1-content-div .section-1-flex-p.para-2 {
    display: flex;
    align-items: center;
    gap: 10px;
  }
}
.home-main-section .home-section-1-div .section-1-grid-div .section-1-content-div .section-1-flex-p {
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 300;
  font-size: 36px;
  line-height: 36px;
  color: #919191;
  margin-bottom: 0;
}
@media (max-width: 1201px) {
  .home-main-section .home-section-1-div .section-1-grid-div .section-1-content-div .section-1-flex-p {
    font-size: 33px;
  }
}
@media (max-width: 646px) {
  .home-main-section .home-section-1-div .section-1-grid-div .section-1-content-div .section-1-flex-p {
    font-size: 28px;
  }
}
.home-main-section .home-section-1-div .section-1-grid-div .section-1-content-div .section-1-content-div-inner-2 {
  width: 22rem;
  margin-bottom: 2rem;
}
@media (max-width: 1201px) {
  .home-main-section .home-section-1-div .section-1-grid-div .section-1-content-div .section-1-content-div-inner-2 {
    margin-bottom: 1rem;
  }
}
@media (max-width: 1037px) {
  .home-main-section .home-section-1-div .section-1-grid-div .section-1-content-div .section-1-content-div-inner-2 {
    margin-top: 1rem;
  }
}
@media (max-width: 435px) {
  .home-main-section .home-section-1-div .section-1-grid-div .section-1-content-div .section-1-content-div-inner-2 {
    width: 100%;
  }
}
.home-main-section .home-section-1-div .section-1-grid-div .section-1-content-div .section-1-content-div-inner-2 p {
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #6E6E6E;
  margin-bottom: 2rem;
}
@media (max-width: 1201px) {
  .home-main-section .home-section-1-div .section-1-grid-div .section-1-content-div .section-1-content-div-inner-2 p {
    margin-bottom: 1rem;
  }
}
@media (max-width: 500px) {
  .home-main-section .home-section-1-div .section-1-grid-div .section-1-content-div .section-1-content-div-inner-2 p {
    width: 350px;
  }
}
.home-main-section .home-section-1-div .section-1-grid-div .section-1-content-div .section-1-content-div-inner-2 .section-1-get-started-btn {
  width: 124px;
  height: 39px;
  background: #3C80FF;
  border-radius: 8px;
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  line-height: 11px;
  color: #FFFFFF;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

@media (max-width: 435px) {
  .web-text {
    display: none;
  }
}

.mob-text {
  display: none;
}
@media (max-width: 435px) {
  .mob-text {
    display: block;
  }
}

.home-section-2-div {
  margin: 4rem auto;
  width: fit-content;
  position: relative;
}
@media (max-width: 778px) {
  .home-section-2-div {
    position: static;
    background: #0d3a6a;
    border-radius: 15px;
    margin: 2rem auto;
  }
}
.home-section-2-div .home-section-2-bg-div {
  width: fit-content;
}
.home-section-2-div .home-section-2-bg-div .section-2-bg {
  width: fit-content;
  position: relative;
  overflow: hidden;
}
.home-section-2-div .home-section-2-bg-div .section-2-bg .section-2-bg-svg {
  width: 1116px;
  height: 100%;
}
@media (max-width: 1201px) {
  .home-section-2-div .home-section-2-bg-div .section-2-bg .section-2-bg-svg {
    width: 980px;
    height: 100%;
  }
}
@media (max-width: 1037px) {
  .home-section-2-div .home-section-2-bg-div .section-2-bg .section-2-bg-svg {
    width: 826px;
    height: 100%;
  }
}
@media (max-width: 868px) {
  .home-section-2-div .home-section-2-bg-div .section-2-bg .section-2-bg-svg {
    width: 675px;
    height: 100%;
  }
}
@media (max-width: 778px) {
  .home-section-2-div .home-section-2-bg-div .section-2-bg .section-2-bg-svg {
    display: none;
  }
}
.home-section-2-div .home-section-2-bg-div .section-2-bg .extra-bg-div {
  display: none;
}
@media (max-width: 868px) {
  .home-section-2-div .home-section-2-bg-div .section-2-bg .extra-bg-div {
    display: block;
    width: 100%;
    height: 7rem;
    background: #083667;
    margin-top: -3rem;
    border-radius: 15px;
  }
}
@media (max-width: 778px) {
  .home-section-2-div .home-section-2-bg-div .section-2-bg .extra-bg-div {
    display: none;
  }
}
.home-section-2-div .home-section-2-bg-div .section-2-bg .hidden-section-2 {
  display: block;
}
@media (max-width: 911px) {
  .home-section-2-div .home-section-2-bg-div .section-2-bg .hidden-section-2 {
    display: none;
  }
}
.home-section-2-div .home-section-2-bg-div .section-2-bg .section-2-img-1 {
  position: absolute;
  bottom: 0;
  right: 7rem;
}
.home-section-2-div .home-section-2-bg-div .section-2-bg .section-2-img-2 {
  position: absolute;
  bottom: -1.5rem;
  right: 54%;
  transform: translateX(50%);
}
.home-section-2-div .home-section-2-bg-div .section-2-bg .section-2-img-3 {
  position: absolute;
  bottom: 4rem;
  left: 5rem;
}
.home-section-2-div .home-section-2-content-div {
  position: absolute;
  inset: 0;
  padding: 5rem 4rem 4rem 4rem;
}
@media (max-width: 1201px) {
  .home-section-2-div .home-section-2-content-div {
    padding: 4rem 3.5rem 3.5rem 4rem;
  }
}
@media (max-width: 868px) {
  .home-section-2-div .home-section-2-content-div {
    padding: 3rem 3rem 3.7rem 3rem;
  }
}
@media (max-width: 778px) {
  .home-section-2-div .home-section-2-content-div {
    position: static;
    padding: 2rem;
  }
}
.home-section-2-div .home-section-2-content-div h2 {
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 500;
  font-size: 38px;
  line-height: 135%;
  color: #FFFFFF;
  margin-bottom: 15px;
  width: 54rem;
}
@media (max-width: 1201px) {
  .home-section-2-div .home-section-2-content-div h2 {
    font-size: 36px;
    margin-bottom: 10px;
    width: 51rem;
  }
}
@media (max-width: 1037px) {
  .home-section-2-div .home-section-2-content-div h2 {
    width: 100%;
    font-size: 34px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .home-section-2-div .home-section-2-content-div h2 {
    font-size: 28px;
  }
}
.home-section-2-div .home-section-2-content-div h5 {
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 170%;
  color: #DEE9FF;
  margin-bottom: 15px;
  width: 36rem;
}
@media (max-width: 1201px) {
  .home-section-2-div .home-section-2-content-div h5 {
    font-size: 18px;
    margin-bottom: 10px;
    width: 32rem;
  }
}
@media (max-width: 1037px) {
  .home-section-2-div .home-section-2-content-div h5 {
    width: 100%;
    font-size: 18px;
    line-height: 1.2;
  }
}
.home-section-2-div .home-section-2-content-div p {
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 170%;
  color: #FFFFFF;
  margin-bottom: 0;
  width: 39rem;
}
@media (max-width: 1037px) {
  .home-section-2-div .home-section-2-content-div p {
    width: 100%;
  }
}
@media (max-width: 778px) {
  .home-section-2-div .home-section-2-content-div p {
    padding-bottom: 25px;
  }
}
.home-section-2-div .home-section-2-content-div .section-2-get-hosting-btn {
  background: #3C80FF;
  border-radius: 11px;
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  outline: none;
  border: none;
  cursor: pointer;
  width: 183px;
  height: 57px;
  position: absolute;
  bottom: 0;
  left: 4.8rem;
}
@media (max-width: 1201px) {
  .home-section-2-div .home-section-2-content-div .section-2-get-hosting-btn {
    font-size: 14px;
    width: 161px;
    height: 50px;
    left: 4.2rem;
  }
}
@media (max-width: 1037px) {
  .home-section-2-div .home-section-2-content-div .section-2-get-hosting-btn {
    font-size: 13px;
    width: 137px;
    height: 44px;
    left: 3.5rem;
  }
}
@media (max-width: 868px) {
  .home-section-2-div .home-section-2-content-div .section-2-get-hosting-btn {
    bottom: 1rem;
  }
}
@media (max-width: 778px) {
  .home-section-2-div .home-section-2-content-div .section-2-get-hosting-btn {
    position: static;
  }
}
@media (max-width: 1037px) {
  .home-section-2-div .home-section-2-content-div .section-2-get-hosting-btn img {
    width: 16px;
  }
}

.home-section-3-div {
  margin: 4rem auto;
}
@media (max-width: 500px) {
  .home-section-3-div {
    margin: -2rem auto 0rem;
  }
}
.home-section-3-div .section-3-flex-div {
  display: flex;
  justify-content: center;
  gap: 33px;
}
@media (max-width: 1200px) {
  .home-section-3-div .section-3-flex-div {
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }
}
@media (max-width: 600px) {
  .home-section-3-div .section-3-flex-div {
    gap: 0px;
  }
}
.home-section-3-div .section-3-flex-div .section-3-content-div-1 {
  position: relative;
  width: fit-content;
}
.home-section-3-div .section-3-flex-div .section-3-content-div-1 .section-3-bg-div {
  width: fit-content;
}
.home-section-3-div .section-3-flex-div .section-3-content-div-1 .section-3-bg-div .section-3-bg-svg {
  width: 446px;
  height: 285px;
}
@media (max-width: 500px) {
  .home-section-3-div .section-3-flex-div .section-3-content-div-1 .section-3-bg-div .section-3-bg-svg {
    width: 320px;
    height: 304px;
  }
}
@media (max-width: 385px) {
  .home-section-3-div .section-3-flex-div .section-3-content-div-1 .section-3-bg-div .section-3-bg-svg {
    width: 310px;
    height: 304px;
  }
}
.home-section-3-div .section-3-flex-div .section-3-content-div-1 .section-3-content-section {
  position: absolute;
  inset: 0;
}
.home-section-3-div .section-3-flex-div .section-3-content-div-1 .section-3-content-section .section-3-content-section-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.home-section-3-div .section-3-flex-div .section-3-content-div-1 .section-3-content-section .section-3-content-section-inner .icon-div {
  position: absolute;
  top: 0;
  left: 0;
  width: 57px;
  height: 57px;
  background: #EAEAEA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-section-3-div .section-3-flex-div .section-3-content-div-1 .section-3-content-section .section-3-content-section-inner .icon-div img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 500px) {
  .home-section-3-div .section-3-flex-div .section-3-content-div-1 .section-3-content-section .section-3-content-section-inner .icon-div {
    top: 50px;
    left: 0px;
    width: 43px;
    height: 43px;
  }
}
.home-section-3-div .section-3-flex-div .section-3-content-div-1 .section-3-content-section .section-3-content-section-inner .section-3-see-more-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 170px;
  height: 45px;
  border: 1px solid #3C80FF;
  border-radius: 15px;
  outline: none;
  cursor: pointer;
  background: transparent;
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  color: #3C80FF;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
@media (max-width: 500px) {
  .home-section-3-div .section-3-flex-div .section-3-content-div-1 .section-3-content-section .section-3-content-section-inner .section-3-see-more-btn {
    height: 34px;
    bottom: 49px;
    right: 15px;
    width: 103px;
  }
}
.home-section-3-div .section-3-flex-div .section-3-content-div-1 .section-3-content-section .section-3-content-section-inner .section-3-content-div-inner {
  padding: 5.5rem 1.5rem;
}
@media (max-width: 500px) {
  .home-section-3-div .section-3-flex-div .section-3-content-div-1 .section-3-content-section .section-3-content-section-inner .section-3-content-div-inner {
    padding: 4.2rem 1.5rem;
  }
}
.home-section-3-div .section-3-flex-div .section-3-content-div-1 .section-3-content-section .section-3-content-section-inner .section-3-content-div-inner h3 {
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 400;
  font-size: 21px;
  color: #000000;
  margin-bottom: 15px;
}
@media (max-width: 500px) {
  .home-section-3-div .section-3-flex-div .section-3-content-div-1 .section-3-content-section .section-3-content-section-inner .section-3-content-div-inner h3 {
    margin-left: 42px;
  }
}
.home-section-3-div .section-3-flex-div .section-3-content-div-1 .section-3-content-section .section-3-content-section-inner .section-3-content-div-inner p {
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #999999;
  margin-bottom: 0px;
}
@media (max-width: 500px) {
  .home-section-3-div .section-3-flex-div .section-3-content-div-1 .section-3-content-section .section-3-content-section-inner .section-3-content-div-inner p {
    font-size: 13px;
  }
}
@media (max-width: 385px) {
  .home-section-3-div .section-3-flex-div .section-3-content-div-1 .section-3-content-section .section-3-content-section-inner .section-3-content-div-inner p {
    font-size: 11.8px;
  }
}
.home-section-3-div .section-3-swiper-section {
  margin: 2rem auto;
  overflow: hidden;
}
.home-section-3-div .section-3-swiper-section .swiper-wrapper {
  transition-timing-function: linear !important;
  /* CRITICAL */
}
.home-section-3-div .section-3-swiper-section .swiper {
  width: 1000px;
  height: 46px;
}
.home-section-3-div .section-3-swiper-section .swiper-img-div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-section-4-div {
  margin: 4rem auto;
  position: relative;
  width: fit-content;
}
@media (max-width: 1200px) {
  .home-section-4-div {
    background-color: #09325e;
    border-radius: 20px;
    margin: 4rem 0 0rem;
    padding: 3rem 3rem;
    width: 100%;
    height: auto;
  }
}
@media (max-width: 667px) {
  .home-section-4-div {
    padding: 3rem 19px;
    margin: 0rem 0 0rem;
  }
}
@media (max-width: 380px) {
  .home-section-4-div {
    padding: 2.5rem 0px;
  }
}
.home-section-4-div .home-section-4-bg-section .bg-web {
  display: block;
}
@media (max-width: 1200px) {
  .home-section-4-div .home-section-4-bg-section .bg-web {
    display: none;
  }
}
.home-section-4-div .home-section-4-bg-section .bg-web .home-section-4-bg {
  width: 1116px;
  height: 415px;
}
.home-section-4-div .home-section-4-content {
  position: absolute;
  inset: 0;
}
@media (max-width: 1200px) {
  .home-section-4-div .home-section-4-content {
    position: static;
  }
}
.home-section-4-div .home-section-4-content .top-content-div {
  padding: 2rem 6rem;
  padding-bottom: 3.5rem;
}
@media (max-width: 1200px) {
  .home-section-4-div .home-section-4-content .top-content-div {
    padding: 0rem 3rem;
    padding-bottom: 2rem;
  }
}
@media (max-width: 998px) {
  .home-section-4-div .home-section-4-content .top-content-div {
    padding: 0rem 0rem;
    padding-bottom: 2rem;
  }
}
@media (max-width: 380px) {
  .home-section-4-div .home-section-4-content .top-content-div {
    padding-left: 16px;
  }
}
.home-section-4-div .home-section-4-content .top-content-div h2 {
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  color: #FFFFFF;
  margin-bottom: 10px;
}
.home-section-4-div .home-section-4-content .top-content-div p {
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 300;
  font-size: 13px;
  line-height: 150%;
  color: #FFFFFF;
  margin-bottom: 0;
}
.home-section-4-div .home-section-4-content .bottom-content-div {
  display: flex;
  justify-content: center;
}
.home-section-4-div .home-section-4-content .bottom-content-div .section-4-swiper-wrapper {
  display: flex;
  justify-content: center;
}
@media (max-width: 1200px) {
  .home-section-4-div .home-section-4-content .bottom-content-div .section-4-swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    column-gap: 0;
  }
}
@media (max-width: 900px) {
  .home-section-4-div .home-section-4-content .bottom-content-div .section-4-swiper-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.home-section-4-div .home-section-4-content .bottom-content-div .section-4-swiper {
  width: fit-content;
}
.home-section-4-div .home-section-4-content .bottom-content-div .section-4-swiper .swiper-slide {
  width: fit-content !important;
  display: flex;
  justify-content: center;
}
@media (max-width: 900px) {
  .home-section-4-div .home-section-4-content .bottom-content-div .section-4-swiper .swiper-slide {
    margin-right: 0 !important;
  }
}
.home-section-4-div .home-section-4-content .bottom-content-div .section-4-swiper .swiper-slide:last-child {
  margin-right: 0 !important;
}
.home-section-4-div .home-section-4-content .bottom-content-div .section-4-swiper .swiper-slide .swiper-card-section {
  position: relative;
  width: fit-content;
}
.home-section-4-div .home-section-4-content .bottom-content-div .section-4-swiper .swiper-slide .swiper-card-section .swiper-card-bg-section .swiper-card-bg-svg {
  width: 322px;
  height: 197px;
}
@media (max-width: 500px) {
  .home-section-4-div .home-section-4-content .bottom-content-div .section-4-swiper .swiper-slide .swiper-card-section .swiper-card-bg-section .swiper-card-bg-svg {
    width: 288px;
    height: 197px;
  }
}
.home-section-4-div .home-section-4-content .bottom-content-div .section-4-swiper .swiper-slide .swiper-card-content-section {
  position: absolute;
  inset: 0;
}
.home-section-4-div .home-section-4-content .bottom-content-div .section-4-swiper .swiper-slide .swiper-card-content-section .swiper-card-content-section-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.home-section-4-div .home-section-4-content .bottom-content-div .section-4-swiper .swiper-slide .swiper-card-content-section .swiper-card-content-section-inner .swiper-arrow-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  height: 41px;
  border: 1px solid #FFFFFF;
  border-radius: 5px;
  background: transparent;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 500px) {
  .home-section-4-div .home-section-4-content .bottom-content-div .section-4-swiper .swiper-slide .swiper-card-content-section .swiper-card-content-section-inner .swiper-arrow-btn {
    top: 10px;
    right: 1px;
    width: 40px;
    height: 39px;
  }
}
.home-section-4-div .home-section-4-content .bottom-content-div .section-4-swiper .swiper-slide .swiper-card-content-section .swiper-card-content-section-inner .bg-img-div {
  position: absolute;
  bottom: 0;
  right: 0;
}
.home-section-4-div .home-section-4-content .bottom-content-div .section-4-swiper .swiper-slide .swiper-card-content-section .swiper-card-content-section-inner .bg-img-div img {
  max-width: 100%;
  height: auto;
}
.home-section-4-div .home-section-4-content .bottom-content-div .section-4-swiper .swiper-slide .swiper-card-content-section .swiper-card-content-section-inner .swiper-card-content {
  padding: 1.5rem 3rem 1.5rem 2rem;
  height: 100%;
}
.home-section-4-div .home-section-4-content .bottom-content-div .section-4-swiper .swiper-slide .swiper-card-content-section .swiper-card-content-section-inner .swiper-card-content h2 {
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  color: #0A3869;
  margin-bottom: 1rem;
}
.home-section-4-div .home-section-4-content .bottom-content-div .section-4-swiper .swiper-slide .swiper-card-content-section .swiper-card-content-section-inner .swiper-card-content h5 {
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 15px;
  color: #979797;
  margin-bottom: 1rem;
}
.home-section-4-div .home-section-4-content .bottom-content-div .section-4-swiper .swiper-slide .swiper-card-content-section .swiper-card-content-section-inner .swiper-card-content p {
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 300;
  font-size: 10px;
  line-height: 12px;
  color: #979797;
  margin-bottom: 0;
}

.home-section-5-div {
  margin: 4rem auto;
  max-width: 1116px;
}
@media (max-width: 1300px) {
  .home-section-5-div {
    margin: 4rem auto;
  }
}
@media (max-width: 500px) {
  .home-section-5-div {
    margin: 2rem auto;
  }
}
.home-section-5-div .top-section {
  margin-bottom: 4rem;
}
@media (max-width: 998px) {
  .home-section-5-div .top-section {
    margin-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .home-section-5-div .top-section {
    margin-bottom: 2rem;
  }
}
.home-section-5-div .top-section h2 {
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 400;
  font-size: 49px;
  color: #093869;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .home-section-5-div .top-section h2 {
    line-height: 55px;
    margin-bottom: 12px;
    font-size: 36.8276px;
  }
  .home-section-5-div .top-section h2 br {
    display: none;
  }
}
.home-section-5-div .top-section p {
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 190%;
  color: #999999;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .home-section-5-div .top-section p br {
    display: none;
  }
}
.home-section-5-div .bottom-section .bottom-grid-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 6.6rem;
  row-gap: 30px;
}
@media (max-width: 998px) {
  .home-section-5-div .bottom-section .bottom-grid-section {
    column-gap: 50px;
    row-gap: 30px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 798px) {
  .home-section-5-div .bottom-section .bottom-grid-section {
    row-gap: 15px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.home-section-5-div .bottom-section .bottom-grid-section .bottom-grid-item .bottom-content {
  margin-top: 15px;
}
.home-section-5-div .bottom-section .bottom-grid-section .bottom-grid-item .bottom-content h5 {
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 400;
  font-size: 23px;
  color: #000000;
  margin-bottom: 10px;
}
.home-section-5-div .bottom-section .bottom-grid-section .bottom-grid-item .bottom-content p {
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  color: #999999;
}

.gap-10px {
  gap: 10px !important;
}

.testimonial-div {
  padding: 2rem 0;
  margin: 0 3rem;
}
@media (max-width: 767px) {
  .testimonial-div {
    padding: 2rem 0 0;
    margin: 0;
  }
}
@media (max-width: 500px) {
  .testimonial-div.testimonial-index-m {
    margin-bottom: 2rem !important;
  }
}
.testimonial-div .testimonial-P {
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  color: #999999;
  margin-bottom: 2rem;
}
.testimonial-div .testimonial-h2 {
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 500;
  font-size: 46px;
  line-height: 120%;
  color: #093869;
  text-align: center;
}
@media (max-width: 767px) {
  .testimonial-div .testimonial-h2 {
    font-size: 39px;
  }
}
.testimonial-div .testimonial-card {
  background: #F1F1F1;
  padding: 28px 20px;
  border-radius: 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1300px) {
  .testimonial-div .testimonial-card {
    min-height: 479px;
  }
}
@media (max-width: 999px) {
  .testimonial-div .testimonial-card {
    min-height: 546px;
  }
}
@media (max-width: 767px) {
  .testimonial-div .testimonial-card {
    min-height: 525px;
  }
}
.testimonial-div .name-auth {
  padding-top: 21px;
}
.testimonial-div .text {
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 400;
  font-size: 13.8653px;
  line-height: 156%;
  color: #A3A3A3;
  padding: 2rem 0rem;
}
.testimonial-div .author {
  padding-top: 1rem;
}
.testimonial-div .author h4 {
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 400;
  font-size: 17.3316px;
  line-height: 130%;
  color: #093869;
  margin: 0px 0 2px;
}
.testimonial-div .author span {
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 300;
  font-size: 13.8653px;
  line-height: 130%;
  color: #093869;
}
.testimonial-div .divider {
  border-bottom: 1px solid #DBDBDB;
  margin-top: auto;
}
.testimonial-div .testimonial-controls-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .testimonial-div .testimonial-controls-wrapper {
    margin-top: 35px;
  }
}
.testimonial-div .testimonial-controls {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
@media (max-width: 767px) {
  .testimonial-div .testimonial-controls {
    gap: 5px;
  }
}
.testimonial-div .swiper-button-prev,
.testimonial-div .swiper-button-next,
.testimonial-div .swiper-pagination {
  position: static !important;
}
.testimonial-div .swiper-btn {
  width: 34px !important;
  height: 31px !important;
  padding: 12px 25px;
  border: 1px solid #000000;
  border-radius: 6px;
  background: #fff;
  color: #000000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-div .swiper-pagination {
  display: flex;
  gap: 0px;
}
.testimonial-div .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 0px !important;
  background: #cfcfcf;
  opacity: 1;
}
@media (max-width: 767px) {
  .testimonial-div .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
  }
}
.testimonial-div .swiper-pagination-bullet-active {
  background: #2f6df6;
}
.testimonial-div .swiper-button-prev::after,
.testimonial-div .swiper-button-next::after {
  display: none;
}
.testimonial-div .icon-swap {
  color: #000000;
  font-size: 12px;
}
.testimonial-div .testimonial-swiper .swiper-slide {
  height: unset !important;
}

.security-cards-container {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 998px) {
  .security-cards-container {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .security-cards-container {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.security-card {
  background: rgba(241, 241, 241, 0.4588235294);
  padding: 28px 20px;
  border-radius: 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  flex: 1;
}
@media (max-width: 1300px) {
  .security-card {
    min-height: 479px;
  }
}
@media (max-width: 998px) {
  .security-card {
    min-height: auto;
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .security-card {
    padding: 20px 15px;
    border-radius: 15px;
  }
}
.security-card h2 {
  font-family: "Nohemi";
  color: #0A3869;
  padding-bottom: 1rem;
}
.security-card p {
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #999999;
}

.execellence-content {
  display: flex;
  /* grid-template-columns: 1fr 1fr; */
  position: absolute;
  top: 45px;
  left: 61px;
  gap: 80px;
}
@media (max-width: 1300px) {
  .execellence-content {
    flex-direction: column;
    position: static;
    gap: 25px;
    align-items: center;
  }
}

.execellence-content-right-h2 {
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 500;
  font-size: 42.5318px;
  line-height: 124.97%;
  color: #0A3869;
  margin-bottom: 20px;
}
@media (max-width: 1300px) {
  .execellence-content-right-h2 {
    margin-bottom: 0px;
  }
  .execellence-content-right-h2 br {
    display: none;
  }
}
@media (max-width: 700px) {
  .execellence-content-right-h2 {
    font-size: 35.5318px;
  }
}

.execellence-content-right-p {
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 400;
  font-size: 15.1899px;
  line-height: 164%;
  color: #9A9A9A;
}
@media (max-width: 1300px) {
  .execellence-content-right-p {
    margin-bottom: 0px;
  }
  .execellence-content-right-p br {
    display: none;
  }
}

.execellence-contents-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}
@media (max-width: 667px) {
  .execellence-contents-cards {
    background-color: #88C2FF;
    border-radius: 15px;
  }
}

.execellence-contents-cards-p {
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 300;
  font-size: 10px;
  line-height: 156%;
  color: #0A3869;
}

.execellence-contents-cards-h3 {
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 400;
  font-size: 20.2533px;
  line-height: 124.97%;
  color: #0A3869;
}

.margin-left {
  margin-left: 9rem;
}
@media (max-width: 667px) {
  .margin-left {
    margin-left: 0rem;
  }
}

.execellence-section {
  position: relative;
  padding-bottom: 15px;
  margin: 0 3rem;
  display: flex;
  justify-content: center;
}
@media (max-width: 1300px) {
  .execellence-section {
    background-color: #efefef;
    border-radius: 20px;
    margin: 0rem 0 0rem;
    padding: 3rem 2rem;
  }
}

.execellence-section-svg {
  display: block;
}
@media (max-width: 1300px) {
  .execellence-section-svg {
    display: none;
  }
}

.execellence-right-div {
  padding: 1rem 0 6rem;
}
@media (max-width: 1300px) {
  .execellence-right-div {
    padding: 1rem 0 1rem;
  }
}

.execellence-content-left {
  position: relative;
}
@media (max-width: 667px) {
  .execellence-content-left {
    position: static;
    width: 100%;
  }
}

.execellence-content-left-svg {
  display: block;
}
@media (max-width: 667px) {
  .execellence-content-left-svg {
    display: none;
  }
}

.cards-execellence {
  position: absolute;
  top: 6px;
  left: 9px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 667px) {
  .cards-execellence {
    position: static;
  }
}

.image-execellence-ab {
  position: absolute;
  top: 91px;
  left: 85px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1300px) {
  .image-execellence-ab {
    position: static;
    display: none;
  }
}

.image-execellence-ab-hidden {
  display: none;
}
@media (max-width: 1300px) {
  .image-execellence-ab-hidden {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0px;
  }
}

.image-execellence {
  position: relative;
}
@media (max-width: 1300px) {
  .image-execellence {
    position: static;
    display: flex;
    justify-content: center;
  }
  .image-execellence br {
    display: none;
  }
}

.image-execellence-img {
  display: block;
}
@media (max-width: 1300px) {
  .image-execellence-img {
    display: none;
  }
}

.image-execellence-img-sm {
  display: none;
}
@media (max-width: 1300px) {
  .image-execellence-img-sm {
    display: block;
  }
}

.image-execellence-p {
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 400;
  font-size: 11.2999px;
  line-height: 153%;
  text-align: center;
  color: #A3A3A3;
}
@media (max-width: 1300px) {
  .image-execellence-p br {
    display: none;
  }
}

.image-execellence-sm {
  width: 55.43px;
  height: 55.43px;
  background-color: #F1F1F1;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.case-href {
  text-decoration: none;
}

@media (min-width: 1300px) {
  .contact-section-index {
    margin: 0 3rem;
  }
}

.contact-section {
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: 5%;
}
@media (max-width: 1200px) {
  .contact-section {
    position: static;
    background-color: #0D3865;
    border-radius: 20px;
    padding: 3rem 2rem 5rem;
  }
}
@media (max-width: 767px) {
  .contact-section {
    padding: 1.5rem 2rem 5rem;
  }
}
.contact-section .contact-left p {
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 300;
  font-size: 13.1414px;
  line-height: 132%;
  color: #ffffff;
}
@media (max-width: 1200px) {
  .contact-section .contact-left p {
    padding-bottom: 15px;
  }
  .contact-section .contact-left p br {
    display: none;
  }
}
.contact-section .contact-left h2 {
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 400;
  font-size: 48.5222px;
  line-height: 132%;
  color: #ffffff;
}
@media (max-width: 1300px) {
  .contact-section .contact-left h2 {
    font-size: 47.5222px;
  }
}
@media (max-width: 1200px) {
  .contact-section .contact-left h2 br {
    display: none;
  }
}
@media (max-width: 767px) {
  .contact-section .contact-left h2 {
    font-size: 40.5222px;
  }
}
@media (max-width: 500px) {
  .contact-section .contact-left h2 {
    font-size: 34.5222px;
  }
}
.contact-section .contact-card {
  position: absolute;
  top: 4%;
  right: 112px;
}
@media (max-width: 1300px) {
  .contact-section .contact-card {
    right: 59px;
  }
}
@media (max-width: 1200px) {
  .contact-section .contact-card {
    position: static;
  }
}
.contact-section .contact-card.contact-card-index {
  right: 46px;
}
.contact-section .contact-section-svg {
  display: block;
}
@media (max-width: 1200px) {
  .contact-section .contact-section-svg {
    display: none;
  }
}
.contact-section .contact-left {
  padding-top: 15px;
}
.contact-section .contact-right {
  display: flex;
}
@media (max-width: 1200px) {
  .contact-section .contact-right {
    flex-direction: column;
  }
}
.contact-section .form-container {
  display: flex;
  justify-content: end;
  padding-top: 4rem;
}
@media (max-width: 1300px) {
  .contact-section .form-container {
    padding-top: 30px;
  }
}
@media (max-width: 767px) {
  .contact-section .form-container {
    display: block;
  }
}
.contact-section .image-box {
  margin-left: -55px;
  position: relative;
}
@media (max-width: 1200px) {
  .contact-section .image-box {
    margin-left: 0px;
  }
}
@media (max-width: 611px) {
  .contact-section .image-box {
    position: static;
  }
}
.contact-section .social-icons {
  position: absolute;
  display: flex;
  bottom: 2%;
  right: 3%;
  gap: 16px;
}
@media (max-width: 940px) {
  .contact-section .social-icons {
    gap: 10px;
  }
}
@media (max-width: 911px) {
  .contact-section .social-icons {
    right: 8%;
  }
}
@media (max-width: 767px) {
  .contact-section .social-icons {
    right: 1%;
  }
}
@media (max-width: 611px) {
  .contact-section .social-icons {
    justify-content: end;
    position: static;
    padding-top: 15px;
  }
}
.contact-section .icon {
  background: #10457E;
  cursor: pointer;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
}
@media (max-width: 911px) {
  .contact-section .icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}
@media (max-width: 911px) {
  .contact-section .icon img {
    width: 15px;
  }
}
.contact-section .contact-form-main {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 1300px) {
  .contact-section .contact-form-main {
    gap: 25px;
  }
}
.contact-section .contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 1300px) {
  .contact-section .contact-form {
    gap: 25px;
  }
}
@media (max-width: 767px) {
  .contact-section .contact-form {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contact-section .error-message {
  color: rgb(255, 0, 0);
  font-size: 12.3px !important;
  text-align: center;
  padding-left: 20px;
}
.contact-section .form-row {
  padding: 5px 15px;
  width: 100%;
  border-radius: 10.17px;
  border: 1px solid #FFFFFF;
  background: transparent;
  text-align: center;
  outline: none;
  align-items: center;
  display: flex;
  gap: 10px;
  outline: none;
}
.contact-section .form-row.form-Message {
  align-items: unset;
}
.contact-section .form-row textarea {
  width: 100%;
  max-width: 100%;
  border: none;
  background: transparent;
  text-align: center;
  outline: none;
  color: white;
  box-sizing: border-box;
  resize: vertical;
  resize: none;
}
.contact-section .form-row textarea::placeholder {
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 200;
  font-size: 10.1718px;
  line-height: 114%;
  text-align: left;
  color: #FFFFFF;
  padding-top: 7px;
}
.contact-section .textarea-main {
  width: 100%;
}
.contact-section .form-row input {
  width: 100%;
  border: none;
  background: transparent;
  text-align: center;
  outline: none;
  width: 230px;
  color: white;
}
.contact-section .form-row input::placeholder {
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 200;
  font-size: 10.1718px;
  line-height: 114%;
  text-align: left;
  color: #FFFFFF;
}
.contact-section .form-btn {
  width: 100%;
  background: white;
  border: none;
  border-radius: 10.17px;
  padding: 14px;
  font-family: "Nohemi";
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  line-height: 114%;
  color: #0A3869;
}
.contact-section .form-btn:hover {
  background-color: #3C80FF;
  color: white;
}

#loading2 {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.341);
  transition: 1s 0.4s;
  font-size: 0px !important;
  visibility: hidden;
}

#loading2 .load {
  width: 7rem;
  height: 7rem;
  border: 5px solid #0f3a67;
  border-top: 6px solid #114379;
  border-radius: 100%;
  margin: auto;
  animation: spin 1s infinite;
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.my-swal-button {
  background-color: #3C80FF !important;
  color: #ffffff !important;
  padding: 10px 40px;
  border-radius: 8px;
  font-size: 14px;
  border: none;
}

.swal2-show {
  border-radius: 8px !important;
}

.my-swal-button:hover {
  color: #000000 !important;
}

div:where(.swal2-icon).swal2-success .swal2-success-ring {
  border: 0.25em solid #0f3a67 !important;
}

div:where(.swal2-icon).swal2-success [class^=swal2-success-line] {
  background-color: #0f3a67 !important;
}

@media (max-width: 768px) {
  .swal2-popup {
    width: 90% !important;
    max-width: 350px !important;
    padding: 1rem !important;
    font-size: 14px !important;
    text-align: center !important;
    margin: 0 auto !important;
    left: 32% !important;
    transform: translateX(-50%) !important;
  }
  .swal2-title {
    font-size: 18px !important;
    text-align: center !important;
  }
  .swal2-content {
    font-size: 14px !important;
    text-align: center !important;
  }
}
/* Prevent body scroll when sidebar is open */
body.sidebar-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Mobile Controls & Sidebar Redesign to match image */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background: #ffffff !important;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 2001 !important;
  overflow-y: auto;
}
.mobile-sidebar.active {
  right: 0;
}
.mobile-sidebar .sidebar-header {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}
.mobile-sidebar .sidebar-header .sidebar-close-btn {
  background: #093869 !important;
  border: none;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  transition: background 0.3s;
}
.mobile-sidebar .sidebar-header .sidebar-close-btn:hover {
  background: #3C80FF !important;
}
.mobile-sidebar .sidebar-content {
  padding: 80px 40px 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.mobile-sidebar .sidebar-menu {
  display: flex;
  flex-direction: column;
}
.mobile-sidebar .sidebar-menu .menu-item-wrapper,
.mobile-sidebar .sidebar-menu .mobile-dropdown {
  border-bottom: 1px solid #f2f2f2;
  padding: 5px 0;
}
.mobile-sidebar .sidebar-menu .main-link {
  text-decoration: none;
  font-family: "Nohemi", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #093869;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  padding: 15px 0;
  transition: color 0.3s;
}
.mobile-sidebar .sidebar-menu .main-link:hover {
  color: #3C80FF;
}
.mobile-sidebar .sidebar-menu {
  /* Mobile Dropdown Specifics */
}
.mobile-sidebar .sidebar-menu .mobile-dropdown .mobile-dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.mobile-sidebar .sidebar-menu .mobile-dropdown .mobile-dropdown-header .mobile-dropdown-toggle {
  width: 40px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
  color: #ccc;
  font-size: 18px;
  transition: all 0.3s;
}
.mobile-sidebar .sidebar-menu .mobile-dropdown .mobile-dropdown-header .mobile-dropdown-toggle:hover {
  color: #093869;
}
.mobile-sidebar .sidebar-menu .mobile-dropdown .mobile-dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: transparent;
}
.mobile-sidebar .sidebar-menu .mobile-dropdown .mobile-dropdown-content a {
  display: block;
  padding: 12px 0 12px 30px !important;
  font-family: "Nohemi", sans-serif;
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #093869 !important;
  text-decoration: none;
  text-transform: none !important;
  border: none !important;
  opacity: 0.8;
}
.mobile-sidebar .sidebar-menu .mobile-dropdown .mobile-dropdown-content a:hover {
  opacity: 1;
  color: #3C80FF !important;
}
.mobile-sidebar .sidebar-menu .mobile-dropdown.active .mobile-dropdown-content {
  max-height: 500px;
  padding-top: 5px;
  padding-bottom: 15px;
}
.mobile-sidebar .sidebar-menu .mobile-dropdown.active .toggle-icon {
  transform: rotate(45deg);
  color: #093869;
}
.mobile-sidebar .sidebar-menu .mobile-dropdown.active .main-link {
  color: #3C80FF;
}
.mobile-sidebar .sidebar-buttons {
  margin-top: auto;
  padding-top: 40px;
}
.mobile-sidebar .sidebar-buttons .bg-btn {
  width: 100%;
  background: #3C80FF;
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 4px;
  font-family: "Nohemi", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(60, 128, 255, 0.2);
}
.mobile-sidebar .sidebar-buttons .bg-btn img {
  width: 14px;
  height: auto;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  z-index: 2000 !important;
  position: relative;
}
.mobile-menu-btn span {
  width: 30px;
  height: 3px;
  background-color: #093869;
  margin: 3px 0;
  transition: 0.3s;
}
@media (max-width: 998px) {
  .mobile-menu-btn {
    display: flex;
  }
}
.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.sidebar-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4) !important;
  z-index: 1999 !important;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  pointer-events: none;
  backdrop-filter: blur(2px);
}
.sidebar-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Prevent body scroll when sidebar is open or preloader is showing */
body.sidebar-open,
body.preloader-active {
  overflow: hidden;
}


#overlay {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #298efa;
  -webkit-transition: 1s 0.4s;
  transition: 1s 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
}

#loading-image {
  width: 100px;
  margin-bottom: 10rem;
  filter: brightness(0) invert(1);
}

#progress {
  height: 1px;
  background: #fff;
  position: absolute;
  width: 0;
  top: 50%;
  transition: width 0.2s ease;
}

#progstat {
  font-size: 0.7em;
  letter-spacing: 3px;
  position: absolute;
  top: 50%;
  margin-top: -40px;
  width: 100%;
  text-align: center;
  color: #fff;
}
#swal2-title,#swal2-html-container,.swal2-confirm{
  font-family: "Nohemi";
}

.tel,
.float {
  position: fixed;
  width: 45px;
  height: 45px;
  right: 20px;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 23px;
  z-index: 99999999;
  transition: all 0.3s;
  text-decoration: none !important;
}

.tel:hover,
.float:hover {
  opacity: 0.9;
  transform: scale(1.05);
  text-decoration: none;
  color: #fff;
}

.tel {
  bottom: 145px;
  background-color: #FF0030;
}

.float {
    bottom: 85px;
  background-color: #25D366;
}

.my-float {
  width: 100%;
  height: 100%;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}


/*# sourceMappingURL=styles.css.map */
