body {
    font-family: 'Manrope', sans-serif;
    font-family: 'Open Sans', sans-serif;
    font-family: 'Raleway', sans-serif;
    width: 100%;
    margin: 0;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
}

.button {
    border: 2px solid #5C8692;
    background: #5C8692;
    cursor: pointer;
}

.container {
    margin-left: auto;
    margin-right: auto;
}

/* ------- */

.header {
    display: flex;
    border-bottom: 1px solid #ececec;
    background-color: #fdfdfd;
    position: fixed;
    width: 100vw;
    height: 14vh;
    top: 0;
    left: 0;
    z-index: 10;
}

.header-logo {
    width: 192px;
    height: 35px;
    margin: auto 4vw;
}

.header-navigation {
    display: flex;
    width: 60vw;
}

.header-navigation-list {
    display: flex;
    width: 50vw;
    justify-content: space-around;
    height: 7.5em;
    line-height: 7.5em;
}

.header-navigation-list-item {
    color: #141414;   
    font-family: Manrope;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}

.header-navigation-list-item:hover {
    color: #5C8692;
}

.header-icons {
    display: flex;
    padding: 0;
    margin: auto;
    gap: 15px;
}

.header-icons-item {
    width: 16px;
    height: 16px;
}

.header-button {
    display: flex;
    margin: auto 10vh;
    transition: background-color 0.3s;
}

.header-button:hover {
    background-color: #fdfdfd;
}

.header-button-text {
    margin: 1rem 2rem;
    color: #FFF;  
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    transition: color 0.3s;
    text-align: center;
}

.header-button-text:hover {
    color: #5C8692;
}

/* Hero */



.hero {
    background: #EBF3F5;
    margin-top: 105px;
}

.hero-box {
    display: flex;
}

.hero-left {
    margin: 25vh 3vw 220px 10vw;
    width: 40%
}

.hero-left-uppertext {
    display: flex;
}

.hero-left-uppertext-icon {
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 6px;
}

.hero-left-uppertext-text {
    color: #5C8692;
    font-family: Manrope;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.5px;

    text-transform: uppercase;
}

.hero-left-maintext {
    color: #141414;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-size: 55px;
    font-style: normal;
    font-weight: 400;
    line-height: 71.5px;
    letter-spacing: 0.66px;
    margin: 0;
    margin-top: 5px;
    margin-bottom: 20px;
}

.hero-left-text {
    color: #555;    
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-family: Manrope;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 30.4px;
}

.hero-left-button {
    margin: 0;
    width: 238px;
    transition: background-color 0.3s;
}

.hero-left-button:hover {
    background-color: #EBF3F5;
}

.hero-left-button-text {
    color: #FFF;
    text-align: center;
    font-family: Manrope;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 19.5px;
    letter-spacing: 1.56px;
    text-transform: uppercase;
    margin: 18px 32px;
    transition: color 0.3s;
}

.hero-left-button-text:hover {
    color: #5C8692;
}

.hero-right {
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 7.5vw;
    border: 10px solid #5C8692;
    width: 45%;
}

.hero-right-img {
    position: relative;
    top: 40px;
    right: 40px;
}

/* Services */

.services-list {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
    margin-bottom: 100px;
}

.services-list-item {
    width: 30%;
}

.services-list-item-maintext {
    color: #141414;
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 36.4px;
    letter-spacing: 0.312px;
    margin: 16px 0;
    text-align: center;
    width: 100%;
}

.services-list-item-text {
    color: #555;
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30.6px;
    letter-spacing: 0.36px;
    text-align: center;
    width: 100%;
}

.services-list-item-button {
    border: 2px solid #5C8692;
    transition: background-color 0.3s;
    cursor: pointer;
    width: 100%;
}

.services-list-item-button:hover {
    background-color: #5C8692;
}

.services-list-item-button-text {
    display: block;
    color: #141414;
    text-align: center;
    font-family: Manrope;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 19.5px;
    letter-spacing: 1.56px;
    text-transform: uppercase;
    transition: color 0.3s;
    padding: 16px 32px;
}

.services-list-item-button-text:hover {
    color: #FFF;
}

/* ADVANTAGES */

.advantages {
    background: #EBF3F5;
}

.advantages-box {
    display: flex;
}

.advantages-left {
    margin: 20vh 10vw 150px 10vw;
    width: 40%;
}

.advantages-left-upper {
    color: #5C8692;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0;
}

.advantages-left-maintext {
    color: #141414;
    font-size: 45px;
    font-style: normal;
    font-weight: 400;
    line-height: 58.5px;
    letter-spacing: 0.45px;
    margin: 0;
    margin-bottom: 14px;
}

.advantages-left-text {
    color: #555;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30.6px;
    margin-bottom: 60px;
}

.advantages-left-list {
    display: flex;
    height: 185px;
    padding: 0px;
    align-items: flex-start;
    gap: 12px;
    flex-shrink: 0;
}

.advantages-left-list-item {
    border: 2px solid #1E2C30;
    background: #FFF;
    width: 186px;
    height: 186px;
}

.advantages-left-list-item-text {
    color: #141414;
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 26.4px;
    letter-spacing: 0.264px;
    margin: 0;
}

.advantages-left-list-item-icon {
    width: 70px;
    height: 70px;
    margin-top: 1rem;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.advantages-right {
    margin-top: auto;
    margin-bottom: auto;
    background-image: url(/image/backgroundA.png);
}

.advantages-right-image {
    position: relative;
    top: 35px;
    right: 35px;
}

/* Prices */

.prices-header {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 10vh;
    margin-bottom: 15vh;
}

.prices-header-uptext {
    color: #5C8692;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 4px;
}

.prices-header-maintext {
    color: #141414;
    text-align: center;
    font-size: 45px;
    font-style: normal;
    font-weight: 400;
    line-height: 58.5px;
    letter-spacing: 0.45px;
    margin: 0;
}

.prices-firstblock {
    display: flex;
    margin-bottom: 50px;
    width: 80vw;
    margin-left: auto;
    margin-right: auto;
    gap: 10vw;
}

.prices-firstblock-left {
    display: flex;
}

.prices-center {
    margin: auto;
}

.prices-firstblock-list-item {
    margin-bottom: 30px;
}

.prices-firstblock-list-item-name {
    display: inline-block;
    color: #141414;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 26.4px;
    letter-spacing: 0.264px;
    border-bottom: 3px solid #141414;
    width: 450px;
    margin: 0;
}

.prices-firstblock-list-item-price {
    color: #555;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
}

.prices-firstblock-list-item-description {
    margin: 0;
}

.prices-firstblock-left-button {
    border: 2px solid #5C8692;
    width: 248px;
    height: 57px;
    text-align: center;
    transition: background-color 0.3s;
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
}

.prices-firstblock-left-button:hover {
    background-color: #5C8692;
}

.prices-firstblock-left-button-text {
    color: #141414;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: 1.56px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.prices-firstblock-left-button-text:hover {
    color: #FFF;
}

.prices-firstblock-right-image {
    box-shadow: 1px 0px 18px 0px rgba(0, 0, 0, 0.20);
}

/* TESTIMONIALS */

.testimonials {
    background: #EBF3F5;
    margin-top: 90px;
}

.testimonials-header {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding-top: 100px;
    margin-bottom: 40px;
}

.testimonials-header-uptext {
    color: #5C8692;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 4px;
}

.testimonials-header-maintext {
    color: #141414;
    text-align: center;;
    font-size: 45px;
    font-style: normal;
    font-weight: 400;
    line-height: 58.5px;
    letter-spacing: 0.45px;
    margin: 0;
}

.testimonials-reviews {
    display: flex;
    gap: 5vw;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 120px;
    width: 90vw;
}

.testimonials-reviews-block {
    background-color: #FFF;
    width: 42.5vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-content: stretch;
}

.testimonials-reviews-block-text {
    color: #141414;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 32.3px;
    margin-left: 15px;
    margin-right: 15px;
}

.testimonials-reviews-block-info {
    background: #1E2C30;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 32.3px;
    display: flex; 
    justify-content: space-between;
}

.testimonials-reviews-block-info-left {
    display: flex;
}

.testimonials-reviews-block-info-left-image {
    width: 75px;
    height: 75px;
    margin: auto 3vh;
}

.testimonials-reviews-block-info-left-text-stars {
    width: 81px;
    height: 17px;
    margin-top: 29px;
}

.testimonials-reviews-block-info-left-text-name {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.24px;
    margin: 3px 0 7px 0;
}

.testimonials-reviews-block-info-left-text-country {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0.42px;
    margin: 0;
    margin-bottom: 22px;
}

.testimonials-reviews-block-info-right {
    margin: auto 3vh;
}

/* FOOTER */

.footer {
    background: #1E2C30;
}

.footer-content {
    width: 90vw;
    margin-left: 5vw;
    margin-right: 5vw;
    padding-top: 70px;
    padding-bottom: 70px;
}

.footer-content-top {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);;
}

.footer-content-top-image {
    width: 25vw;
}

.footer-content-bottom {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
}

.footer-content-bottom-block-header {
    color: #FFF;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 30.8px;
    letter-spacing: 0.352px;
}

.footer-content-bottom-block-list-item-text, .footer-content-bottom-block-list-item {
    color: #FFF;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 28.9px;
    letter-spacing: 0.17px;
}

@media screen and (max-width: 576px) {
    .header-navigation {
        display: none;
    }
    .header-phone_number {
        display: none;
    }
    .header-button {
        margin: auto 3vw;
    }
    .header-button-text {
        margin: 0.75rem 1.25rem;
        font-size: 0.5rem;
    }
    .hero-box {
        width: 100%;
        flex-direction: column;
        justify-content: space-between;
    }
    .hero-left {
        margin-top: 15vh;
        margin-bottom: 15vh;
    }
    .hero-left-uppertext-icon {
        width: 1rem;
    }
    .hero-left-uppertext-text {
        font-size: 0.5rem;
    }
    .hero-left-maintext {
        font-size: 2rem;
        line-height: normal;
    }
    .hero-left-text {
        font-size: 0.75rem;
        line-height: 1rem;
    }
    .hero-right {
        border: 0;
        width: 100%;
        margin-top: 0;
        margin-bottom: 0;
    }
    .hero-right-img {
        position: static;
    }
    .services-list {
        width: 100%;
        flex-direction: column;
        gap: 45px;
    }
    .services-list-item {
        width: 100vw;
    }
    .services-list-item-img {
        width: 100vw;
        margin: 0 auto;
    }
    .services-list-item-maintext, .services-list-item-text, .services-list-item-button {
        width: 100vw;
    }
    .advantages-box {
        flex-direction: column;
        justify-content: space-between;
        height: 125vh;
    }
    .advantages-left {
        width: 80vw;
        margin-top: 25px;
    }
    .advantages-left-upper {
        font-size: 0.75rem;
    }
    .advantages-left-maintext {
        font-size: 1.75rem;
        line-height: normal;
    }
    .advantages-left-text {
        font-size: 1rem;
        margin-bottom: 16px;
    }
    .advantages-left-list {
        flex-direction: column;
        margin: 0 auto;
    }
    .advantages-left-list-item {
        margin: 0 auto;
        width: 55vw;
        height: 55vh;
    }
    .advantages-right {
        display: none;
    }
    .prices-box {
        width: 90vw;
    }
    .prices-header-uptext {
        font-size: 0.75rem;
    }
    .prices-header-maintext {
        font-size: 2rem;
    }
    .prices-firstblock {
        flex-direction: column;
    }
    .prices-firstblock-list-item-name {
        width: 80vw;
    }
    .prices-firstblock-right-image {
        margin-left: 0;
        width: 100vh;
    }
    .testimonials-box {
        width: 100vw;
        height: 150vh;
    }
    .testimonials-header-uptext {
        font-size: 0.75rem;
    }
    .testimonials-header-maintext {
        font-size: 2rem;
    }
    .testimonials-reviews {
        flex-direction: column;
        width: 95vw;
    }
    .testimonials-reviews-block {
        width: 95vw;
    }
    .testimonials-reviews-block-text {
        font-size: 1rem;
    }
    .testimonials-reviews-block-info-left-text-name {
        font-size: 0.75rem;
    }
    .testimonials-reviews-block-info-left-text-country {
        font-size: 0.5rem;
    }
    .footer-content-top-image {
        width: 40vw;
    }
    .footer-content-bottom-block-header {
        font-size: 0.75rem;
    }
    .footer-content-bottom-block-list-item-text, .footer-content-bottom-block-list-item {
        font-size: 0.45rem;
        line-height: 1.25rem;
    }
}