.fr-view p:last-child{
    margin: 0;
}

/*images*/
.show-on-pc {
    display: none;
}

@media (min-width: 455px){
    .show-on-pc {
        display: block;
    }
    .show-on-mobile {
        display: none;
    }
}

/*registration*/
.registration {
    max-width: 500px;
    margin: 0 auto;
    margin-top: 100px;
    padding: 40px;
    background-color: #fff;
    box-shadow: 0 15px 50px -20px rgb(39 99 158 / 40%);
    border-radius: 15px;
}

@media (min-width: 768px){
    .registration {
        padding: 60px;
    }
}

.registration h1 {
    margin-bottom: 20px;
    font-size: 32px;
}

.form-control {
    background: #F1F5F9;
    border: 1px solid #D8E7ED;
    border-radius: 10px;
}

/*made-with-love*/
.made-with-love {
    display: flex;
    justify-content: center;
    color: #fff;
    gap: 5px;
    padding: 10px;
    text-transform: uppercase;
    font-size: 10px;
    max-width: 1300px;
    margin: 0 auto;
}

@media(min-width:992px) {
    .made-with-love {
        justify-content: flex-end;
    }
}

.made-with-love-box {
    background-color: #000;
}

.made-with-love svg {
    width: 15px;
    animation: 1.5s heartThrob infinite;
}

@keyframes heartThrob {
    10% {
        transform: scale(1.15);
    }
    20% {
        transform: scale(1);
    }
    40% {
        transform: scale(1.15);
    }
    60% {
        transform: scale(1);
    }
}

section {
    padding: 20px 0;
}

.title_big {
    font-size: 22px;
    font-weight: bold;
    max-width: 800px;
    margin: 0 auto;
}

.title_medium {
    font-size: 20px;
    font-weight: bold;
    margin: 0 auto;
}

@media (min-width: 768px) {
    section {
        padding: 80px 0;
    }

    .title_big {
        font-size: 34px;
    }
    .title_medium {
        font-size: 28px;
    }
}

/*mobile-menu-btn*/
body.open-mobile-menu {
    overflow-y: hidden;
    margin-right: 1.05rem;
}

#mobile-btn-menu {
    cursor: pointer;
    width: 45px;
    height: 45px;
    /*background-color: var(--white-color);*/
    /*border-radius: 10px;*/
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 920;
}

#mobile-btn-menu span {
    position: absolute;
    width: 25px;
    height: 4px;
    background-color: var(--color1);
    border-radius: 4px;
    transition: .5s;
}

#mobile-btn-menu span:nth-child(1){
    transform: translateY(-10px);
    width: 25px;
    left: 10px;
}

#mobile-btn-menu span:nth-child(2){
    width: 25px;
    left: 10px;
}

#mobile-btn-menu span:nth-child(3){
    transform: translateY(10px);
    width: 25px;
    left: 10px;
}

#mobile-btn-menu.active span:nth-child(2){
    transform: translateX(50px);
}

#mobile-btn-menu.active span:nth-child(1){
    transform: translateY(0) rotate(45deg);
}

#mobile-btn-menu.active span:nth-child(3){
    transform: translateY(0) rotate(-45deg);
}

@media (min-width: 992px){
    #mobile-btn-menu {
        display: none;
    }
}