@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Pacifico&display=swap");

body
{
    font-family: "Nunito", sans-serif;
}

.pacifico-regular
{
    font-family: "Pacifico", cursive;
    font-weight: 400;
    font-style: normal;

}

.container
{
}

header.header
{
    display: block;
    position: fixed;
    justify-content: space-between;
    align-items: center;
    top: 0;
    left: 0;
    background-color: white;
    width: 100%;
    height: 28pt;
    z-index: 1000;
}

img.header__logo
{
    margin-top: 6pt;
    margin-left: 20pt;
    cursor: pointer;
    width: 73px;
}

img.header__menu
{
    margin-top: 7pt;
    margin-right: 20pt;
    display: block;
    float: right;
    cursor:pointer;
    width: 30px;
}

section.background-place
{
    height: calc(100vw * 782 / 1440);
    margin-top: 28pt;
    background-image: url(./../images/background.jpg);
    background-repeat:  no-repeat;
    background-position: center 0;
    background-size:  cover;
}

.heading
{
    position: relative;
}

.heading__title
{
    position: absolute;
    color: #ffffff;
    opacity: 0.5;
    top: 17px;
    right: 50%;
    transform: translate(50%, 0);
    z-index: 999;

    font-size: 20px;
}

.heading__btn
{
    position: absolute;
    top: 20vw;
    right: 50%;
    transform: translate(50%, 0);
    z-index: 999;

    padding: 12px 36px;

    font-size: 24px;
    color: #0055ac;
    text-decoration: underline !important;

    border: 4px solid #0079f4;
    border-radius: 29px;

    background-color: #ffffff;

    transition: 0.2s all ease-in;
}

.heading__btn:hover
{
    background: #7dbeff;
    box-shadow: 0 0 50px #cccccc;
}

.cards
{
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 15px;

    padding-left: 66px;
    padding-right: 66px;
    padding-bottom: 34px;
    border-bottom: 1px solid #0055ac;
}

.card
{
    display: flex;
    flex-direction: column;
    gap: 16px;

    background-color: rgba(234, 242, 249, 0.5);
    border-radius: 9px;

    width: 255px;
    height: 228px;
    padding: 26px 32px 35px 32px;


    box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.2);
}

.card__img
{
    height: 59px;
}

.card__title
{
    text-align: center;
    font-size: 24px;
    color: #0079f4;
}

.card__p
{
    position: relative;
    font-size: 15px;
    color: #5cadff;
    width: 159px;
    margin: 0 auto 34px;
}

.about
{
    margin: 86px 0 99px 0;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    width: fit-content;
}

.about__container
{
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    width: 48vw;
}

.about__frame
{
    position: relative;
    max-width: 699px;
    min-width: 416px;
    width: 699px;

    padding: 25px 23px 33px;

    border-radius: 9px;
    background-color: #eaf2f9;
}

.about__title
{
    position: absolute;
    top: -45px;
    left: -40px;

    font-size: 40px;
    color: #0079f4;
}

.about__p
{
    font-size: 15px;
    font-weight: 700;
    color: #5cadff;
    max-width: 416px;
    text-align: left;
}

.about__card
{
    padding-left: 78px;
    padding-right: 55px;

    border-radius: 9px;
    background-color: #eaf2f9;
    max-width: 230px;
}

.about__btn
{
    background-color: #0079f4;
    color: #ffffff;
    text-decoration: underline !important;
    padding: 12px 36px;
    font-size: 20px;
    border-radius: 29px;
    margin-top: 20px;
    transition: 0.2s all ease-in;
    display: inline-block;
}

.about__btn:hover
{
    background: #7dbeff;
    color: #0055ac;
    box-shadow: 0 0 50px #cccccc;
}


.about__img
{
    width: 90px;
}

.footer
{
    padding: 9px 11px 7px;
    border-top: 1px solid #000000;
}

@media screen and (max-width: 1250px)
{

    .heading__btn
    {
        font-size: 16px;
        padding: 14px 30px;
        border-width: 2px;
        top: 220px;
    }

    .cards
    {
        padding-left: 7px;
        padding-right: 7px;
    }

    .footer
    {
        padding-left: 7px;
        padding-right: 7px;
    }
}

@media screen and (max-width: 999px)
{
    .heading__title
    {
        font-size: 12px;
    }

    .heading__btn
    {
        top: 190px;
        font-size: 14px;
        padding: 6px 12px;
    }

    .cards
    {
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .card:first-child, .card:last-child
    {
        display: none;
    }

    .about
    {
        justify-items: center;
    }

    .about__container
    {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .about__frame, .about__p
    {
        min-width: 250px;
        width: auto;
    }

    .about__frame
    {
        padding: 10px;
    }

    .about__btn
    {
        margin-right: auto;
        margin-left: auto;
    }
}

@media screen and (max-width: 750px)
{
    .heading__btn
    {
        top: 150px;
    }
}

@media screen and (max-width: 650px)
{
    .heading__btn
    {
        top: 120px;
    }
}

@media screen and (max-width: 500px)
{
    .heading__btn
    {
        font-size: 10px;
        top: 90px;
    }
}

@media screen and (max-width: 400px)
{
    .heading__btn
    {
        top: 70px;
    }
}

@media screen and (max-width: 370px)
{
    .about__title
    {
        font-size: 30px;
        left: -25px;
        top: -35px;
    }
}