* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

body p,
span,
li,
button {
  font-family: 'Roboto', sans-serif;

}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter",
    sans-serif;
  font-weight: 300;
}

.text-center {
  text-align: center;
}

.max-width {
  max-width: 1100px;
}

.container-center {
  margin: 0 auto;
}

.bg-torq {
  background: #008080;
}

.torq-text {
  color: #008080;
}

.gold-text {
  color: #ffd700;
}

.header {
  font-size: 35px;
  color: #008080;
  text-transform: capitalize;
}

.headline {
  font-weight: 300;
  font-size: 3em;
  margin: 20px 0;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  background: #008080;
  padding: 10px 20px;
  color: white;
}

header {
  width: 100%;
  box-shadow: 0px 5px 30px black;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.801);
  padding: 0 20px;
}

.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo img {
  width: 280px;
}

.menu nav a {
  text-decoration: none;
  color: #008080;
  margin-right: 10px;
  font-weight: 700;
  font-size: 20px;
  transition: .5s;
  padding: 10px 10px;
}



#mobile-btn {
  background: white;
  color: #008080;
  padding: 15px;
  border-radius: 10px;
  border: 2px solid #008080;
  cursor: pointer;
  opacity: 0;
  position: absolute;
}

.menu nav div {
  display: inline-block;
}

.menu nav a:hover {
  background: #008080;
  color: white;
  border-bottom: 3px solid #ffd700;
}

.menu nav #service a:hover {
  background: white;
  color: #008080
}

.down-arrow {
  margin-bottom: -5px;
  transition: 1s;
}

#service {
  position: relative;
}

#service:hover .down-arrow {
  transform: rotate(-180deg);
  color: white;
}

.drop-down-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: -180px;
  left: -12px;
  background: #008080;
  width: 140px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  z-index: 0;
  opacity: 0;
  transition: opacity .5s ease-in-out, visibility .5s ease-in-out;
  padding: 10px 0;
  visibility:hidden;
}

#service .drop-down-menu a {
  display: flex;
  justify-content: center;
  text-decoration: none;
  color: white !important;
  transition: .4s;
  padding: 5px !important;
  margin: 15px auto !important;
  width: max-content;
}

.drop-down-menu a:hover {
  color: white !important;
  padding: 5px !important;
  background: #008080 !important;
  border-bottom: 1px solid #ffd700 !important;
  margin: 10px 0 !important;
}

.drop-down-active {
  background: #008080;
  box-shadow: 0 0px 30px 3px white;
  z-index: 10;
  opacity: 1;
  bottom: -190px;
  visibility:visible;
}

.mobile-nav nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #008080;
  position: absolute;
  top: 105%;
  right: -200%;
  width: 300px;
  padding: 15px 0;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  transition: 1s;

}

.mobile-active {
  position: absolute;
  top: 105%;
  right: 0%;
}

.mobile-nav nav a {
  color: #008080;
  text-decoration: none;
  margin: 5px 0;
  color: white;
}

@media screen and (min-width:0px) and (max-width:950px) {
  .menu nav {
    display: none;
  }

  #mobile-btn {
    opacity: 1;
    position: relative;
  }
}

@media screen and (min-width:0px) and (max-width:350px) {
  .menu {
    flex-direction: row;
    padding-bottom: 15px;
  }

  .logo img {
    width: 90%;
  }
}

/* ======================BANNER =========================*/

.gallery-banner {
  background: url("/img/about-banner.jpg"), no-repeat;
  background-size: cover;
  background-position: 50% 30%;
  height: 500px;
  position: relative;
}

.gallery-banner:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.437);
  z-index: 1;
}

.banner-contents {
  position: absolute;
  bottom: 50px;
  left: 30px;
  color: white;
  z-index: 3;

  h2 {
    font-size: 2em;
  }

  h3 {
    font-size: 3em;
  }
}

/*========= HERO ======================*/

.hero-section{
    height: calc(90vh - 190.66px);
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-content{
  display:flex;
  align-items:center;
  justify-content:space-evenly;
  gap:30px;
}

.hero-content .left,
.hero-content .right{
flex-basis:50%;
}

.hero-content .left img{
  width:100%;
}

.hero-content .right h1{
  margin-bottom:25px;
}

.hero-content .right p{
  text-indent:20px;
  
}

@media screen and (min-width:0px) and (max-width:985px){
  

  .hero-section{
    height: auto;
    padding-bottom:50px;
  }

  .hero-content{
   flex-direction:column;
  }

  .hero-content .left{
    margin-top:80px;
    text-align:center;

  }
  
  .hero-content .left img{
    width:70%;
  }
  .hero-content .right{
    width:80%;
  }

  .hero-content .right h1{
    text-align:center;
  }
}

/*============ COUNTER SECTION ==========*/

.counter-section{
  display:flex;
  justify-content: center;
  align-items:center;
  background:#00808018;
  padding: 100px 0;
}

.counter-container{
  display:flex;
  justify-content:space-between;
  gap:100px;
}

.counter{
  display:flex;
  flex-direction:column;
  justify-content: center;
  align-items:center;
}

.counter img{
  filter: drop-shadow(10px 5px 0px gold);
}

.counter h3{
  text-decoration:underline;
  text-decoration-thickness:3px;
  margin:10px 0;
}

.count{
  font-size:1.3em;
}

@media screen and (min-width:506px) and (max-width:880px){
  .counter-container{
    flex-wrap:wrap;
    gap:20px;
  }

  .counter{
    width:45%;
  }
}

@media screen and (min-width:0px) and (max-width:505px){
  .counter-container{
    flex-wrap:wrap;
    align-items:center;
    justify-content:center;
    gap:50px;
  }

  .counter{
    width:80%;
  }
}

/*===== OUR BELIEFS ===================*/
.beliefs-container{
display:flex;
justify-content:center;
align-items:center;
padding:100px 0;
background:#008080;
position:relative;
overflow:hidden;
z-index:4;
}

.belief-content{
  display:flex;
  justify-content: space-evenly;
  align-items:center;
  gap: 40px;
  
}

.belief-content .left,
.belief-content .right{
  flex-basis:50%;
  z-index:5;
}

.belief-content .left{
  background: white;
  padding:30px;
  border-radius:20px;
}

.belief-content .left h2{
  font-size:1.9em;
  font-weight:400;
  margin-bottom:25px;
}

.belief-content .right img{
  width:100%;
}

@media screen and (min-width:0px) and (max-width:800px){
  .belief-content{
    flex-direction:column-reverse;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
  }
  .belief-content .left,
.belief-content .right{
  flex-basis:80%;
  text-align:center;
}

.belief-content .right img{
  width:90%;
  text-align:center;
  z-index:5;
}

.belief-content .left h2{
  text-align:center;
}

.belief-content .left{
   margin:0 20px;
}
}
.bar-container1{
  position: absolute;
  top: 30%;
  left: 54%;
  z-index:3;
  display:flex;
  justify-content:center;
  flex-direction: column;
  align-items:center;
  gap:10px;
  width:100%;
  transform:rotate(45deg);
}
.bar-container2 {
  position: absolute;
  top: 50%;
  left: -55%;
  z-index: 3;
  display: flex;
  justify-content: center;
  flex-direction:column;
  align-items: center;
  gap: 10px;
  width: 100%;
  transform: rotate(45deg);
}
.bar{
width:50%;
height:40px;
background:#ffd700;

}

@media screen and (max-width:1500px){
  .bar-container2 {
  left:-55%;
  top:60%;
  }
     .bar-container1 {
       left: 52%;
       top: 20%;
       z-index:1;
     }
}
@media screen and (max-width:1200px) {
  .belief-content{
    width:90%;
  }
  .bar-container2 {
    left: -40%;
    top: 90%;
  }

  .bar-container1 {
  left: 40%;
    top: 0%;
    z-index: 1;
  }
}
@media screen and (max-width:460px){
  .bar{
    width:500px;
  }
}
/*=========== BANNER SECTION ===============*/

.banner-section{
  background: url("../img/sven-mieke-fteR0e2BzKo-unsplash.jpg");
  background-size:cover;
  background-position-y:50%;
  height:600px;
  display:flex;
  justify-content: center;
  align-items: center;
}

.banner-content{
  display:flex;
  align-items:center;
  flex-direction:column;
  background:rgba(0, 0, 0, 0.555);
  padding:50px;
  backdrop-filter: blur(8px);
  width:100%;
  height:350px;
  border-radius:15px;
}

.banner-content h2{
  color:white;
  font-size:2em;
}

.banner-content button{
  padding:15px 30px;
  background:white;
  margin-top:30px;
  font-size:1.5em;
  border:none;
  transition:.5s ease-in-out;
}

.banner-content button:hover{
  border:2px inset gold;
  box-shadow: 10px 10px 0 #ffd700;
}

@media screen and (min-width:492px) and (max-width:706px){
  .banner-content h1{
    font-size:30px;
  }
  .banner-content h2{
    font-size:25px;
  }
  .banner-content button{
    font-size:1em;
  }
}

@media screen and (min-width:0px) and (max-width:491px){
  .banner-content h1{
    font-size:20px;
  }
  .banner-content h2{
    font-size:15px;
  }

  .banner-content{
    height: auto;
  }
}


/*========== FOOTER ==================================*/

footer{
    height:400px;
    background:#008080;
    display:flex;
    justify-content:center;
    align-items:center;
  }

  .footer-content{
    height:300px;
    width:100%;
    display:flex;
    gap:6px;
  }

  .footer-content .left{
    height:300px;
    width:33%;
    display:flex;
    justify-content:space-evenly;
    align-items:center;
    flex-direction:column;
  }

 
  .footer-content .middle,
  .footer-content .right{
    
    height:300px;
    width:33%;
    display:flex;
    justify-content:space-evenly;
    align-items:center;
    flex-direction:column;
  }


  .footer-img{
    margin-bottom:15px;
  }

  .footer-content  ul{
    list-style:none;
  }

  .left .footer-img img{
    width:80%;
    filter:drop-shadow(0px 0px 8px white);
    border-radius:25px;
  }

  .footer-middle i{
    font-size:30px;
    display:block;
    margin:15px 0;
    color:white;
  }

  .footer-middle a {
    text-decoration:none;
  }

  .footer-middle p{
    margin:10px 0;
  }

  .footer-btn{
    background:white;
    padding:10px 30px;
    border:none;
    margin-top:1 0px;
    transition:.5s ease-in-out;
  }

  .footer-btn:hover {
    box-shadow:14px 15px 0 gold;
  }

  @media screen and (min-width:0px) and (max-width:767px){
    footer{
      height:auto;
      padding:40px 0;
    }
    .footer-content{
      flex-direction:column;
      justify-content:center;
      align-items:center;
      height:100%;
     
    }

    .footer-content .middle,
  .footer-content .right,
  .footer-content .left{
    height:auto;
    
  }
  }

  @media screen and (min-width:0) and (max-width:550px){
    .left .footer-img img{
      width:300px;
      filter:drop-shadow(0px 0px 8px white);
      border-radius:25px;
    }
  }


  /*=========== BOTTOM BAR =============================*/

  .bottom-bar-content{
    margin:0 auto;
    padding:20px 0;
    display:flex;
    justify-content:center;
    align-items:center;
  }

  .bottom-bar-content a {
    text-decoration:none;
    color:black;
  }

  @media screen and (min-width:0) and (max-width:675px){
    .bottom-bar-content{
      padding:20px 40px;
    }
  }