@import url('https://fonts.googleapis.com/css2?family=Cardo:wght@400;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   font-family: 'Cardo', serif;
}

ul {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

li,
a {
    list-style: none;
    text-decoration: none;
}

img {
    width: 100%;
}

.common_padding {
    padding: 0 100px;
}

:root {
    --color-black: #242424;
    --color-second: #bebebe;
}
.white{
    color: white;
}
.common_title{
    font-size: 45px;
    font-weight: 600;
    color: var(--color-black);
}
.margin_top{
    margin-top: 80px;
}
.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-12,.col-11{
    padding: 0;
}
/*Header*/
nav{
    z-index: 999;
    position: fixed !important;
    top: 0;
    width: 100%;
}
.nav_bg {
    background-color: transparent;
}
.nav_bg_active{
     background-color: white;
     box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.logo_header {
    width: 140px;
}

.nav_bar .nav-item {
    margin: 0 10px;
}

.nav_bar .nav-link {
    color: white;
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
 
}
.nav_link_active{
    color: black !important;
}
.burger{
    color: white;
    font-size: 40px;
}
.nav_bar .nav-link:hover{
    color: var(--color-second);
}
.nav_bar .nav-link::before {
    content: "";
    position: absolute;
    bottom: 5px;
    width: 0;
    height: 2px;
    background-color: var(--color-black);
    border-radius: 50px;
    transition: 0.5s;
}

.nav_bar .nav-link:hover::before {
    width: 60px;
    background-color: var(--color-second);
}

.contact_btn {
    background-color: var(--color-black);
    color: white;
    border-radius: 5px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
    height: 50px;
    width: 55px;
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact_btn:hover {
    color: white;
    background-color: var(--color-second);
}
.navlink_active{
    color: var(--color-second) !important;
    position: relative;
}
.navbar-toggler{
    border: none;
    box-shadow: none;
    padding: 0;
}
/*Caro*/
.carousel_content{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.common_heading{
    font-weight: 600;
    font-size: 55px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);

}
.know_more_btn{
    background-color: var(--color-black);
    color: white;
    padding: 14px 35px;
    border-radius: 5px;
    margin-top: 10px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    transition: 0.3s;
}
.know_more_btn:hover{
    background-color: var(--color-second);
    color: white;
}
.arrow_btn{
    background-color: var(--color-black);
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    width: 65px;
    height: 60px;
    opacity: 1;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 20px;
    border-radius: 5px;
    transition: 0.4s;
}
.arrow_btn:hover{
    box-shadow: inset 1px 1px 5px rgba(255,255,255,0.5);
}
.carousel-control-prev{
    left: 100px;
}
.carousel-control-next{
    right: 100px;
}
/*Service*/
.relative{
    position: relative;
}
.bg{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: transparent;
    transition: 0.5s;
}
.hover_effect{
    cursor: pointer;
}
.hover_effect:hover .bg{
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: inset 1px 1px 10px rgba(255,255,255,0.5);
}
.content_text{
    background-color: transparent;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    border-bottom: 3px solid white;
    z-index: 99;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}
/*Tabs*/
.bg_common{
    background-color: #F8F8F8;
}
.tabs{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.tabs li{
    font-weight: 500;
    font-size: 18px;
    margin: 0 20px;
    background-color: #F8F8F8;
    color: black;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    flex-wrap: wrap;
    letter-spacing: 1px;
    /* box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5); */
    transition: 0.3s;
}
.tabs li:hover{
    background-color: var(--color-black);
    color: white;
}
.tabs li.active{
    background-color: var(--color-black);
    color: white;
}
.container_off_all{
    display: flex;
    justify-content: center;
    align-items: center;
}
.itemBox{
    margin: 15px;
    overflow: hidden;
    cursor: pointer;
}
.itemBox img{
    transition: 0.4s;
}
.itemBox img:hover{
    transform: scale(1.2);
}
.itemBox img{
    border-radius: 5px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}
.hide{
    display: none;
}
.content_service{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.6);
    height: 0;
    opacity: 0;
    transition: 0.3s;
}
.itemBox:hover .content_service{
    height: 100%;
    opacity: 1;
}
.font_weight{
    font-weight: 600;
}
/*Our Process*/
.process_img{
    width: 100px;
}
.process_a{
    text-decoration: underline;
}
.process_a{
    color: var(--color-second);
}

.logo_width_process{
    width: 120px;
}
.process_title{
    font-size: 26px;
    margin: 5px 0;
}
.common_flex{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.common_bg{
    background-color: #F8F8F8;
}

/*Modal*/
.modal2{
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    display: none;
}
.modal_container{
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    width: 900px;
    height: 600px;
    background-color: white;
    border-radius: 5px;
}
.submit_btn{
    background-color: var(--color-black);
    color: white;
    padding: 8px 25px;
    border-radius: 5px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    transition: 0.5s;
    border: none;
}
.submit_btn:hover{
    transform: scale(1.2);
}
.modal_title{
    font-weight:600;
    font-size: 40px;
}
.form-control{
    border: none;
    background-color: #F8F8F8;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    padding: 11px 10px
}
.form-control:focus{
    border: none !important;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}
.width_100{
    border-radius: 5px 0 0 5px;
    width: 100%;
}
.close_icon_1{
    color: rgb(255, 255, 255);
    position: absolute;
    top: 3rem;
    right: 5rem;
    font-size: 45px !important;
    cursor: pointer;
}

/*Footer*/
footer{
    background-color: #F8F8F8;
}
.logo_width{
    width: 140px;
}
.footer_title{
    font-weight: 600;
}
.quick_links li{
    margin: 10px 0;
}
.quick_links li a{
     color: var(--color-black);
     font-weight: 500;
     transition: 0.3s;
}
.quick_links li a:hover{
    color: var(--color-second);
}
.newsletter{
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 15px;
    border-radius: 5px;
}
.newsletter input{
    border: none;
    outline: none;
    width: 90%;
    padding: 15px;
    border-radius: 5px;
}
.location_circle{
    background-color: var(--color-black);
    color: white;
    border-radius: 5px;
    width: 50px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cursor_pointer{
    cursor: pointer;
}
.location_circle span{
    transition: 0.5s;
}
.cursor_pointer:hover .location_circle span{
  transform: rotate(360deg);
}
.hr{
    margin: 20px 0;
    border: none;
    background-color: white;
    height: 3px;
    opacity: 1;
    width: 100%;
    padding: 0;
}
.social_icons i{
    margin: 0 10px;
    font-size: 20px;
    transition: 0.3s;
    cursor: pointer;
}
.social_icons i:hover{
    transform: scale(1.2);
}
.color_change{
    color: var(--color-second);
}
.display_2{
    display: none;
}
.navbar-toggler:focus{
    box-shadow: none;
}
.justify{
    text-align:justify;
}
@media screen and (max-width: 1200px){
    .common_padding {
        padding: 0 15px;
    }
    .carousel-control-prev{
        left: 15px;
    }
    .carousel-control-next{
        right: 15px;
    }
    .logo_width{
        width: 180px;
    }
   .bg_initial{
        background-color: transparent;
    }
    .common_bg2{
    background-color: #F8F8F8;
    }
}
@media screen and (max-width: 1024px){
    .margin_top{
        margin-top: 60px;
    }
}
@media screen and (max-width: 992px){
    .common_heading{
        font-size: 40px;
    }
    .arrow_btn{
        width: 55px;
        height: 50px;
        font-size: 16px;
    }
    .nav_bar .nav-link {
        justify-content: start;
    }
    .margin_top{
        margin-top: 40px;
    }
    .common_title{
        font-size: 35px;
    }
    .nav_bar .nav-item{
        margin: 0;
    }
    .contact_btn{
        margin-right: 0 !important;
    }
    nav{
        position: sticky !important;
    }
    .nav_bg{
        background-color: white;
        box-shadow: 1px 1px 5px rgba(0,0,0,0.5);
    }
    .burger{
        color: var(--color-black);
    }
    .nav_bar .nav-link{
        color: var(--color-black);
    }
    .burger{
        font-size: 35px !important;
    }
  .close_icon_1{
        top: 3rem;
        right: 15px;
        font-size: 30px !important;
    }
}
@media screen and (max-width: 768px){
    .common_heading{
        font-size: 35px;
    }
    .display_1{
        display: none;
    }
    .display_2{
        display: block
    }
    .arrow_btn{
        width: 40px;
        height: 35px;
        font-size: 12px;
    }
    .content_service h3{
     font-size: 20px;
    }
    .common_title{
        font-size: 30px;
    }
    .content_text{
        font-size: 25px;
    }
    .tabs li{
        margin: 0 10px;
    }
    p{
        font-size: 14px;
    }
    .form-control{
        font-size: 14px;
    }
    .know_more_btn{
        font-size: 12px;
        padding: 10px 15px;
        margin-top: 0px;
    }
    .nav_bar .nav-link{
        font-size: 14px;
    }
      .tabs li{
        font-size: 12px;
        padding: 10px 15px;
    }
    .footer_title{
        font-size: 20px;
    }
    .quick_links li a{
        font-size: 14px;
    }
    .carousel-item img{
        height: 450px;
        width: 100%;
        object-fit: cover;
    }
       .contact_btn {
        width: 40px;
        height: 35px;
    }
    .contact_btn span{
        font-size: 18px;
    }
    .bg_initial{
        background-color: #F8F8F8;
    }
    .common_bg2{
        background-color: transparent;
        }
    .process_title{
        font-size: 20px;
    }
       .width_100{
        width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: 5px 5px 0 0;
    }
    .modal_container{
        width: 90%;
        height: 650px;
    }
    .modal_title{
        font-size: 25px;
    }
    .form-control{
        padding: 8px 10px;
    }
    .submit_btn{
        font-size: 14px;
    }
}
@media screen and (max-width: 716px){
    .tabs{
        row-gap: 25px;
    }
}
@media screen and (max-width: 568px){
       .container_off_all{
      flex-wrap: wrap;
       }
       .margin_top2{
           margin-top: 0px;
       }
       .common_title{
        font-size: 25px;
    }
    .common_heading{
        font-size: 25px;
    }
    .tabs{
        row-gap: 0px;
    }
    .content_text{
        font-size: 20px;
        bottom: 10px;
    }
    .logo_header {
    width: 100px;
}
.navbar-toggler{
    font-size: 16px;
}
    .contact_btn {
        width: 35px;
        height: 30px;
    }
    .contact_btn span{
        font-size: 16px;
    }
    .logo_width {
    width: 120px;
}
.center_center{
    display: flex;
    align-items:center;
    flex-direction: column;
    text-align:center;
}
.align{
    text-align: center;
}
.location{
    display: flex;
    align-items:center;
}
.cursor_pointer{
    text-align: start;
}
.location_circle{
    width: 35px;
    height: 30px;
}
.location_circle span{
    font-size: 16px;
}
.font_small_1{
    font-size: 18px;
    margin: 0;
}
 .process_title{
        font-size: 18px;
    }
    .logo_width_process {
    width: 50px;
}
.modal_container{
    height: 400px;
}
.width_100{
    height: 100px;
}
.bg_active{
    background-image: url("/studio_new/imgs/modal_img.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}
.modal_title{
    color: white;
    font-weight: 500;
}
.form-control{
    font-size: 12px;
}
.submit_btn{
    font-size: 12px;
}
.process_title {
    font-size: 16px;
    line-height: 18px;
    margin-top: 10px;
}
p{
    font-size: 12px;
}
}
@media screen and (max-width: 429px){
    .tabs li {
        font-size: 10px;
        padding: 6px 10px;
    }
}
@media screen and (max-width: 412px){
    .common_heading{
        font-size: 20px;
        width: 100%;
        text-align: center;
    }
    .contact_btn {
    font-size: 10px;
}
.logo_header {
    width: 80px;
}
.arrow_btn {
    width: 32px;
    height: 26px;
    font-size: 8px;
}
.carousel-item img{
    height: 100vh;
}
}
@media screen and (max-width: 300px){
    .location{
        flex-wrap: wrap;
        align-items:center;
        justify-content:center;
        row-gap:10px;
    }
}
/*Banner*/
.intro-section{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.hero-content-1{
    color: white;
}
.title{
    color: white;
}
.main-slider-nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 55px;
    background-color: #242424;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.3);
    z-index: 99;
}
.home-slider-prev{
    left: 100px
}
.home-slider-next{
    right: 100px;
}
