@font-face {
    font-family: Lato;
    src: url(../fonts/4118-font.ttf)
    
}
*{ 
    padding: 0; 
    margin: 0; 
    border: 0; 
    text-decoration: none; 
    font-family: Lato;

   } 
    
   :focus,:active{outline: none;} 
   a:focus,a:active{outline: none;} 
    
   nav,footer,header,aside{display: block;} 
    
   :root{ 
    --blue: #10069F; 
    --yellow: #FFD700;
   }  
    
   input,button,textarea{font-family:inherit;} 
    
   input::-ms-clear{display: none;} 
   button{cursor: pointer;} 
   button::-moz-focus-inner {padding:0;border:0;} 
   a, a:visited{text-decoration: none;} 
   a:hover{text-decoration: none;} 
   ul li{list-style: none;} 
   img{vertical-align: top;} 
    
   h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight: 400;} 
    
   html{ 
    scroll-behavior: smooth; 
   }


.modal__cards {
    display: none;
    transition: 0.4s;

}

.modal__cards.show{
    overflow: hidden;
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: #1C1A30;
}
/* body{
    overflow: hidden;
} */
.modal__cards-title {
    color: #FFF;
text-align: center;
font-family: Inter;
font-size: 40px;
font-style: normal;
font-weight: 600;
line-height: normal;
margin-top: 100px;
}
.modal__cards-box {
    border-radius: 30px;
    width: 400px;
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: 0.5s;
}
.modal__cards-box:hover{
    background-color: rgba(255, 255, 255, 0.503);
    cursor: pointer;
}
.modal__cards-box:hover .modal-card{
    rotate: 7deg;
}

.modal-card {
    margin-top: 50px;
    transition: 0.5s;
width: 315px;
height: 215px;
background-color: #000;
border-radius: 30px;
padding: 10px;

}





.modal-card__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal__card-chip {
    width: 60px;
    height: 48px;
}
.modal__card-company {
    width: 75px;
}
.modal__card-number {
    margin-top: 20px;
    color: #FFF;
font-family: Lato;
font-size: 17px;
font-style: normal;
font-weight: 600;
line-height: normal;
letter-spacing: 5px;
}
.modal__card-data {
    color: #FFF;
font-family: Work Sans;
font-size: 17px;
font-style: normal;
font-weight: 400;
line-height: normal;
margin-top: 30px;
margin-left: 50px;
}





.modal__card-name {
    margin-top: 20px;
    color: #FFF;
font-family: Work Sans;
font-size: 30px;
font-style: normal;
font-weight: 700;
line-height: normal;
}
.modal__card-info {
    color: #FFF;
font-family: Work Sans;
font-size: 16px;
font-style: normal;
font-weight: 300;
line-height: normal;
}


.modal__cards {
}
.modal__cards-title {
    margin-bottom: 50px;
}
.modal__block {
    gap: 20px;
    margin-top: 100px;
    display: flex;
    justify-content: center;
    margin: 0px auto;
    padding: 30px 0px;
}
.modal__cards-box {
}
.modal-card {
}

.card-pink{
    background-color: #E1447D;
}
.card-white{
    background-color: #fff;
}

.modal-btn{
    width: 50px;
    height: 50px;
    position: absolute;
    right: 50px;
    top: 50px;
    transition: 0.2s;
}
.modal-btn:hover{
    cursor: pointer;
}




/* HEADER */

.header{
    height: 60px;
    background-color: black;
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
}

.logo {
    height: 75px;
    padding: 10px;
}




.list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 250px;
    max-width: 500px;
    color: #fff;
    font-size: 16px;
    gap: 25px;

}


.img-menu{
    display: none;
}


.element{

    color: #fff;
    font-size: 16px;

}
.element:hover{
    cursor: pointer;
}
.login-btn {
    width: 125px;
    height: 50px;
    border-radius: 15px;
    background: linear-gradient(133deg, rgba(16,6,159,1) 0%, rgba(7,121,200,1) 100%);
    color: #fff;

}

.mobile-list{
    top: -105%;
    transition: 0.4s;
    position: fixed;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    
}
.mobile-nav{
    display: flex;
    gap: 20px;
}
.mobile-list.show{
    top: 0;
    background-color: #000000;
    display: flex;

}
.mobile-list.show nav{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    font-size: 30px;
}
.close-btn{
    display: none;
}

.mobile-list.show .close-btn{
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 75px;
    height: 75px;
}


@media (max-width: 991.98px){
    .mobile-list.show .close-btn{
        display: block;
        position: fixed;
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

.footer {
    padding: 40px 60px 140px 60px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 150px;
    background: linear-gradient(178deg, #0095FF -372.83%, #FFC800 -372.11%, rgba(255, 215, 0, 0.00) 20.04%);
}
.footer__left {
    min-width: 350px;
}
.footer__left-logo {
height: 75px;
margin-left: -40px;
margin-bottom: 20px;
}
.footer__left-txt {
    color: #FFF;
font-family: Lato;
font-size: 25px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.footer__left__block {
    margin-top: 80px;
    display: flex;
    gap: 50px;
}
.footer__box-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.box__cards-title {
    color: rgba(255, 255, 255, 0.50);
font-family: Lato;
font-size: 25px;
font-style: normal;
font-weight: 800;
line-height: normal;
}
.box__cards-name {
    color: #FFF;
font-family: Lato;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.footer__box-about {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.box__about-title {
    color: rgba(255, 255, 255, 0.50);
font-family: Lato;
font-size: 25px;
font-style: normal;
font-weight: 800;
line-height: normal;
}
.box__about-name {
    color: #FFF;
font-family: Lato;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.footer__right {
    padding-top: 50px;
}
.support__btn__Ukraine {
    margin-top: 150px;
    width: 400px;
    height: 55px;
    flex-shrink: 0;
    border-radius: 60px;
    border-radius: 50px;
    background: linear-gradient(102deg, #10069F 23.83%, #0095FF 122.94%);
    color: #FFF;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0px auto;
    margin-bottom: 40px;
}
.footer__right-box {
    width: 400px;
    height: 100px;
    border-radius: 80px;
background: rgba(55, 55, 55, 0.500);
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 20px;
}
.social-img {
    width: 80px;
    height: 80px;
}
.about__bank {
    margin-top: 50px;
    color: #FFF;
font-family: Lato;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
width: 250px;
margin: 10px auto;
}





















/* 

*{
    outline:  2px solid #ff0000;
}

 */











/* LOAD */



.mask{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: #000;
    position: fixed;
    z-index: 50;
}
.mask.hide{
    display: none;
    
}
.mask img{
    animation: 5s load infinite alternate;
    
}
@keyframes load {
    0%{
        transform: translate(25px);
    }
    100%{
        transform: translate(-25px);

    }
}



/* Стилі для великих екранів (дисплей максимум 1199рх) */
@media (max-width: 1199px) {

    .dashboard__body{
        flex-wrap: wrap;
        padding: 0px 20px;
        gap: 20px;
    }
    .newcard{
        margin: 20px;
    }
    .support__section{
        margin-left: 20px;
        margin-right: 20px;
    }

 }

/* Стилі для середніх екранів (дисплей максимум 991рх) */
    @media (max-width: 991px) { 

        .preference__box:nth-child(2){
            margin-bottom: 50px;
        }
        .newcard__button{
        width: 300px;
        height: 60px;
        font-size: 25px;
     }
        .footer__right-box{
        width: 300px;
        height: 75px;
        }
        .social-img{
        width: 60px;
        height: 60px;
        }
        .support__btn__Ukraine{
        width: 300px;
        }

}
     @media (max-width: 920px) {
        .dashboard__title{
            text-align: center;
        }
        .info__image-box{
            display: none;
        }
        #efect{
            left: -25px;
            box-shadow: 0px 0px 50px 50px var(--yellow);
        }
        ¨.efect{
            top: 800px;

        }
        .info__button{
            height: 50px;
            width: 250px;
            font-size: 20px;
        }
        .login-btn{
            width: 50px;
        }
        .info__title{
            margin-top: 50px;
        }
     }
     @media (max-width: 820px) {
        .newcard__icon-box{
            width: 100px;
            height: 100px;
        }
        .newcard__icon{
            width: 50px;
            height: 50px;
        }
        .newcard__box-title{
            font-size: 16px;
        }
        .preference-title{
            margin: 0;
            text-align: center;
        }
        .support__btn__Ukraine{
            width: 200px;
            font-size: 14px;
            height: 40px;
        }
        .footer__right-box{
            width: 200px;
            flex-wrap: wrap;
            height: auto;
            border-radius: 20px;
            padding: 5px;
        }
        .social-img{
            width: 45px;
            height: 45px;
        }
        .info-btn{
            font-size: 20px;
        }
        .about__bank {
            margin: 0px;
            margin-top: 20px;
        }
        .footer{
            display: flex;
            flex-direction: column;
        }
     }

/* Стилі для малих екранів (дисплей максимум 767рх) */
    @media (max-width: 767px) { 
        .login-btn{
            width: 200px;
            height: 50px;
            font-size: 24px;
        }
        .img-menu{
            display: block;
            width: 50px;
            height: 50px;
            margin-left: 150px;
        }
        .list{
            display: none;
        }
        #efect{
            right: -25px;
            box-shadow: 0px 0px 50px 50px var(--yellow);
        }
        ¨.efect, #efect{
            display: none;

        }
        .support__title{
            font-size: 40px;
        }
        .support__box-icon img{
            width: 75px;
            height: 75px;
        }
        .newcard__block{
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }
        .info__title {
            color: #FFF;
            font-size: 50px;
            font-style: normal;
            font-weight: 800;
            font-family: Inter;
            line-height: normal;
        }
        .info__subtitle {
            font-family: Inter;
            color: #FFF;
            font-size: 35px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
        }
        
        
        
        
    }
    
    /* Стилі для дуже малих екранів (дисплей максимум 575рх) */
    @media (max-width: 575px) {
        
        .info-box{
            margin-top: 150px;
        }
        
.preference__box-subtitle {
    color: rgba(255, 255, 255, 0.75);
font-family: Inter;
font-size: 20px;
font-style: normal;
font-weight: 800;
line-height: normal;
}
.preference__box-title {
    margin-top: 20px;
    color: #FFF;
font-family: Inter;
font-size: 30px;
font-style: normal;
font-weight: 800;
line-height: normal;
}
.preference__box-info {
    margin-top: 20px;
    color: #FFF;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 800;
line-height: normal;
}
.box__about-name{
    font-size: 16px;
}
        
        .newcard__button{
            width: 250px;
            height: 50px;
            font-size: 24px;
        }
        
        .footer__left{
            min-width: 250px;
        }
        .box__cards-name{
            font-size: 16px;
        }
    }
    
    @media (max-width: 420px) {
        .footer__left__block {
            margin-top: 60px;
            display: flex;
            gap: 20px;
            justify-content: center;
        }
        .support__block{
            flex-direction: column;
            gap: 10px;
        }
    
        .newcard__button{
            font-size: 20px;
            width: 200px;
        }
        
            .info__title {
                color: #FFF;
                font-size: 45px;
                font-style: normal;
                font-weight: 800;
                font-family: Inter;
                line-height: normal;
            }
            .info__subtitle {
                font-family: Inter;
                color: #FFF;
                font-size: 32px;
                font-style: normal;
                font-weight: 400;
                line-height: normal;
            }
            .preference__box-info{
                font-size: 14px
            }
            .preference__block{
                padding: 15px;
            }
        }