@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


*{
    margin : 0;
    padding : 0;
    text-decoration : none;
    font-family : 'Roboto'
}
a{
    cursor: pointer;
}
.container{
    max-width : 1080px;
    padding : 40px;
    margin : 0 auto;
}
.header-container{
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom : 1px solid #808080;
    padding: 30px 0px 10px;
}
.header{
    background: #ffffff;
    display: flex;
    gap : 40px;
    align-items: center;
}
.header .logo{
    width : 130px;
}
.header .logo img{
    width : 100%;
    height : 100%;
    object-fit: contain;
}
.annoucment-panel{
    display : flex;
    gap : 10px;
}
.footer .container .footer_logo img {
    width: 100%;
}
.header .annoucment-panel .nav_links{
    font-size : 18px;
    color : #000;
    font-weight : 400;
    position: relative;
    padding: 5px 25px;
    text-align: center;
}
.header .annoucment-panel .nav_links:after{
    content : '';
    width : 0%;
    position: absolute;
    height: 100%;
    top : 0;
    left : 0;
    border-bottom : 2px solid #7ed214;
}
.header .annoucment-panel .nav_links:hover{
    text-decoration: none;
}
.header .annoucment-panel .nav_links:hover.nav_links:after{
    width : 100%;
    transition: all 0.4s ease-in-out;
}
.header .annoucment-panel a:active{
    border-bottom : 1px solid #7ed214;
}
.header .navbar_icon{
    display : none;
}
.active_link{
    border-bottom: 2px solid #7ed214;
}


.faq {
    margin-bottom: 80px;
    margin-top: 30px;
}

main .middle_content h2{
    padding: 40px 30px;
    font-size: 64px;
    text-align: center;
}


body .input_button_box .form_container h2{
    font-size : 30px;
    padding : 30px 0;
}
.input_button_container{
    display : flex;
    justify-content: space-between;
    max-width : 800px;
    margin : 0 auto;
}
.download_btn{
    width: 160px;
    padding: 0px;
    background: #7ed214;
    background: rgb(221, 243, 34);
    background: linear-gradient(90deg, rgba(221, 243, 34, 1) 25%, rgba(228, 217, 27, 1) 70%);
    color: #000;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    border : 0px;
    cursor: pointer;
}
.download_btn:after{
    content : '';
    position: absolute;
    width : 0%;
    height : 100%;
    top :0;
    left : 0;
    background-color: #00000021;
    visibility: hidden;
    z-index : 5;
}
.download_btn:hover.download_btn:after{
    visibility: visible;
    width : 100%;
    transition: all 0.5s ease-in-out;
}
.inner_btn{
    height : 100%;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    background-color: transparent;
    border : 0px;
    margin : 0 auto;
    width : 100%;
    z-index : 5;
}
body .input_button_box .form_container .input_button_container input{
    width: 79%;
    padding: 10px 12px;
    border: 2px solid #7ed214;
}
body .input_button_box .form_container .input_button_container input:focus{
    outline : none;
}
.extra_links{
    max-width : 800px;
    margin : 5px auto;
    font-size : 15px;
}
.extra_links a{
    color : blue;
    text-decoration: underline;
    padding : 5px 0;
    font-size : 15px;
}
.yt-icons_box{
    display : flex;
    justify-content: space-between;
}
.yt-icons_box .icon-text{
    display : flex;
    width : 24%;
    background-color: #7ed2142e;
    border-radius : 8px;
    align-items: center;
    gap : 20px;
    padding : 10px 20px;
}
.yt-icons_box .icon-text img{
    width : 35px;
}

/* facebook  */
.facebook_container .title h1{
    font-size : 30px;
    padding : 0 0 20px;
    font-weight : 700;
}
.facebook_container .input_button_container .input-group-btn{
    display : flex;
}
.facebook_container .input_button_container .form-control{
    border: 2px solid #7ed214;
    padding: 20px 5px;
}
.facebook_container .input_button_container .form-control:focus{
    outline : none;
    box-shadow : none;
}
.yt-icons_box .icon-text h3 {
    font-size: 16px;
    color: #000;
    font-weight: normal;
    margin: 0;
}
.yt-icons_box {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

/* facebook response */
#downloadUrl,
.videoDownloadBtns{
    max-width : 800px;
    margin :  auto;
}

#downloadUrl .title_result,
.videoDownloadBtns .title_result{
    background-color : #80808042!important;
}
#downloadUrl .video_title,
.videoDownloadBtns .video_title{
    background-color: #f6f6f6;
    color : #000;
}
#downloadUrl .video_title a{
    color : blue !important;
}
#downloadUrl .download_btns,
.videoDownloadBtns .download_btns{
    background-color: #f6f6f6;
    padding: 30px 0 !important;
    text-align: center;
}
.videoDownloadBtns .download_btns{
    display : flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap : 30px;
}
.videoDownloadBtns .download_btns .download_btn{
    width : 220px;
    padding : 10px 0;
}
#downloadUrl .download_btns .download_btn:hover,
.videoDownloadBtns .download_btns .download_btn:hover{
    color : white;
    text-decoration: none;
}



footer{
    font-family: "Poppins", sans-serif !important;
}
.footer .container{
    display : flex;
    gap : 40px;
    padding : 40px 0;
    border-top : 1px solid #808080;
}
.footer .container .footer_logo{
    width : 15%;
}
.footer .container .footer_logo p{
    padding : 10px 0;
    text-align: center;
    font-size: 14px;
    color : #000;
}
.footer .container .footer_links{
    width : 85%;
    display : flex;
    padding : 0px 10px;
    justify-content: space-between;
}
.footer .container .footer_links .quick_links{
    display : flex;
    flex-direction : column;
    width : 20%;
}
.footer .container .footer_links .quick_links a{
    padding : 7px 0px;
    position: relative;
    width: fit-content;
    color: #000;
    text-decoration: none;
}
.footer .container .footer_links .quick_links a:after{
    border-bottom: 2px solid #7ed214;
    width : 0%;
    content : '';
    position : absolute;
    bottom : 0px;
    left : 0px;
    transition: all 0.4s ease-in-out;
}
.footer .container .footer_links .quick_links a:hover::after{
    transition: all 0.4s ease-in-out;
    width : 100%;
}

/* Detail styling */
.faq .container {
    background-color: #fff;
}
.faq .container h1 {
    text-align: center;
    font-size: 30px;
    font-family: 'Roboto';
    font-weight: 600;
    margin-bottom: 35px;
}
.details {
    --padding: 10px;
    border-bottom: 1px solid #8d8d8d;
    border-radius: 0;
    box-shadow: none;
    outline: none;
}
.details__desc .details__desc-inner ul {
    list-style: disc;
    padding-left: 45px;
}
.details + .details{
  margin-top: 15px;
}
.details__desc .details__desc-inner ul li {
    font-size: 18px;
    font-weight: 300;
    line-height: 32px;
}
.details__title{
  --width: 15px;
  --height: 3px;
  --radius: 1px;
  --color: currentColor;
  margin:0;
  padding: var(--padding) calc(var(--width) * 2) var(--padding) var(--padding);
  cursor: pointer;
  transition: all .2s ease-in-out;
  position: relative;
  font-size: 20px;
  font-weight: 500;
}

.details__title:before,
.details__title:after{
  content:'';
  display: block;
  width: var(--width);
  height: var(--height);
  background-color: var(--color);
  position: absolute;
  border-radius: var(--radius);
  top: calc(50% - (var(--height) / 2));
  right: calc(var(--width) / 2);
  transition: all .2s ease-in-out;
}

.details__title:after{
  rotate: 90deg;
}

.details__container[open] .details__title:before{
  rotate: 45deg;
  /* rotate: 135deg; */
}

.details__container[open] .details__title:after{
  rotate: 135deg;
  /* rotate: 225deg; */
}

.details__container[open] .details__title{
  background-color: #fff;
}

.details__summary::marker{
  content:'';
}

.details__desc{
  display: grid;
  grid-template-rows: 0fr;
  transition: all .2s ease-in-out;
  overflow: hidden;
  padding-inline: var(--padding);
  pointer-events: none;
}

.details__container[open] + .details__desc{
  grid-template-rows: 1fr;
  padding-block: var(--padding);
}

.details__desc-inner{
  min-height: 0;
}
.details:last-child {
    border-bottom: 0;
}
.copyright{
    text-align: center;
    background-color: #000;
    padding: 7px 0;
}
.copyright p{
    font-size: 15px;
    font-family: sans-serif;
    color: #fff;
}
section.privacy-polices {
    line-height: 31px;
    padding: 25px 21px;
}
@media(max-width : 1024px){
    .header .header-container{
        padding : 10px 20px;
    }
    .container{
        padding : 20px;
    }
    .yt-icons_box {
        flex-wrap: wrap;
        gap: 30px;
    }
    .yt-icons_box .icon-text{
        width : 48%;
    }
    .footer .container{
        flex-direction : column;
    }
    .footer .container .footer_logo,
    .footer .container .footer_links{
        width : 100%;
    }
    .footer .container .footer_logo img{
        width : 30%;
        margin : 0 auto;
    }
}

@media(max-width : 768px){

    .header .header-container{
        position: relative;
        padding: 20px 20px;
    }
    .custom_site .logo{
        position: absolute;
        right: 0;
        left: 0;
        margin: auto;
    }
    .header .logo img{
        padding: 10px;
    }
    .header{
        position: relative;
        width : 100%;
        z-index : 10;
    }
    .header .annoucment-panel .nav_links:first-child{
        background: #ff0000;
        color: #fff;
    }
    .header .annoucment-panel .nav_links:nth-child(2){
        background: #3b5998;
        color: #fff;
    }
    .header .annoucment-panel .nav_links:nth-child(3){
         background: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);
         color: #fff;
    }
    .header-container{
        justify-content: left;
        gap : 35%;
    }
    .header .navbar_icon{
        display: block;
        background: url('./menu.svg');
        width : 30px;
        height : 30px;
        background-repeat: no-repeat;
        background-size: cover;
        cursor: pointer;
    }
    .header .annoucment-panel{
        position : absolute;
        top : 65px;
        left : -300px;
        width : 100%;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        visibility: hidden;
        opacity: 0;
        padding : 20px 0;
        box-shadow: 2px 2px 5px #808080;
        transition: all 0.5s ease-in-out;
        gap: 0;

    }
    .faq {
        margin-bottom: 20px;
        margin-top: 20px;
    }

    .header .annoucment-panel a{
        padding : 10px 20px
    }
    .active_links{
        opacity: 1 !important;
        left : 0px !important;
        visibility: visible !important;
        transition: all 0.2s ease-in-out !important;
    }
    .yt-icons_box .icon-text{
        width : 100%;
    }
    body .input_button_box .form_container h2{
        padding : 0 0 10px;
    }
    .footer .container .footer_links{
        flex-wrap: wrap;
    }
    .footer .container .footer_links .quick_links{
        width : 32%;
        padding-bottom : 50px;
    }
}
@media(max-width : 480px){
    .input_button_box{
        padding: 0 !important;
    }
    body .input_button_box .form_container h2 {
        padding: 25px 0 20px;
        font-size: 26px;
    }
    .download_btn{
        width : 100px;
    }
    .facebook_container .title h1{
        font-size : 26px;
    }
    #downloadUrl .download_btns,
    .videoDownloadBtns .download_btns{
        display : flex;
        flex-direction: column;
        justify-content: center;
        gap : 20px;
        align-items: center;
    }
    .footer .container .footer_links{
        columns : 2 !important;
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding: 0 30px;
    }
    .footer .container .footer_links .quick_links{
        width : 50%;
        padding-bottom : 30px;
    }

}