@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;900&family=Inter:wght@300;400;500;600&display=swap");

:root {
  --primary-color: #0ea5e9;
  --secondary-color: #0369a1;
  --accent-color: #38bdf8;
  --dark-navy: #020617;
  --deep-blue: #0f172a;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.1);
  --text-main: #1e293b;
  --text-muted: #64748b;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background-color: #f8fafc;
  background-image: radial-gradient(#cbd5e1 0.5px, transparent 0.5px);
  background-size: 32px 32px;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  line-height: 1.6;
}

.btn_primary, .btn_secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none !important;
  margin: 10px;
}

.btn_primary {
  background: var(--primary-color);
  color: #fff !important;
  box-shadow: 0 10px 20px -5px rgba(14, 165, 233, 0.4);
}

.btn_secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn_primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(14, 165, 233, 0.6);
  filter: brightness(1.1);
}

.btn_secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.4);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
}

.layout_padding {
  padding: 90px 0;
}

@media (max-width: 768px) {
  .layout_padding {
    padding: 60px 0;
  }
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.heading_container h2 {
  position: relative;
  font-weight: bold;
  margin-bottom: 0;
}

.heading_container h2 span {
  color: #0a97b0;
}

.heading_container p {
  margin-top: 10px;
  margin-bottom: 0;
}

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*header section*/
.header_section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}






/* 
   AJUSTE DE COMPENSAÇÃO (HEADER FIXO)
   Aumentado para garantir que os títulos tenham espaço para respirar 
   por baixo da navbar "glass".
*/
.sub_page section:first-of-type,
.sub_page .isv-app {
  padding-top: 160px !important; 
}

@media (max-width: 992px) {
  .sub_page section:first-of-type,
  .sub_page .isv-app {
    padding-top: 130px !important;
  }
}



/* ==========================================================================
   NOVO RODAPÉ (FOOTER) — Simples, Moderno e Completo
   ========================================================================== */

.main_footer {
  background-color: var(--dark-navy);
  color: #ffffff;
  padding: 80px 0 30px;
  font-family: 'Inter', sans-serif;
}

.main_footer h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 25px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}

.main_footer h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer_brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.8;
}

.footer_social {
  display: flex;
  gap: 15px;
}

.footer_social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #fff;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_social a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
  border-color: var(--primary-color);
}

.footer_links {
  list-style: none;
  padding: 0;
}

.footer_links li {
  margin-bottom: 12px;
}

.footer_links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.footer_links a i {
  font-size: 12px;
  margin-right: 10px;
  color: var(--primary-color);
  opacity: 0.6;
}

.footer_links a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer_contact_item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.footer_contact_item i {
  color: var(--primary-color);
  font-size: 18px;
  margin-top: 4px;
}

.footer_contact_item div p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer_contact_item div a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

.footer_bottom {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer_bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  margin: 0;
}

@media (max-width: 768px) {
  .main_footer {
    padding: 60px 0 30px;
    text-align: center;
  }
  
  .main_footer h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer_social {
    justify-content: center;
  }
  
  .footer_links a {
    justify-content: center;
  }
  
  .footer_contact_item {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}

/* WhatsApp Floating Button */
.whatsapp_float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.whatsapp_float i {
  color: #fff;
  font-size: 30px;
  line-height: 1;
}

.whatsapp_float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
  color: #fff;
}

@media (max-width: 768px) {
  .whatsapp_float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
  .whatsapp_float i {
    font-size: 26px;
  }
}



.header_section .header_bottom {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 0;
  margin: 15px 25px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}



.header_section .header_bottom .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.navbar-brand span {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--dark-navy);
  letter-spacing: -1px;
}

.navbar-brand span span {
  color: var(--primary-color);
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 8px 18px;
  color: var(--text-main);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link, 
.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: var(--primary-color);
}

.custom_nav-container .nav_search-btn {
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
  color: #000000;
}

.custom_nav-container .nav_search-btn:hover {
  color: #000000;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #000000;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000000;
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all .3s;
  transition: all .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::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 0;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: 0;
  margin-bottom: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-2 {
  display: none;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-3 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin: 0;
  margin-top: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-1,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-2,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-3 {
  -webkit-transform: none;
          transform: none;
}

/*end header section*/
/* hero section */
.hero_section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: scale(1.1);
  animation: slowZoom 20s infinite alternate ease-in-out;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.15); }
}

.hero_bg_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero_bg_box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.4) 0%, rgba(2, 6, 23, 0.8) 100%);
}

.hero_content {
  text-align: center;
  z-index: 1;
  padding: 0 20px;
  max-width: 900px;
}

.hero_title {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin: 0;
  line-height: 0.9;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards 0.5s;
}

.hero_title span {
  color: var(--primary-color);
  font-weight: 300;
}

.hero_subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 20px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards 0.8s;
}

.hero_cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards 1.1s;
}

.hero_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px auto 0;
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  font-size: 24px;
  transition: var(--transition);
  opacity: 0;
  animation: fadeInUp 1s forwards 1.1s, bounce 2s infinite;
}

.hero_arrow:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: scale(1.1);
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

@media (max-width: 768px) {
  .hero_section {
    height: auto;
    min-height: 80vh;
    padding: 120px 0 60px 0;
  }
  .hero_title {
    font-size: 3rem;
  }
}

/* Slider section removed */

.slider_section .detail-box {
  color: #04233b;
}

.slider_section .detail-box h1 {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #ffffff;
}

.slider_section .detail-box p {
  color: #fefefe;
  font-size: 14px;
}

.slider_section .detail-box .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -5px;
  margin-top: 25px;
}

.slider_section .detail-box .btn-box a {
  margin: 5px;
  text-align: center;
  width: 165px;
}

.slider_section .detail-box .btn-box .btn1 {
  display: inline-block;
  padding: 10px 15px;
  background-color: #0a97b0;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: none;
}

.slider_section .detail-box .btn-box .btn1:hover {
  background-color: #065968;
}

.slider_section .detail-box .btn-box .btn2 {
  display: inline-block;
  padding: 10px 15px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: none;
}

.slider_section .detail-box .btn-box .btn2:hover {
  background-color: black;
}

.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 45px;
}

.slider_section .carousel-indicators li {
  background-color: #ffffff;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  opacity: 1;
}

.slider_section .carousel-indicators li.active {
  width: 20px;
  height: 20px;
  background-color: #0a97b0;
}

.service_section {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
}

.service_section .box {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service_section .row {
  margin-left: -20px;
  margin-right: -20px;
}

.service_section [class*="col-"] {
  padding: 20px;
}

.service_section .box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.service_section .box .img-box {
  width: 80px;
  height: 80px;
  background: rgba(14, 165, 233, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: var(--transition);
}

.service_section .box:hover .img-box {
  background: var(--primary-color);
  transform: rotate(10deg);
}

.service_section .box .img-box img {
  width: 40px;
  filter: brightness(1);
  transition: var(--transition);
}

.service_section .box:hover .img-box img {
  filter: brightness(0) invert(1);
}

.service_section .box .detail-box h5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 15px;
}

.service_section .box .detail-box a {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.service_section .box .detail-box a::after {
  content: "→";
  transition: var(--transition);
}

.service_section .box:hover .detail-box a::after {
  transform: translateX(5px);
}

.about_section {
  padding: 120px 0;
  background: #ffffff;
}

.about_section .img-box {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about_section .img-box img {
  transition: transform 1s;
}

.about_section .img-box:hover img {
  transform: scale(1.05);
}

.about_section .detail-box h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 25px;
}

.about_section .detail-box p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 35px;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 14px 40px;
  background: var(--primary-color);
  color: #ffffff;
  border-radius: 12px;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 10px 20px -5px rgba(14, 165, 233, 0.3);
}

.about_section .detail-box a:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -10px rgba(14, 165, 233, 0.5);
}

.track_section {
  position: relative;
  color: #ffffff;
}

.track_section .track_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.track_section .track_bg_box img {
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
}

.track_section .track_bg_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(37, 37, 37, 0.95)), to(rgba(37, 37, 37, 0.55)));
  background: linear-gradient(to right, rgba(37, 37, 37, 0.95), rgba(37, 37, 37, 0.55));
}

.track_section p {
  font-size: 14px;
  margin-top: 15px;
  margin-bottom: 25px;
}

.track_section form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.track_section form input {
  background-color: #ffffff;
  border: none;
  -webkit-box-flex: 2.5;
      -ms-flex: 2.5;
          flex: 2.5;
  outline: none;
  color: #000000;
  min-height: 42.4px;
  padding-left: 15px;
}

.track_section form input ::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 0.2;
}

.track_section form input :-ms-input-placeholder {
  color: #ffffff;
  opacity: 0.2;
}

.track_section form input ::-ms-input-placeholder {
  color: #ffffff;
  opacity: 0.2;
}

.track_section form input ::placeholder {
  color: #ffffff;
  opacity: 0.2;
}

.track_section form button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: inline-block;
  padding: 9px 30px;
  background-color: #0a97b0;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: none;
  font-size: 15px;
  text-transform: uppercase;
}

.track_section form button:hover {
  background-color: #065968;
}

.client_section {
  background: #f8fafc;
  padding: 100px 0;
}

.client_section .heading_container {
  margin-bottom: 50px;
}

.client_section .box {
  background: #ffffff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  margin: 15px;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.client_section .box .detail-box p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 30px;
}

.client_section .box .client_id {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client_section .box .client_id .img-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-color);
}

.client_section .box .client_id .name h6 {
  font-weight: 700;
  color: var(--dark-navy);
  margin: 0;
}

.client_section .box .client_id .name p {
  font-size: 13px;
  color: var(--primary-color);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.client_section .carousel-wrap {
  margin: 0 auto;
  position: relative;
}

.client_section .owl-carousel .owl-nav .owl-prev,
.client_section .owl-carousel .owl-nav .owl-next {
  width: 50px;
  height: 50px;
  background-size: 18px;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: -15%;
  outline: none;
  background-color: #0a97b0;
}

.client_section .owl-carousel .owl-nav .owl-prev:hover,
.client_section .owl-carousel .owl-nav .owl-next:hover {
  background-color: #161825;
}

.client_section .owl-carousel .owl-nav .owl-prev {
  top: 25%;
  background-image: url(../images/prev.png);
}

.client_section .owl-carousel .owl-nav .owl-next {
  top: calc(25% + 65px);
  background-image: url(../images/next.png);
}

.contact_section {
  position: relative;
  padding-bottom: 90px;
}

.contact_section .heading_container {
  margin-bottom: 25px;
}

.contact_section .heading_container h2 {
  text-transform: uppercase;
}

.contact_section .form_container {
  margin-right: 15px;
}

.contact_section .form_container input {
  width: 100%;
  border: none;
  height: 50px;
  margin-bottom: 25px;
  padding-left: 15px;
  outline: none;
  color: #101010;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
}

.contact_section .form_container input::-webkit-input-placeholder {
  color: #04233b;
}

.contact_section .form_container input:-ms-input-placeholder {
  color: #04233b;
}

.contact_section .form_container input::-ms-input-placeholder {
  color: #04233b;
}

.contact_section .form_container input::placeholder {
  color: #04233b;
}

.contact_section .form_container textarea.message-box {
  height: 120px;
  resize: vertical;
  width: 100%;
}

#form-result {
  display: none;
  margin-top: 10px;
  font-weight: 500;
}

.contact_section .form_container button {
  border: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 55px;
  background-color: #0a97b0;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: none;
}

.contact_section .form_container button:hover {
  background-color: #065968;
}

.contact_section .map_container {
  height: 420px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: 0;
}

.contact_section .map_container .map {
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contact_section .map_container .map #googleMap {
  height: 100%;
}

.info_section {
  background: var(--dark-navy);
  color: #ffffff;
  padding: 80px 0;
}

.info_section h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.info_section .contact_link_box a {
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  transition: var(--transition);
}

.info_section .contact_link_box a:hover {
  color: var(--primary-color);
}

.info_section .info_social {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.info_section .info_social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: var(--transition);
}

.info_section .info_social a:hover {
  background: var(--primary-color);
  transform: translateY(-5px);
}

.footer_section {
  background: #010409;
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer_section p {
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  font-size: 14px;
}
/*# sourceMappingURL=style.css.map */