@font-face {
    font-family: RethinkSans;
    src: url("../fonts/RethinkSans-Regular.ttf");
}


#confirmButton{
    background-color: #5956E9;
    border: none;
    color: #fff;
    font-size: 18px;
    padding: 10px;
    width: 200px;
    cursor: pointer;
    transition: 0.4s;
}


#confirmButton:hover{
    background-color: #7F3FA7;
    color: #fff;
    transition: 0.4s;
}

html{
    box-sizing: border-box;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: inherit;
  }

  p,h1,h2,h3,h4,h5,h6, ul{
    margin: 0;
  }

  a {
    color: inherit;
    text-decoration: none;
  }
  
  img {
    max-width: 100%;
  }
  
  body{
    font-family: RethinkSans;
    background: url("../img/bg__img.jpg") no-repeat center center/cover;
    height: 100vh;
  }

.body__container {
    max-width: 1240px;
    margin: 0 auto;
}

  .modal {
    display: flex; 
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.2);
    position: fixed; 
    z-index: 10000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 

}

.modal__title{
    margin: 0;
    margin-bottom: 10px;
    color: #1A1A1A;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.1px;
    text-transform: uppercase;
    text-align: center;
}

.modal__subtitle{
    margin: 0;
    margin-bottom: 10px;
    color: #320404;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.modal__btn{
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 120%; 
    display: flex;
    padding: 14px 32px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    border: 3px solid #3D85C2;
    background: #3D85C2;
    width: 261px;
    cursor: pointer;
    transition: 0.4s;
}

.modal__link{
    color: #3D85C2;
    font-size: 20px;
    font-weight: 400;
    line-height: 120%; 
    display: flex;
    padding: 14px 32px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    border: 3px solid #CEDFF2;
    background: #FFF;
    width: 261px;
    cursor: pointer;
    transition: 0.4s;
}

.modal__btn:hover{
    background: #FF8235;
    color: #fff;
    transition: 0.4s;
}

.modal__box{
    display: flex;
    gap: 24px;
}

.modal__content {
    position: relative;
    top: 0%;
    border: 1px solid #4A4A4A;
    background: #EBEFF7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
    max-width: 610px;
    width: 100%;
    border-radius: 5px;
}

.modal__close {
    position: absolute;
    top: 0;
    right: 10px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
}

.modal__img{
    margin-bottom: 20px;
}


.modal__close:hover,
.modal__close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}



@media (max-width: 1260px) {
    .modal__box{
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .modal__btn{
        width: 100%;
    }

    .modal__link{
        width: 100%;
    }
}

@media (max-width: 575px) {

}