:root{
    --brand: #151724;
    --accent: #f6338a;
    --bg-light: #f4f4f4;
}

a{
    color: var(--brand);
    text-decoration: none;
}

img{
    width: 100%;
}

ul{
    padding-left: 0;
}

li{
    list-style: none;
}

a:hover{
    color: var(--brand);
    text-decoration: none;
}

.text-brand{
    color: var(--brand);
}

.text-accent{
    color: var(--accent);
}

.bg-brand{
    background-color: var(--brand);
}

.bg-accent{
    background-color: var(--accent);
}

.navbar{
    width: 100%;
    height: 70px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: var(--brand);
    color: #fff;
    padding: 0 16px;
}

.navbar .logo_img{
    width: 70px;
}

.navbar .navbar-brand{
    display: flex;
}

.navbar .name{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.navbar .name .main{
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    padding: 0;
    line-height: 1.2;
}

.navbar .name .sub{
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    padding: 0;
}

.navbar .menu{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    font-weight: 500;
}

.navbar .menu .nav-link{
    color: #FFF;
}

.navbar .menu .nav-link:is(:hover, :active){
    color: var(--accent);
}

.drawer{
    display: none;
}

.navbar .number{
    font-size: 16px;
    font-weight: 700;
    margin-left: 6px;
    color: var(--accent);
}

.navbar .number a,
.navbar .number a:hover{
    color: var(--accent);
}

.btn-menu{
    display: none;
}


/* cover section */

.cover{
    width: 100%;
    height: calc(100vh - 70px);
    background-image: url('img/cover_1_hr.jpg');
    background-size: cover;
}

.cover .cover-in{
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
}

.cover-in .cvr-in-dtls{
    color: #fff;
    padding-top: 80px;
    max-width: 800px;
    margin: auto;
    text-align: center;
} 

.cvr-in-dtls .welcome{
   font-size: 18px;
   font-weight: 400;
   text-transform: uppercase;
   color: var(--accent);
}

.cvr-in-dtls .tagline{
    font-size: 60px;
    font-weight: 800;
    /* color: var(--accent); */
    color: #FFF;
    margin-bottom: 20px;
    font-family: 'Dancing Script', cursive;
 }

 .cvr-in-dtls .intro{
    font-size: 16px;
    font-weight: 500;
    opacity: 0.8;
    margin-bottom: 50px;
 }

 .cvr-in-dtls .btn-contact{
    font-size: 18px;
    font-weight: 600;
    padding: 12px 30px;
    margin-top: 30px;
    color: #fff;
    background-color: var(--accent);
    border: none;
    text-transform: uppercase;
    border-radius: 3px;
 }
 
/* about */

.about{
    background-color: var(--bg-light);
    padding: 100px 16px 40px 16px;
}

.about .main-heading{
    font-size: 20px;
    font-weight: 600;
    display: inline;
    text-align: center;
    text-transform: uppercase;
    border-bottom: 5px solid var(--accent);
}

.img-con-out{
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.img-con{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.img-con .img-1{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
}

.img-con .img-1-bg{
    width: 100%;
    height: 100%;
    position: absolute;
    top: -30px;
    left: -30px;
    background-color: #f6f6f6;
    border: 2px solid var(--accent);
}

.about .headline{
    font-weight: 700;
    font-size: 40px;
    text-transform: uppercase;
}

.obj-con{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    margin: 50px auto;
}

.obj-con .obj{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px;
    background-color: #fff;
    box-shadow: 3px 5px 25px rgba(0,0,0,0.05);
    max-width: 350px;
    flex: 1;
    text-align: center;
}

.obj-con .obj .icon{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    color: var(--accent);
    border-radius: 50%;
    margin-bottom: 20px;
}

.obj-con .obj .heading{
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent);
}

.obj-con .obj .desc{
    font-size: 16px;
    font-weight: 400;
    color: rgba(0,0,0,0.6);
}


.obj-con .box-2{
    margin-left: 16px;
}


/* menus */
.menus{
    width: 100%;
}

.menus .menu-cover{
    width: 100%;
    height: 70vh;
    background-image: url('img/cover_2_hr.jpg');
    background-size: cover;
    position: absolute;
}

.menu-cover .overlay{
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    position: absolute;
    top: 0;
    left: 0;
}

.menus .menus-in{
    position: relative;
    padding: 40px 0 40px 16px;
    text-align: center;
}

.serv-des{
    text-align: left;
    max-width: 800px;
    color: rgba(255, 255, 255, 0.8);
}

.menus-in .main-heading{
    font-size: 20px;
    font-weight: 600;
    color: #FFF;
    border-bottom: 5px solid var(--accent);
    text-align: center;
    display: inline;
    text-transform: uppercase;
}

.menus .menus-list{
    margin-top: 50px;
    overflow-x: auto;
    padding-bottom: 16px;
}

.menus .menus-list::-webkit-scrollbar{
    width: 3px;
    height: 3px;
    background-color: rgba(0,0,0,0.05);
    border-radius: 1px;
}

.menus .menus-list::-webkit-scrollbar-thumb{
    width: 3px;
    height: 3px;
    /* background-color: rgba(0,0,0,0.1); */
    background-color: var(--accent);
    border-radius: 1px;
}

.menu-card{
    border-radius: 8px;
    background-color: #fdfdfd;
    margin: 0 16px;
    width: 240px;
    min-width: 240px;
    box-shadow: 3px 5px 25px rgba(0,0,0,0.05);
}

.menu-card .menu-img{
    padding-top: 120%;
    position: relative;
    overflow: hidden;
}

.menu-card .menu-img img{
    border-radius: 8px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    object-fit: cover;
}

.menu-card .heading{
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent);
    margin: 20px 0;
} 

.menu-card ul li{
    padding: 8px;
    font-size: 16px;
    color: rgba(0,0,0,0.6);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    text-align: left;
}

.menu-card ul li i{
    width: 20px;
    height: 20px;
    margin-right: 12px;
    color: var(--accent);
    font-size: 16px;
}

.menu-card .btn-expand{
    cursor: pointer;
}

.off-card{
    padding: 16px;
    box-shadow: 5px 5px 20px #fff4f9;
    border-radius: 3px;
    background-color: #fff4f9;
    margin-bottom: 24px;
}

.off-card img{
    width: 80px;
    color: var(--accent);
    margin: 24px auto;
}

/* equipment */

.equipment{
    padding: 16px;
    margin: 50px 0 0 0;
    background-color: var(--brand);
    /* background-image: radial-gradient(#0c68c4, #0e1821); */
    text-align: center;
}


.equipment .main-heading{
    font-size: 30px;
    font-weight: 600;
    display: inline;
    color: var(--brand);
    text-align: left;
    text-transform: uppercase;
    margin: auto;
    color: #fff;
}

.equipment .intro{
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.equipment-list{
    overflow-x: auto;
    padding-bottom: 16px;
}

.equipment-list .menu-card ul li{
    border: none;
}

.equipment-list::-webkit-scrollbar{
    width: 3px;
    height: 3px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 1px;
}

.equipment-list::-webkit-scrollbar-thumb{
    width: 3px;
    height: 3px;
    background-color: rgba(255,255,255,0.3);
    border-radius: 1px;
}

.rev-card{
    width: 100%;
    padding-top: 180%;
    position: relative;
}

.rev-card .card-in{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    /* height: 100%; */
    overflow: hidden;
}

/* .rev-card .card-in img{
    width: 100%;
} */

#rev-card-1{
    background-image: url('img/review_1.png');
    background-size: cover;
}

#rev-card-2{
    background-image: url('img/review_2.png');
    background-size: cover;
}

#rev-card-3{
    background-image: url('img/review_3.png');
    background-size: cover;
}

.rev-card .card-in .btn-play{ 
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #fff;
    padding: 24px;
    border-radius: 50%;
}

.rev-card .card-in .video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}
.rev-card .card-in .video iframe,
.rev-card .card-in .video video{
    width: 100%;
    height: 100%;
}

/* work */

.work{
    background-color: var(--bg-light);
}

.work-in{
    padding: 50px 50px 50px 30px;
    text-align: left;
}

.work-in .main-heading{
    font-size: 30px;
    font-weight: 600;
    display: inline;
    color: var(--brand);
    /* border-bottom: 5px solid var(--accent); */
    text-align: left;
    text-transform: uppercase;
    margin: auto;
}

.work-list{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    overflow-x: auto;
    padding: 30px 0;
    text-align: center;
}

.work-list::-webkit-scrollbar{
    width: 3px;
    height: 3px;
    background-color: rgba(0,0,0,0.1);
    border-radius: 1px;
}

.work-list::-webkit-scrollbar-thumb{
    width: 3px;
    height: 3px;
    background-color: rgba(0,0,0,0.3);
    border-radius: 1px;
}

.work-list .work-card{
    border-radius: 3px;
    width: 100%;
    padding: 16px;
}

.work-card .w-card-img{
    width: 100%;
    padding-top: 66.66%;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    background-color: #000000e0;
}

.work-card .w-card-img img{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    object-fit: cover;
    transition: transform .3s;
}

.work-card .w-card-img img:hover{
   transform: scale(1.2);
}

.work-list .work-card .name{
    margin: 12px;
}


/* contact form */

.contact{
    background-color: #1b1b1d;
    color: #FFF;
}

.contact-in{
    padding: 40px 16px;
    text-align: center;
}

.contact-in .main-heading{
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    display: inline;
    text-align: center;
    text-transform: uppercase;
    border-bottom: 5px solid var(--accent);
}

.cont-sec-1{
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
}

.cont-sec-1 img{
    width: 60px;
}

.cont-sec-1 h6{
    margin: 0;
}

.cont-sec-1 span{
    font-size: 12px;
    text-transform: uppercase;
    text-align: right;
}

.social-links{
  display: flex;
  margin-top: 24px;
}

.social-links li{
    border: 1px solid var(--accent);
    padding: 12px 14px;
    display: flex;
    justify-content: center;
    align-self: center;
    color: var(--accent);
    margin-right: 24px;
}

.social-links li:hover{
    color: #fff;
    background-color: var(--accent);
}

.contact-in .con-enq .name{
    font-size: 16px;
    font-weight: 600;
    color:#ffffffb8;
    margin-top: 16px;
    text-transform: uppercase;
}

.contact-in .con-enq a{
    font-size: 16px;
    color:#ffffffb8;
    display: block;
    cursor: pointer;
}

.contact-in .con-enq .address{
    margin-top: 16px;
    color: #ffffffb8;
}


.form-cont{
    max-width: 400px;
    margin: auto;
}

input, textarea{
    width: 100%;
    border: 2px solid rgb(219, 151, 5);
    padding: 8px 12px;
    margin-bottom: 16px;
    background: none;
    border-radius: 3px;
    color: #FFF;
    font-size: 14px;
}

input:focus, textarea:focus{
  outline: none;
  background: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    color: #FFF;
    -webkit-text-fill-color: #FFF;
    background-clip: text !important;
    -webkit-background-clip: text !important;
}

input::placeholder, textarea::placeholder{
    color: rgba(255, 255, 255, 0.883);
}

.btn-send{
  font-size: 14px;
  padding: 8px 20px;
  color: #FFF;
  background: none;
  border: 2px solid rgb(219, 151, 5);
  outline: none;
  border-radius: 3px;
}

.btn-send:hover, .btn-send:active{
    color: #FFF;
    background-color: #F00;
}

.res-cont{
  margin-top: 30px;
}

.form_res{
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 8px 16px;
  border-radius: 5px;
  color: #FFF;
}

.res_progress{
  background-color: #ffb74d;
}

.res_success{
  background-color: #02df0d;
}

.res_error{
  background-color: #ff4d4d;
}

footer{
    padding: 24px;
    background-color: #000;
}

footer .cp-text{
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin: 0;
}

@media (max-width : 768px) {

    .navbar .logo_img{
        width: 60px;
    }
    
    .navbar .navbar-brand{
        font-size: 14px;
        display: flex;
    }
     
    .navbar .name .main{
        font-size: 14px;
    }

    .navbar .name .sub{
        font-size: 10px;
    }

    .navbar .menu{
        display: none;
    }

    .btn-menu{
        display: inline-block;
        background: none;
        border: none;
        color: #fff;
        font-size: 20px;
        padding: 2px 10px;
        width: 40px;
        height: 40px;
    }

    .btn-menu:is(:active, :focus){
        border: none;
        outline: none;
        background-color: rgba(255, 255, 255, 0.1);
    }

    .drawer{
        display: block;
        position: absolute;
        top: 70px;
        right: 16px;
        z-index: 2;
        background-color: var(--accent);
        border-bottom: 1 px solid var(--brand);
        border-radius: 5px;
    }

    .drawer ul li{
        border-bottom: 1px solid rgba(0,0,0,0.2);
    }

    .drawer ul li .nav-link{
        color: #FFF;
        font-size: 16px;
        font-weight: 500;
    }

    .drawer ul li:hover{
        background-color: var(--accent);
        border-bottom: 1px solid rgba(0,0,0,0.2);
    }

    .cover{
        width: 100%;
        height: calc(100vh - 70px);
        background-image: url('img/cover_1.jpg');
        background-size: cover;
    }

    .cover-in .cvr-in-dtls{
        padding: 100px 16px;
    }

    .obj-con{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 40px auto;
    }

    .obj-con .box-2{
        margin-left: 0px;
        margin-top: 16px;
    }

    .menus .menu-cover{    
        height: 83vh;
    }

    .menu-card{
        width: 180px;
        min-width: 180px;
    }

    .work-in{
        padding: 50px 16px 50px 16px;
    }

    .work-list{
        padding: 0;
    }

    .work-list .work-card{
        width: 100%;
        padding: 8px 0;
        /* margin: 8px 0px; */
    }
    
    .work-card .w-card-img{
        width: 100%;
    }

    input, textarea{
        padding: 8px 12px;
        margin-bottom: 16px;
        font-size: 16px;
    }

    .btn-send{
        font-size: 16px;
        padding: 8px 20px;
    }
  
}

