section.hero{
    height: fit-content;
    padding: 40px 0;
    .conference-ad{
        background-repeat: repeat-y;
        .darkner-bg{
            opacity: .75;
        }
    }
}

section.live-streams{
    padding: 48px 0;
    .container{
        gap: 61px;
    }
    .youtube{
        display: flex;
        flex-direction: column;
        gap: 12px;
        .title{
            img{
                height: 25px;
            }
        }
        .frame{
            display: grid;
            place-content: center;
            background: #f2f2f2;
            border-radius: 25px;
            height: 39vw;
        }
    }
    .facebook{
        display: flex;
        flex-direction: column;
        gap: 12px;
        .title{
            img{
                height: 25px;
            }
        }
        .frame{
            display: grid;
            place-content: center;
            background: #f2f2f2;
            border-radius: 25px;
            height: 39vw;
        }
    }
    .telegram{
        display: flex;
        flex-direction: column;
        gap: 12px;
        .title{
            display: flex;
            align-items: center;
            img{
                height: 39px;
            }
            span{
                font-weight: 600;
                font-size: 25px;
            }
        }
        .frame{
            display: grid;
            place-content: center;
            background: #f2f2f2;
            border-radius: 25px;
            height: 10vw;
        }
    }
}
section.conference-details-bannner{
    display: grid;
    grid-template-columns: 100%;

    .address-date{
        text-align: center;
        padding: 48px 16px;
        background-color: aqua;

        .venue{
            font-size: 46px;
            font-weight: 700;
        }
        .address{
            font-size: 26px;
            font-weight: 300;
        }
        .date{
            font-size: 28px;
            font-weight: 500;
        }
    }
    .countdown{
        display: grid;
        place-items: center;
        padding: 48px 16px;
        // padding: 0 16px;

        .countdown-container{
            text-align: center;
            display: flex;
            width: 90%;
            justify-content: space-between;
        }
        .days, .hours, .minutes, .seconds{
            .figure{
                font-size: 60px;
                font-weight: 600;
            }
            .desc{
                font-weight: 600;
            }
        }
        .separator{
            font-size: 60px;
            font-weight: 600;
            opacity: .5;
        }
    }
}
section.about-us{
    .container{
        grid-template-columns: 100%;
        background: url("/assets/images/2022/306525908_4732739626828707_5692566038213108782_n.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;

        .left-col{
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: #000;
            opacity: .6;
            z-index: 0;
        }
        .right-col{
            z-index: 1;
            .heading{
                color: #fff;
            }

            .text{
                color: #fff;
            }

            .c-t-a{
                &:hover{
                    color: #fad03b;
                    border-color: #fad03b;
                }
            }
        }
    }

    
}
section.contact{
    display: grid;
    grid-template-columns: 100%;
    background-color: #fff;
    .left-col{
        display: none;
    }
    .right-col{
        padding: 40px 16px;
        .heading{
            margin-bottom: 20px;
        }

        form{
            width: 100%;
            input, button, textarea{
                border: none;
                outline: none;
                border-radius: 4px;
            }
            input:focus, textarea:focus{
                outline: 1px solid #fad03b;
            }
            label{
                margin-bottom: 8px;
            }
            .form-group{
                width: 100%;
                &.name-email{
                    display: flex;
                    justify-content: space-between;
                    margin-bottom: 26px;
                }
                &.name{
                    width: calc(50% - 8px);
                    label{
                        display: block;
                    }
                    input{
                        width: 100%;
                        background-color: #f5f5f5;
                        padding: 8px;
                        min-height: 44px;
                    }
                }
                &.email{
                    width: calc(50% - 8px);
                    label{
                        display: block;
                    }
                    input{
                        width: 100%;
                        background-color: #f5f5f5;
                        padding: 8px;
                        min-height: 44px;
                    }
                }
                &.subject{
                    margin-bottom: 26px;
                    label{
                        display: block;
                    }
                    input{
                        width: 100%;
                        background-color: #f5f5f5;
                        padding: 8px;
                        min-height: 44px;
                    }
                }
                &.message{
                    margin-bottom: 16px;
                    label{
                        display: block;
                    }
                    textarea{
                        width: 100%;
                        background-color: #f5f5f5;
                        padding: 8px;
                    }
                }
                &.submit{
                    button{
                        font-family: 'Roboto', sans-serif;
                        font-size: 15px;
                        font-weight: 700;
                        padding: 5px 32px;
                        background: #444444;
                        border-radius: 4px;
                        background: #fad03b;
                        min-height: 55px;
                        display: inline-flex;
                        place-items: center;
                        border: 2px solid #fad03b;
                        transition: all .2s ease-out;
                        text-transform: uppercase;
                
                        &:hover{
                            background-color: #111111;
                            color: #fff;
                            border-color: #111111;
                
                        }
                    }
                }
            }
        }
    }
}
footer{
    background: #111111;
    *, *:hover{
        text-transform: unset;
    }
    .container{
        display: grid;
        grid-template-columns: 100%;
        gap: 36px;
        padding: 40px 0 60px 0;
    }
    .sub-head{
        color: #fff;
        font-size: 26px;
        font-weight: 600;
        margin-bottom: 20px;
    }
    .list{
        color: #bfbfbf;
        display: grid;
        grid-template-columns: 100%;
        gap: 12px;
        margin-left: 10px;
        a{
            font-size: 16px;
            font-weight: 400;
            transition: all .3s ease-out;
            &:hover{
                color: #fad03b;
            }
        }
    }
    ul{
        list-style-type: none;
    }
    .sec-1, .sec-2, .sec-3, .sec-4{
        width: 100%;
    }
    .sec-1{
        ul{
            margin-bottom: 20px
        }
        .social-spaces{
            h4{
                color: #fff;
            }
            ul{
                display: flex;
                margin-left: 10px;
                gap: 16px;
                a{
                    color: #bfbfbf;
                    font-size: 24px;
                    transition: all .3s ease-out;

                    &:hover{
                        color: #fff;
                    }
                }
            }
        }
    }
    .sec-4{
        form{
            width: 100%;
            margin-bottom: 40px;
            p{
                font-size: 15px;
                color: #bfbfbf;
                margin-bottom: 24px;
                line-height: 160%;
            }
            .input-field{
                background-color: #404344;
                border-radius: 50px;
                display: inline-flex;
                align-items: center;
                justify-content: space-between;
                padding-right: 6px;
                width: 100%;
                input{
                    width: 100%;
                    padding: 16px;
                    background: none;
                    font-size: 16px;
                    color: #a9a9a9;
                    border: none;
                    outline: none;
                    width: 60%;
                    overflow: hidden;
                    
                    &:focus{
                        border: none;
                    }
                }

                button{
                    height: 40px;
                    color: #111111;
                    background-color: #fad03b;
                    padding: 0 20px;
                    border-radius: 50px;
                    border: 2px solid #fad03b;

                    i{
                        font-size: 16px;
                        font-weight: 600;
                    }

                    &:hover{
                        background: none;
                        color: #fad03b;
                    }
                }
            }
        }

    }

    .copyright{
        color: #bfbfbf;
        font-size: 15px;
        display: grid;
        place-content: center;
        padding: 16px 0;
        width: 90%;
        margin: auto;
        border-top: 1px solid #404344;
    }
}