.imgtxt {
    padding-top: 30px;
    background-color: rgba(198, 234, 251, .4);
}
.imgtxt__img {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.imgtxt__img img {
    width: 260px;
}
.imgtxt__content {
    padding-left: 60px;
    padding-top: 25px;
    padding-bottom: 20px;
}
.imgtxt__title {
    font-size: 22px;
    line-height: 120%;
    font-weight: 600;
    color: var(--color-main);
    margin-bottom: 15px;
}
.imgtxt__txt {
    font-weight: 500;
}
.imgtxt__links {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}
.imgtxt__links-item a {
    display: flex;
    justify-content: center;
    align-items: center;
}
.imgtxt__links-item a img {
    height: 45px;
    width: auto;
    border-radius: 7px;
    transition: .3s;
}
.imgtxt__links-item a img:hover {
    box-shadow: 0px 0px 13px rgba(0,0,0, .6);
    opacity: .6;
}
/*  */
.newsform {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: rgb(198 234 251);
}
.newsform form {
    display: flex;
    flex-wrap: wrap;
}
.newsform__inputs {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
}
.newsform__inputs input {
    width: 95%;
    padding: 12px;
    border: 1px solid rgb(210 210 210);
    height: 50px;
}
.newsform__inputs.error input {
    border: 2px solid red;
}
.newsform__btn {
    display: flex;
    align-items: flex-end;
    padding: 0;
}
.newsform__btn input {
    width: 100%;
    margin-top: auto;
}
.newsform__label {
    margin-bottom: 5px;
    font-size: .85rem;
    line-height: 120%;
    font-weight: 600;
    color: var(--color-main);
}

.newsform__accept {
    margin-top: 15px;
    padding: 0;
    font-weight: 600;
    color: var(--color-main);
    font-size: .9rem;
    line-height: 130%;
}
.newsform__accept a {
    text-decoration: underline;
}
.newsform__accept label {
    padding-left: 40px;
    position: relative;
    display: block;
}
.newsform__accept label:before {
    content: '';
    width: 20px;
    height: 20px;
    display: inline-block;
    position: absolute;
    left: 0;
    border-radius: 0;
    top: 0;
    border: 1px solid #C9C9C9;
    background-color: #fff;
}
.newsform__accept label.active:before {
    border-color: transparent;
}
.newsform__accept label.active:after {
    content: '';
    width: 20px;
    height: 20px;
    border: 1px solid #C9C9C9;
    border-radius: 0;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../assets/check.svg);
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
}
.newsform__accept input[type="checkbox"] {
    position: absolute;
    visibility: hidden;
    z-index: -1;
}
.newsform__accept.error {
    color: red;
}

/*  */
.cont {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: var(--color-main);
    color: #fff;
}
.cont__items {
    gap: 40px 0;
}
.cont__items {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
    padding: 0 10px;
}
.cont__item {
    padding: 5px;
}
.cont__item-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.cont__item-wrapper--center {
    justify-content: center;
}
.cont__item-wrapper>img {
    width: 27px;
    min-width: 27px;
    margin-right: 5px;
    filter: brightness(0) invert(1);
}
.cont__item-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.cont__item-title {
    font-weight: 600;
    display: block;
    font-size: .95rem;
    line-height: 130%;
}
.cont__item-txt {
    display: block;
    font-size: .9rem;
    line-height: 130%;
    margin-top: 5px;
}

.cont__item-btn {
    margin-top: 15px;
    width: 100%;
}

/*  */
.footer__item {
    margin-top: 40px;
}
.footer__title {
    margin-bottom: 7px !important;
}
.footer__socials div{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}
.footer__socials a {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 40px;
}
.footer__socials a img {
    width: 100%;
    border-radius: 50%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: .3s;
}
.footer__socials a:hover img {
    opacity: .8;
}

.footer__menu ul {
    list-style: none;
    padding: 0 0 0 8px;
    margin: 0;
}
.footer__menu ul li {
    padding: 3px 0;
    display: flex;
}
.footer__menu ul li a {
    display: inline-block;
    text-align: left;
    border-bottom: 1px solid transparent;
    color: #466d8b;
    font-size: 1rem;
    line-height: 110%;
    font-weight: 500;
    font-family: var(--font-main);
}
.footer__menu ul li a:hover {
    border-color: #466d8b;
}

/*  */
.footer__bottom {
    padding-top: 20px;
    padding-bottom: 20px;
    color: rgb(99 99 99);
    font-size: 13px;
    line-height: 18px;
    margin-top: 20px;
    font-weight: 300;
    border-top: 1px solid rgb(150, 150, 150);
    font-family: var(--font-main);
}
.footer__bottom-txt,
.footer__copy {
    text-align: center;
    display: flex;
    align-items: center;
    margin: 5px 0;
    justify-content: center;
}
#footer__year{
    display: inline-block;
    margin-left: 3px;
}



@media(max-width: 992px) {

    .newsform__heading {
        text-align: center;
    }
    .newsform__inputs {
        order: 0;
    }
    .newsform__inputs--mail {
        margin-top: 15px;
    }
    .newsform__btn {
        order: 3;
        margin-top: 15px;
    }
    .newsform__accept {
        order: 2;
    }


}
@media(max-width: 767px) {
    .imgtxt {
        padding-top: 30px;
    }
    .imgtxt__img {
        display: none;
    }
    .imgtxt__content {
        text-align: center;
        padding-left: 15px;
        padding-bottom: 30px;
    }
    .imgtxt__txt.clist li {
        justify-content: center;
    }
    .imgtxt__links {
        justify-content: center;
        gap: 10px;
    }
    .imgtxt__links-item a img{
        height: 35px;
    }
    /*  */
    .cont__item-wrapper--center {
        justify-content: flex-start;
    }
    .cont__heading {
        text-align: center;
    }
    
}