@import url('https://fonts.googleapis.com/css2?family=Bitter:wght@700&family=Playfair+Display:wght@700&family=Raleway:wght@300;400;500;700;900&display=swap');

/*****************/
/* specification */
/*****************/
:root {
    --main-color:#ff9292;
    --main-color-hover: #e77b7b;
}

body {
    background: #fff;
    font-family: "Raleway";
    font-weight: 300;
    font-size: 16px;
    color: #555;
    -webkit-font-smoothing: antialiased;
    -webkit-overflow-scrolling: touch;
}

p {
    margin: 0;
    font-size: 1.3em;
    font-weight: 400;
}

a {
    color:#555;
}

button {
    background: none;
    border: none;
}

h1 {
    color: #222;
}

h2 {
    font-size: 1.8rem;
    color:#333;
}

h3 {
    font-size: 1.4rem;
    color: #444;
}

h4 {
    font-size: 1.35rem;
}

h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

hr {
    margin: 0;
}

/*************/
/* main page */
/*************/

.cover-bg {
    background: center / cover no-repeat url(../img/img-bg.webp);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ak_nav {
    font-size:18px;
    font-weight: 500;
    background:#fcfcfc;
    border-bottom: 1px solid var(--main-color);
}

.ak_nav a:hover {
    color:var(--main-color);
}

.ak_logo {
    font-family: "Bitter";
    font-size: 33px;
    transition: .3s;    
}

.navbar-nav {
    transition: .3s;
}

.navbar-collapse .ak_nav-btn {
    display: none;
}

.ak_nav-btn {
    display: flex;    
    align-items: center;
    transition: .1s;
    
}

.ak_nav-btn .btn-text {
    color:#333;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: .05em;
}

.ak_nav-btn:hover .icon {    
    rotate: 45deg;
}

.ak_nav-btn:hover p {
    color: var(--main-color-hover);
}

.ak_nav-btn .icon {
    width:35px;
    height: 35px;
    background: var(--main-color);
    border-radius: 50%;
    margin-right:8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.ak_nav-btn .icon i {
    font-size:19px;
    color:#fff;
}

.modal .btn-close:hover {
    color: var(--main-color-hover);
}

.modal .btn-success {
    background: var(--main-color);
    border: none;
}
.modal .btn-success:hover {
    background: var(--main-color-hover);
}

main {
    min-height: 280px;
}

.carousel.slide {
    height: 185px;
}

.carousel.slide .slide-btn {
    font-size: 65px;
    line-height: 80px;
    font-family: "Playfair Display";
    font-weight: bold;
    text-align: left;
}

.carousel.slide .btn-next {
    font-size: 44px;
    color: #000;
    justify-content: end;
}

.career h2 {
    margin-bottom: 2rem;
}

.career h3 {
    display: flex;
    align-items: center;
}

.career h3 .icon {
    border: 2px solid #2b7f41eb;
    border-radius: 50%;
    width: 23px;
    height: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.career h3 .icon i {
    font-size: 15px;
    color:#2b7f41;
}

.career .content button {
    padding: 0;
    margin-top: 20px;
    border: 1px solid var(--main-color);
    border-radius: 5px;
    padding: 12px 22px;
    background: var(--main-color);
}

.career .content button:hover {
    background: var(--main-color-hover);
}

.career .content .ak_nav-btn .btn-text {
    color: #fff;    
    font-weight: 600;
}

footer {
    display:flex;
    align-items: end;
    padding-bottom: 15px;
}

.footer-items {
    align-items: end;
    font-weight: 500;
    color: #333;
}

.footer-items .requisites {
    line-height: 23px;
}

.footer-items .privacy-group {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.footer-items .privacy-group br {
    display: none;
}

.modal-feedback .modal-content .icon {
    font-size: 72px;
    color: #50a051;
}

.modal-feedback .modal-content .icon.icon-canceled {
    font-size: 72px;
    color: #b62323;
}

.modal-feedback .modal-content p {
    font-size: 1rem;
    line-height: 1.35rem;
    color: #707070;
    text-align: center;
    padding-bottom: 25px;
}

.modal-feedback .modal-content {
    padding: 15px 15px 30px;
    align-items: center;
}

.modal-feedback .modal-content button {
    padding: 12px 20px;
    font-weight: 600;
}

/****************/
/* others pages */
/********** *****/

body:not(.main-page) main .content {
    height: 100%;
    background: #ffffffba;
    padding: 20px 25px 65px;
}

body:not(.main-page) hr {
    margin-bottom: 50px;
}

body:not(.main-page) .content{
    margin: 80px 0;
}

.services .content .ak_nav-btn {
    padding: 0;
    margin-top: 25px;
}

.services h2:not(:first-child) {
    margin-top: 45px;
}

.contacts .content p {
    color:#222;
}

.contacts .content p:not(:last-child) {    
    margin-bottom: 23px;
}

.privacy .content p {
    font-size: 1.1rem;
}

.privacy .content h4 {
    font-size: 1.3rem;
    font-weight: 600;
}

.privacy .content button p {
    font-weight: 600;
    color: #7481f6;
}

@media screen and (max-width:1440px) {

    .contacts .content, .about .content{
        margin: 80px 0;
    }

}

@media screen and (max-width:991px) {

    .ak_nav .ak_nav-btn {
        display: flex;
        padding: 20px 0 15px;
    }

    .ak_nav .container > .ak_nav-btn {
        display: none;
    }

    .carousel.slide {
        height: 120px;
    }

    .carousel.slide .slide-btn {
        font-size: 45px;
        line-height: 60px;
    }

}

@media screen and (max-width:426px) {
    
    main {
        min-height: 200px;
    }

    .carousel.slide {
        height: 75px;
    }

    .carousel.slide .slide-btn {
        font-size: 29px;
        line-height:35px;
    }

    .carousel.slide .btn-next {
        font-size: 30px;
    }

    /**************/
    /* other page */
    /*** **********/

    body:not(.main-page) .cover-bg main .content {
        padding-bottom: 50px;
        margin: 50px 0;
    }

    body:not(.main-page) main hr {
        margin-bottom: 40px;
    }

    body:not(.main-page) h2 {
        font-size: 1.45rem;
    }

    .career h3 {
        font-size: 1.2rem;
    }

    .career h4 {
        font-size: 1.15rem;
    }

    .career h3 .icon {
        border: 1px solid #2b7f41eb;
        width: 21px;
        height: 21px;
    }

    .career h3 .icon i {
        font-size: 12px;
    }

    body:not(.main-page) p {
        font-size: 1.1rem;
    }

    .footer-items .requisites {
        display: none;
    }

    .footer-items .privacy-group br {        
        display: block;
    }

}