*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif, Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    background: #fff;
    color: #212121;
}
#header{
    width: 100%;
    height: 100vh;
    background-image: url(images/hero-background.jpg);
    background-size: cover;
    background-position: center;
}
/*****Nav*****/
.nav-container{
    padding: 10px 10%;
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
    position: relative;
    align-items: center;
}
nav ul li a{
    color: #c0c0c0;
    text-shadow: 2px 2px #252525;
    text-decoration: none;
    font-size: 32px;
    font-weight: 600;
    position: relative;
}
nav ul li a::after{
    content: '';
    width: 0; 
    height: 3px;
    background: #bb0000;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}
nav ul li a:hover::after{
    width: 100%;
}

/*****Header-text*****/
.header-text{
    margin-top: 20%;
    font-size: 32px; 
    color: #c0c0c0;
    text-shadow: 2px 2px #212121;
}
.header-text h1{
    font-size: 58px;
    margin-top: 20px;
    color: #bb0000;
    text-shadow: 2px 2px #212121;
}
.header-text h1 span{
    color: #9a0000;
}


/****2-col-img-txt****/
.img-txt-container{
    padding: 10px 10%;
}
#2-col-img-txt{
    padding: 80px 0;
    color: #000;
}
.img-txt-row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
}

.img-txt-col-1{
    flex-basis: 40%;
}
.img-txt-col-1 img{
    width: 100%;
    border-radius: 15px;
}
.img-txt-col-2{
    flex-basis: 50%;
}
.img-txt-sub-title{
    font-size: 60px;
    font-weight: 600;
    color: #bb0000;
    margin-bottom: 30px;
}  
.img-txt-col-2 p{
    font-size: 32px;
}


/*****Tab titles*****/
.about-sec{
    flex-basis: 100%;
    margin-top: 50px;
    text-align: center;
    background: #c0c0c0;
}
.tab-sub-title{
    font-size: 60px;
    font-weight: 600;
    color: #bb0000;
    margin: 20px 80px;
}  
.tab-titles{
    display: flex;
    position: relative;
    margin: 20px 100px;  
    color: #212121;
}
.tab-links{
    margin-right: 50px;
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}
.tab-links::after{
    content: '';
    width: 0;
    height: 3px;
    background: #bb0000;
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.5s;
}
.tab-links.active-link::after{
    width: 100%;
}
.tab-contents ul li{
    list-style: none;
    margin: 30px 80px;
    font-size: 24px;
}
.tab-contents ul li span{
    color: #bb0000;
    font-weight: 500;
    font-size: 32px;
}
.tab-contents ul li a{
    text-decoration: none;
    color: #bb0000;
}
.tab-contents{
    display: none;
}
.tab-contents.active-tab{
    display: block;
}

/*****2-col-img*****/
.col-img-container{
    padding: 10px 10%;
}
#2-col-img{
    padding: 80px 0;
    color: #000;
}
.two-img-row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 50px 0;
}
.two-img-col-1{
    flex-basis: 45%;
}
.two-img-col-1 img{
    width: 100%;
    height: 400px;
    border-radius: 15px;
}
.two-img-col-2{
    flex-basis: 45%;
}
.two-img-col-2 img{
    width: 100%;
    height: 400px;
    border-radius: 15px;
}

/*****Social-sec*****/
.social-sec{
    background: #c0c0c0;
    height: 520px;
}
.social-icons{
    margin-top: 30px;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
}
.social-icons a{
    text-decoration: none;
    font-size: 280px;
    margin: 0 75px;
    color: #fff;
    display: inline-block;
    transition: transform 0.5s;
    margin-left: 0;
    padding-left: 0;
}
.social-icons a:hover{
    color: #fff;
    transform: translateY(-5px);
}
#youtube{
    color: #CD201F;
}
#instagram{
    margin-left: 30px;
    color: transparent;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background: -webkit-radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background-clip: text;
    -webkit-background-clip: text;
}
#tiktok{
    margin-left: 30px;
    color: #111111;
    filter: drop-shadow(2px 0px 0px #FD3E3E) drop-shadow(-2px -2px 0px #4DE8F4);
}

/*****Contact-form*****/
.contact-container{
    padding: 10px 10%;
}
.contact-right{
    flex-basis: 100%;
    margin: 50px 0;
}
.btn.btn2{
    display: inline-block;
    background: #bb0000;
    color: #c0c0c0;
    border-radius: 18px;
    position: relative;
    left: 44%;
}
.content-right form{
    width: 100%;
}
form input, form textarea{
    width: 100%;
    border: 0;
    outline: none;
    background: #c0c0c0;
    padding: 15px;
    margin: 15px 0;
    color: #212121;
    font-size: 18px;
    border-radius: 6px;
    text-align: center;
}
form .btn2{
    padding: 14px 60px;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
}

hr{
    border-top: 3px solid #bb0000;
    border-bottom: 3px solid #bb0000;
}


/*****Mobile CSS*****/
nav .fa-solid{
    display: none;
}
@media only screen and (max-width: 600px){
    /*****nav mobile*****/
    nav .fa-solid{
        display: block;
        font-size: 40px;
        margin-right: 40px;
        color: #c0c0c0;
    }
    nav ul{
        background: #bb0000;
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 70px;
        z-index: 2; 
        transition: left 0.5s;
    }
    nav ul li{
        display: block;
        padding-left: 30px;
    }
    nav ul .fa-solid{
        position: absolute;
        top: 25px;
        left: 25px;
        cursor: pointer;
    }
    /*hero*/
    .header-text {
        font-size: 24px;
      }
    .header-text h1{
        font-size: 40px;
        margin-top: 200px;
    }
    /*2-col-img-txt mobile*/
    .img-txt-col-1{
        flex-basis: 100%;
    }
    .img-txt-col-1 img{
        width: 100%;
        height: auto;
        display: block;
    }
    .img-txt-col-2{
        flex-basis: 100%;
    }
    .img-txt-sub-title{
        font-size: 60px;
        margin: 20 30px;
    }
    .img-txt-col-2 p{
        font-size: 22px;
        color: #212121;
        margin: 0;
    }
    /*****Tab titles Mobile*****/
    .tab-titles{
        display: flex;
        position: relative;
        margin: 20px 5px;  
        color: #212121;
        /* left: 30px; */
    }
    .tab-links{
        margin-bottom: 20px;
        font-size: 32px;
        font-weight: 500;
        cursor: pointer;
        position: relative;
    }
    .tab-contents ul li{
        list-style: none;
        margin: 30px 20px;
        font-size: 24px;
    }
    /*****2-col-img Mobile*****/
    .col-img-container{
        padding: 0;
    }
    #2-col-img{
        padding: 80px 0;
        color: #000;
    }
    .two-img-col-1{
        flex-basis: 100%;
        margin: 15px 0;
    }
    .two-img-col-2{
        flex-basis: 100%;
        margin: 15px 0;
    }
    .two-img-col-1 img{
        width: 100%;
        height: 400px;
        border-radius: 0px;
    }
    .two-img-col-2 img{
        width: 100%;
        height: 400px;
        border-radius: 0px;
    }
    /*****Social-sec Mobile*****/
    .social-sec{
        background: #c0c0c0;
        height: auto;
    }
    .social-icons{
        margin-left: 15px;
        margin-top: 30px;
        margin-bottom: 30px;
        text-align: center;
        padding-top: 0;
        padding-bottom: 0;
    }
    .social-icons a{
        text-decoration: none;
        font-size: 280px;
        margin: 0 0px;
        color: #fff;
        display: inline-block;
        transition: transform 0.5s;
        margin-left: 0;
        padding-left: 0;
    }
    /*****Contact-form Mobile*****/
    .contact-container{
        padding: 0;
    }
    .contact-right{
        flex-basis: 100%;
        margin: 50px 0;
    }
    .btn.btn2{
        display: inline-block;
        background: #bb0000;
        color: #c0c0c0;
        border-radius: 18px;
        position: relative;
        left: 30%;
    }
    .content-right form{
        width: 100%;
    }
    form .btn2{
        padding: 14px 60px;
        font-size: 18px;
        margin-top: 20px;
        cursor: pointer;
    }
}