/* FONTS 
.inter-<uniquifier> {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} */

*{
  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:200;
  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: .5s ease-in-out;
  padding: 10px 0;

}

#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;
  z-index: 3;
  opacity: 1;
  bottom: -190px;
  box-shadow: 0 0px 30px 3px white ;
}

.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%;
  }
}



/*================ HERO =======================*/

.hero-section{
    background: URL(../img/hero-background.jpg);
    min-height: calc(100vh - 227px);
    background-size:cover;
    background-repeat:no-repeat;
    background-position-y:90%;
    position:relative;
}

.hero-content{
    width:35%;
    position:absolute;
    background:rgba(0,128,128, .5);
    backdrop-filter: blur(8px);
    top:30%;
    left:10%;
    border-radius:20px;
    padding:50px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.hero-content h1{
    font-size:40px;
    margin-bottom:15px;
}

.hero-btn-container{
    display:flex;
    gap:25px;
    margin-top:15px;
}

.hero-content button{
    color:#008080;
    background:white;
    border:none;
    padding:15px 40px;
    cursor:pointer;
    transition:.5s;
}

.hero-content button:hover{
    box-shadow: 10px 10px 0 #ffd700;
}

@media screen and (min-width:758px ) and (max-width:1382px),
screen and (max-height:950px){
.hero-content{
  top:200px;
  width:50%;
}

.hero-content h1{
font-size:30px;
}
}

@media screen and (min-width:0px) and (max-width:759px){
  .hero-content{
    width:80%;
    top:300px;
  }

  .hero-content h1{
    font-size:30px;
  }
}

@media screen and (min-width:351px) and (max-width:759px){
  .hero-section{
    background-position-x: 80%;
    background-position-y: 50%;
    height:500px;
  }
  .hero-content{
    width:80%;
    top:200px;
    margin: 0 auto;
  }

  .hero-content h1{
    font-size:20px;
  }

  .hero-content button{
    color:#008080;
    background:white;
    border:none;
    padding:2px 5px;
    cursor:pointer;
    transition:.5s;
}
}
@media screen and (min-width:758px) and (max-width:1382px),
screen and (max-height:600px){
  .hero-content {
      width: 60%;
      top: 100px;
      margin: 0 auto;
      padding:25px;
    }
}
@media screen and (min-width:0px) and (max-width:450px){
.hero-content {
    width: 90%;
    top: 250px;
    left: 5%;
    padding: 30px;
  }
}
@media screen and (min-width:0px) and (max-width:351px){
  .hero-content{
    width:90%;
    top:90px;
    left:5%;
    padding:30px;
  }

  .hero-content button {
    padding:10px;
  }
}


/*============ SERVICES ===========================*/

.services-section{
    padding:80px 0;
}

.services-section h2{
    margin-bottom:50px;
    color:#008080;
    font-weight:200;
    font-size:3em;
    border-bottom-left-radius:15px;
}

.services-container{
    display:flex;
    justify-content:space-evenly;
    flex-wrap:wrap;
    gap:20px;
}

.service{
    width:350px;
    height:275px;
    border-radius:25px;
    position:relative;
    overflow:hidden;
}

.kitchen{
    background: URL("../img/services-kitchen.jpg");
    background-size:cover;
}

.bathroom{
    background: URL("../img/services-bathroom.jpg");
    background-size:cover;
}

.exterior{
    background: URL("../img/services-exterior.jpg");
    background-size:cover;
}

.service h3{
position:absolute;
bottom:0;
left:0;
width:100%;
font-size:2em;
background:#008080;
color:white;
z-index:3;
}

.service img{
    position:relative;
    width:100%;
    z-index:1;
}

.service ul{
    position:absolute;
    bottom:0;
    width:70%;
    transform: translateX(20%);
    opacity: 0;
    transition:.5s;
    list-style:none;
    text-align:center;
    background:rgb(255, 255, 255);
    z-index:2;
    border-top-left-radius:15px;
    border-top-right-radius:15px;
}

.container:hover ul{
    opacity:1;
    bottom:13%;
    color:#008080;
    
}

.service ul li{
   font-size:1.2em;
}

.services-btn{
    border:1px solid black;
    width:50%;
    transform:translateX(50%);
    color:black;
    background:white;
    padding:10px 25px;
    opacity: 0;
    transition:.5s;
    cursor:pointer;
}

.services-btn:hover{
    box-shadow: 10px 10px 0 5px #ffd700;
}

.container:hover .services-btn{
opacity:1;
margin-top:15px;
}

@media screen and (min-width:641px) and (max-width:700px){
 .services-btn{
  opacity:1;
  margin-top:15px;
 }

 .service{
  width:200px;
  height:275px;
  border-radius:25px;
}

}

@media screen and (min-width:401px) and (max-width:640px){
  .services-btn{
   opacity:1;
   margin-top:15px;
  }
 
  .service-container .container {
   width:80%;
 }
 }

 @media screen and (min-width:0) and (max-width:400px){
  .services-btn{
   opacity:1;
   margin-top:15px;
  }
 
  .service{
    width:200px;
    height:275px;
    border-radius:25px;
  }
 }

/*========= WELCOME SECTION =============*/

.welcome-section{
    background:#00808018;
   padding-top:50px;
   padding-bottom:130px;
}

.welcome-content{
    display:flex;
    justify-content:space-evenly;
    align-items:center;
}

.welcome-content .left,.welcome-content .middle,
.welcome-content .right{
    margin-top:50px;
    height:500px;
    width:32%;
    gap:20px;
}

.middle-top{
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top:50px;
    margin-bottom:80px;
}

.middle-content{
    background:#ffd900b2;
    border-radius:15px;
    position:relative;
}

.arrow-left{
    position:absolute;
    bottom:10px;
    left:-30px;
   animation: faderight 2s infinite linear;
}

.arrow-right{
    position:absolute;
    bottom:10px;
    right:-30px;
    animation:fadeleft 2s infinite linear;
}

@keyframes fadeleft{
    0% {
        right: -30px;
    }
    50% {
        right:0px;
    }
     100%{
        right: -30px;
     }
}

@keyframes faderight{
    0% {
        left: -30px;
    }
    50% {
        left:0px;
    }
    100%{
        left: -30px;
     }
}


.welcome-content p{
    text-indent:20px;
}

.welcome-content button {
    margin-top:15px;
    transform:translateX(20%);
    padding:10px 25px;
    background:white;
    border:none;
    transition:.5s;
    cursor:pointer;
}

.welcome-content button:hover{
    box-shadow:10px 10px 0 #008080;
}

.welcome-img img{
    width:100%;
    border-radius:15px;
}
.welcome-img-right img{
    width:100%;
    height:234px;
    border-radius:15px;
}

.middle-content{
    padding:20px;
    margin-top:50px;
}

.icon-img{
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top:100px;
}

@media screen and (min-width:0px) and (max-width:1000px){
  .welcome-section{
    padding-bottom:50px;
  }
  
  .welcome-content .left{
    opacity:0;
    height:0;
  }

  .welcome-content{
    display:flex;
    flex-direction:column-reverse;
    flex-wrap:wrap;
    margin-bottom:0;
  }

  .welcome-img-right img{
    height:400px;
    width:80%;
  }

  .welcome-img-right{
    text-align:center;
    margin-bottom:50px;
  }

  .welcome-content .right .icon-img{
    opacity:0;
    float:right;
  }

   .welcome-content .middle, 
  .welcome-content .right{
    width:80%;
    height:auto;
    margin-top:0px;
    margin-bottom:0px;
  }

  .welcome-content .middle{
    display:flex;
    flex-direction:column-reverse;
    margin-top:-250px;
    margin-bottom:0px;
  }

  .welcome-content button {
    margin-top:15px;
    transform:translateX(5%);
    padding:10px 25px;
    background:white;
    border:none;
    transition:.5s;
    cursor:pointer;
    width:90%;
}

.welcome-content .right{
  margin-top:50px;
}

.middle-top{
  margin-top:0px;
  margin-bottom:0px;
}
}
@media screen and (min-width:0px) and (max-width:550px){
  .welcome-img-right img{
    height:300px;
    width:80%;
  }

  .welcome-section{
    padding-bottom:30px;
    margin-bottom:0px;
  }

  .welcome-img-right{
    height:auto;
    margin-bottom:50px;
  }
 
.welcome-content .middle,
.welcome-content .right{
  height:auto;
}

  .welcom-content .middle{
    
    height:auto;
  }
}
/*==== CAROUSEL ===============*/

.carousel {
    width: 100%;
    height: 600px;
    margin: auto;
    overflow: hidden;
    background:#00808018;
    display:flex;
    align-items:center;
  }
  
  .slide-track {
    display: flex;
    gap: 11px;
    animation: scroll 100s linear infinite;
    -webkit-animation: scroll 100s linear infinite;
    transition-delay: 2s;
    width: calc(600px * 18);
    height: 600px;
  }
  
  .slide {
    width: 600px;
  }
  
  .slide img {
    width: 100%;
    height: 100%;
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      -o-transform: translateX(0);
    }
  
    100% {
      transform: translateX(calc(-600px * 10));
      -webkit-transform: translateX(calc(-600px * 10));
      -moz-transform: translateX(calc(-1600px * 10));
      -ms-transform: translateX(calc(-600px * 10));
      -o-transform: translateX(calc(-600px * 10));
  }}

  @media screen and (min-width:0px) and (max-width:700px){
    .carousel,.slide-track{
      height:300px;
    }

    .slide-track{
      width:calc(200px * 18);
      height:300px;
    }

    .slide{
      width:300px;
    }
  }

/* ======== Why Choose Us =================== */

.why-choose-us-section{
    padding:100px 0;
}

.why-choose-us-section h1{
    margin-bottom:20px;
}

.reason-container{
    display:flex;
    justify-content:space-evenly;
    align-items:center;
    margin:70px auto;
    flex-wrap:wrap;
}

.reason:nth-child(odd){
    background:#008080;
    color:white;
    border-radius:25px;
}

.reason .top img{
    filter: drop-shadow(0px 0px 20px  gold);
}

.reason{
    width:33%;
   padding: 20px 20px 40px 20px;
}

.reason .top{
   margin-top:20px;
    margin-bottom:20px;
    text-align:center;
}

.top img{
    margin-bottom:15px;
}

.bottom{
    text-indent:20px;
    font-size:.9em;
}

@media screen and (min-width:0px) and (max-width:900px){
  .reason{
    width:80%;
  }
}


  /*========= 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;
    cursor:pointer;
  }

  .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,
  .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:90%;
    filter:drop-shadow(0px 0px 8px white);
    border-radius:25px;
  }

  .footer-middle i{
    font-size:30px;
    display:block;
    margin:15px 0;
    color:white;
    transition:.5s;
  }

  .footer-middle i:hover{
    color:rgb(50, 132, 255);
  }

  .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{
    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;
    }
  }