@import url(https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600&display=swap);
/* Импорт шрифта из Google Fonts */

/* Стили для баннера */
.banner span {
    font-size: 2rem;
    color: #f00;
}

.banner h3 {
    padding-top: 1rem;
    color: #fff;
    text-transform: uppercase;
    font-size: 3.5rem;
}

.banner p {
    margin: 1rem auto;
    max-width: 60rem;
    font-size: 1.5rem;
    color: #fff;
    line-height: 2;
}

/* Общие стили */
* {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    border: none;
    text-transform: none;
    transition: all .2s linear;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
    overflow-x: hidden;
}

/* Стили для скроллбара */
html::-webkit-scrollbar {
    width: 1rem;
}

html::-webkit-scrollbar-track {
    background: #07141A;
}

html::-webkit-scrollbar-thumb {
    background: #e6e9ea;
}

body {
    background: #e6e9ea;
}

/* Стили для секций */
section {
    padding: 5rem 9%;
}

.heading {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.heading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: .1rem;
    width: 100%;
    background: #aaa;
    z-index: -1;
}

.heading span {
    font-size: 3rem;
    color: #fff;
    background: #15386B;
    padding: .5rem 1.5rem;
    border: 0.1rem solid #aaa;
    border-radius: .5rem;
}

.btn {
    margin-top: 1rem;
    display: inline-block;
    padding: 1rem 2.8rem;
    background: linear-gradient(130deg, #f00 93%, transparent 90%);
    color: #fff;
    cursor: pointer;
    font-size: 1.7rem;
}

.btn-green {
    margin-top: 1rem;
    display: inline-block;
    padding: 1rem 2.8rem;
    background: linear-gradient(130deg, #25D366 93%, transparent 90%);
    color: #fff;
    cursor: pointer;
    font-size: 1.7rem;
}

.btn:hover {
    transform: scale(1.1);
}

.btn-green:hover {
    transform: scale(1.1);
    background: linear-gradient(130deg, #1EBE5D 93%, transparent 90%);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

/* Основной контент */
.home {
    padding: 0;
    margin-top: 5rem;
}

.home .slide {
    min-height: 70vh;
    background-size: cover !important;
    background-position: center !important;
    padding: 2rem 9%;
    display: flex;
    align-items: center;
}

.home .slide .content {
    width: 60rem;
}

.home .slide .content span {
    font-size: 2.5rem;
    color: #15386B;
    display: block;
}

.home .slide .content h3 {
    font-size: 5rem;
    color: #fff;
    padding: 1rem 0;
    text-shadow: 1.5px 1.5px 4px rgba(0, 0, 0, 0.7);
}

.home .slide .content h4 {
    font-size: 2.5rem;
    color: #fff;
    padding: 1rem 0;
    text-shadow: 1.5px 1.5px 4px rgba(0, 0, 0, 0.7);
}

.swiper-pagination-bullet {
    height: 2rem;
    width: 2rem;
    background: #15386B;
    border-radius: 0;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #f00;
}

.about {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8rem;
}

.about .image {
    flex: 1 1 42rem;
    position: relative;
}

.about .image::before,
.about .image::after {
    content: '';
    position: absolute;
    z-index: -1;
    background: #15386B;
    height: 15rem;
    width: 15rem;
}

.about .image::before {
    top: 0;
    left: 0;
}

.about .image::after {
    bottom: 0;
    right: 0;
}

.about .image img {
    width: 100%;
    padding: 2rem;
}

.about .content {
    flex: 1 1 42rem;
}

.about .content span {
    font-size: 2rem;
    color: #FF386B;
}

.about .content .title {
    font-size: 4rem;
    color: #15386B;
    margin-top: .5rem;
}

.about .content p {
    font-size: 1.5rem;
    color: #181A1C;
    padding: 1rem 0;
    line-height: 2;
}

.about .content .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1rem;
}

.about .content .box-container .box {
    flex: 1 1 20rem;
}

.about .content .box-container .box h3 {
    font-size: 2rem;
    color: #15386B;
}

.about .content .box-container .box h3 i {
    padding-right: 1.5rem;
    color: #15386B;
}

.features .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 1.5rem;
}

.features .box-container .box {
    background: linear-gradient(90deg, rgba(58,173,218,1) 0%, rgba(59,174,221,1) 25%, rgba(62,182,234,1) 50%, rgba(62,182,234,1) 65%, rgba(49,159,206,1) 100%);
}

.features .box-container .box.second {
    display: flex;
    flex-flow: column-reverse;
}

.features .box-container .box:hover .image img {
    transform: scale(1.1);
}

.features .box-container .box .image {
    height: 30rem;
    width: 100%;
    overflow: hidden;
}

.features .box-container .box .image img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.features .box-container .box .content {
    padding: 2rem;
    text-align: center;
}

.features .box-container .box .content img {
    height: 9rem;
    margin-bottom: 1rem;
}

.features .box-container .box .content h3 {
    font-size: 2rem;
    color: #15386B;
}

.features .box-container .box .content p {
    line-height: 2;
    font-size: 1.5rem;
    color: #fff;
    padding: 1rem 0;
}

.features .box-container .box .content-price h3 {
    font-size: 1.8rem;
    color: #fff;
}

.features .box-container .box .content-price p {
    line-height: 2;
    font-size: 3rem;
    color: #15386B;
    padding: 1rem 0;
}

.price-card {
    margin: 0 0 25px 0;
}

.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 1.5rem;
    background: #15386B;
}

.pricing .information span {
    font-size: 2rem;
    color: #f00;
}

.pricing .information h3 {
    font-size: 4rem;
    padding-top: .5rem;
    color: #fff;
}

.pricing .information p {
    line-height: 2;
    padding: 1rem 0;
    font-size: 1.4rem;
    color: #fff;
}

.pricing .information p i {
    padding-right: 1rem;
    color: #f00;
}

.pricing .plan {
    margin: 0 auto;
    padding: 2rem;
}

.basic {
    width: 100%;
    background: linear-gradient(90deg, rgba(58,173,218,1) 0%, rgba(59,174,221,1) 25%, rgba(62,182,234,1) 50%, rgba(62,182,234,1) 65%, rgba(49,159,206,1) 100%);
}

.pricing .plan h3 {
    font-size: 2.5rem;
    margin: 1rem 0;
    color: #fff;
    text-align: center;
}

.pricing .plan .price {
    font-size: 5rem;
    font-weight: bolder;
    color: #fff;
}

.pricing .plan .price span {
    color: #f00;
    font-size: 2rem;
}

.pricing .plan .list {
    padding: 1rem 0;
}

.pricing .plan .list p {
    line-height: 2;
    padding: 1rem 0;
    font-size: 1.4rem;
    color: #fff;
}

.pricing .plan .list p i {
    padding-right: 1rem;
    color: #f00;
}

.review {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.review .information {
    flex: 1 1 35rem;
}

.review .information span {
    font-size: 2rem;
    color: #f00;
}

.review .information h3 {
    font-size: 3rem;
    color: #15386B;
    padding-top: 1rem;
}

.review .information p {
    font-size: 1.5rem;
    line-height: 2;
    color: #15386B;
    padding: 1rem 0;
}

.review .review-slider {
    flex: 1 1 60rem;
}

.review .review-slider .slide {
    background: linear-gradient(130deg, #15386B 93%, transparent 90%);
    padding: 2rem 3rem;
}

.review .review-slider .slide p {
    font-size: 1.5rem;
    line-height: 2;
    color: #fff;
}

.review .review-slider .slide .user {
    display: none;
    align-items: center;
    margin-top: 1.5rem;
}

.review .review-slider .slide .user img {
    height: 5rem;
    width: 5rem;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 50%;
    margin-right: 1rem;
}

.review .review-slider .slide .user h3 {
    font-size: 2rem;
    color: #fff;
}

.review .review-slider .slide .user span {
    color: #f00;
    font-size: 1.5rem;
}

.review .review-slider .slide .user i {
    font-size: 5rem;
    margin-left: auto;
    margin-right: 2rem;
    color: #f00;
}

.blogs .slide {
    background: #15386B;
    margin-bottom: 7rem;
}

.blogs .slide:hover .image img {
    transform: scale(1.1);
}

.blogs .slide .image {
    height: 25rem;
    width: 100%;
    overflow: hidden;
}

.blogs .slide .image img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.blogs .slide .content {
    padding: 2rem;
}

.blogs .slide .content .link {
    padding-bottom: 1.5rem;
    font-size: 1.5rem;
}

.blogs .slide .content .link a {
    color: #f00;
}

.blogs .slide .content .link a:hover {
    color: #fff;
}

.blogs .slide .content .link span {
    color: #fff;
    padding: 0 1rem;
}

.blogs .slide .content h3 {
    font-size: 2rem;
    color: #fff;
    line-height: 1.5;
}

.blogs .slide .content p {
    font-size: 1.5rem;
    color: #fff;
    line-height: 2;
    padding: 1rem 0;
}

.footer {
    width: 100%;
    background: linear-gradient(90deg, rgba(58,173,218,1) 0%, rgba(59,174,221,1) 25%, rgba(62,182,234,1) 50%, rgba(62,182,234,1) 65%, rgba(49,159,206,1) 100%);
}

.footer .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
}

.footer .box-container .box h3 {
    font-size: 2.2rem;
    color: #fff;
    padding: 1rem 0;
}

.footer .box-container .box .links {
    font-size: 1.5rem;
    display: block;
    color: #fff;
    padding: 1rem 0;
}

.footer .box-container .box .links:hover {
    color: #f00;
}

.footer .box-container .box p,
.footer .box-container .box a {
    font-size: 1.5rem;
    color: #15386B;
    padding: 1rem 0;
}

.footer .box-container .box p i,
.footer .box-container .box a i {
    padding-right: .5rem;
    color: #f00;
}

.footer .box-container .box .share {
    padding: 1rem 0;
}

.footer .box-container .box .share a {
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    font-size: 1.7rem;
    color: #fff;
    background: #111;
    border-radius: 50%;
    margin-right: .5rem;
    text-align: center;
}

.footer .box-container .box .share a:hover {
    background: #f00;
}

.footer .box-container .box form .email {
    margin-bottom: 1rem;
    width: 100%;
    background: #111;
    padding: 1.2rem;
    font-size: 1.5rem;
    color: #fff;
    text-transform: none;
}

.credit {
    font-size: 2rem;
    text-align: center;
    padding: 2rem;
    color: #fff;
    background: #111;
    line-height: 1.5;
}

.credit span {
    color: #f00;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

ul {
    padding: 0;
    list-style: none;
    margin-top: 10px;
}

ul li {
    display: inline-block;
    margin: 0 10px;
}

ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

ul li a:hover {
    color: #aaa;
}

/* Медиазапросы */
@media (max-width: 991px) {
    html {
        font-size: 55%;
        scroll-padding: 7rem;
    }

    section {
        padding: 3rem 2rem;
    }

    .home .slide {
        padding: 2rem 5%;
    }

    .home .slide .content {
        width: 50rem;
    }

    .home .slide .content h3 {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 55%;
    }

    .about {
        gap: 3rem;
    }

    .about .image {
        margin-top: 5rem;
    }

    .about .content .title {
        font-size: 2.5rem;
    }

    .about .content span {
        font-size: 2.5rem;
    }

    .about .content p {
        font-size: 1.6rem;
    }

    .banner p {
        font-size: 1.6rem;
    }

    .review .information p {
        font-size: 1.6rem;
    }

    .features .box-container .box .content h3 {
        font-size: 2.2rem;
    }

    .features .box-container .box .content p {
        font-size: 1.6rem;
    }

    .pricing .information p {
        font-size: 1.6rem;
    }

    .review .review-slider .slide p {
        font-size: 1.6rem;
    }

    .blogs .slide .content p {
        font-size: 1.6rem;
    }

    .footer .box-container .box h3 {
        font-size: 2.6rem;
    }

    .footer .box-container .box a {
        font-size: 1.6rem;
    }

    .features .box-container .box .content-price h3 {
        font-size: 2rem;
    }

    .features .box-container .box .content p {
        font-size: 1.6rem;
    }

    .review .information span {
        font-size: 2.5rem;
    }

    .review .information p {
        font-size: 1.6rem;
    }

    .banner p {
        font-size: 1.6rem;
    }

    .features .box-container .box.second {
        flex-flow: column;
    }
}

@media (max-width: 450px) {
    html {
        font-size: 55%;
    }
}

@media only screen and (max-width: 600px) {
    ul li {
        display: block;
        margin: 5px 0;
    }
}

