@font-face {
    font-family: "iransans";
    src: url(../fonts/irsans_p30download.com.ttf) , format("ttf");
}

body{
    font-family:"iransans";
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
html{
    scroll-behavior: smooth;
}

nav{
    background-color: rgb(9, 44, 199);
    height: 80px;
    width: 100%;


    
}
.blue{
    background-color: rgb(9, 44, 199);
    width: 100%;
    position: fixed;
}


label.logo{
    color: white;
    font-size: 35px;
    line-height: 80px;
    padding: 0 100px;
    font-weight: bold;
    
}

nav ul{
    float: right;
    margin-right: 20px;
}

nav ul li{
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
}

nav ul a li{
    color: white;
    font-size: 17px;
}

a.active , a:hover{
    background: #1b9bff;
    transition: .5s;
}

.checkbtn{
    font-size: 30px;
    color: white;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}

#check{
    display: none;
}

@media (max-width :952px) {
    label.logo{
        font-size: 30px;
        padding-left: 50px;
    }
    nav ul a li{
        font-size: 16px;
    }
    
}

@media (max-width : 858px){
    .checkbtn{
        display: block;
    }
    ul{
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #2c3e50;
        top: 80px;
        left: -100%;
        text-align: center;
        transition: all .5s;
    }
    nav ul li{
        display: block;
        margin: 50px 0;
        line-height: 30px;
    }
    nav ul a li{
        font-size: 20px;
    }
    li:hover,a.active{
        background: none;
        color: #0082e6;
    }
    #check:checked ~ ul{
        left: 0;
    }

}

section{
    background: url(../pics/Gold\ Luxury\ Initial\ Circle\ Logo_20240801_200822_0000.jpg) no-repeat;
    background-size: 100% 100%;
    background-position: center;
    height: calc(100vh - 80px);
    background-attachment: fixed;

}

.containers{
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
    align-items: flex-start;
    padding: 5px 5%;
}
.containers .main-video{
    background:#fff;
    border-radius: 5px;
    padding: 10px;
}
.containers .main-video video{
    width: 100%;
    border-radius: 5px;
}
.containers .main-video .title{
    color: #333;
    font-size: 23px;
    padding-top: 15px;
    padding-bottom: 15px;
}
.containers .video-list{
    background: #fff;
    border-radius: 5px;
    height: 520px;
    overflow-y: scroll;
}
.containers .video-list::-webkit-scrollbar{
    width: 7px;
}
.containers .video-list::-webkit-scrollbar-track{
    background: #ccc;
    border-radius: 50px;
}
.containers .video-list::-webkit-scrollbar-thumb{
    background: #666;
    border-radius: 50px;
}
.containers .video-list .vid video{
    width: 100px;
    border-radius: 5px;
}
.containers .video-list .vid{
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f7f7f7;
    border-radius: 5px;
    margin: 10px;
    padding: 10px;
    border: 1px solid rgba(0,0,0,.1);
    cursor: pointer;
}
.containers .video-list .vid:hover{
    background: #eee;

}
.containers .video-list .vid.active{
    background: #2980b9;  
}
.containers .video-list .vid.active .title{
    color: #fff;
}
.containers .video-list .vid .title{
    color: #333;
    font-size: 17px;
}
@media (max-width:991px){

    .containers{
        grid-template-columns: 1.5fr 1fr;
        padding: 10px;
    }
}

@media (max-width:768px){

    .containers{
        grid-template-columns: 1fr;
    }
}

.section2{
    display: flex;
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

.section2 img{
    width: 250px;
    height: 150px;
    object-fit: cover;
    object-position: center;
    padding: 5px;
}

.section2 img:hover{
    cursor: pointer;
    opacity: 0.5;
    transition: 0.5s;
}

#image_popup{
    width: 400px;
    height: 400px;
    border: 1px solid #333;
    background: #e5e5e5;
    text-align: center;
    box-sizing: border-box;
    padding: 10px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    display: none;
    margin: auto;
    
}

#image_popup img{
    width: 90%;
    height: 90%;

}

#close-btn{
    cursor: pointer;
}

.location{
    height: 320px;
    width: 100%;
    background: linear-gradient(to right , rgb(4, 4, 172) , rgb(6, 134, 134));
}

.contact-us{
    height: 320px;
    width: 100%;
    background: linear-gradient(to right,blue,rgb(75, 209, 157));
}
.about-us{
    height: 220px;
    width: 100%;
    background-color: rgb(9, 44, 199);
    
}

iframe{
    height: 100%;
    width: 100%;
}

.left{
    height: 80%;
    width: 50%;
    display: flex;
    align-items: center;
}

.socialmedias{
    height: 100px;
    width: 100%;
    background-color: rgb(9, 44, 199);
}

.icons a{
    color: white;
    padding: 5px;
}
.icons a:hover{
    color: black;
    text-decoration: none;
    padding: 5px;
    background: none;
}

.footer{
    height: 300px;
    width: 100%;
    background: linear-gradient(to bottom , rgb(139, 137, 137) , rgb(61, 61, 61));
}

.top{
    height: 80%;
    width: 100%;
}
.buttom{
    height: 20%;
    width: 100%;
}

.right-footer{
    height: 100%;
    width: 50%;
}

.left-footer{
    height: 100%;
    width: 50%;
}
.contact-dev a{
    padding: 6px;
    color: white;
}

.contact-dev a:hover{
    color: black;
    text-decoration: none;
    background: none;
}





