@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap');

:root{
  --theme:#e84f13;
  --black:#000000;
  --white:#fff;
  --light-black:#333;
  --orange:#ffa500;
  --background:#e8e6e6;
  --primary:red;
  --off-grey:#eeeeee;
  --yellow:#f9d806;
    --light-yellow:#ffee80;
    --black:#130f40;
    --light-color:#666;
    --heaven:#fff;
    --whitesmoke:#eee;
    --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
    --border:.1rem solid rgba(0,0,0,.1);
}

*{
  font-family: 'Nunito', sans-serif;
  margin:0; padding:0;
  box-sizing: border-box;
  text-transform: capitalize;
  outline: none; border:none;
  text-decoration: none;
  transition: all .2s linear;
}

*::selection{
  background:var(--theme);
  color:#fff;
}

html{
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-padding-top: 6rem;
  scroll-behavior: smooth;
}

section{
  padding:2rem 9%;
}

/*.heading{
  text-align: center;
  padding:2.5rem 0;
}*/
.heading{
    text-align: center;
    margin-top:80px; 
    padding:2.5rem 0;
    font-size: 3.5rem;
    color:var(--black);
}

.heading span{
    
    color:var(--heaven);
    display: inline-block;
    padding:.5rem 1rem;
    
}
}
.heading  .logo img {
  font-size: 3.5rem;
  background:rgba(255, 165, 0,.2);
  color:var(--theme);
  border-radius: .5rem;
  padding:.2rem 1rem;
  margin-left: 50px;
}

.heading span.space{
  background:none;
}

.btn{
  display: inline-block;
  margin-top: 1rem;
  background:var(--theme);
  color:#fff;
  padding:.8rem 3rem;
  border:.2rem solid var(--theme);
  cursor: pointer;
  font-size: 1.7rem;
}

.btn:hover{
  background:var(--white);
  color:var(--theme);
  
}

header{
  position: fixed;
  top:0; left: 0; right:0;
  background:var(--white);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:1rem 9%;
    -webkit-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
  -moz-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
  box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
}

header .logo img{
  width: 90%;
  height: 40px;
  font-size: 2.5rem;
  font-weight: bolder;
  color:var(--white)
  text-transform: uppercase;
}

header .navbar a{
  color:var(--black);
  font-size: 2rem;
  margin:0 .8rem;
  
  
}

header .navbar a:hover{
  color:var(--theme);
  border-top:  3px solid var(--theme);
  padding-top: 15px;
}

header .icons i{
  font-size: 2.5rem;
  color:var(--black);
  cursor: pointer;
  margin-right: 2rem;
}

header .icons i:hover{
  color:var(--theme);
}

header .search-bar-container{
  position: absolute;
  top:100%; left: 0; right:0;
  padding:1.5rem 2rem;
  background:var(--light-black);
  border-top: .1rem solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  z-index: 1001;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}

header .search-bar-container.active{
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

header .search-bar-container #search-bar{
  width:100%;
  padding:1rem;
  text-transform: none;
  color:#333;
  font-size: 1.7rem;
  border-radius: .5rem;
}

header .search-bar-container label{
  color:var(--white);
  cursor: pointer;
  font-size: 3rem;
  margin-left: 1.5rem;
}

header .search-bar-container label:hover{
  color:var(--theme);
}

#login-btn .btn{
    margin-top: 0;
}

#login-btn i{
    display: none;
    font-size: 2.5rem;
    color:var(--light-color);
}

.header.active{
    padding:2rem 9%;
    box-shadow: var(--box-shadow);
}

#menu-btn{
    font-size: 2.5rem;
    color:var(--light-color);
    display: none;
    cursor: pointer;
}

.header.active{
    box-shadow: var(--box-shadow);
    padding: 2rem 9%;
}

.login-form-container{
    position: fixed;
    top:-105%; left:0;
    height:100%;
    width:100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:rgba(255,255,255,.9);
    z-index: 10000;
    opacity: 0;
}

.login-form-container.active{
    top:0;
    opacity: 1;
}

.login-form-container form{
    margin:2rem;
    text-align: center;
    padding:2rem;
    width:40rem;
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    border:var(--border);
    background: var(--heaven);
}

.login-form-container form .buttons{
    display: flex;
    gap:1rem;
    align-items: center;
}
.login-form-container form .btn{
    display: block;
    width:100%;
    margin:.5rem 0;
}
.login-form-container form .box{
    margin:.7rem 0;
    width: 100%;
    font-size: 1.6rem;
    color:var(--black);
    text-transform: none;
    border:var(--border);
    padding:1rem 1.2rem;
    border-radius: .5rem;
}

}
.login-form-container form h3{
    padding-bottom:1rem;
    font-size: 2.5rem;
    color:var(--black);
    text-transform: uppercase;
}
.login-form-container form p{
    padding:1rem 0;
    font-size: 1.5rem;
    color:var(--light-color);
}
.login-form-container form p a{
    color:var(--theme);
    text-decoration: underline;
}
.login-form-container #close-login-form{
    position: absolute;
    top:1.5rem; right:2.5rem;
    font-size: 5rem;
    color:var(--theme);
    cursor: pointer;
}

#menu-bar{
  color:var(--theme);
  border:.1rem solid var(--theme);
  border-radius: .5rem;
  font-size: 3rem;
  padding:.5rem 1.2rem;
  cursor: pointer;
  display: none;
}

.home{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  position: relative;
  z-index: 0;
}

.home .content{
  text-align: center;
}

.home .content h3{
  font-size: 4.5rem;
  color:#fff;

  text-transform: uppercase;
  text-shadow: 0 .3rem .5rem rgba(0,0,0,.1);
}

.home .content p{
  font-size: 2.5rem;
  color:var(--white);
  padding: 2rem 0;
  letter-spacing:8px;
}

.home .video-container video{
  position: absolute;
  top:0; left: 0;
  z-index: -1;
  height: 100%;
  width:100%;
  object-fit: cover;
}

.home .controls{
  padding:1rem;
  border-radius: 5rem;
  background:rgba(0,0,0,.7);
  position: relative;
  top:10rem;
}

.home .controls .vid-btn{
  height:2rem;
  width:2rem;
  display: inline-block;
  border-radius: 50%;
  background:var(--white);
  cursor: pointer;
  margin:0 .5rem;
}

.home .controls .vid-btn.active{
  background:var(--theme);
}








.parent {
  display: flex;
  font-family: arial, sans-serif;
}

.item {
  width: 50%;
  padding: 2em;
  color: var(--white);
  background: var(--off-grey);
  min-height: 500px;
}
.item img{
  width: 100%;
  border-radius: 2rem;
}
.last {
  color: #222;
  background: var(--off-grey);
}
.last h1{
  padding: 30px;
  font-size: 3.5rem;
  color:var(--theme);
}
.last p{
  font-size: 1.5rem;
    color:var(--black);
    padding:0 30px;
    line-height: 2;
}


@media screen and (max-width: 600px){
  
  .parent {
    flex-direction: column-reverse;  
  }
  
  .item {
    width: auto;
    min-height: 200px;
  }
  
  .last {
    background: off-white;
  }
  .last img{
    height: 300px;
  }
}

.contact .row{
  display: flex;
  flex-wrap: wrap;
  gap:.2rem;
  align-items: center;
  background-color: var(--background);
}

.contact .row .image{
  flex:55rem;
}

.contact .row .image img{
  width:100%;
}
.cont .box{
  display: flex;
  flex-wrap: wrap;
  gap:1.5rem;
  padding:1rem 0;
  flex:1 1 25rem;
}

.cont .box{
  font-size: 2.5rem;
  padding:.7rem 0;
  color:var(--black);
  }

.contact .row form{
  flex:1 1 50rem;
  background-color: var(--white);
  margin-right: 20px;
  padding:2rem;
  box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
  border-radius: .5rem;
}
.contact .row form h1{
  font-size: 40px;
}
.contact .row form .inputBox{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact .row form .inputBox input, .contact .row form textarea{
  width:49%;
  margin:1rem 0;
  padding:1rem;
  font-size: 1.7rem;
  color:var(--black);
  background-color: var(--background);
  text-transform: none;
}
input[type=text], select{
  width: 100%;
  padding: 12px;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
  background-color: var(--background);
}
.contact .row form textarea{
  height: 15rem;
  resize: none;
  width:100%;
}

.brand-container{
  text-align: center;
}






.blogs .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:1.5rem;
}
.blogs .box-container .box{
    overflow: hidden;
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    background:var(--heaven);
    
}

.blogs .box-container .box img{
    height:25rem;
    width:100%;
    object-fit: cover;
}

.blogs .box-container .box .content{
    padding:2rem;
}

.blogs .box-container .box .content .icons{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: var(--border);
}

.blogs .box-container .box .content .icons a{
    color:var(--light-color);
    font-size: 1.5rem;
}

.blogs .box-container .box .content .icons a:hover{
    color:var(--black);
}

.blogs .box-container .box .content .icons a i{
    color:var(--orange);
    padding-right: .5rem;
}

.blogs .box-container .box .content h3{
    line-height: 1.8;
    color:var(--black);
    font-size: 2.2rem;
    padding:.5rem 0;
}

.blogs .box-container .box .content p{
    line-height: 1.8;
    color:var(--light-color);
    font-size: 1.5rem;
    padding:.5rem 0;
}



.footer{
  background:#333;
}


.footer .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 1.5rem;
}

.footer .box-container .box h3 {
  font-size: 2.2rem;
  color: #fff;
  padding: 1rem 0;
}

.footer .box-container .box .links {
  font-size: 1.5rem;
  display: block;
  color: #aaa;
  padding: 1rem 0;
}

.footer .box-container .box .links:hover {
  color: var(--theme);
}

.footer .box-container .box p {
  font-size: 1.5rem;
  color: #aaa;
  padding: 1rem 0;
}

.footer .box-container .box p i {
  padding-right: .5rem;
  color: var(--theme);
}

.footer .box-container .box .share {
  padding: 1rem 0;
}
.footer .box-container .box i:hover{

  transform: rotate(360deg);
}
.footer .box-container .box .share a {
  height: 4.5rem;
  width: 4.5rem;
  line-height: 4.5rem;
  font-size: 1.7rem;
  color: #fff;
  background: #111;
  border-radius: 50%;
  margin-right: .5rem;
  text-align: center;
}

.footer .box-container .box .share a:hover {
  background: var(--theme);
  transform: rotate(360deg);
}

.footer .box-container .box form .email {
  margin-bottom: 1rem;
  width: 100%;
  background: #111;
  padding: 1.2rem;
  font-size: 1.5rem;
  color: #fff;
  text-transform: none;
}

.credit {
  font-size: 2rem;
  text-align: center;
  padding: 2rem;
  color: #fff;
  background: #111;
  line-height: 1.5;
}

.credit span {
  color: var(--theme);
}


.services h3{
  text-align: center;
  font-size: 30px;
  padding-bottom: 10px;
}
.services .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:1.5rem;
}

.services .box-container .box{
    padding:2rem;
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    border:var(--border);
    text-align: center;
}

.services .box-container .box i{
    height:6rem;
    width:6rem;
    line-height: 6rem;
    border-radius: 50%;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background:var(--whitesmoke);
    color:var(--theme);
}

.services .box-container .box h3{
    font-size: 2.2rem;
    color:var(--black);
}

.services .box-container .box p{
    line-height: 1.8;
    padding:1rem 0;
    font-size: 1.4rem;
    color:var(--light-color);
}

.services .box-container .box:hover{
    background: var(--off-grey);
}

.services .box-container .box:hover h3{
    color:var(--black);
}

.services .box-container .box:hover p{
    color:var(--black);
}
.services .box-container .box i:hover{
  background: var(--white);
}


.reviews .review-slider{
    padding-bottom: 3rem;
}

.reviews .review-slider .box{
    text-align: center;
    padding:2rem;
    margin: 2rem 0;
    opacity: .4;
    transform: scale(.9);
}

.reviews .review-slider .swiper-slide-active{
    opacity: 1;
    transform: scale(1);
    box-shadow: var(--box-shadow);
    border:var(--border);
    border-radius: .5rem;
}

.reviews .review-slider .box img{
    height:7rem;
    width:7rem;
    border-radius: 50%;
    object-fit: cover;
}

.reviews .review-slider .box .content p{
    color:var(--light-color);
    font-size: 1.4rem;
    padding:1rem 0;
}

.reviews .review-slider .box .content h3{
    color:var(--black);
    font-size: 2.2rem;
    padding-bottom: .5rem;
}

.reviews .review-slider .box .content .stars i{
    color:var(--theme);
    font-size: 1.7rem;
}
.swiper-pagination-bullet-active{
    background: var(--theme);
}


/* media queries  */

@media (max-width:1200px){

  html{
    font-size: 55%;
  }

@media (max-width:1440px){

  html{
    font-size: 70%;
    
  }

}}

@media (max-width:991px){

  header{
    padding:2rem;
  }

  section{
    padding:2rem;
  }

}

@media (max-width:768px){

  #menu-bar{
    display: initial;
  }

  header .navbar{
    position: absolute;
    top:100%; right:0; left: 0;
    background: #333;
    border-top: .1rem solid rgba(255,255,255,.2);
    padding:1rem 2rem;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }

  header .navbar.active{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  header .navbar a{
    display: block;
    border-radius: .5rem;
    padding:1.5rem;
    margin:1.5rem 0;    
    background:var(--white);
  }

}

@media (max-width:450px){

  html{
    font-size: 50%;
  }

  .heading span{
    font-size: 2.5rem;
  }

  .contact .row form .inputBox input{
    width:100%;
  }

}