.left {
    text-align: left;
}
.right {
    text-align: right;
    width: 100%; 
}
.center {
    text-align: center;
}









body {
    font-family: "Manrope-Regular";
    margin: 0; 
    padding: 0;
}


#promo-info {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #2C57DC;
    border: none;
    margin-bottom: -1px;
}

.promo-info_container {
    position: relative;
    height: 84%;
    width: 85%;
    background: #fff;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    inset: 1px;
    background: url('../img/together.jpg') no-repeat;
    background-size: cover;
    background-position: bottom;
}
.promo-info_card {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    top: 50%;
    width: 38%;
    height: 50%;
    background: #2C57DC;
    border-top-right-radius: 15px;
}

.promo-info_card::before {
    content: '';
    position: absolute;
    background: transparent;
    left: 0;
    top: -30px;
    width: 30px;
    height: 30px;
    border-bottom-left-radius: 15px;
    box-shadow: -5px 5px 0 5px #2C57DC;
}   
.promo-info_card::after {
    content: '';
    position: absolute;
    background: transparent;
    right: -30px;
    bottom: 0;
    width: 30px;
    height: 30px;
    border-bottom-left-radius: 15px;
    box-shadow: -5px 5px 0 5px #2C57DC;
}   

.promo-info_content {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100% - 20px);
    width: calc(100% - 20px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    opacity: 0;
}
.promo-info_content p {
    padding: 40px;
}

#promo-info_content1 { 
    z-index: 30; 
    color: #2C57DC;
    background: #F8FBFF;
    border: 2px dashed #2C57DC;
}
#promo-info_content2 { 
    z-index: 20; 
    color: #F8FBFF;
    background: #2C57DC;
    border: 2px dashed #F8FBFF;
}
#promo-info_content3 { 
    z-index: 10; 
    color: #F8FBFF;
    background: #0D2F90;
    border: 2px dashed #F8FBFF;
}


h2 {
    font-size: 64px;
    font-family: "Evolventa";
    text-transform: uppercase;
}

@media only screen and (max-width: 600px) {
    h2 {
        font-size: 40px;
    }

    #promo-info {
        height: auto;
        width: 100%;
        margin-bottom: -1px;
        display: flex;
        align-items: center;
    }
    
    .promo-info_container {
        position: relative;
        height: 100vh;
        width: calc(100% - 1.875rem);
        background: #fff;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        border-bottom-right-radius: 15px;
        inset: 0;
        background: url('../img/together_mob.svg') no-repeat;
        background-size: contain;
        background-position: top;
    }
    .promo-info_card {
        position: absolute;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        top: 30%;
        width: 100%;
        height: 250px;
        background: #2C57DC;
        border-top-right-radius: 15px;
    }
    
    .promo-info_card::before {
        content: '';
        position: absolute;
        background: transparent;
        left: 0;
        top: 0;
        width: 0;
        height: 0;
    }   
    .promo-info_card::after {
        content: '';
        position: absolute;
        background: transparent;
        right: 0;
        top: 0;
        width: 0;
        height: 0;
        border-bottom-left-radius: 15px;
        box-shadow: -5px 5px 0 5px #2C57DC;
    }   
    
    .promo-info_content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 15px;
        opacity: 0;
    }
    .promo-info_content p {
        padding: 28px;
    }
    
    #promo-info_content1 { 
        z-index: 30; 
        color: #2C57DC;
        background: #F8FBFF;
        border: 2px dashed #2C57DC;
    }
    #promo-info_content2 { 
        z-index: 20; 
        color: #F8FBFF;
        background: #2C57DC;
        border: 2px dashed #F8FBFF;
    }
    #promo-info_content3 { 
        z-index: 10; 
        color: #F8FBFF;
        background: #0D2F90;
        border: 2px dashed #F8FBFF;
    }
}


@keyframes shake {
    0% {
        transform: rotate(-1deg);
    }
    25% {
        transform: rotate(1deg);
    }
    50% {
        transform: rotate(-1deg);
    }
    75% {
        transform: rotate(1deg);
    }
    100% {
        transform: rotate(-1deg);
    }
}


.close_btn {
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    position: fixed;
    right: 60px;
    top: 60px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}
.close_btn:hover {
    transform: rotate(90deg);
}

.close_btn::before,
.close_btn::after {
    content: '';
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    height: 1px;
    background: #2C57DC;
    transition: transform 0.3s ease;
    transform-origin: center;
}

.close_btn::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.close_btn::after {
    transform:translate(-50%, -50%) rotate(-45deg);
}

.close_btn span {
    display: block;
}

.close_bar {
    width: 100%;
    height: 4px;
    background: #2C57DC; 
}



.my-2 {
    margin-top: 40px;
    margin-bottom: 40px;
}


.radius-15 {
    border-radius: 15px;
}
.shadow {
    box-shadow: 0px 2px 6px 0px rgba(46, 46, 46, 0.5);
}   




a {
    color: inherit;
    text-decoration: none;
}

.w-25 {
    width: 25%;
}
.w-50 {
    width: 50%;
}
.w-75 {
    width: 75%;
}
.w-100 {
    width: 100%;
}
.flex {
    display: flex;
}
.justify-between {
    justify-content: space-between;
}
.justify-start {
    justify-content: flex-start;
}
.justify-center {
    justify-content: center;
}
.justify-end {
    justify-content: flex-end;
}
.align-center {
    align-items: center;
}
.align-start {
    align-items: flex-start;
}
.align-end {
    align-items: flex-end;
}
.shadow {
    box-shadow: 0px 2px 6px 0px rgba(46, 46, 46, 0.5);
}

.plus {
    --b: 1px;
    width: 22px;
    aspect-ratio: 1;
    border: 16px solid #F8FBFF;
    background:
        conic-gradient(from 90deg at var(--b) var(--b),#F8FBFF 90deg,#2C57DC 0) 
        calc(100% + var(--b)/2) calc(100% + var(--b)/2)/
        calc(50%  + var(--b))   calc(50%  + var(--b));
    display: inline-block;
    border-radius: 50px;
    transition: transform 0.3s ease;
}

.plus:hover {
    transform: rotate(-90deg);
}






