* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  list-style: none;
}

:root {
  --navy-blue: #1a3b5d;
  --gold: #f0a500;
  --light-gray: #f5f5f5;
  --charcoal-gray: #333333;
  --green: #4caf50;
  --white: #ffffff;
}

p {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
}

h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
}

h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

h5 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

h6 {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

button {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.subheading {
  font-family: "Lora", serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

/* .section {
  padding: 3rem 9% 2rem;
} */

body {
  background: #e3e9f7;
}

img {
  width: 100%;
}


header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 70px;
  background: #fefefe;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  border-radius: 0 0 10px 10px;
  margin-bottom: 150px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}



.logo {
  width: 120px;
  margin-top: 8px;
}

.logo a {
  text-decoration: none;
}

nav .logo {
  display: none;
}

nav ul {
  display: flex;
}

.nav-links {
  color: black;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 3px;
  padding: 8px 18px;
  border-radius: 25px;
  transition: all 0.5s ease-in-out;
}

.nav-links:hover {
  background: var(--charcoal-gray);
  color: #fff;
}

.bars {
  display: none;
  height: fit-content;
  cursor: pointer;
  padding: 4px 9px;
  border-radius: 5px;
  transition: 0.2 ease;
}

.bars:hover {
  background: #f6f4ff;
}

.bars div {
  width: 30px;
  height: 2px;
  margin: 6px;
  background: #333333;
}

.section {
  padding: 50px 10% 30px;
}

.home {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  margin-top: 60px;
  transition: all 0.5s ease-in-out;
}

.home-content {
  text-align: left;
}

.home-content h1 {
  margin-bottom: 30px;
}

.home-content p {
  margin-bottom: 20px;
}



.home-btn button{
    display: inline-block;
    padding: 11px 30px;
    border: 3px solid #fff;
    border-radius: 50px;
    background-color: transparent;
    transition: all 0.2s ease;
}

.home-btn button:hover {
    border: none;
    background-color: var(--navy-blue);
    color: #fff;
    transform: scale(1.1);
    transition: all 0.2s ease-in-out;
}

.main-logo {
  background: #fff;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  transition: all 5s ease-in-out;
}

.main-logo h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 20px;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.main-logo:hover .logo-slide {
  animation-play-state: paused;
  filter: grayscale(0);
}

.logo-slide {
 display: inline-block;
  animation: 60s slide infinite linear;
  filter: grayscale(100);
}

.logo-slide img {
  width: 200px;
  height: 50px;
  margin: 0 40px;
}

.hero-about {
  width: 80%;
  height: 450px;
  position: relative;
  margin: 100px auto;
  overflow: hidden;
}

.btn-box {
  display: flex;
  border-bottom: 1px solid #1a3b5d;
}

.btn-box button {
  border: none;
  background: transparent;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  margin-right: 50px;
  font-size: 20px;
}

.content-right img {
  width: 350px;
}

.h-content {
  display: none;
  justify-content: center;
  align-items: center;
  margin: 5% auto;
  position: relative;
  transition: transform 0.5s ease;
}

.h-content.active {
  display: flex;
  transition: all 0.5s linear;
}


.content-left {
  flex-basis: 50%;
}


.content-left p {
  font-size: 18px;
  padding: 30px 0;
}

.content-left a {
  width: 200px;
  display: block;
  padding: 8px 5px;
  border-radius: 20px;
  text-decoration: none;
  background-color: var(--navy-blue);
  color: #fff;
  text-align: center;
}

.content-right {
  flex-basis: 50%;
  text-align: center;
}

.content-left li {
  padding: 5px 0;
}

.content-left li span {
  font-weight: 700;
  margin-right: 5px;
}

#h-content1{
  transform: translateX(0px);
}

#h-btn1 {
  color: #f0a500;
}



.service {
  background-color: #eee; 
  text-align: center; 
}

.service_container .section__subtitle{
  position: relative;
  font-size: 40px;
  color: #333;
  margin-bottom: 30px;
  display: inline-block;
  text-transform: capitalize;
}

.service_card {
  display: grid;
  column-gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;

}



.service-wrapper {
  display: grid;
  justify-content: start;
  padding: 2.1rem;
  grid-gap: 2rem;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  transition: box-shadow 0.3s ease;
  margin-bottom: 2rem;
}

.service-content,
.service-icon{
  text-align: left;
}

.service-content h3{
  font-size: 20px;
  margin-bottom: 1rem;
  color: var(--navy-blue);
}

.service-content a {
  width: 200px;
  display: block;
  padding: 8px 5px;
  border-radius: 20px;
  text-decoration: none;
  background-color: var(--navy-blue);
  color: #fff;
  text-align: center;
  margin-top: 15px;
}

.service-content a:hover {
  color: #fff;
}

.service-content p{
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #525252;
  font-weight: normal;
}

.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e3e9f7;
  transition: transform 0.3s ease;
}

.service-icon i {
  font-size: 36px;
  color: var(--gold);
}

.service-icon:hover {
  transform: rotate(360deg);
  cursor: pointer;
}


/* .reviews {
  background: #ddd;
} */

.review-container {
  height: 100%;
  display: grid;
  place-items: center;
  padding: 5rem 3%;
  background: #fff;
  border-radius: 20px;
}

.reviews-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}



.reviews-box {
  background: #f3f5fe;
  width: calc(33% - 10px);
  padding: 25px;
  border-radius: 3px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}

.reviews-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
}

.reviews-content .reviews-image {
  height: 35px;
  width: 100px;
  padding: 3px;
  background: transparent;
  border-radius: 5px;
}

.reviews-stars {
  display: flex;
}

.reviews-stars span {
  background-color: #00b67a;
  padding: 3px 4px;
  display: inline-flex;
  align-items: center;
  margin-right: 1px;
}

.reviews-stars span svg {
  width: 16px;
  height: 16px;
}

.reviews-stars span svg .tp-star__shape {
  fill: #fff;
}

.reviews-stars span:last-child {
  margin-right: 0;
}

.reviews-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 3px;
  border: none;
}

.reviews-image img {
  border-color: #fff;
}

.footer {
  padding: 5rem 9% 2rem;
  display: flex;
  background: #001f3f;
}

.footer-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 2rem;
}

.footer-top ul {
  list-style: none;
  padding: 0;
}

.footer-top h3 {
  font-size: 15px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: #dbdbdb;
}

.footer-top p {
  color: #fff;
}

.footer-top p span{
  color: var(--gold);
}

.footer-risk p span{
  color: var(--gold);
  font-weight: 600;
}

.footer-risk p{
  color: #f5f5f5b9;
}

.footer-top ul li a {
  color: #fff;
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
  transition: color 0.3s;
}

.footer-top ul li a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social img{
  width: 35px;
  height: 35px;
  gap: 16px;
  filter: grayscale(80%);
  transition: 0.5s ease;
}

.footer-social img:hover{
  transform: scale(1.3);
  filter: grayscale(0%);
  transition: 0.5s ease;
}


.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 1rem 0;
  border-top: 1px solid #444;
  border-bottom: 1px solid #444;
  margin-top: 2rem;
}

.footer-logo {
  height: 40px;
  filter: grayscale(100%);
}

.footer-logo:hover {
  filter: grayscale(0);
}

.footer-bottom-links {
  display: flex;
  gap: 1rem;
}

.footer-bottom-links a {
  text-decoration: none;
  color: #fff;
}

.footer-bottom p {
  color: #b8b7b7;
  cursor: pointer;
}

.footer-bottom-links .footer__link {
  margin-bottom: 0;
}

.about {
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}

.about-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  /* display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px; */
  margin-top: 60px;
}

.about-btn button {
  display: inline-block;
    padding: 11px 30px;
    border: 3px solid --navy-blue;
    border-radius: 50px;
    background-color: transparent;
    transition: all 0.2s ease;
}

.about-img img{
  border-radius: 20px;
}

.about-content {
  text-align: left;
  padding: 0 20px 30px;
}

.about-content h1 {
  margin-bottom: 30px;
  position: relative;
}

.about-content p {
text-align: justify;
  margin-bottom: 20px;
}

.about-content h1::after {
  content: "";
  display: block; 
  width: 20%; 
  height: 5px; 
  background-color:var(--gold);
  position: absolute; 
  left: 0;
  bottom: -10px; 
  transform: translateX(0);
}

.team {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team h4 {
  position: relative;
  text-align: left;
  margin-bottom: 20px;
}

.team h4::after {
  content: "";
  display: block; 
  width: 20%; 
  height: 5px; 
  background-color:var(--gold);
  position: absolute; 
  left: 0;
  bottom: -10px; 
  transform: translateX(0);
}

.team p {
  text-align: left;
  margin-bottom: 30px;
}

.team-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-box {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.team-box img {
  width: 328px;
  border-radius: 20px;
  filter: grayscale(100%);
}

.team-data {
  width: 280px;
  background-color: var(--light-gray);
  padding: 8px 16px;
  box-shadow: 0 8px 24px hsla(0, 0%, 0%, .15);
  border-radius: 12px;
  position: absolute;
  bottom: -90px;
  left: 0;
  right: 0;
  margin-inline: auto;
  opacity: 0;
  transition: opacity 1s 1s ease;
}

.team-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.team-data span {
  display: block;
  font-size: 12px;
}

.team-box:hover .team-data {
  animation: show-data 1s forwards;
  opacity: 1;
  transition: opacity .3s;
}

.team-box:hover img {
  filter: grayscale(0);
}

.team-box:hover {
  animation: remove-overflow 2s forwards;
}

.team-box:not(:hover){
  animation: show-overflow 2s forwards;
}

.team-box:not(:hover) .team-data{
  animation: remove-data 1s forwards;
}

@keyframes show-data {
  50%{
    transform: translateY(-80px);
  }
  100%{
    transform: translateY(-70px);
  }
}

@keyframes remove-overflow {
  to{
    overflow: initial;
  }
}

@keyframes remove-data {
  0%{
    transform: translateY(-70px);
  }
  50%{
    transform: translateY(-80px);
  }
  100%{
    transform: translateY(5px);
  }
}

@keyframes show-overflow {
  0%{
    overflow: initial;
    pointer-events: none;
  }
  50%{
    overflow: hidden;
  }
}

.top {
  background-color: #E3E9F7;
  padding: 60px 20px; 
  text-align: center;
  min-height: 50vh; 
  border-bottom: 2px solid #ddd;
}

.top-container {
  max-width: 1200px; 
  margin: 0 auto;
  margin-top: 30px; 
  padding: 0 20px;
  text-align: left;
}

.top-container h1 {
  font-size: 2rem; 
  font-weight: 700; 
  margin-bottom: 20px; 
  color: var(--navy-blue); 
}


.top-container p {
  font-size: 1.2rem; 
  font-weight: 400; 
  color: #666; 
  max-width: 800px; 
  margin: 0 auto; 
}

.protect h2{
  position: relative;
  font-size: 32px;
  color: #333;
  margin-bottom: 10px;
  display: inline-block;
  text-transform: capitalize;
}

.protect p {
  margin-bottom: 20px;
}

.protect-container {
  display: grid;
  column-gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;

}

.protect-box {
  display: grid;
  justify-content: start;
  padding: 32px;
  grid-gap: 8px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  margin-bottom: 2rem;
}

.protect-box h3 {
  color: var(--gold);
}

.protect-box ul {
  list-style-type: disc;
  padding-left: 20px;
}

.protect-box ul li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.protect-box ul li strong {
  color: #003366;
}

.protect-box ul li::marker {
  color: #003366;
}


.book {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}



.book-btn {
  display: inline-block;
  padding: 1rem 3rem;
  background: #003366;
  color: #fff;
  font-size: 16px;
  border-radius: 4rem;
  margin-top: 1rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  transition: all 0.5s ease;
  text-decoration: none;
}

.book-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2e2e2e;
  line-height: 1.2;
}


.contact {
  background-size: cover;
  background-position: center;
  color: #fff;
  padding-top: -30px;
  background-repeat: no-repeat;
  text-align: center;
  overflow-x: hidden;
}

.contact-container {
  text-align: center;
  margin-top: 2rem;
  align-items: center;
}

.contact-container p {
  font-size: 14px;
  text-align: center;
}

.contact h1 {
  font-size: 20px;
  margin-bottom: 20px;
}

.contact p {
  font-size: 1.2em;
  margin-bottom: 30px;
}


.contactUs {
  position: relative;
  width: 100%;
}

.contactUs .contact-title{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
}

.contact-box{
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 5fr 4fr;
  grid-template-areas: 
  "c-form c-info"
  "c-form c-map";
  grid-gap: 20px;
  margin-top: 20px;
  max-width: 100%;
  width: 100%;
}


.contact-box i {
  text-align: left;
}

.c-form {
  grid-area: c-form;
}

.c-info {
  grid-area: c-info;
}

.c-map {
  grid-area: c-map;
}

.contact-hub {
  padding: 20px;
  background: #f4f6f9;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  /* width: 720px; */
}

.contact-hub h2 {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #333;
}

.contact-hub form {
  margin: 35px 35px;
}

form .dbl-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.dbl-field .field {
  height: 50px;
  position: relative;
  width: calc(100% / 2 - 13px);
}

form .field select,
form .message textarea,
form .field input {
  height: 100%;
  width: 100%;
  outline: none;
  padding: 0 18px 0 48px;
  border-radius: 5px;
  border: 1px solid #001f3f;
}

.field input::placeholder,
.message textarea::placeholder{
  color: #bfbfbf;
}

.contact-hub form i {
  position: absolute;
  left: 18px;
  top: 50%;
  font-size: 16px;
  pointer-events: none;
  transform: translateY(-50%);
  color: #bfbfbf;
}

.message textarea {
  min-height:  120px;
  min-width: 100%;
  max-width: 100%;
  max-height: 300px;
  padding: 15px 18px 0 48px;
}

form .field select:focus,
form .message textarea:focus,
form .field input:focus{
  border: 2px solid #003366;
}

form .field input:focus ~ i {
  color: #003366;
}

.button-area {
  margin: 25px 0;
  display: flex;
  align-items: center;
}

.button-area button {
  border: none;
  cursor: pointer;
  padding: 13px 25px;
  background: #003366;
  color: #fff;
  font-size: 14px;
  border-radius: 5px;
}

.button-area span {
  color: #003366;
  margin-left: 30px;
  display: none;
}



.c-info {
  background-color: #999;
  border-radius: 10px;
  padding: 20px 15px;
}

.c-info h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.infoBox div {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 20px;
}

.infoBox div span {
  min-width: 40px;
  height: 40px;
}

.infoBox div span img {
  width: 35px;
}

.infoBox div p {
  color: #333;
  font-size: 18px;
}

.infoBox div p a{
  color: #ffffff;
  font-size: 18px;
}

.c-map {
  padding: 0;
}

.c-map iframe {
  width: 100%;
  height: 100%;
}


.how {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  margin-top: 60px;
  transition: all 0.5s ease-in-out;
}

.how-content {
  text-align: left;
}

.how-content h1 {
  margin-bottom: 30px;
}

.how-content p {
  margin-bottom: 20px;
}



.how-btn button{
    display: inline-block;
    padding: 11px 30px;
    border: 3px solid #fff;
    border-radius: 50px;
    background-color: transparent;
    transition: all 0.2s ease;
}

.how-btn button:hover {
    border: none;
    background-color: var(--navy-blue);
    color: #fff;
    transform: scale(1.1);
    transition: all 0.2s ease-in-out;
}

.how-img {
  width: 100%;
  filter: hue-rotate(190deg);
}

.works {
 text-align: center;
}

.works h2 {
  margin-bottom: 30px;
  font-size: 20px;
}

.work-img {
  width: 100%;
  margin-bottom: 10px;
  text-align: center;
}

.work-img img{
  width: 70px;
  height: 70px;
}

.works-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 20px;
  background-color: #003366;
  border-radius: 12px;
  padding: 25px 15px;
}

.work-box {
  padding: 25px 15px;
}

.work-box h2 {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--gold);
}

.work-box p {
  font-size: 14px;
  color: #fff;
}














@media only screen and (max-width: 1100px) {

  header {
    width: 100%;
    padding: 0 20px;
    margin: 0;
    border-radius: 0;
  }
  nav {
    position: absolute;
    left: -300px;
    top: 10px;
    z-index: 10001;
    width: 280px;
    min-height: 250px;
    background-color: #fefefe;
    transition: all 0.3s ease;
    box-shadow: 2px 0 10px 0 rgba(0, 0, 0, 0.05);
  }

  #check-box:checked ~ nav {
    left: 0;
  }

  nav .logo {
    display: block;
    height: 70px;
    display: flex;
    align-items: center;
    margin-left: 30px;
  }

  .nav-links {
    margin-bottom: 5px;
    padding: 10px 15px;
    border-radius: 5px;
  }

  .nav-list {
    display: block;
    padding: 0 20px;
    margin-top: 30px;
  }

  .bars {
    display: block;
  }

  .reviews-box {
    width: calc(50% - 10px);
    margin: 10px 0;
  }
}


@media (max-width: 991px){
  .contact-box{
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      grid-template-areas: 
      "c-form"
      "c-info"
      "c-map";
  }

 
  .row50{
      flex-direction: column;
      gap: 0;
  }
  .inputBox {
      width: 80%;
  }

  .row100 .inputBox {
    width: 80%;
}

.infoBox {
  text-align: left;
}

  .infoBox div p{
      font-size: 12px;
  }

  .contact-map {
      padding: 5px;
  }
  .c-map {
      padding: 0;
      min-height: 300px;
  }
}


@media screen and (max-width: 743px) {
    .section {
        padding: 25px 5% 15px;
    }

    .home {
        flex-direction: column;
    }

    .home-content {
        text-align: center;
    }

    .home-content h1 {
        font-size: 24px;
        margin-bottom: 15px;
        text-align: left;
    }

    .home-btn button:hover {
        border: none;
        background-color: #1a3b5d;
        color: #fff;
        transform: scale(1.1);
        transition: all 0.2s ease-in-out;
    }

    
    .home-content  p {
        font-size: 14px;
        margin-bottom: 15px;
        text-align: justify;
    }

    .home-content {
        order: 2;
    }

    .hero-about {
      width: 95%;
      height: auto; 
      margin: 50px auto;
    }

    .btn-box {
      flex-direction: column; 
    }

    .btn-box button {
      margin-right: 0; 
      margin-bottom: 10px; 
    }

    .content-right img {
      width: 100%; 
      max-width: 300px;
    }

    .h-content {
      flex-direction: column; 
      transform: translateX(0);
      position: relative;
    }

    .content-left, .content-right {
      flex-basis: 100%; 
    }
    .content-left {
      text-align: left; 
    }
    .content-right{
      text-align: center;
    }

    .content-left p {
      font-size: 14px; 
      padding: 20px 0;
      text-align: justify;
    }
  
    .content-left a {
      width: auto; 
      padding: 10px 15px; 
    }

    .content-left li{
      text-align: justify
    }

    .section__title {
      font-size: 20px;
  }
  .service_card{
      grid-template-columns: 1fr;
  }

  .service_container .section__subtitle {
      font-size: 28px;
  }

  .service-wrapper {
      padding: 2rem;
  }

  .service-content h3 {
      font-size: 20px;
  }

  .service-content p {
      font-size: 1rem;
      text-align: justify;
  }

  .reviews-box {
    width: 100%;
  }

  .reviews-box p {
    text-align: justify;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    margin-top: 10px;
  }

  .footer__link {
    margin-bottom: 0.75rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-risk {
    text-align: justify;
  }

  .contact-container {
    margin-top: 4rem;
  }

  .about-container {
    grid-template-columns: 1fr;
  }

  .about-content h1 {
    text-align: left;
    font-size: 16px;
  }

  .team-container {
    grid-template-columns: 1fr;
  }
  
  .team-data {
    width: 250px;
    padding: 8px;
  }

  .team h4 {
    font-size: 20px;
    text-align: left;
  }

  .team p {
    font-size: 14px;
    text-align: justify;
  }

  .protect-container {
    grid-template-columns: 1fr;
  }

  .protect-box h3{
    font-size: 18px;
  }

  .protect-box p {
    font-size: 16px;
  }

  .protect h2 {
    font-size: 20px;
  }

  
  .how {
    flex-direction: column;
}

.how-content {
    text-align: center;
}

.how-content h1 {
    font-size: 24px;
    margin-bottom: 15px;
    text-align: left;
}

.how-btn button:hover {
    border: none;
    background-color: #1a3b5d;
    color: #fff;
    transform: scale(1.1);
    transition: all 0.2s ease-in-out;
}


.how-content  p {
    font-size: 14px;
    margin-bottom: 15px;
    text-align: justify;
}

.how-content {
    order: 2;
}

.book{
  flex-direction: column;
  text-align: left;
}



.book-content h3 {
  font-size: 1.7rem;
}

.book-content p {
  font-size: 0.9rem;
  text-align: left;
}

form .dbl-field {
  flex-direction: column;
  margin-bottom: 0px;
}

form .dbl-field .field {
  width: 100%;
  margin-bottom: 20px;
}

.message textarea {
  resize: none;
}

.button-area {
  flex-direction: column;
}

.button-area button {
  width: 100%;
}

.button-area span {
  text-align: center;
  margin: 20px 0;
}

}
