@import url(fontawesome.min.css);
.client_section .box,
.client_section .box .detail-box,
.heading_container,
.hero,
.main_hero,
.navbar-brand {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
}
.floating-element,
.hero_bg_box .img-box img {
  pointer-events: none;
}
@font-face {
  font-display: swap;
  font-family: Poppins;
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Poppins-Regular.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Poppins-Medium.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/Poppins-SemiBold.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Poppins-Bold.ttf") format("truetype");
}
.heading_container,
.hero {
  display: -webkit-box;
  display: -ms-flexbox;
}
:root {
  --primary-color: #1891c8;
  --primary-color-hover: #0e4f6d;
  --primary-color-rgba: rgba(24, 144, 200, 0.2);
  --white: #fff;
  --off-white: #f0f5ff;
  --darkgray: #1a202c;
  --gray: #374151;
  --black: #000;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Poppins, sans-serif;
  color: var(--darkgray);
  background-color: var(--off-white);
}
ul {
  margin: 0;
  padding: 0;
}
.container {
  z-index: 1;
  position: relative;
}
.layout_padding {
  padding-top: 50px;
  padding-bottom: 50px;
}
.layout_padding2 {
  padding-top: 45px;
  padding-bottom: 45px;
}
.heading_container {
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}
#backToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: 0;
  background-color: var(--primary-color);
  color: #fff;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.4s ease-in-out, transform 0.3s ease-in-out,
    visibility 0.4s, background-color 0.3s, color 0.3s;
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
}
#backToTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#backToTopBtn:hover {
  background-color: var(--primary-color-hover);
  color: #fff;
}
.hero_bg_box,
.hero_bg_box .img-box,
.hero_bg_box::before {
  width: 100vw;
  height: 100vh;
}
.heading_container h2 {
  position: relative;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 10px;
  color: var(--black);
}
.heading_container h2::before,
footer .container .sec h2::before {
  content: "";
  width: 40px;
  height: 7px;
  background-color: var(--primary-color);
  border-radius: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.heading_container.heading_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.heading_container.heading_center h2::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.hero {
  min-height: 100vh;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.client_section .box,
.header_top .contact_link-container,
.header_top .contact_link-container a,
.hero_bg_box,
.main_hero,
.main_hero .detail-box .btn-box,
.main_hero .img-box,
.navbar-brand {
  display: -webkit-box;
  display: -ms-flexbox;
}
.header_bottom,
.hero_bg_box,
.hero_bg_box::before {
  position: absolute;
  left: 0;
}
.hero_bg_box {
  top: 0;
  overflow: hidden;
  z-index: -1;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.hero_bg_box::before {
  content: "";
  top: 0;
  background: rgba(0, 0, 0, 0.8);
}
.header_section {
  padding: 0;
}
.header_top {
  background-color: var(--white);
  padding: 15px 0;
}
.header_top .contact_link-container {
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header_top .contact_link-container a {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--black);
  font-size: 15px;
  font-weight: 500;
}
.header_top .contact_link-container a i {
  font-size: 20px;
  color: var(--primary-color);
  margin-right: 5px;
}
#navbarSupportedContent {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.client_section .box,
.navbar-brand {
  -ms-flex-direction: column;
  flex-direction: column;
}
.custom_nav-container {
  z-index: 99999;
  padding: 0;
}
.custom_nav-container .navbar-nav {
  margin-left: auto;
}
.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 10px 20px;
  margin: 15px 5px;
  color: var(--primary-color);
  font-weight: 600;
  border-radius: 999px;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.client_section .carousel-control-next:hover,
.client_section .carousel-control-prev:hover,
.custom_nav-container .navbar-nav .nav-item.active .nav-link,
.custom_nav-container .navbar-nav .nav-link:hover,
.navbar-nav .dropdown-item:hover {
  background-color: var(--primary-color);
  color: var(--white);
}
.custom_nav-container .navbar-nav .nav-item.active .nav-link,
.custom_nav-container .navbar-nav .nav-link:hover,
.navbar-nav .dropdown-item:hover {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 0 35px var(--primary-color);
}
a,
a:focus,
a:hover {
  text-decoration: none;
}
.btn,
.btn:focus {
  outline: 0 !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.custom-shape-divider-bottom-1742420542 {
  display: none;
}
.navbar-brand {
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.navbar-brand img {
  border-radius: 1rem;
}
.custom_nav-container .navbar-toggler {
  outline: 0;
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.custom_nav-container .navbar-toggler span {
  display: block;
  width: 32px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 15px;
  margin: 7px 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
.custom_nav-container .navbar-toggler span::after,
.custom_nav-container .navbar-toggler span::before {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--primary-color);
  border-radius: 15px;
  top: -10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}
.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.custom_nav-container .navbar-toggler[aria-expanded="true"] span::after,
.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 0;
}
.header_bottom {
  right: 0;
}
.sticky {
  position: fixed;
  top: 0;
  backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 4px 6px rgb(0 0 0 / 0.1);
}
#bottom_navbar {
  z-index: 999;
  transition: 0.2s;
}
.navbar-nav .dropdown:hover > .dropdown-menu {
  display: block;
}
.about_section .detail-box a,
.main_hero .detail-box .btn-box .btn-2 {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-btn {
  animation: 1s ease-in-out fadeIn;
}
.navbar-nav .dropdown-menu {
  margin-top: 0;
  background-color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 0;
}
.navbar-nav .dropdown-item {
  padding: 10px 20px;
  color: var(--primary-color);
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  transition: 0.2s;
}
.main_hero {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--white);
  top: 69px;
  position: relative;
}
.about_section .row,
.main_hero .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.main_hero .detail-box {
  width: 100%;
  margin: 0 auto;
}
.main_hero .detail-box h1 {
  text-transform: uppercase;
  font-size: 3rem;
  color: var(--white);
  font-weight: 600;
}
.contact-section .info-box .info-section a,
.main_hero .detail-box span,
footer .container .contact .info li a:hover,
footer .container .quicklinks ul li a:hover {
  color: var(--primary-color);
}
.main_hero .detail-box p {
  margin-top: 25px;
}
.main_hero .detail-box .btn-box {
  display: flex;
  margin-top: 30px;
}
.main_hero .detail-box .btn-box a {
  width: 180px;
  text-align: center;
  margin: 5px;
}
.main_hero .detail-box .btn-box .btn-1 {
  display: inline-block;
  padding: 10px 35px;
  background-color: var(--white);
  color: var(--black);
  -webkit-transition: 0.15s;
  transition: 0.15s;
  border: 1px solid #fff0;
  border-radius: 999px;
}
.main_hero .detail-box .btn-box .btn-1:hover {
  background-color: #fff0;
  border-color: var(--white);
  color: var(--white);
}
.main_hero .detail-box .btn-box .btn-2 {
  padding: 10px 35px;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  border: 1px solid #fff0;
  border-radius: 999px;
}
.about_section .detail-box a:hover,
.main_hero .detail-box .btn-box .btn-2:hover {
  background-color: #fff0;
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.main_hero .img-box {
  display: flex;
}
.client_section .box .img-box img,
.main_hero .img-box img {
  width: 100%;
}
.about_section .img_container .img-box img {
  width: 100%;
  border-radius: 2rem;
}
.about_section .detail-box {
  background: rgb(255 255 255 / 0.95);
  padding: 45px 25px;
  -webkit-box-shadow: 0 0 5px 0 rgb(0 0 0 / 0.05);
  box-shadow: 0 0 5px 0 rgb(0 0 0 / 0.05);
  position: relative;
  right: 75px;
  border-radius: 2rem;
}
.about_section .detail-box p {
  margin-top: 5px;
}
.about_section .detail-box a {
  padding: 10px 35px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #fff0;
  text-transform: uppercase;
  border-radius: 999px;
}
.about_section .detail-box h3 {
  position: relative;
  text-decoration: underline;
  top: -10px;
}
.service_section {
  background-color: var(--off-white);
}
.service_section .heading_container {
  color: var(--black);
}
.service_section .container .row {
  justify-content: center;
}
.service_section .box {
  background-color: var(--white);
  padding: 25px 15px;
  text-align: center;
  -webkit-box-shadow: 0 0 15px 0 rgb(0 0 0 / 0.2);
  box-shadow: 0 0 15px 0 rgb(0 0 0 / 0.2);
  margin-top: 45px;
  border-radius: 2rem;
}
.service_section .col-md-4:first-child .box .img-box img {
  height: 120px;
  border-radius: 1rem;
}
.service_section .col-md-4:nth-child(2) .box .img-box img {
  height: 100px;
}
.service_section .box .detail-box {
  margin-top: 25px;
  color: #374151;
}
.service_section .box .detail-box h6 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #1a202c;
}
.client_section {
  text-align: center;
}
.client_section #carouselControls {
  padding: 0 10%;
}
.client_section .box {
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 45px;
}
.client_section .box .img-box {
  width: 145px;
}
.client_section .box .detail-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
  background: var(--white);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 0 2px rgb(0 0 0 / 0.1);
}
.client_section .box .detail-box h4 {
  font-weight: 700;
  font-size: 22px;
  padding: 0 10px;
  border-bottom: 1px solid var(--black);
  color: var(--darkgray);
}
.client_section .box .detail-box p {
  margin-top: 10px;
  color: var(--gray);
  font-style: italic;
}
.quote-icon {
  font-size: 75px;
  font-weight: 700;
  color: var(--primary-color);
  position: absolute;
  top: -10px;
  left: 10px;
}
.testimonial-text {
  font-size: 18px;
  color: #333;
  line-height: 1.5;
  margin-top: 20px;
}
.detail-box h4 {
  font-size: 14px;
  color: #555;
  margin-top: 10px;
}
.client_section .carousel_btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.client_section .carousel-control-next,
.client_section .carousel-control-prev {
  position: absolute;
  top: 50%;
  width: 45px;
  height: 45px;
  border: none;
  opacity: 1;
  background-color: var(--white);
  color: var(--white);
  border-radius: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
  box-shadow: rgb(0 0 0 / 0.15) 2px 2px 3px;
  color: var(--black);
  transition: 0.15s;
}
footer,
footer .container .contact .info,
footer .container .quicklinks,
footer .container .sec h2 {
  position: relative;
}
.client_section .carousel-control-prev {
  left: 0;
}
.client_section .carousel-control-next {
  left: initial;
  right: 0;
}
.contact-section {
  color: var(--gray);
  padding: 24px 0;
}
.contact-section .heading_container {
  margin-bottom: 2rem;
}
.contact-section .container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
}
.contact-section .map-container {
  flex: 2;
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
  padding: 16px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
.contact-section .map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.contact-section .info-box {
  background: var(--white);
  padding: 16px;
  border-radius: 2rem;
  box-shadow: 0 4px 6px rgb(0 0 0 / 0.1);
  display: flex;
  flex-wrap: wrap;
  word-wrap: break-word;
  z-index: 1;
}
.contact-section .info-box .info-section {
  width: 50%;
  padding: 0 12px;
}
.contact-section .info-box .info-section a:hover {
  color: #1a202c;
}
.contact-section .info-box .info-title {
  font-weight: 600;
  font-size: 12px;
  color: #1a202c;
  text-transform: uppercase;
}
.contact-section .form-container {
  flex: 1;
  background: var(--white);
  border-radius: 2rem;
  padding: 24px;
}
.contact-section .form-container .form-title {
  color: #1a202c;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  width: 100%;
  margin-bottom: 1rem;
}
.contact-section .form-container .form-group {
  margin-bottom: 16px;
}
.contact-section .form-container .form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}
.contact-section .form-container .form-group input,
.contact-section .form-container .form-group textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #d1d5db;
  border-radius: 0.25rem;
  font-size: 16px;
  outline: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-section .form-container .form-group input:focus,
.contact-section .form-container .form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px var(--primary-color-rgba);
}
.contact-section .form-container textarea {
  resize: none;
  height: 128px;
}
.contact-section .form-container .submit-button {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 24px;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: 0.15s;
  border: 1px solid var(--primary-color);
  width: 100%;
}
.contact-section .form-container .submit-button:hover {
  background: #fff0;
  color: var(--primary-color);
}

.achievements-section{
  padding: 40px 20px;
  background: var(--off-white);
  text-align: center;
}
.achievements-section .section-description{
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 30px;
}
.achievements-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.achievement-card{
  background: var(--white);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgb(0 0 0 / 0.1);
  transition: 0.15s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.contact-member-button:hover,
.download-button:hover,
footer .container .sci li a:hover {
  background: var(--primary-color);
}
.contact-member-button {
  padding: 8px;
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.2);
  transition: 0.15s;
}
.download-button,
.product-content a {
  padding: 10px 20px;
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.2);
  transition: 0.15s;
}
.contact-member-button,
.download-button,
.product-content a,
footer .container .quicklinks ul li a,
footer .container .sci li a {
  display: inline-block;
  text-decoration: none;
}
.achievement-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgb(0 0 0 / 0.2);
}
.contact-member-button:hover,
.download-button:hover,
.product-content a:hover {
  box-shadow: 0 6px 12px rgb(0 0 0 / 0.4);
  color: var(--white);
}
.contact-member-button,
.download-button {
  background: var(--white);
  color: #1891c8;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid var(--primary-color);
  border-radius: 999px;
}
.contact-member-button:active,
.contact-member-button:focus,
.contact-member-button:focus-visible {
  outline: 0;
}
.achievements-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.achievement-title {
  font-size: 1.2rem;
  color: var(--darkgray);
  margin-bottom: 5px;
}
.achievement-description {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 15px;
}
.product-solutions-section {
  position: relative;
  padding: 50px 20px;
}
.product-solutions-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  z-index: 1;
  position: relative;
  gap: 20px;
}
.floating-element {
  position: absolute;
  top: 20%;
  right: 5%;
  width: 64%;
  opacity: 1;
  filter: blur(50px);
  opacity: 0.7;
}
.fe1 {
  rotate: 220deg;
  top: 11%;
  right: 0;
}
.fe3 {
  rotate: 180deg;
  top: 100%;
  right: 0;
}
.fe5 {
  rotate: 65deg;
  top: 147%;
  left: 0;
  width: 30%;
}
.product-card {
  display: flex;
  flex-direction: column;
  background: rgb(255 255 255 / 0.7);
  border-radius: 16px;
  box-shadow: 0 8px 16px rgb(0 0 0 / 0.1);
  overflow: hidden;
  width: 100%;
  transition: 0.15s;
}
.copyrightText,
footer {
  width: 100%;
  background: var(--white);
}
.product-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.product-card img {
  object-fit: contain;
  border-bottom: 4px solid #1891c8;
}
.product-content {
  padding: 20px;
}
.product-content h2 {
  font-size: 1.8rem;
  display: inline-block;
  color: var(--darkgray);
  margin-bottom: 10px;
  font-weight: 700;
}
.product-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
.product-content p,
.product-content ul {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 10px;
}
.product-content a {
  font-size: 1rem;
  font-weight: 700;
  color: #1891c8;
  margin-top: 10px;
  border: 2px solid #1891c8;
  border-radius: 999px;
}
.product-content a:hover {
  background-color: #1891c8;
}

footer {
  height: auto;
  padding: 40px 100px 1px;
  box-shadow: 0 8px 16px rgb(0 0 0/0.2);
}
footer .container {
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-gap: 20px;
}
footer .container .sec h2 {
  color: var(--darkgray);
  font-weight: 600;
  margin-bottom: 15px;
}
footer .container .sec p {
  color: var(--gray);
}
footer .container .sci {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 50px);
}
footer .container .quicklinks ul li,
footer .container .sci li {
  list-style: none;
}
footer .container .sci li a {
  width: 36px;
  height: 36px;
  background: #1a202c;
  display: grid;
  align-content: center;
  justify-content: center;
  border-radius: 999px;
  transition: 0.15s;
}
footer .container .sci li a i {
  color: var(--white);
  font-size: 20px;
}
footer .container .quicklinks ul li a {
  color: var(--gray);
  margin-bottom: 10px;
}
footer .container .contact .info li {
  display: flex;
  gap: 1.5rem;
}
footer .container .contact .info li span {
  color: var(--gray);
  font-size: 20px;
}
footer .container .contact .info li a {
  color: var(--gray);
  text-decoration: none;
}
.contact .info p a {
  word-break: break-word;
}
.copyrightText {
  text-align: center;
  color: var(--gray);
}
@media (min-width: 768px) {
  .product-card {
    flex-direction: row;
    gap: 20px;
  }
  .product-content {
    flex: 1;
    padding: 30px;
  }
  .achievements-grid{
    grid-template-columns: 1fr 1fr;
}
}
@media (min-width: 1024px) {
  .product-header {
    flex-direction: row;
  }
  .achievements-grid{
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 992px) {
  footer {
    padding: 40px 40px 1px;
  }
  footer .container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .contact-section .container {
    flex-direction: column;
  }
  .contact-section .map-container {
    min-height: 500px;
    max-width: 100%;
    margin-bottom: 40px;
  }
  .contact-section .map-container .info-box {
    font-size: 12px;
  }
  .contact-section .form-container {
    margin-top: 0;
  }
  footer .container {
    grid-template-columns: repeat(1, 1fr);
    margin: 0;
  }
  .sec {
    width: calc(100vw - 80px);
  }
}
@media (min-width: 640px) {
  .contact-section .map-container {
    margin-right: 40px;
  }
  .custom-shape-divider-bottom-1742420542 {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
  }
  .custom-shape-divider-bottom-1742420542 svg {
    position: relative;
    display: block;
    width: calc(157% + 1.3px);
    height: 150px;
    transform: rotateY(180deg);
  }
  .custom-shape-divider-bottom-1742420542 .shape-fill {
    fill: var(--off-white);
  }
}