@charset "UTF-8";

/*
Theme Name: Korotko Te
Author: TaVitka
Requires at least: 5.3
Tested up to: 6.0
Requires PHP: 5.6
Version: 1.7
Text Domain: korotko-te
Tags: blog, portfolio, news, grid-Layout, one-column, two-columns, left-sidebar, right-sidebar, custom-background, custom-colors, custom-header, custom-logo, custom-menu, editor-style, full-width-template, footer-widgets, rtl-language-support, theme-options, translation-ready, block-styles, wide-blocks
*/

/* Start of reset styles */
html {
    box-sizing: border-box;
}
*, *::before, *::after {
    box-sizing: inherit;
}
*::marker {
    font-size: 0;
    visibility: hidden;
    color: transparent;
    line-height: 0;
    width: 0;
    height: 0;
}
ul, ol {
    padding: 0;
}
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, figcaption, blockquote, dl, dd {
    margin: 0;
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    display: block;
    height: auto;
}
input, button, textarea, select {
    font: inherit;
}
a {
    text-decoration: none;
    color: inherit;
}
button {
    border: none;
    background-color: transparent;
    outline: 1px solid transparent;
    cursor: pointer;
    display: inline-block;
}
/* End of reset styles */

/* Start of general styles */
@font-face {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-style: normal;
    src: url('assets/fonts/mulish/Mulish-Regular.woff');
    font-display: swap;
}
@font-face {
    font-family: 'Mulish', sans-serif;
    font-weight: 500;
    font-style: normal;
    src: url('assets/fonts/mulish/Mulish-Medium.woff');
    font-display: swap;
}
@font-face {
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    font-style: normal;
    src: url('assets/fonts/mulish/Mulish-Bold.woff');
    font-display: swap;
}
@font-face {
    font-family: 'Mulish', sans-serif;
    font-weight: 800;
    font-style: normal;
    src: url('assets/fonts/mulish/Mulish-ExtraBold.woff');
    font-display: swap;
}
.container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
body {
    font-family: 'Mulish', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 17px;
    line-height: 21px;
    color: #353935;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    background-color: #F5F5F5;
}
header {
    margin-bottom: 20px;
}
main {
    flex: 1 1 auto;
    margin-bottom: 105px;
    transition: height 08s ease-in-out;
    height: fit-content;
}
.main-title {
    display: none;
}
.main-go-top {
    border-radius: 50%;
    background: #23266F;
    height: 50px;
    width: 50px;
    display: block;
    bottom: 35px;
    left: 25px;
    position: fixed;
    z-index: -100;
    opacity: 0;
    pointer-events: none;
    transition: all 0.6s ease-in-out;
    border: 1px solid #fff;
}
.main-go-top.active {
    z-index: 15;
    opacity: 1;
    pointer-events: all;
    transition: all 0.6s ease-in-out;
}
.main-go-top.active:hover {
    transform: translateY(-30%);
}
.main-go-top::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background-image: url("assets/images/icons/go-top-brn-arrow.svg");
    height: 25px;
    width: 30px;
    transform: translate(-50%, -50%);
}
.section__title {
    text-transform: capitalize;
    color: #23266F;
    font-weight: 700;
    font-size: 27px;
    line-height: 34px;
    margin-bottom: 30px;
}
.section__btn {
    width: fit-content;
    margin: 0 auto;
    position: relative;
}
.section__btn:hover {
    transform: scale(1.1);
}
.section__btn::after {
    position: absolute;
    content: '';
    top: 50%;
    transform: translate(50%, -50%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.section,
.section__posts {
    margin-bottom: 60px;
}
.section__post {
    box-shadow: 10px 10px 20px rgba(60, 60, 60, 0.0);
    transition: box-shadow 0.4s ease-in-out;
}
.section__post:hover {
    box-shadow: 10px 10px 20px rgba(60, 60, 60, 0.25);
}
.section__post-img {
    width: 100%;
    object-fit: cover;
}
.section__post-title {
    font-size: 25px;
    line-height: 34px;
    font-weight: 800;
}
.section__post-desc {
    font-weight: 400;
    line-height: 22px;
    font-size: 17px;
}
.section__post-title,
.section__post-desc {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.section__post-meta {
    align-self: flex-start;
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 18px;
    color: #23266F;
    font-weight: 400;
    margin-bottom: 15px;
}
.section__post-date {
    margin-right: 20px;
}
.section__post-views {
    position: relative;
    padding-left: 20px
}
.section__post-views::before {
    position: absolute;
    content: '';
    width: 15px;
    height: 10px;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    background-image: url("assets/images/icons/views-eye.svg");
}
.section__btn {
    display: block;
    background-color: #23266F;
    padding: 10px 235px 10px 210px;
    border-radius: 15px;
    color: #D7DAFF;
    font-size: 19px;
    line-height: 24px;
    font-weight: 700;
    text-transform: capitalize;
    border: 1px solid transparent;
    transition: background-color 1s ease-in-out, transform 0.6s ease-in-out;
    transform: scale(1);
}
.section__btn:hover {
    color: #23266F;
    background-color: transparent;
    border: 1px solid #23266f;
}
.section__btn::after {
    background-image: url("assets/images/icons/arrow-down-main-news.svg");
    width: 25px;
    height: 10px;
    transition: opacity 0.8s ease-in-out;
}
.section__btn:hover::after {
    opacity: 0;
}
.background-img,
.background-img::after,
.background-img::before {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* End of general styles */

/* Start of header styles */
.header-top {
    padding: 15px 0 25px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
}
.header-top__nav {
    max-width: fit-content;
}
.header-top__logo {
    margin: 0 auto;
}
.header-top__nav-item.header-top__nav-item__burger {
    margin-right: 15px;
}
.header-top__nav-item.header-top__nav-item__search {
    margin-right: 50px;
}
.burger-btn {
    border-top: 2px solid #353935;
    border-bottom: 2px solid #353935;
    height: 26px;
    width: 26px;
    position: relative;
    border-radius: 10%;
    transition: all 0.6s ease-in-out;
}
.burger-btn::before {
    content: '';
    position: absolute;
    border-top: inherit;
    width: inherit;
    height: inherit;
    left: 0;
    top: calc(100% - 13px);
}
.burger-btn:hover,
.search-btn:hover svg {
    transform: scale(1.1);
}
.search-btn svg {
    transition: all 0.6s ease-in-out;
    height: 35px;
    width: 35px;
}
.header-top__nav-item__search-form__wrapper {
    position: absolute;
    top: 0;
    z-index: -100;
    opacity: 0;
    pointer-events: none;
    left: 0;
    right: 0;
    padding: 60px 15px;
    text-align: center;
    background-color: #23266F;
    transform: translateY(-150%);
    transition: all 0.6s ease-in-out;
}
.header-top__nav-item__search-form__wrapper .burger-menu__btn-close {
    top: calc(50% - 50px);
    left: 95%;
    position: absolute;
}
.header-top__nav-item__search-form__wrapper.header-top__nav-item__search-form__wrapper--active {
    z-index: 500;
    opacity: 1;
    pointer-events: all;
    transform: translateY(0%);
}
.header-top__nav-item__search-form__wrapper .search-lable-field {
    display: none;
}
.header-top__nav-item__search-form__wrapper #s {
    max-width: 350px;
    width: 100%;
    padding: 10px;
    font-family: 'Mulish', sans-serif;
    font-size: 20px;
    line-height: 30px;
    color: #353935;
    height: 50px;
    margin-right: -5px;
    transition: border 0.6s ease-in-out;
    border: 1px double transparent;
}
.header-top__nav-item__search-form__wrapper #s:hover {
    border: 3px double #D7DAFF;
}
.header-top__nav-item__search-form__wrapper #s:focus {
    outline: 1px transparent solid;
}
.header-top__nav-item__search-form__wrapper #s::placeholder {
    color: #D7DAFF;
    font-family: 'Mulish', sans-serif;
    font-size: 20px;
    line-height: 30px;
    font-style: italic;
}
.header-top__nav-item__search-form__wrapper #searchsubmit {
    padding: 10px;
    line-height: 30px;
    font-size: 20px;
    height: 50px;
    border: none;
    background-color: #D7DAFF;
    cursor: pointer;
    transition: transform 0.6s ease-in-out;
    color: #23266F;
}
.header-top__nav-item__search-form__wrapper #searchsubmit:hover {
    transform: scale(1.1);
}
.lang-code {
    text-transform: uppercase;
    font-weight: 300;
}
.active-lang {
    font-size: 20px;
    line-height: 25px;
    position: relative;
    padding-right: 6px;
    margin-right: 10px;
}
.active-lang::after {
    content: '';
    position: absolute;
    border-right: 1px solid #353935;
    right: 0;
    top: 2px;
    height: 20px;
}
.other-lang {
    font-size: 16px;
    line-height: 20px;
    color: #23266F;
    font-weight: 400;
    transition: color 0.6s ease-in-out, transform 0.6s ease-in-out;
    position: relative;
}
.other-lang::before {
    content: '';
    position: absolute;
    border-bottom: 1px solid transparent;
    left: 0;
    width: 0%;
    bottom: -2px;
    transition: width 1s ease-in-out, border-bottom-color 1s ease-in-out;
}
.other-lang:hover {
    color: #23266f;
    transform: scale(1.2);
}
.other-lang:hover::before {
    border-bottom: 1px solid #23266f;
    width: 100%;
}
.header-top__socials {
    min-height: 35px;
}
.header-top__socials-item + .header-top__socials-item {
    margin-left: 15px;
}
.header-top__socials-item {
    width: 36px;
    min-height: inherit;
}
.header-top__socials-link {
    position: relative;
}
.header-top__socials-link::before {
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    transition: background-image 1s ease-in-out, transform 0.6s ease-in-out;
}
.header-top__socials-link:hover::before {
    transform: scale(1.1);
}
.header-top__socials-link__email::before {
    background-image: url("assets/images/icons-socials/icon-email.png");
}
.header-top__socials-link__email:hover::before {
    background-image: url("assets/images/icons-socials/icon-email-purple.png");
}

.header-top__socials-link__facebook::before {
    background-image: url("assets/images/icons-socials/icon-facebook.png");
}
.header-top__socials-link__facebook:hover::before {
    background-image: url("assets/images/icons-socials/icon-facebook-purple.png");
}

.header-top__socials-link__telegram::before {
    background-image: url("assets/images/icons-socials/icon-telegram.png");
}
.header-top__socials-link__telegram:hover::before {
    background-image: url("assets/images/icons-socials/icon-telegram-purple.png");
}
.header-top__socials-link__viber::before {
    background-image: url("assets/images/icons-socials/icon-viber.png");
}
.header-top__socials-link__viber:hover::before {
    background-image: url("assets/images/icons-socials/icon-viber-purple.png");
}
.header-bottom {
    padding: 15px 0;
    border-top: 1px solid #23266F;
    border-bottom: 1px solid #23266F;
}
.header-bottom__categories {
    justify-content: center;
}
.menu-item {
    position: relative;
    transition: color 0.6s ease-in-out, transform 0.6s ease-in-out;
}
.menu-item + .menu-item {
    margin-left: 100px;
}
.menu-item::before {
    content: '';
    position: absolute;
    border-bottom: 1px solid transparent;
    left: 0;
    width: 0%;
    bottom: -2px;
    transition: width 1s ease-in-out, border-bottom-color 1s ease-in-out;
}
.menu-item:hover {
    color: #23266f;
    transform: scale(1.2);
}
.menu-item:hover::before {
    border-bottom: 1px solid #23266f;
    width: 100%;
}
.menu-item.current-menu-item {
    pointer-events: none;
}
.menu-item.current-menu-item a {
    color: #23266F;
    border-bottom: 1px solid #23266F;
    line-height: 25px;
    height: 20px;
    font-weight: 400;
}
/* End of header styles */

/* Start of styles for burger menu */
.burger-menu {
    max-width: 350px;
    width: 100%;
    height: fit-content;
    min-height: 100vh;
    background-color: #23266f;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -500;
    margin: 0 auto;
    padding: 90px 50px 70px 60px;
    transform: translateX(-150%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.6s ease-in-out;
    overflow-y: scroll;
    overflow-x: hidden;
}
.burger-menu.burger-menu--active {
    transform: translateX(0%);
    opacity: 1;
    pointer-events: all;
    z-index: 500;
}
.burger-overlay {
    backdrop-filter: blur(0px) brightness(1);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-150%);
    transition: all 0.4s ease-in-out;
}
.burger-overlay.burger-overlay--active{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 400;
    backdrop-filter: blur(1px) brightness(0.5);
    opacity: 1;
    pointer-events: all;
    transform: translateX(0%);
}
.burger-menu__btn-close {
    position: relative;
    height: 26px;
    width: 26px;
    transition: all 0.6s ease-in-out;
    bottom: 30px;
    left: -25px;
    padding: 10px;
    margin-bottom: 35px;
}
.burger-menu__btn-close:hover {
    transform: scale(1.2);
}
.burger-menu__btn-close::before,
.burger-menu__btn-close::after {
    content: '';
    position: absolute;
    border-color: #D7DAFF;
    width: 36px;
    height: 36px;
    border-left: 2px solid  #D7DAFF;
}
.burger-menu__btn-close::before {
    transform: rotate(45deg);
    bottom: calc(45% - 28px);
    left: calc(90% - 18px);
}
.burger-menu__btn-close::after {
    transform: rotate(-45deg);
    bottom: calc(100% - 18px);
    right: calc(10% - 18px);
}
.burger-menu .burger-menu__categories,
.burger-menu .burger-menu__nav {
    margin-bottom: 50px;
}
.burger-menu .burger-menu__categories .menu-item +.menu-item {
    margin-left: 0;
    margin-top: 25px;
}
.burger-menu .burger-menu__categories .menu-item {
    color: #D7DAFF;
    transform: scale(1);
    width: fit-content;
}
.burger-menu .burger-menu__categories .menu-item:hover::before,
.burger-menu .burger-menu__categories .menu-item.current-menu-item {
    border-bottom: 1px solid #D7DAFF;
}
.burger-menu .burger-menu__categories .menu-item.current-menu-item a {
    color: #D7DAFF;
}
.burger-menu .burger-menu__nav {
    justify-content: flex-start;
}
.burger-menu .search-btn svg image {
    filter: invert(1);
}
.burger-menu .active-lang,
.burger-menu .other-lang:hover{
    color: #9194DD;
}
.burger-menu .other-lang {
    color: #ffffff;
}
.burger-menu .active-lang::after {
    border-right: 1px solid #9194DD;
}
.burger-menu__socials .header-top__socials-link__email::before {
    background-image: url("assets/images/icons-burger-menu/email-white.png");
}
.burger-menu__socials .header-top__socials-link__email:hover::before {
    background-image: url("assets/images/icons-burger-menu/email-blue.png");
}
.burger-menu__socials .header-top__socials-link__facebook::before {
    background-image: url("assets/images/icons-burger-menu/facebook-white.png");
}
.burger-menu__socials .header-top__socials-link__facebook:hover::before {
    background-image: url("assets/images/icons-burger-menu/facebook-blue.png");
}
.burger-menu__socials .header-top__socials-link__telegram::before {
    background-image: url("assets/images/icons-burger-menu/telegram-white.png");
}
.burger-menu__socials .header-top__socials-link__telegram:hover::before {
    background-image: url("assets/images/icons-burger-menu/telegram-blue.png");
}
.burger-menu__socials .header-top__socials-link__viber::before {
    background-image: url("assets/images/icons-burger-menu/viber-white.png");
}
.burger-menu__socials .header-top__socials-link__viber:hover::before {
    background-image: url("assets/images/icons-burger-menu/viber-blue.png");
}
/* End of styles for burger menu */

/* Start of styles for footer */
.footer {
    padding: 60px 0 20px;
    background-color: #23266F;
    position: relative;
}
.footer * {
    color: #D7DAFF;
}
.footer__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(100% - 20px);
}
.footer-main.flex-container {
    justify-content: space-around;
    margin-bottom: 75px;
}
.footer-main__socials-emails.emails {
    text-align: center;
    margin: 0 auto 20px;
    min-width: 420px;
    width: 100%;
}
.footer-main__socials-email.email:first-child {
    padding-bottom: 20px;
    border-bottom: 1px solid #D7DAFF;
}
.footer-main__socials-email.email:last-child {
    padding-top: 20px;
}
.footer-main__socials-link {
    color: #9194DD;
}
.footer .header-top__socials.burger-menu__socials {
    justify-content: center;
}
.footer-main__content {
    max-width: 425px;
    width: 100%;
}
.footer-main__content-text {
    margin-bottom: 20px;
}
.footer-main__content-text span {
    font-weight: 700;
    color: #9194DD;
}
.footer-copyright {
    text-align: center;
    margin: 0 auto;
}
#visits {
    display: inline-block;
    position: relative;
    border: 3px solid #E1E4F5;
    padding: 5px 40px 5px 5px;
}
#visits::before {
    content: '';
    position: absolute;
    right: 5px;
    top: 15px;
    width: 28px;
    height: 26px;
    background-image: url("assets/images/icons/views-icon.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.footer-main__content-views_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.footer-main__content-views_label {
    font-size: 14px;
}
/* End of styles for footer */

@media (max-width: 992px) {
    /* Start of general styles */
    body {
        font-size: 17px;
        line-height: 23px;
    }
    .burger-btn:hover,
    .search-btn:hover svg,
    .header-top__nav-item__search-form__wrapper #searchsubmit,
    .other-lang:hover,
    .header-top__socials-link:hover::before,
    .menu-item:hover,
    .burger-menu__btn-close:hover {
        transform: scale(1);
    }
    .logo-img {
        max-width: 225px;
    }
    .section__post-title {
        font-size: 20px;
        line-height: 26px;
    }
    .section__post-date {
        margin-right: 10px;
    }
    .section__btn {
        padding: 10px 175px 10px 150px;
        font-size: 17px;
        line-height: 22px;
    }
    /* End of general styles */

    /* Start of styles for burger menu */
    .header-top {
        justify-content: flex-start;
        border-bottom: 1px solid #353935;
        grid-template-columns: 1fr 1fr;
    }
    .header-top__nav-item.header-top__nav-item__burger {
        margin-right: 25px;
    }
    .header-top__nav .header-top__nav-item.header-top__nav-item__search,
    .header-top__nav .header-top__nav-item.header__top__nav-item--langs,
    .header-top__socials,
    .header-bottom {
        display: none;
    }
    .burger-btn {
        width: 40px;
        height: 40px;
    }
    .burger-btn::before {
        top: calc(100% - 20px);
    }
    .burger-menu {
        max-width: 430px;
    }
    .burger-menu__nav .header-top__nav-item.header-top__nav-item__search {
        position: relative;
    }
    .header-top__nav-item__search-form__wrapper {
        padding: 30px 0;
        position: absolute;
        width: 100%;
        min-width: 370px;
        max-width: 370px;
        top: 100%;
        transform: translateY(-800%);
        left: -50px;
    }
    .search-form div {
        display: flex;
    }
    .header-top__nav-item__search-form__wrapper .burger-menu__btn-close {
        top: -50px;
    }
    .burger-menu__nav .header-top__nav-item.header-top__nav-item__search,
    .burger-menu__nav .header-top__nav-item.header__top__nav-item--langs,
    .burger-menu__socials.header-top__socials {
        display: flex;
    }
    .burger-menu__nav .header-top__nav-item {
        padding-bottom: 20px;
    }
    .burger-menu__socials.header-top__socials {
        width: 80%;
    }
    /* End of styles for burger menu */

    /* Start of styles for footer */
    .footer {
        padding: 30px 0 10px;
    }
    .footer-main__socials {
        margin-right: 25px;
    }
    .footer-main__socials-emails.emails {
        min-width: 300px;
    }
    .footer .burger-menu__socials.header-top__socials {
        width: 100%;
    }
    .footer-main.flex-container {
        margin-bottom: 40px;
    }
    .footer-main__content {
        max-width: 375px;
    }
    .footer-main__content-text {
        font-size: 16px;
        line-height: 20px;
    }
    .footer-copyright {
        max-width: 800px;
        width: 100%;
        font-size: 14px;
        line-height: 18px;
    }
    /* End of styles for footer */
}
@media (max-width: 768px) {
    /* General styles */
    body {
        font-size: 15px;
        line-height: 20px;
    }
    .section,
    .section__posts {
        margin-bottom: 40px;
    }
    .section__title {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 15px;
    }
    .section__btn {
        padding: 10px 115px 10px 100px;
    }
    .section__btn::after {
        width: 15px;
        height: 5px;
    }
    .section__post-title {
        font-size: 18px;
    }
    .section__post-desc {
        font-size: 16px;
    }
    /* End General styles */

    /* Start of styles for footer */
    .footer-main.flex-container {
        align-items: baseline;
    }
    .footer-main__socials-emails.emails {
        min-width: 200px;
        font-size: 17px;
        line-height: 21px;
    }
    .footer-main__socials-text {
        font-size: 15px;
    }
    /* End of styles for footer */
}
@media (max-width: 575px) {
    /* Start of general styles */
    .logo-img {
        max-width: 175px;
    }
    header {
        position: fixed;
        z-index: 20;
        top: 0;
        left: 0;
        right: 0;
        background-color: #f5f5f5;
    }
    main {
        padding-top: 90px;
    }
    /* End of general styles */
    .burger-menu {
       max-width: 100%;
       padding: 60px 20px 60px 40px
    }
    .burger-menu__btn-close {
        float: right;
    }
    .burger-menu .burger-menu__categories .menu-item a {
        padding: 20px 15px 20px 0;
        font-size: 22px;
        line-height: 36px;
    }
    .header-top__nav-item__search-form__wrapper {
        min-width: 435px;
        left: -20px;
    }
    /* Start of styles for footer*/
    .footer-main.flex-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-main__socials {
        display: flex;
        width: 100%;
        justify-content: space-between;
        margin-right: 0;
    }
    .footer-main__socials-email.email:first-child {
        padding-bottom: 10px;
    }
    .footer-main__socials-email.email:last-child {
        padding-top: 10px;
    }
    .footer-main__content {
        max-width: inherit;
    }
    .footer-main__content-text {
        font-size: 14px;
    }
    .footer-main__content-views {
        display: flex;
        align-items: center;
        justify-content: space-around;
        font-size: 17px;
        line-height: 21px;
    }
    /* End of styles for footer*/
}
@media (max-width: 500px) {
    .header-top__nav-item__search-form__wrapper {
        min-width: 375px;
    }
}
@media (max-width: 440px) {
    /* General styles */
    .section__btn {
        padding: 10px 65px 10px 50px;
    }
    /* End General styles */

    .header-top__nav-item__search-form__wrapper {
        min-width: 325px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 20vh 15px;
    }
    .header-top__nav-item__search-form__wrapper .burger-menu__btn-close {
        right: 0;
        left: unset;
        top: 5vh;
    }
    /* Start of styles for footer*/
    .footer-main__socials {
        flex-direction: column;
        margin-bottom: 20px;
    }
    /* End of styles for footer*/
}
@media (max-width: 370px) {
    .header-top__nav-item__search-form__wrapper {
        min-width: 275px;
    }
}
@media (max-width: 330px) {
    .header-top__nav-item__search-form__wrapper {
        min-width: 240px;
    }
}