/*
Theme Name: PKT
Tested up to: 5.6.1
Requires PHP: 7.2
Version: 1.1.0
Text Domain: pkt
*/

@font-face {
    font-family: "TT Norms";
    src: url("./fonts/TT Norms/TTNorms-Light.woff2") format("woff2"),
    url("./fonts/TT Norms/TTNorms-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "TT Norms";
    src: url("./fonts/TT Norms/TTNorms-Bold.woff2") format("woff2"),
    url("./fonts/TT Norms/TTNorms-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #191944;
}

a {
    color: inherit;
    text-decoration: none;
}

li {
    list-style-type: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1144px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 600px) {
    .container {
        padding: 0 20px;
    }
}

.subtitle {
    font-size: 35px;
    line-height: 52px;
    font-weight: 700;
}

button {
    border: none;
}

.hidden {
    opacity: 0;
    visibility: hidden;
}


/* Header */
header {
    padding: 12px 0;
    box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.25);
    height: 80px;
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 100;
}

@media (max-width: 800px) {
    header {
        padding: 18px 0;
    }
}

@media (max-width: 600px) {
    header {
        padding: 15px 0;
        height: 60px;
    }
}

.container-header {
    margin: 0 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

@media (max-width: 950px) {
    .container-header {
        margin: 0 40px;
    }
}

@media (max-width: 600px) {
    .container-header {
        margin: 0 20px;
    }
}

.header__logo {
    margin-right: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

@media (max-width: 800px) {
    .header__logo {
        margin-right: 15px;
    }
}

@media (max-width: 600px) {
    .header__logo img {
        width: 51px;
    }
}

.header__nav {
    display: flex;
}

@media (max-width: 1270px) {
    .header__nav {
        position: fixed;
        top: 80px;
        right: 0;
        padding: 25px 35px;
        background-color: #fff;
        display: flex !important;
        flex-direction: column;
        z-index: 100;
        transform: scaleX(0);
        transform-origin: right;
        transition: 0.3s all ease;
    }

    .header__nav.active {
        transform: scaleX(1);
    }
}

@media (max-width: 600px) {
    .header__nav {
        top: 60px;
    }
}

.header__nav--for--mobile {
    display: none;
    margin-bottom: 10px;
}

@media (max-width: 600px) {
    .header__nav--for--mobile {
        display: flex;
    }

    .header__nav--for--mobile .header__lang {
        display: flex !important;
    }

    .header__nav--for--mobile .header__lang.hidden {
        opacity: 1;
        visibility: visible;
    }

    .header__nav--for--mobile .link-blue__down {
        display: flex !important;
    }

    .header__nav--for--mobile .link-blue__down.hidden {
        opacity: 1;
        visibility: visible;
    }
}

.header__nav-link {
    margin-right: 20px;

    font-size: 16px;
    line-height: 35px;
}

@media (max-width: 1270px) {
    .header__nav-link {
        margin-right: 0;
    }
}

.link-blue {
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 10px 20px;
    margin-left: 10px;

    font-size: 17px;
    line-height: 35px;
    font-weight: 700;
    color: #fff;
    background-color: #3CADEF;
    border-radius: 34px;
}

@media (max-width: 600px) {
    .link-blue__down {
        display: none !important;
    }
}

@media (max-width: 800px) {
    .link-blue {
        padding: 5px 20px;
    }
}

.link-blue__user {
    flex-shrink: 0;
}

@media (max-width: 800px) {
    .link-blue__user {
        font-size: 0;
        line-height: 0;
        padding: 13px 20px;
    }
}

@media (max-width: 600px) {
    .link-blue__user {
        padding: 5px 20px;
    }
}


.link-blue--user {
    margin-right: 10px;
}

@media (max-width: 800px) {
    .link-blue--user {
        margin-right: 0;
        height: 18px;
    }
}

@media (max-width: 600px) {
    .link-blue--user {
        height: 15px;
    }
}

.link-blue--arrow {
    margin-left: 10px;
}

.header__nav-link:last-child {
    margin-right: 0;
}

.header__lang {
    position: relative;
    padding: 10px 20px;
    margin-right: 10px;

    background-color: #F3F3F3;
    border: none;
    outline: none;
    border-radius: 39px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

@media (max-width: 800px) {
    .header__lang {
        padding: 5px 20px;
    }
}

@media (max-width: 600px) {
    .header__lang {
        display: none !important;
    }
}

.header__lang-selected {
    font-size: 19px;
    line-height: 35px;
}

.header__lang-arr {
    margin-left: 10px;
    transition: 0.3s all ease;
}

.header__lang.active .header__lang-arr {
    transform: rotate(180deg);
}

.header__lang-list {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background-color: #fff;
    padding: 10px 28px;
    box-shadow: 0px 10px 30px rgba(25, 25, 68, 0.12);
    border-radius: 20px;
}

.header__lang.active .header__lang-list {
    display: block;
}

.header__lang-change {
    cursor: pointer;
    font-size: 19px;
    line-height: 35px;
}

.header__search {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 55px;
    height: 55px;
    margin-right: 20px;
    margin-left: auto;
    padding-left: 20px;

    background-color: #F3F3F3;
    border-radius: 54px;
    transition: 0.3s all ease;
    border: 1px solid #F3F3F3
}

@media (max-width: 1270px) {
    .header__search.active {
        position: absolute;
        top: 0;
        right: 60px;
    }
}

@media (max-width: 800px) {
    .header__search.active {
        right: 70px;
    }
}

@media (max-width: 800px) {
    .header__search.active {
        right: 45px;
    }
}

@media (max-width: 800px) {
    .header__search {
        margin-left: auto;

        width: 44px;
        height: 44px;
    }
}

@media (max-width: 600px) {
    .header__search {
        margin-right: 5px;
        width: 30px;
        height: 30px;
    }
}

.header__search-img {
    position: absolute;
    top: 50%;
    right: 28.5px;
    transform: translate(50%, -50%);
    cursor: pointer;
}

@media (max-width: 800px) {
    .header__search-img {
        right: 22px;
    }
}

@media (max-width: 600px) {
    .header__search-img {
        right: 14px;
        padding: 7.5px;
        width: 30px;
        min-width: 30px;
        height: 30px;
    }
}

.header__search-input {
    background-color: transparent;
    border: none;
    outline: none;
    opacity: 0;
    transition: 0.3s all ease;
    pointer-events: none;
    font-family: 'Poppins';
    font-size: 16px;
    line-height: 24px;
    width: 0;
}

.header__search.active .header__search-input {
    opacity: 1;
    pointer-events: all;
    width: 80%;
}

.header__search form {
    width: 100%;
    height: 55px;
    line-height: 55px;
}

.header__search.active {
    width: 500px;
    border: 1px solid #B3B4C3;
    background-color: #fff;
}

@media (max-width: 1000px) {
    .header__search {
        transition: none;
    }
}

@media (max-width: 1000px) {
    .header__search.active {
        width: 300px;
        transition: 0.3s all ease;
    }
}

@media (max-width: 600px) {
    .header__search {
        transition: 0.3s all ease;
    }
}

@media (max-width: 600px) {
    .header__search.active {
        width: calc(100% - 116px);
        transition: 0.3s all ease;
    }
}

.header__search-list {
    position: absolute;
    max-width: 100%;
    left: 0;
    top: calc(100% + 5px);
    z-index: 10;
    display: none;
    background-color: #fff;
    padding: 10px 20px;
    box-shadow: 0px 10px 30px rgba(25, 25, 68, 0.12);
    width: 500px;
    border-radius: 20px;
}

.header__search-item {
    display: flex;
    justify-content: start;
    align-items: center;
    position: relative;
    font-size: 16px;
    line-height: 35px;
    transition: 0.3s all ease;
    margin-top: 5px;
    cursor: pointer;
}

@media (max-width: 600px) {
    .header__search-item {
        font-size: 14px;
        line-height: 25px;
    }
}

.header__search-item:first-child {
    margin-top: 0;
}

.header__search-item:hover {
    color: #3CADEF;
}

.header__search-item::after {
    content: '';
    display: inline-block;
    width: 11px;
    height: 8px;
    background: url('img/icon/arr-right.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 10px;
    opacity: 0;
    transition: 0.3s all ease;
}

.header__search-item:hover::after {
    opacity: 1;
}

.header__hum {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    margin-left: 40px;
    background-color: #F3F3F3;
    border-radius: 34px;
    position: relative;
    flex-shrink: 0;
}

@media (max-width: 1270px) {
    .header__hum {
        display: flex;
    }
}

@media (max-width: 800px) {
    .header__hum {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 600px) {
    .header__hum {
        margin-left: 15px;
        width: 30px;
        height: 30px;
    }
}

.header__hum span {
    display: block;
    position: absolute;
    background-color: #191944;
    width: 20px;
    height: 2px;
    border-radius: 4px;
    transition: 0.3s all ease;
    transform-origin: center;
}

.header__hum span:nth-child(1) {
    top: 35%;
    left: calc(50% - 10px);
}

@media (max-width: 600px) {
    .header__hum span:nth-child(1) {
        top: 32%;
    }
}

.header__hum span:nth-child(2) {
    top: calc(50% - 1px);
    left: calc(50% - 10px);
}

.header__hum span:nth-child(3) {
    bottom: 35%;
    left: calc(50% - 10px);
}

@media (max-width: 600px) {
    .header__hum span:nth-child(3) {
        bottom: 32%;
    }
}

.header__hum.active span:nth-child(1) {
    top: calc(50% - 1px);
    transform: rotate(45deg);
}

.header__hum.active span:nth-child(2) {
    opacity: 0;
}

.header__hum.active span:nth-child(3) {
    bottom: calc(50% - 1px);
    transform: rotate(-45deg);
}

/* Posts */
.posts {
    padding: 80px 0 120px;
}

@media (max-width: 800px) {
    .posts {
        padding: 40px 0 80px;
    }
}

@media (max-width: 600px) {
    .posts {
        padding-top: 30px;
    }
}

.posts__title {
    margin-bottom: 50px;
    font-size: 35px;
    line-height: 52px;
}

@media (max-width: 800px) {
    .posts__title {
        margin-bottom: 30px;
    }
}

@media (max-width: 600px) {
    .posts__title {
        margin-bottom: 20px;
        font-size: 28px;
        line-height: 42px;
    }
}

.posts__subtitle {
    margin-bottom: 50px;
    font-size: 25px;
    line-height: 37px;
}

.posts__category {
    display: flex;
    /*justify-content: center;*/
    align-items: center;
    position: relative;

    margin-right: 20px;

    overflow: auto;
    scrollbar-width: none;
}

.posts__category-wrap {
    position: relative;
    margin-bottom: 60px;
    margin-right: -20px;
}

@media (max-width: 992px) {
    .posts__category-wrap {
        justify-content: start;

        margin-bottom: 30px;
    }
}

@media (max-width: 600px) {
    .posts__category-wrap {
        margin-bottom: 20px;
    }
}

@media (max-width: 992px) {
    .posts__category-wrap::after {
        position: absolute;
        top: 0;
        left: calc(100% - 69px);
        bottom: 0;
        right: 0;

        background: linear-gradient(270deg, #FFFFFF 18.75%, rgba(255, 255, 255, 0) 100%);
        content: '';
        pointer-events: none;
    }
}

.posts__category::-webkit-scrollbar {
    display: none;
}

@media (max-width: 992px) {
    .posts__category {
        justify-content: start;
    }
}

.posts__category-item {
    padding: 5px 15px;
    margin-right: 10px;

    font-size: 19px;
    line-height: 35px;
    background: #F3F3F3;
    border: 1px solid #F3F3F3;
    border-radius: 39px;
    transition: 0.3s all ease;
    cursor: pointer;
    white-space: nowrap;
}

@media (max-width: 800px) {
    .posts__category-item {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .posts__category-item {
        padding: 5px 20px;
        font-size: 14px;
        line-height: 25px;
    }
}

.posts__category-item:hover,
.posts__category-item.active {
    background: #FFFFFF;
    border: 1px solid #191944;
}

.posts__category-item:last-child {
    margin-right: 0;
}

@media (max-width: 992px) {
    .posts__category-item:last-child {
        margin-right: 100px;
    }
}

.posts__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 600px) {
    .posts__list {
        grid-template-columns: 1fr;
    }
}

.posts__item {
    display: block;
    background: #FFFFFF;
    box-shadow: 0 10px 14px rgba(55, 94, 110, 0.16);
    border-radius: 15px;
    cursor: pointer;
    overflow: hidden;
}

.posts__item--large {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 420px;
    margin-bottom: 20px;
}

@media (max-width: 800px) {
    .posts__item--large {
        grid-template-columns: 1fr 315px;
        margin-bottom: 0;
    }
}

@media (max-width: 600px) {
    .posts__item--large {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
}

.posts__item-img {
    height: 250px;
    position: relative;
    background: linear-gradient(298.86deg, #EFF9FF 17.45%, rgba(255, 255, 255, 0) 71.53%), #FFFFFF;
}

@media (max-width: 800px) {
    .posts__item-img {
        height: 160px;
    }
}

.posts__item--large .posts__item-img {
    height: auto;
    padding: 81px 37px 47px 30px;
    text-align: right;
}

@media (max-width: 800px) {
    .posts__item--large .posts__item-img {
        padding: 65px 50px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .posts__item--large .posts__item-img {
        padding: 70px 50px 80px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.posts__item-img {

}

.posts__item-main {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.posts__item--large .posts__item-main {
    height: auto;
    width: auto;
}

.posts__item-logo {
    position: absolute;
    top: 50px;
    left: 50px;
}

@media (max-width: 800px) {
    .posts__item-logo {
        top: 20px;
        left: 20px;
    }
}

@media (max-width: 600px) {
    .posts__item-logo {
        height: 20px;
    }
}

.posts__item-info {
    position: absolute;
    bottom: 50px;
    left: 50px;
    color: #4174DB;
    font-size: 30px;
    line-height: 45px;
    font-weight: 400;
    text-align: left;
}

@media (max-width: 800px) {
    .posts__item-info {
        bottom: 20px;
        left: 20px;

        font-size: 24px;
        line-height: 36px;
    }
}

@media (max-width: 600px) {
    .posts__item-info {
        font-size: 19px;
        line-height: 28px;
    }
}

.posts__item-content {
    padding: 30px;
}

@media (max-width: 800px) {
    .posts__item-content {
        padding: 20px;
    }
}

.posts__item-category {
    margin-bottom: 10px;

    font-size: 16px;
    line-height: 35px;
    text-transform: uppercase;
}

.posts__item--large .posts__item-category {
    font-size: 19px;
}

@media (max-width: 800px) {
    .posts__item--large .posts__item-category,
    .posts__item-category {
        font-size: 16px;
        line-height: 25px;
    }
}

@media (max-width: 600px) {
    .posts__item-category {
        font-size: 12px;
    }
}

.posts__item-title {
    font-weight: 700;
    font-size: 25px;
    line-height: 37px;
    transition: 0.3s all ease;
}

.posts__item--large .posts__item-title {
    font-size: 35px;
    line-height: 52px;
}

@media (max-width: 800px) {
    .posts__item--large .posts__item-title {
        font-size: 25px;
        line-height: 37px;
    }
}

@media (max-width: 600px) {
    .posts__item-title,
    .posts__item--large .posts__item-title {
        font-size: 20px;
        line-height: 30px;
    }
}

.posts__item-title:hover {
    color: #3CADEF;
}

.posts__item-text {
    margin-top: 10px;

    font-size: 16px;
    line-height: 35px;
    color: #4F5061;
}

@media (max-width: 600px) {
    .posts__item-text {
        font-size: 14px;
        line-height: 25px;
    }
}

.posts__item-link {
    padding: 10px 20px;
    margin-top: 30px;

    color: #fff;
    background: #191944;
    font-size: 17px;
    line-height: 35px;
    font-weight: 700;
    border-radius: 34px;
}

@media (max-width: 800px) {
    .posts__item-link {
        margin-top: 20px;
    }
}

@media (max-width: 600px) {
    .posts__item-link {
        padding: 5px 20px;
        font-size: 14px;
    }
}

.posts__progress {
    display: flex;
    justify-content: center;
    align-items: center;

    margin-top: 60px;
}

@media (max-width: 800px) {
    .posts__progress {
        margin-top: 30px;
    }
}

@media (max-width: 600px) {
    .posts__progress {
        margin-top: 20px;
    }
}

.posts__progress-item {
    display: block;
    width: 15px;
    height: 15px;
    margin-left: 10px;

    border-radius: 50%;
    background-color: #C5C7D3;
    animation: 1s progress-post infinite;
}

@media (max-width: 600px) {
    .posts__progress-item {
        width: 10px;
        height: 10px;
    }
}

@keyframes progress-post {
    0%, 30%, 70%, 100% {
        background-color: #C5C7D3;
    }
    50% {
        background-color: #8B8FA7;
    }
}

.posts__progress-item:nth-child(2) {
    animation-delay: 0.1s;
}

.posts__progress-item:nth-child(3) {
    animation-delay: 0.2s;
}

.posts__progress-item:first-child {
    margin-left: 0;
}

/* Article */
.article {
    padding-top: 94px;
    padding-bottom: 160px;
}

@media (max-width: 800px) {
    .article {
        padding-top: 40px;
        padding-bottom: 80px;
    }
}

@media (max-width: 600px) {
    .article {
        padding-top: 30px;
        padding-bottom: 40px;
    }
}

.container-article {
    max-width: 830px;
    margin: 0 auto;
    padding: 0 100px;
}

@media (max-width: 600px) {
    .container-article {
        padding: 0 20px;
    }
}

.article__date {
    margin-bottom: 10px;
    font-size: 19px;
    line-height: 35px;
    color: #4F5061;
}

@media (max-width: 800px) {
    .article__date {
        margin-bottom: 0;
    }
}

@media (max-width: 600px) {
    .article__date {
        font-size: 16px;
    }
}

.article__date span {
    color: #3CADEF;
}

.article img {
    margin-top: 80px;
    max-width: 100%;
}

@media (max-width: 600px) {
    .article img {
        margin-top: 40px;
    }
}

.article h1 {
    margin-bottom: -50px;

    font-size: 60px;
    line-height: 70px;
    font-weight: 700;
}

@media (max-width: 600px) {
    .article h1 {
        font-size: 48px;
        margin-bottom: -25px;
    }
}

.article h2 {
    margin-top: 80px;
    margin-bottom: -20px;

    font-size: 35px;
    line-height: 52px;
    font-weight: 700;
}

@media (max-width: 600px) {
    .article h2 {
        font-size: 28px;
        line-height: 42px;
    }
}

.article h3 {
    margin-top: 50px;

    font-size: 25px;
    line-height: 37px;
    font-weight: 700;
}

.article h4 {
    padding-left: 27px;
    margin-top: 80px;

    font-size: 19px;
    line-height: 35px;
    font-weight: 700;
}

@media (max-width: 600px) {
    .article h4 {
        padding-left: 20px;
    }
}

.article p,
.article li {
    margin-top: 35px;

    font-size: 19px;
    line-height: 35px;
    color: #4F5061;
}

@media (max-width: 600px) {
    .article p,
    .article li {
        font-size: 16px;
    }
}

.article p a {
    color: #3CADEF;
    text-decoration: underline;
}

.article p b {
    font-weight: 700;
}

.article ul,
.article ol {
    margin-top: 20px;
    padding-left: 27px;
}

@media (max-width: 600px) {
    .article ul,
    .article ol {
        padding-left: 20px;
    }
}

.article ol {
    counter-reset: num;
}

.article ul li,
.article ol li {
    position: relative;
}

.article ol li::before {
    position: absolute;
    top: 0;
    left: -27px;

    content: counter(num) '. ';
    counter-increment: num;
    font-weight: 700;
}

@media (max-width: 600px) {
    .article ol li::before {
        left: -20px;
    }
}

.article ul li::before {
    position: absolute;
    top: 0;
    left: -27px;
    line-height: 35px;

    content: '•';
}

@media (max-width: 600px) {
    .article ul li::before {
        left: -20px;
    }
}

.article__social {
    padding: 30px;
    margin-top: 80px;

    border-radius: 15px;
    background-color: #191944;
}

@media (max-width: 800px) {
    .article__social {
        padding: 20px;
    }
}

.article__social p {
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 35px;
    color: #FFFFFF;
}

.article__social-list {
    display: flex;
    margin-top: 20px;
}

@media (max-width: 800px) {
    .article__social-list {
        margin-top: 10px;
    }
}

.article__social-list a {
    margin-left: 10px;
}

.article__social-list a img {
    margin: 0;
}

.article__social-list a:first-child {
    margin-left: 0;
}

.more {
    background-color: #F1FAFF;
    padding: 70px 0;
}

@media (max-width: 800px) {
    .more {
        padding: 40px 0;
    }
}

.more .more-title {
    margin-bottom: 30px;
}

@media (max-width: 800px) {
    .more .more-title {
        margin-bottom: 20px;
    }
}

.result {
    margin: 90px 0 20px;
}

@media (max-width: 600px) {
    .result {
        margin: 30px 0 30px;
    }
}

.result__wrap {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 20px;
}

@media (max-width: 920px) {
    .result__wrap {
        grid-template-columns: 1fr 275px;
    }
}

@media (max-width: 600px) {
    .result__wrap {
        grid-template-columns: 1fr;
    }

    .result__left {
        order: 2;
        text-align: center;
    }
}

.result__title {
    font-size: 35px;
    line-height: 52px;
}

@media (max-width: 600px) {
    .result__title {
        font-size: 28px;
        line-height: 42px;
    }
}

.result__title span {
    color: #3CADEF;
}

.result__link {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 40px;
    font-size: 17px;
    line-height: 35px;
    background-color: #3CADEF;
    color: #fff;
    border-radius: 34px;
    font-weight: 700;
}

@media (max-width: 600px) {
    .result__link {
        display: block;
    }
}

.result__img {
    width: 100%;
}

/* Footer */
.footer {
    padding: 75px 210px 75px 80px;

    color: #FFFFFF;
    background-color: #17193D;
}

@media (max-width: 800px) {
    .footer {
        padding: 40px;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 40px 40px 40px 20px;
    }
}

.container-footer {
    max-width: 1600px;
}

.footer__wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media (max-width: 600px) {
    .footer__logo {
        display: none;
    }
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    margin-left: 154px;
}

@media (max-width: 800px) {
    .footer__links {
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .footer__links {
        margin-left: 55px;
    }
}

@media (max-width: 600px) {
    .footer__links {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-left: 0px;
    }
}

.footer__social,
.footer__links-one {
    display: flex;
    flex-direction: column;
}

.footer__social-title,
.footer__links-title {
    margin-bottom: 9px;
    font-size: 19px;
    line-height: 30px;
    font-family: "TT Norms";
    font-weight: 700;
}

@media (max-width: 800px) {
    .footer__social-title,
    .footer__links-title {
        margin-bottom: 24px;
    }
}

@media (max-width: 600px) {
    .footer__social-title,
    .footer__links-title {
        margin-bottom: 14px;
        font-family: "Poppins";
        color: rgba(255, 255, 255, 0.5);
        font-size: 13px;
        line-height: 20px;
    }
}

.footer__social-link,
.footer__links-link {
    font-size: 19px;
    line-height: 45px;
    font-family: "TT Norms";
    font-weight: 300;
}

@media (max-width: 600px) {
    .footer__social-link,
    .footer__links-link {
        font-family: "Poppins";
        font-weight: 400;
        font-size: 13px;
        line-height: 30px;
    }
}


.footer__social-link {
    position: relative;
    padding-left: 37px;
}

@media (max-width: 600px) {
    .footer__social-link {
        padding-left: 0;
    }
}

.footer__social-img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

@media (max-width: 600px) {
    .footer__social-img {
        display: none;
    }
}

.footer__social-img--facebook {
    left: 5px;
}

.footer__copy {
    width: 100%;
    margin-top: -5px;

    font-family: 'TT Norms';
    font-size: 19px;
    line-height: 19px;
    opacity: 0.4;
}

@media (max-width: 600px) {
    .footer__copy {
        margin-top: 60px;
        font-size: 13px;
        line-height: 31px;
        opacity: 0.3;
    }
}
.dropdown {
  cursor: pointer;
  position: relative;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  bottom: -165px;
  border-radius: 5px;
}
.dropdown:hover .dropdown-content {
  display: flex;
  flex-direction: column;
}

.dropdown-content a {
  padding: 10px;
  color: #000;
  font-family: "TT Norms";
  font-weight: 300;
}