.socials {
    background-color: #F0F3F6;
    padding: 8px 0;
}

.socials .link {
    font-size: 14px;
    color: #444444;
}
.socials .socials-right {
    display: flex;
    justify-content: end;
}
.socials .links {
    display: flex;
    align-items: center;
    grid-column-gap: 16px;
    padding-right: 16px;
    border-right: 1px solid rgba(68, 68, 68, 0.2);
}
.socials .links a {
    font-size: 14px;
    color: #444444;
}
.socials .links-socials {
    display: flex;
    grid-column-gap: 12px;
    padding-left: 16px;
}
.socials .item-social {
    border: 1px solid #444444;
    border-radius: 4px;
}


/* HEADER */
.header-logo {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-column-gap: 16px;
    margin: 22px 0;
}
.header .title {
    font-weight: bold;
    font-size: 24px;
    color: #444444;
    margin-bottom: 2px;
}
.header .subtitle {
    font-size: 12px;
    line-height: 16px;
    color: #444444;
}
.header .header-right {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    align-items: center;
    margin: 42px 0;
}
.header .phone a, .mail a, .language a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-column-gap: 12px;
}
.header .phone {
    padding-right: 16px;
    border-right: 1px solid rgba(68, 68, 68, 0.2);
}
.header .mail {
    padding: 0 16px;
    border-right: 1px solid rgba(68, 68, 68, 0.2);
}
.header .language {
    padding-left: 16px;
}
.header .language-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-column-gap: 4px;
}
.header .col-md-12 {
    position: unset;
}
.header-botton {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 8px 0;
}
.header-botton .link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-column-gap: 10px;
    position: relative;
}
.header-botton .link .link-text {
    font-size: 16px;
    color: #444444;
    margin: 8px 0 8px 16px;
}
.header-botton .icon {
    width: 16px;
    height: 16px;
}
.link-dropdown {
    display: none;
    position: absolute;
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    left: 0;
    box-shadow: rgba(0, 0, 0, 1);
}
#link-dropdown1 .link-dropdown-inner {
    padding: 8px 50px 8px 16px;
}
#link-dropdown2 .link-dropdown-inner {
    padding: 8px 140px 8px 16px;
}
.dropdown .link-dropdown .link-dropdown-inner:hover {
    background-color: #f1f1f1;
}


/* MAIN */
.main {
    background-image:linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(.png), url(../images/main.png) ;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 125px 0;
    margin-top: 80px
}
.main-inner {
    display: grid;
    justify-content: center;
    align-items: center;
}
.main .title {
    font-weight: bold;
    font-size: 42px;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 8px;
}
.main .text {
    font-size: 16px;
    color: #FFFFFF;
    text-align: center;
    width: 60%;
    margin: auto;
    margin-bottom: 24px;
}
.in-main-button {
	display: flex;
    justify-content: center;
}

/* HISTORY */
.history {
    padding: 32px 0;
}
.history-inner {
    margin: auto 0;
}
.history .history-inner img {
    width: 100%;
}
.history .text-block {
    padding: 22px 0px 22px 50px;
}
.history .text-blue {
    font-weight: 600;
    font-size: 14px;
    color: #1D97ED;
    margin-bottom: 8px;
}
.history .title {
    font-weight: 600;
    font-size: 24px;
    color: #444444;
    margin-bottom: 16px;
}
.history .text {
    font-size: 14px;
    color: #666C72;
    margin-bottom: 32px;
}



/* NEWS */
.news-section {
    background-color: #F4F8FB;
    padding: 32px 0;
}

.card-special .button {
    display: table;
    margin: auto;
}

/* VIDEO */

.video {
    padding: 32px 0;
}
.video iframe {
    width: 100%;
}



/* NEW-FORMAT */

.new-format {
    padding: 32px 0;
}
.new-format .title {
    font-weight: bold;
    font-size: 24px;
    color: #444444;
    margin-bottom: 24px;
}
.new-format .cards {
    display: grid;
    flex-wrap: wrap;
    justify-content: space-between;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fill, 206px);
}
.new-format .cards .cards-inner {
    padding: 24px 8px;
    text-align: center;
    width: 100%;
    border: 1px solid #DAE6FD;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    user-select: none;
}
.new-format .cards .cards-inner::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0px;
    background: #1D97ED;
    transition: .3s;
}
.new-format .cards .cards-inner:hover::before {
    height: 8px;
}
.new-format .cards .cards-inner:last-child {
    margin-right: 0;
}
.new-format .cards .cards-inner .cards-icon {
    height: 64px;
    width: 64px;
    padding: 16px;
    margin: 0 auto;
    background: #FFFFFF;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.12);
    border-radius: 100px;
    transition: .3s;
}
.new-format .cards .cards-inner:hover .cards-icon {
    background: #1D97ED;
}
.new-format .cards .cards-inner .cards-icon .icon {
    width: 32px;
    height: 32px;
    transition: .3s;
}
.new-format .cards .cards-inner:hover .cards-icon .icon {
    filter: invert(1) contrast(2);
}
.new-format .cards .cards-inner .text h4 {
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #444444;
    margin-top: 24px;
    margin-bottom: 8px;
    font-weight: bold;
}
.new-format .cards .cards-inner .text p {
    font-size: 13px;
    text-align: center;
    color: #444444;
    padding: 0 12px;
    margin-bottom: 24px;
    color: #858585;
}
.new-format .cards a:hover {
    box-shadow: 0px 6px 12px 2px rgba(0, 0, 0, 0.06);
    color: #444444;
    opacity: 1;
}
.new-format .cards a:hover {
    border-bottom: 8px solid #1D97ED;
}
.new-format .cards a:hover .cards-inner {
    height: calc(64px - 8px);
}
.new-format .cards a:hover .cards-icon {
    background-color: #1D97ED;
}
@media (max-width: 992px) {
    .new-format .cards .cards-inner {
        width: calc(32% - 6px);
    }
}


/* STATISTIC */

.statistic {
    padding: 32px 0;
}
.statistic .title {
    font-weight: bold;
    font-size: 24px;
    color: #444444;
    margin-bottom: 24px;
}
.statistic .statistic-inner {
    text-align: center;
    width: 220px;
}
.statistic .statistic-inner .text {
    font-size: 20px;
    color: rgba(0, 0, 0, 0.4);
}
.statistic .statistic-inner .quantity {
    font-weight: 600;
    font-size: 70px;
    color: #1D97ED;
}


/* FOOTER */

.footer {
    border: 1px solid #F2F2F2;
}
.column-link-inner {
    padding: 36px 0;
}
.footer .column-link-inner .black-link {
    margin-bottom: 16px;
}
.footer .column-link-inner .black-link {
    font-weight: 500;
    font-size: 16px;
    color: #000000;
}
.footer .column-link-inner .link {
    margin-bottom: 16px;
}
.footer .column-link-inner .link a {
    font-size: 14px;
    color: #888888;
}
.footer .column-link-inner .links-socials {
    display: flex;
    grid-column-gap: 12px;
    padding-right: 16px;
}
.footer .column-link-inner .item-social {
    border: 1px solid #444444;
    border-radius: 4px;
}



/* PARTNERS */
.partners {
    border: 1px solid #F2F2F2;
}
.footer-partners {
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-column-gap: 24px;
}
.footer-partners .footer-partners-inner {
    display: flex;
    align-items: flex-start;
    grid-column-gap: 8px;
    width: 300px;
    height: 150px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    z-index: 0;
}
.footer-partners .footer-partners-inner:before {
	content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #1717176b;
    position: absolute;
    top: 0;
    z-index: 1;
}
.footer-partners .footer-partners-inner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.footer-partners .footer-partners-inner .text {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #ffffff;
    text-transform: uppercase;
    z-index: 1;
    position: relative;
    top: 12px;
    left: 12px;
}
.end {
    padding: 16px 0;
}
.end .end-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #888888;
}

.lang {
    margin-top: 33px;
}
.header-area.header-sticky .lang, .header-area.header-white .lang {
	margin-top: 23px;
}
.lang select {
	border: 1px solid #DAE6FD;
    border-radius: 4px;
    padding: 4px 12px;
    font-size: 16px;
    font-weight: bold;
    color: #0261FF;
    cursor: pointer;
}
.lang select:focus-visible {
    outline: none;
}
.youtube-link {
    display: block;
    margin-bottom: 16px;
}
.youtube-link img {
	width: 160px;
}
