
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #E1E1E1;
    font-family: "Source Sans 3", sans-serif;
    font-weight: 400;
    font-style: normal
}

img {
    user-select: none;
    pointer-events: none;  
}

address {
    text-align: center;
}

.text {
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

.btn {
    cursor: pointer;
    border: 1px solid #E3E3E3;
    display: flex;
    min-height: 70px;
    min-width: 250px;
    background: #FCA311;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #EBFFF5;
    font-weight: 400;
    transition: background-color 0.3s ease, border-color 0.3s ease, all 0.3s ease;
}

.btn:hover, .btn:focus {
    background: #fcb321;
    border-color: #d2d2d2;
    outline: none;
    transform: scale(1.01);
}

.header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: #eeeeee;
    color: #000000;
    padding: 10px 33px;
}

#logo-and-burger-menu {
    width: 100%;
    display: none;
    justify-content: space-between;
    align-items: center;
}

.burger-menu {
    height: 70px;
    width: 70px;
    display: none;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.line {
    width: 100%;
    height: 10px;
    background: #000000;
    border-radius: 5px;
}

.navigation-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.4s ease;
}

.navigations {
    display: flex;
    align-items: center;
    list-style-type: none;
}

.navigation:not(:last-child) {
    margin-right: 62px;
}

.logotype {
    width: 100px;
}

.logotype-link {
    transition: 0.2s ease;
}

.logotype-link:hover {
    transform: scale(1.1);
}

.links {
    color: #000000;
    font-size: 30px;
    text-decoration: none;
    transition: 0.3s ease;
}

.links:hover {
    font-size: 37px;
    cursor: pointer;
}

.home-container {
    background: #FFFFF9;
}

.home {
    padding: 30px 0;
    color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.title {
    font-size: 40px;
    text-align: center;
}

.home-text {
    width: 40%;
    font-size: 32px;
    text-align: center;
}

.grass {
    width: 100%;
    opacity: 40%;
}

.home-background {
    height: 80vw;
    background: url('/assets/imgs/grass-flowers.jpg') no-repeat center bottom;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 84px 0;
}

.home-background::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

.home-background::after {
    content: '';
    width: 60vw;
    height: 60vw;
    background: url('/assets/imgs/SSPS-logo.png') no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.our-services-container {
    padding: 20px 0;
    background: #eeeeee;;
}

.our-services {
    color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.big-blocks-container {
    padding: 0 40px;
    display: flex;
    justify-content: center;
}

.blocks-container {
    width: 1500px;
    margin-top: 30px;
    gap: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    flex-wrap: wrap;
    justify-content: center;
}

.block-container {
    padding: 18px 20px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #82C380;
    border-radius: 25px;
    justify-content: space-between;
}

.link-btn {
    text-decoration: none;
}

.btn-form {
    margin-top: 10px;
    border-radius: 50px;
    font-size: 18px;
    min-height: 60px;
    min-width: 270px;
    border: 1px solid #82C380;
}

.mini-block-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.insect-img {
    width: 190px;
}

.icon-img {
    width: 140px;
}

.block-title {
    margin-top: 5px;
    font-size: 24px;
    text-align: center;
}

.block-text {
    margin-top: 8px;
    font-size: 18px;
    text-align: center;
}

.about-us-container {
    padding: 20px 0;
    background: #FFFFF9;
}

.about-us {
    color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.second-big-blocks-container {
    padding: 0 40px;
    display: flex;
    justify-content: center;
}

.second-blocks-container {
    width: 1500px;
    margin-top: 30px;
    gap: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    flex-wrap: wrap;
    justify-content: center;
}

.second-block-container {
    color: #EBFFF5;
    background: #82C380;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 44px 44px 28px;
}

.second-block-title {
    margin-top: 5px;
    font-size: 30px;
    text-align: center;
}

.second-block-text {
    margin-top: 8px;
    font-size: 18px;
    text-align: center;
}

.reviews-container {
    padding: 20px 0;
    background: #eeeeee;
}

.reviews {
    color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.big-reviews-blocks-container {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.reviews-blocks-container {
    width: 1500px;
    gap: 70px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 30px;
}

.review-container {
    border-radius: 40px;
    padding: 17px 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 357px;
    background: #F7F7F7;
    border: 1px solid #d2d2d2;
}

.avatar-img {
    width: 230px;
    height: 230px;
}

.nickname {
    margin-top: 10px;
    font-size: 40px;
}

.review-text {
    margin-top: 22px;
    font-size: 26px;
    text-align: center;
}

.ssps-address {
    background: #FFFFF9;
    height: 116px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
}

.link-address {
    color: #000000;
    text-decoration: none;
    transition: 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
}

.link-address:hover {
    transform: scale(1.05);
}

.footer {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background: #82C380;
    height: 160px;
}

.footer-container {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.social-media {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: 0.3s ease;
}

.social-media:hover {
    transform: scale(1.1);
}

@media (max-width: 2100px) {
    .home-text {
        width: 50%;
    }
}

@media (max-width: 1700px) {
    .home-text {
        width: 70%;
    }
}

@media (max-width: 1300px) {
    .blocks-container {
        width: auto;
        display: grid;
        grid-template-columns: repeat(2, 0.8fr);
    }

    .second-blocks-container {
        width: auto;
        display: grid;
        grid-template-columns: repeat(2, 0.8fr);
    }
    
    .home-text {
        width: 80%;
    }

    .reviews-blocks-container {
        gap: 30px;
    }

    .review-container {
        padding: 9px 13px 12px;
        width: 152px;
        border-radius: 20px;
    }

    .avatar-img {
        width: 115px;
        height: 115px;
    }

    .stars-img {
        width: 101px;
    }

    .nickname {
        font-size: 20px;
    }

    .review-text {
        margin-top: 11px;
        font-size: 13px;
    }
}

@media (max-width: 1200px) {
    .block-container {
        width: 100%;
        height: auto;
    }

    .second-block-container {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 1151px) {
    .home-text {
        width: 90%;
    }

    .header {
        display: flex;
        justify-content: space-between;
        padding: 10px 16px;
        height: auto;
    }

    #logo-and-burger-menu {
        display: flex;
    }

    .burger-menu {
        display: flex;
    }

    .navigation-container {
        overflow: hidden;
        height: 0;
        display: flex;
        align-items: start;
        flex-direction: column;
        width: 100%;
    }

    .navigations {
        margin-top: 10px;
        margin-left: 20px;
        flex-direction: column;
        align-items: start;
    }

    .navigation:not(:last-child) {
        margin-right: 0;
    }

    .header-container {
        flex-direction: column;
        justify-content: left;
        align-items: start;
    }

    #btn .btn {
        margin-left: 12px;
        margin-bottom: 5px;
        font-size: 18px;
        min-height: 60px;
        min-width: 200px;
    }
}

@media (max-width: 1000px) {
    .blocks-container {
        gap: 30px;
    }

    .block-container {
        padding: 10px 10px 12px;
    }

    .insect-img {
        width: 115px;
    }

    .block-title {
        font-size: 14px;
    }

    .block-text {
        font-size: 10px;
    }

    .big-blocks-container {
        padding: 0 10%;
    }

    .btn-form {
        min-height: 50px;
        min-width: 200px;
        font-size: 13px;
    }

    
    .second-blocks-container {
        gap: 30px;
    }

    .second-block-container {
        height: auto;
        width: auto;
        padding: 10px 10px 13px;
    }

    .icon-img {
        width: 80px;
    }

    .second-block-title {
        margin-top: 3px;
        font-size: 15px;
    }

    .second-block-text {
        margin-top: 4px;
        font-size: 10px;
    }

    .second-big-blocks-container {
        padding: 0 10%;
    }
}

@media (max-width: 700px) {
    .blocks-container {
        gap: 20px;
    }

    .second-blocks-container {
        gap: 20px;
    }

    .big-blocks-container {
        padding: 0 20px;
    }

    .second-big-blocks-container {
        padding: 0 20px;
    }
}

@media (max-width: 600px) {
    .blocks-container {
        gap: 12px;
    }

    .second-blocks-container {
        gap: 12px;
    }

    .insect-img {
        width: 90px;
    }

    .block-title {
        margin-top: 3px;
        font-size: 12px;
    }

    .block-text {
        font-size: 8px;
    }

    .btn-form {
        font-size: 9px;
        min-height: 30px;
        min-width: 130px;
    }

    .reviews-blocks-container {
        padding: 0 10px;
        gap: 15px;
    }
}

@media (max-width: 450px) {
    .reviews-blocks-container {
        padding: 0 10px;
    }

    .about-us-container {
        padding: 36px 0;
    }
}