@charset "UTF-8";

.theme-light {
    --color-primary: #000;
    --color-secondary: #EF8C15;
    --color-accent: #3B94B5;
    --color-text-default: #30323D;
    --color-background: #FFF;
}
.theme-dark {
    --color-primary: #fff;
    --color-secondary: #EF8C15;
    --color-accent: #3B94B5;
    --color-text-default: #fff;
    --color-background: #1C1C28;
}
@font-face {
    font-family: 'Roboto';
    font-weight: normal;
    font-style: normal;
    src: local('Roboto-Regular'), url('../fonts/Roboto-Regular.woff') format('woff');
}
@font-face {
    font-family: 'Roboto';
    font-weight: 500;
    font-style: normal;
    src: local('Roboto-Medium'), url('../fonts/Roboto-Medium.woff') format('woff');
}
@font-face {
    font-family: 'Roboto';
    font-weight: bold;
    font-style: normal;
    src: local('Roboto-Bold'), url('../fonts/Roboto-Bold.woff') format('woff');
}
@font-face {
    font-family: 'Roboto';
    font-weight: 900;
    font-style: normal;
    src: local('Roboto-Black'), url('../fonts/Roboto-Black.woff') format('woff');
}

/* SETTINGS */
*, ul, ol, p{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul, ol{
    list-style: none;
}
dl, ol, ul {
    margin-top: 0;
    margin-bottom: 0;
}
a{
    color: var(--color-primary);
    text-decoration: none !important;
    transition: .3s all ease;
}
html{
    scroll-behavior: smooth;
}
html, body{
    background: var(--color-background);
    color: var(--color-primary);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-family: 'Roboto', sans-serif;

}
button, input, optgroup, select, textarea {
    color: inherit;
    font: inherit;
    margin: 0
}
audio, canvas, iframe, img, svg, video, i {
    vertical-align: middle
}
.section_title{
    color: var(--color-text-default);
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}
.wrapper{
    overflow: clip;
}
.section_title span{
    color: var(--color-secondary);
}
.d-flex{
    display: flex;
}
@media (min-width: 576px)
.d-sm-none {
    display: none!important;
}
.align-items-center{
    align-items: center;
}
/* HEADER */
header .header_menu{
    position: relative;
}

header .header_menu.fixed{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 110;
    background: rgba(26, 29, 46, 1);
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}
header .header_top .row{
    position: relative;
    padding: 12px 0 14px 0;
}
header .header_top .row::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: calc(100% - 24px);
    border-radius: 5px;
    background: #313651;
    backdrop-filter: blur(24.5px);
    height: 2px;
}
header .header_top .left_items .title,
.right_items .phone a,
.right_items .user_actions a{
    font-size: 13px;
    transition: .3s all ease;
}
.right_items .user_actions ul{
    display: flex;
    align-items: center;
}
.right_items .user_actions li{
    position: relative;
}
.right_items .user_actions .dropdown_nav{
    position: relative;
    display: flex;
    align-items: center;
    padding-right: 15px;
    gap: 0 8px;
    cursor: pointer;
    transition: .3s all ease;
}
.right_items .notifications_head .notification_alert{
    background:#FFA335;
    color: #fff;
    border-radius: 5px;
    font-size: 12px;
    padding: 5px;
}
.right_items .notifications_head i{
    padding: 0;
    font-size: 13px;
    color: #fff;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    border-radius: 50%;
    background-color: #156683;
    justify-content: center;
}
.right_items ul li a:hover,
header .header_top .right_items a:hover{
    color: #EF8C15;
}
.right_items ul li.active .dropdown_nav{
    color: #EF8C15;
}
.right_items ul li.active .user_name::before{
    border-color: #ef8c15;
}
.right_items .user_actions .user_name::before{
    content: "";
    display: block;
    height: 6px;
    position: absolute;
    right: 0;
    top: -5px;
    bottom: 0;
    margin: auto;
    width: 6px;
    transform: rotate(45deg);
    border-bottom: 2px solid #000;
    border-right: 2px solid #000
}
.right_items .user_actions .dropdown{
    pointer-events: none;
    position: absolute;
    min-width: 300px;
    top: 0;
    right: 0;
    list-style: none;
    border-radius: 5px;
    border: 2px solid #1F2738;
    background: rgba(26, 29, 46, 0.50);
    backdrop-filter: blur(15px);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    overflow: hidden;
    z-index: 100;
    display: flex;
    flex-direction: column;
    padding: 20px;
    align-items: flex-start;
    gap: 15px 0;
}
.right_items .user_actions .dropdown li a{
    display: flex;
    align-items: center;
    gap: 0 5px;
    font-size: 14px;
    transition: .3s all ease;
}
.right_items .user_actions .dropdown li i{
    padding: 0;
    color: #ACAFB9;
    width: 20px;
    display: flex;
    align-items: center;
    transition: .3s all ease;
    justify-content: center;
}
.right_items .user_actions .dropdown li a:hover{
    color: #EF8C15;
    transform: translateX(3px);
}
.right_items .user_actions .dropdown li a:hover i{
    color: #EF8C15;
}
.right_items .user_actions li.active .dropdown{
    opacity: 1;
    top: 45px;
    visibility: visible;
    pointer-events: all;
}
header .header_top .left_items{
    gap: 0 15px;
}
header .header_top .social_links{
    gap: 0 10px;
}
header .header_top .right_items{
    gap: 0 80px;
}
header .header_top .right_items a{
    gap: 0 8px;
}
.header_top .user_actions ul{
    gap: 0 30px;
}
.right_items .user_actions .login{
    position: relative;
}
.right_items .user_actions .login::before{
    content: '';
    position: absolute;
    left: -40px;
    height: 100%;
    background: #969696;
    width: 1px;
}
header .header_menu .header_row{
    display: flex;
    align-items: center;
}
.header_menu .header_row .logo a{
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
}
.header_menu .header_row .logo img{
    width: 240px;
}
.header_menu .header_items{
    gap: 0 35px;
}
.header_menu .header_actions{
    gap: 0 35px;
}
.header_menu .header_actions > div{
    height: 100%;
    display: flex;
    align-items: center;
}
.header_menu .header_actions .modal_btn{
    color: var(--color-primary);
}
.header_menu .header_actions .dark_mode_toggle{
    width: 25px;
    cursor: pointer;
    height: 25px;
}
.header_menu .header_actions .dark{
    display: none;
}
.header_menu .header_actions .light{
    display: block;
}
.header_menu .header_items .menu_list{
    gap: 0 50px;
}
.header_menu .header_items .menu_list a{
    transition: .3s all ease;
}
.header_items .language{
    position: relative;
}
.header_items .language li.active .submenu{
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    top: 55px;
}
.header_items .language li.active .dropdown_nav{
    color: #EF8C15;
}
.header_items .language .selected{
    gap: 0 8px;
    transition: .3s all ease;
    cursor: pointer;
}
.header_items .language ul a.active{
    color: #EF8C15;
}
.header_items .language:hover .selected{
    color: #EF8C15;
}
.language .submenu a{
    transition: .3s all ease;
}
.language .submenu a:hover{
    color: #EF8C15;
}
.header_items .language .submenu{
    position: absolute;
    left: 0;
    list-style: none;
    opacity: 0;
    z-index: 4;
    pointer-events: none;
    visibility: hidden;
    top: 60px;
    border-radius: 5px;
    border: 2px solid #1F2738;
    background: rgba(26, 29, 46, 0.50);
    backdrop-filter: blur(15px);
    transition: 0.3s all ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 15px;
    gap: 15px 0;
}
.language .submenu ul{
    display: flex;
    flex-direction: column;
}
.menu_list li{
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}
.menu_list li .main_link{
    display: flex;
    color: var(--color-primary);
    align-items: center;
    justify-content: center;
    height: 85px;
    cursor: pointer;
    position: relative;
}
.menu_list li .dropdown_nav{
    padding-right: 20px;
}
.menu_list li .dropdown_nav::before{
    content: "";
    display: block;
    height: 7px;
    position: absolute;
    right: 0;
    top: -4px;
    bottom: 0;
    margin: auto;
    width: 7px;
    transform: rotate(45deg);
    border-bottom: 2px solid #000;
    border-right: 2px solid #000;
    transition: .3s all ease;
}
.menu_list li.active .dropdown_nav::before{
    border-color: #EF8C15;
}
.menu_list li.active .main_link,
.menu_list li:hover .dropdown_nav::before{
    border-color: #EF8C15;
    color: #EF8C15;
}
.menu_list li:hover .main_link{
    color: #EF8C15;
}
.menu_list li.active .dropdown{
    opacity: 1;
    top: 85px;
    visibility: visible;
    pointer-events: all;
}
.menu_list li ul a{
    transition: .3s all ease;
}
.menu_list li ul a:hover{
    color: #EF8C15;
}
.menu_list li ul{
    pointer-events: none;
    position: absolute;
    min-width: 200px;
    left: -20px;
    top: 60px;
    list-style: none;
    border-radius: 5px;
    border: 2px solid #1F2738;
    background: rgba(26, 29, 46, 0.50);
    backdrop-filter: blur(15px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s all ease;
    overflow: hidden;
    z-index: 100;
    display: flex;
    flex-direction: column;
    padding: 25px;
    gap: 15px 0;
}


/* HERO */
.hero{
    padding-top: 35px;
    margin-bottom: 50px;
    position: relative;
}
.hero::before{
    content: '';
    position: absolute;
    right: -30%;
    top: 0;
    width: 1015px;
    height: 1015px;
    border-radius: 50%;
    background: #176683;
    filter: blur(450px);
}
.hero .swiper-pagination{
    display: flex;
    bottom: 40px;
    gap: 0 10px;
}
.hero .swiper-pagination-bullet{
    width: 20px;
    height: 20px;
    background: #605C6D;
}
.hero .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: #3B94B5;
}
.hero .slide_image img{
    max-width: 100%;
    object-fit: cover;
    object-position: center;
}
.hero .slide_texts{
    flex: 0 0 auto;
    width: calc(55% - 15px);
}
.hero .slide_image{
    flex: 0 0 auto;
    width: calc(45% - 15px);
}
.hero .slide_texts .title{
    color: var(--color-primary);
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 15px;
}
.hero .test_btn{
    font-size: 15px;
    display: block;
    color: #fff;
    width: fit-content;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border-radius: 16px 5px;
    background: #146480;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.15);
    padding: 12px 18px;
    margin-bottom: 30px;
}
.hero .slide_texts .subtitle{
    font-size: 18px;
    font-style: normal;
    transition: none !important;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 20px;
}
.hero .slide_texts .action a{
    padding: 15px 50px;
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    width: fit-content;
    border-radius: 5px;
    background: linear-gradient(96deg, #FFA335 22.56%, #F16517 90.24%);
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.15);
}

/* DOMAINS SEARCH */
.domains_search{
    margin-bottom: 30px;
}
.domains_search .domains_row{
    border-radius: 10px;
    border: 1px solid rgba(55, 55, 55, 0.90);
    background: rgba(19, 21, 24, 0.40);
    backdrop-filter: blur(24.5px);
    padding: 32px 20px;
}

.domains_search .domains_row .domains_header{
    gap: 0 70px;
    margin-bottom: 25px;
}
.domains_search ul{
    gap: 0 70px;
}
.domains_search ul li{
    position: relative;
}
.domains_search ul li{
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0 5px;
    line-height: normal;
    color: #fff;
}
.domains_search ul li .price{
    color: #EF8C15;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.domains_search ul li .domain_badge{
    font-size: 12px;
    line-height: normal;
    font-weight: 300;
    background: linear-gradient(272.8deg, #255FE0 7.3%, #50B7FC 92.82%);
    color: #FFFFFF;
    padding: 2px 5px;
    border-radius: 12px;
}
.domains_search ul li{
    position: relative;
}
.domains_search ul li .domain_badge{
    position: absolute;
    top: -20px;
    right: -20px;
}
.domains_search ul li .date{
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: var(--color-primary);
}
.domains_search ul li::before{
    background: #353536;
    content: '';
    right: -35px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 32px;
    position: absolute;
    width: 1px;
}
.domains_search .more_btn a{
    color: #3B94B5;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration-line: underline;
    position: relative;
}
.domains_search .more_btn a:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #3B94B5;
    bottom: 0;
}
.domains_search form{
    position: relative;
}
.domains_search form button{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    outline: none;
    border: none;
    border-bottom-left-radius: 90px;
    border-top-left-radius: 90px;
    border-top-right-radius: 90px;
    border-bottom-right-radius: 90px;
    background: linear-gradient(96deg, #FFA335 22.56%, #F16517 90.24%);
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.15);
    display: flex;
    padding: 0 20px;
    gap: 0 10px;
    align-items: center;
    color: #fff;
    justify-content: center;
    height: 100%;
}
.domains_search form input{
    width: 100%;
    outline: none;
    height: 50px;
    border-radius: 90px;
    border: 1px solid #5A5A5A;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.15);
    padding: 0 150px 0 30px;
    color: var(--color-primary);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    transition: .3s all ease;
    line-height: normal;
    background: transparent;
}
.domains_search form input::placeholder{
    color: var(--color-primary);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: .3s all ease;
}
.domains_search form input:focus,
.domains_search form input:hover{
    border-color: #fff;
}
.domains_search form input:hover::placeholder,
.domains_search form input:focus::placeholder{
    color: transparent;
}

    /* SERVICES */

.services{
    margin-bottom: 80px;
    padding: 0 !important;
    position: relative;
}
.services::before{
    content: '';
    position: absolute;
    border-radius: 50%;
    width: 400px;
    height: 400px;
    opacity: 0.3;
    background: #F18E17;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    filter: blur(450px);
}
.services .section_title{
    margin-bottom: 30px;
}
.services .service_card{
    text-align: center;
    border-radius: 10px;
    border: 1px solid rgba(55, 55, 55, 0.90);
    background: rgba(19, 21, 24, 0.40);
    backdrop-filter: blur(24.5px);
    padding: 30px 20px;
}
.service_card .card_header .card_icon svg{
    width: 130px;
    height: 130px;
}
.service_card .card_header .card_icon{
    margin-bottom: 20px;
}
.service_card .card_header .card_icon img{
    width: 130px;
    height: 130px;
}
.service_card .card_header .card_name{
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    color: var(--color-primary);
    line-height: normal;
    margin-bottom: 15px;
}
.service_card .card_header .card_info{
    padding: 20px 0;
    border-top: 1px solid #D6D6D6;
    border-bottom: 1px solid #D6D6D6;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 20px;
    color: #EF8C15;
}
.service_card .card_content{
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 24px;
    height: 120px;
    overflow: hidden;
    color: var(--color-primary);
}
.services .services_row{
    gap: 30px 0;
}
.services_row .service_card{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}
.service_card .card_action{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85%;
    margin: 0 auto;
}
.service_card .card_action .action_btn{
    font-size: 16px;
    display: flex;
    color: #fff;
    width: 100%;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    justify-content: center;
    border-radius: 5px;
    background: #FFA335;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.15);
    padding: 15px 35px;
}

/* ADVANTAGES */
.advantages .advantages_texts{
    padding-top: 8px;
}
.advantages .advantages_texts{
    flex: 0 0 auto;
    width: calc(40% - 45px);
}
.advantages .advantage_image{
    width: calc(60% - 45px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.advantages .advantage_image::before{
    content: '';
    border-radius:50%;
    background: #176683;
    filter: blur(450px);
    right: 0;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 540px;
    position: absolute;
    height: 540px;
}
.advantages .advantages_texts .title{
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 30px;
}
.advantages .advantages_texts .subtitle{
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

/* CLIENTS */
.clients {
    padding: 260px 0;
    position: relative;
}
.clients .bg_layer{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    overflow: hidden;
}
.clients .bg_layer .light{
    display: none;
}
.clients .bg_layer img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.clients .section_header{
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}
.clients .slide_item{
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    border: 1px solid rgba(55, 55, 55, 0.90);
    background: rgba(19, 21, 24, 0.30);
    backdrop-filter: blur(24.5px);
}
.clients .slide_item img{
    max-width: 200px;
    max-height: 60px;
}
.clients .slide_item .light{
    display: none;
}

/* NEWS */
.news{
    margin-bottom: 80px;
}
.news .section_header{
    margin-bottom: 45px;
}
.news .news_row{
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px 0;
}
.news .more_btn{
    justify-content: center;
}
.news .more_btn a{
    padding: 8px 40px;
    color: #EF8C15;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    background: transparent;
    border-radius: 5px;
    border: 1px solid #EF8C15;
    transition: .3s all ease;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.15);
}
.news .more_btn a:hover{
    color: #fff;
    background: #EF8C15;
}
.news .news_item{
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
    transition: .3s all ease;
    height: 100%;
    padding: 20px;
    justify-content: space-between;
}
.news .news_item:hover{
    border-radius: 5px;
    border: 1px solid rgba(55, 55, 55, 0.90);
    background: rgba(19, 21, 24, 0.40);

}
.news .news_item .item_title{
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    color: var(--color-primary);
    line-height: normal;
    margin-bottom: 20px;
}
.news .news_item .item_bottom{
    display: flex;
    align-items: center;
    gap: 0 25px;
}
.news_item .item_bottom .date{
    font-size: 14px;
    color: var(--color-primary);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.4;
}
.news_item .item_bottom .item_action a{
    color: #EF8C15 !important;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 139%;
    position: relative;
}
.news_item .item_bottom .item_action a::before {
    position: absolute;
    content: "";
    left: auto;
    right: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #EF8C15;
    transition: .3s all ease;
}
.news_item .item_bottom .item_action a:hover::before{
    left: 0;
    right: auto;
    width: 100%;
}
.news .section_header .header_action a{
    padding: 11px 55px;
    color: #EF8C15;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    background: transparent;
    border-radius: 5px;
    border: 1px solid #EF8C15;
    transition: .3s all ease;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.15);
}
.news .section_header .header_action a:hover{
    color: #fff;
    background: #EF8C15;
}

/* TESTIMONIALS */
.section_header .swiper_navs{
    gap: 0 15px;
    position: relative;
    z-index: 2;
}
.section_header .swiper_navs > div{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(55, 55, 55, 0.90);
    background: rgba(19, 21, 24, 0.30);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #EF8C15;
    transition: .3s all ease;
}
.section_header .swiper_navs .swiper_next,
.section_header .swiper_navs .swiper_prev{
    cursor: pointer;
}
.section_header .swiper_navs .swiper_next:hover,
.section_header .swiper_navs .swiper_prev:hover{
    background: #FFA335;
    border-color: #FFA335;
    color: #fff;
}
.testimonials{
    margin-bottom: 80px;
}
.testimonials .container{
    position: relative;
}
.testimonials .section_header{
    margin-bottom: 20px;
    position: relative;
}
.testimonials .section_header::after{
    content: '';
    position: absolute;
    pointer-events: none;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: #176683;
    filter: blur(200px);
    opacity: 0.3;
    top: 0;
    transform: rotate(15deg);
    right: 0;
}
.testimonials .container::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 140px;
    height: 140px;
    background: #F18E17;
    filter: blur(150px);
    transform: rotate(15deg);
    pointer-events: none;
}
.testimonials .swiper .swiper-wrapper{
    align-items: stretch;
}
.testimonials .swiper .swiper-slide{
    height: auto;
}
.testimonials .testimonials_item{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 10px;
    border: 1px solid rgba(55, 55, 55, 0.90);
    background: rgba(19, 21, 24, 0.30);
    backdrop-filter: blur(24.5px);
    padding: 25px;
    height: 100%;
}
.testimonials .testimonials_item .testimonial_name{
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    color: var(--color-primary);
    line-height: normal;
}
.testimonials .testimonials_item .testimonials_header{
    margin-bottom: 10px;
}
.testimonials .testimonials_item .testimonials_info{
    margin-bottom: 5px;
    color: var(--color-primary);
}
.testimonials .testimonials_item .domain_name{
    opacity: 0.4;
    color: var(--color-primary);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* SECTION CALLBACK */
.callback{
    margin-bottom: 100px;
    position: relative;
}
.callback::before{
    pointer-events: none;
    content: '';
    position: absolute;
    left: -20%;
    bottom: 0;
    border-radius: 50%;
    opacity: 0.4;
    background: #176683;
    filter: blur(450px);
    width: 1000px;
    height: 1000px;
}
.callback .callback_title{
    color: var(--color-primary);
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}
.callback .callback_subtitle{
    color: var(--color-primary);
    font-size: 29px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 10px 0 30px 0;
}
.callback form .inputs input{
    flex: 0 0 auto;
    width: 100%;
    height: 55px;
    padding: 0 30px;
    outline: none;
    color: var(--color-primary);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 5px;
    border: 1px solid #5A5A5A;
    background: transparent;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.15);
    transition: .3s all ease;
}
.callback form .inputs input:hover,
.callback form .inputs input:focus{
    border-color: #fff;
}
.callback form .inputs input:focus::placeholder{
    color: transparent;
}
.callback form input::placeholder{
    color: var(--color-primary);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.callback form .inputs{
    margin-bottom: 20px;
}
.callback form .inputs > div{
    width: calc(33.33% - 14px);
}
.callback .iti__country-list{
    border: 1px solid #D1E2E9;
    background: rgba(244, 244, 244, 0.20);
    backdrop-filter: blur(24.5px);
}
.callback form textarea{
    border-radius: 5px;
    border: 1px solid #5A5A5A;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.15);
    background: transparent;
    padding: 20px 30px;
    width: 100%;
    margin-bottom: 20px;
    transition: .3s all ease;
    resize: none;
}
.callback form textarea:hover,
.callback form textarea:focus{
    border-color: #fff;
}
.callback .input_item .iti{
    width: 100%;
}
.callback form textarea:focus::placeholder{
    color: transparent;
}
.callback form textarea::placeholder{
    color: var(--color-primary);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.callback form button{
    padding: 18px 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    border-radius: 5px;
    background: #FFA335;
    color: #fff;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.15);
    transition: .3s all ease;
    border: none;
}
.callback form button:hover{
    background-color: #F16517;
    box-shadow: 0px 4px 15px 0px rgba(239, 140, 21, 0.40);
}
.callback form button:active{
    background-color: #F16517;
    box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.40) inset;
}
/* FOOTER */
footer .footer_top{
    padding: 40px 0;
    background: #29293D;
}
.footer_col.footer_contacts .payments ul{
    flex-wrap: wrap;
    gap: 10px 0;
    justify-content: space-between;
    max-width: 80%;
}
.footer_col.footer_contacts .payments li{
    flex: 0 0 auto;
    text-align: center;
    width: 30%;
}
.footer_col.footer_contacts .payments img{
    max-height: 30px;
    max-width: 50px;
    vertical-align: middle;
}
.footer_col.footer_contacts .payments .light{
    display: none;
}
footer .footer_top .top_row{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}
footer .footer_top .footer_col{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 0 0 auto;
    width: calc(25% - 40px);
}

.footer_top .footer_col .col_title{
    font-size: 15px;
    color: var(--color-primary);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 15px;
}
.footer_top .footer_col .footer_menu li:not(:last-child){
    margin-bottom: 15px;
}
.footer_col .footer_menu a{
    font-size: 13px;
    color: var(--color-primary);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: .3s all ease;
}
.footer_col .footer_menu a:hover{
    color: #EF8C15;
}
.footer_col.footer_contacts .contacts{
    margin-bottom: 25px;
}
.footer_col.footer_contacts .contacts a:not(:last-child){
    margin-bottom: 15px;
}
.footer_col.footer_contacts .contacts a{
    display: flex;
    align-items: center;
    color: var(--color-primary);
    gap: 0 10px;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    width: fit-content;
}
.footer_col.footer_contacts .contacts .phone_title{
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 18px;
    color: #EF8C15;
}
.footer_col.footer_contacts .contacts a img{
    width: 18px;
    height: 18px;
}
.footer_col.footer_contacts .payments{
    gap: 0 10px;
    flex-wrap: wrap;
}
.footer_col.footer_contacts .payments .payments_title{
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    color: var(--color-primary);
    line-height: normal;
    margin-bottom: 15px;
}
footer .footer_bottom{
    background: #222235;
    padding: 10px 0;
}
.footer_bottom .social_links{
    gap: 0 15px;
}
.footer_bottom .social_links .light{
   display: none;
}
.footer_bottom .copyright{
    color: var(--color-primary);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: end;
    opacity: 0.6;
}
.social_links a{
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s all ease;
}
.social_links a .light{
    display: none;
}
.social_links a:hover{
    opacity: 0.7;
}

/* BACK-TOP-TOP */
.back-to-top {
    position: fixed;
    left: 20px;
    bottom: 0;
    height: 44px;
    width: 44px;
    cursor: pointer;
    display: block;
    border-radius: 50%;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: .3s all ease;
}
.back-to-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 50px;
}
.back-to-top button {
    transition: .3s all ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    outline: none;
    border: none;
    text-align: center;
    background: #fff;
    box-shadow: 0px 8px 16px rgba(3, 4, 28, 0.3);
    color: #000;
    border-radius: 50%;
}
.back-to-top button:hover{
    transform: translateY(-4px);
}

/* HAMBURGER MENU */
.hamburger_menu{
    position: fixed;
    top: 0;
    bottom: 0;
    right: -100%;
    width: 100%;
    max-width: 260px;
    background: rgba(26, 29, 46, 0.90);
    z-index: 130;
    transition: all .3s ease;
    overflow-y: auto;
    backdrop-filter: blur(5px);
}
.hamburger_menu.active{
    right: 0;
}
.hamburger_menu .hamburger_row{
    padding: 50px 0 30px 0;
    position: relative;
}
.hamburger_menu .hamburger_close{
    display: flex;
    position: absolute;
    top: 15px;
    right: 15px;

}
.hamburger_menu .hamburger_close button{
    display: flex;
    background: transparent;
    align-items: center;
    justify-content: center;
    border: none;
    color: #fff;
    outline: none;
}
.hamburger_close button svg{
    width: 16px;
    height: 16px;
    color: var(--color-primary);
}
.hamburger_menu .hamburger_nav{
    padding: 0;
    margin-bottom: 20px;
}
.hamburger_menu .social_links .title{
    margin-bottom: 15px;
}
.hamburger_menu .social_links svg{
    width: 36px;
    height: 36px;
}
.hamburger_menu .social_links{
    padding: 0 15px;
}
.hamburger_menu .social_links ul{
    gap: 0 10px;
}
.hamburger_menu form{
    display: flex;
    position: relative;
    align-items: center;
    margin: 0 15px;
    margin-bottom: 20px;
}
.hamburger_menu form button{
    position: absolute;
    border: none;
    outline: none;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}
.hamburger_menu form input{
    background: #282e36;
    border: 0;
    line-height: 22px;
    padding: 8px 40px 8px 12px;
    height: 38px;
    color: var(--color-primary);
}
.hamburger_menu form input::placeholder{
    color: var(--color-primary);
}
.hamburger_menu .hamburger_nav li{
    position: relative;
}
.hamburger_menu .hamburger_nav li:not(:last-child){
    border-bottom: 1px solid #282e36;
}
.hamburger_menu .hamburger_nav li a, .hamburger_menu .hamburger_nav li .current{
    display: block;
    position: relative;
    margin: 0 5px;
    padding: 10px 0;
    color: var(--color-primary);
    font-size: 16px;
    padding-left: 10px;
}
.hamburger_nav li .current.active{
    background-color: #282e36;
}
.hamburger_nav li .current.active::after{
    transform: rotate(225deg);
}
.hamburger_nav li .current:after{
    content: '';
    border: solid var(--color-primary);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
    transition: .3s all ease;
    height: 3px;
}
body.overflow-hidden{
    overflow: hidden;
}
.hamburger_nav li ul{
    display: none;
}
.hamburger_nav li ul li{
    padding-left: 20px;
}
.hamburger_menu .switch_lang{
    padding: 0 15px;
}
.hamburger_menu .switch_lang ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 15px;
}
.hamburger_menu .switch_lang ul li a{
    font-weight: 500;
}
.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    z-index: 115;
    pointer-events: none;
    backdrop-filter: blur(3px);
}
.overlay.active {
    pointer-events: all;
    opacity: 1;
    visibility: visible;
}

/* COOKIE ALERT */

.cookie-alert {
    backdrop-filter: blur(24.5px);
    background: rgba(46, 51, 60, 0.40);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 5px;
    margin: 0 auto;
    z-index: 90;
    opacity: 0;
    transform: translateY(100%);
    transition: all .3s ease !important;
}
.cookie-alert .cookie_content{
    flex: 1;
    color: var(--color-primary);
}
.cookie-alert .cookie_content a{
    color: #0d6efd;
}
.cookie-alert .cookie_wrapper{
    border-radius: 8px;
    padding: 20px;
    gap: 0 20px;
    position: relative;
}
.cookie-alert button{
    border: none;
    padding: 11px 24px;
    border-radius: 5px;
    width: fit-content;
    height: fit-content;
    background-color: #FFA335;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s all ease;
    font-size: 16px;
    outline: none;
}
.cookie-alert.show {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

/* BREADCRUMBS */
.breadcrumbs{
    padding: 40px 0 20px 0;
}
.breadcrumbs ul{
    display: flex;
    align-items: center;
    margin-bottom: 0;
    gap: 0 24px;
}
.breadcrumbs li{
    position: relative;
}
.breadcrumbs li a{
    padding: 0;
    color: #000;
    transition: .3s all ease;
    transition: inherit;
}
.breadcrumbs li a:hover{
    color: #3B94B5;
}
.breadcrumbs li.active{
    color: #000;
    opacity: 0.7;
}
.breadcrumbs li:not(:last-child)::after{
    content: ">";
    color: var(--color-primary);
    position: absolute;
    right: -15px;
}


/* LOGIN PAGE */
.logincontainer{
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    padding: 40px;
}
.login_row .login_wrap .title{
    color: var(--color-primary);
    font-size: 28px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}
.login_wrap .form-group input{
    width: 100%;
    height: 50px;
    padding: 0 20px;
    outline: none;
    color: var(--color-primary);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 5px;
    border: 1px solid #D1E2E9;
    background: rgba(244, 244, 244, 0.20);
    box-shadow: inherit;
    transition: .3s all ease;
}
.mb-3{
    margin-bottom: 1rem!important;
}
.login_wrap .buttons{
    display: flex;
    flex-direction: column;
    gap: 15px 0;
}
.login_wrap .buttons button{
    padding: 10px !important;
    font-size: 16px;
}
.login_wrap .buttons a{
    padding: 10px !important;
    font-size: 16px;
}
.login-form .login_footer .form-check-label{
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.login-form .login_footer .form-check-label::before{
    content: "";
    border: 2px solid #ced4da;
    height: 17px;
    width: 17px;
    margin: 0px 8px 0 0;
    display: inline-block;
    vertical-align: middle;
}
.login-form .login_footer .form-check-label::after{
    content: "";
    width: 11px;
    position: absolute;
    top: 50%;
    left: 3px;
    opacity: 0;
    height: 6px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    -moz-transform: translateY(-65%) rotate(-45deg);
    -webkit-transform: translateY(-65%) rotate(-45deg);
    transform: translateY(-65%) rotate(-45deg);
}
.login-form .custom-checkbox .form-check-input:checked + .form-check-label::before {
    background-color: #FF324D;
    border-color: #FF324D;
}
.login-form .custom-checkbox .form-check-input:checked + .form-check-label::after {
    opacity: 1;
}
.login-form button{
    padding: 14px 0;
    outline: none;
    border: none;
    width: 100%;
    border-radius: 5px;
}
.login_row .different_login{
    text-align: center;
    position: relative;
    margin: 20px 0;
}
.login_row .different_login span {
    background-color: #fff;
    padding: 0 15px;
    position: relative;
    text-transform: uppercase;
}
.login_row .different_login::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    right: 0;
    border-top: 1px solid #ddd;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.login_row .other_ways{
    margin-bottom: 20px;
}

.login_row .form-note{
    color: #687188;
}
.documents_main{
    padding: 40px 0;
}
.documents_main .section_title{
    font-size: 32px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #D6D6D6;
}
.documents_main .head_text{
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 20px;
}
.documents_main ul{
    display: flex;
    flex-direction: column;
    gap: 20px 0;
}
.documents_main ul li{
    display: flex;
    align-items: center;
}
.documents_main ul li i{
    color: #FFA335;
}
.documents_main ul li a{
    color: #3B94B5;
}
.document_wrapper{
    padding: 40px 0;
}
.document_wrapper .section_title{
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 1px solid #D6D6D6;
    padding-bottom: 10px;
}
.document_wrapper .document_texts p.main{
    font-weight: 600;
}
.document_wrapper .document_texts p:not(:last-child){
    margin-bottom: 20px;
}
.document_wrapper .document_texts ul{
    margin-bottom: 20px;
    list-style: inside;
}
.document_wrapper .document_texts ul li:not(:last-child){
    margin-bottom: 10px;
}
.document_wrapper .document_texts .document_contacts ul li:not(:last-child){
    margin-bottom: 10px;
}
.document_wrapper .document_texts .document_contacts a{
    color: #3B94B5;
}
.document_wrapper .description{
    margin-bottom: 20px;
}
.document_wrapper .content_item .item_title{
    color: #545454;
    font-size: 24px;
    font-weight: 500;
}
.document_wrapper .content_item:not(:last-child){
    margin-bottom: 30px;
}
.document_wrapper .content_item ul{
    display: flex;
    flex-direction: column;
    gap: 20px 0;
}
.document_wrapper .content_item ul li{
    display: flex;
    align-items: center;
    gap: 10px 0;
}
.document_wrapper .content_item ul li a,
.document_wrapper p a{
    color: #3B94B5;
}
.document_wrapper .content_item ul li i{
    color: #FFA335;
}
.document_wrapper .content_item{
    display: flex;
    flex-direction: column;
    gap: 20px 0;
}

/* continuous */

.left_items .phone{
    display: none;
}
.ssl_products .plan_item .plan_header .plan_price .date,
.ssl_products .plan_item .plan_header .plan_biennially_price .date{
    font-weight: 600;
    display: none;
}
.custom_select.domains{
    display: none;
}
.products_swiper,
.colocation_swiper{
    position: relative;
}
.products_swiper .swiper-pagination,
.colocation_swiper .swiper-pagination,
.useful_options .options_swiper .swiper-pagination{
    position: static;
    margin-top: 30px;
}
.products_swiper .swiper-pagination-bullet.swiper-pagination-bullet-active,
.colocation_swiper .swiper-pagination-bullet.swiper-pagination-bullet-active,
.useful_options .options_swiper .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: #3B94B5;
}
.products_swiper .swiper-pagination-bullet,
.colocation_swiper .swiper-pagination-bullet,
.useful_options .options_swiper .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
}
.domains_search ul{
    flex-wrap: wrap;
}
.useful_options .options_swiper .swiper-pagination{
    display: none;
}
/* media styles */
@media all and (max-width: 1400px){
    .hero::before{
        width: 800px;
        height: 800px;
        right: -50%;
    }
    .plans_list .plan_item .item_action a{
        padding: 10px;
    }
    .servers .plans_list .plan_item .content_item{
        padding: 0;
    }
    .useful.servers .useful_row .item{
        width: calc(33.33% - 20px);
    }
    .vps_cards .vps_card .card_title{
        font-size: 24px;
    }
    .vps_cards .vps_card{
        padding: 20px;
        grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1.8fr;
    }
    .licence_images .section_title{
        margin-bottom: 40px;
    }
    .additional_options .section_title{
        margin-bottom: 40px;
    }
    .product_card .card_name{
        font-size: 36px;
    }
    .product_card .card_info .price h1{
        font-size: 36px;
    }
    .domains_search.domains{
        padding: 40px 0;
    }
    .domain-names-intro .section_header{
        margin-bottom: 60px;
    }
    .domain-names-intro{
        padding: 40px 0;
    }
    .ssl_advantages .section_title{
        margin-bottom: 40px;
    }
    .ssl_products .plan_item .plan_header > div:not(:first-child){
        font-size: 15px;
    }
    .ssl_products .plan_item .plan_header,
    .ssl_products .plans_list_header{
        grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    }
    .ssl_products .plans_list_header .plan_description{
        font-size: 16px;
    }
    .ssl_products .plans_list_header .plan_description .sale_badge{
        right: -80px;
    }
    .ssl_products .plans_list{
        gap: 25px 0;
    }
    .ssl_products .plan_item .plan_header .plan_title{
        font-size: 16px;
    }
    .webhosting .the-price h1{
        font-size: 36px;
    }
    .useful_row .item img{
        max-width: 90px;
    }
    .productfaqs p{
        margin: 25px 0;
    }
    .productfaqs{
        padding: 40px 0;
    }
    .service_card .card_content{
        height: 150px;
    }
    .domains_category .domain_item .domain_price::before{
        left: 5px;
    }
    .domain_item .domain_price .price{
        font-size: 16px;
    }
    .hero .slide_texts{
        width: calc(50% - 25px);
    }
    .hero .slide_texts .title{
        font-size: 38px;
    }
    .services .services_row{
        gap: 24px 0;
    }
    .news .news_row{
        gap: 30px 0;
    }
    footer .footer_top .footer_col{
        width: calc(23% - 30px);
    }
    footer .footer_top .footer_col.footer_contacts{
        width: calc(35% - 30px);
    }
}
@media all and (max-width: 1200px){
    .section_title{
        font-size: 36px;
    }
    .right_items .user_actions li.active .dropdown{
        top: 42px;
        padding: 16px;
    }
    .right_items .user_actions .dropdown{
        gap: 10px 0;
    }
    header .header_top .right_items{
        gap: 0 50px;
    }
    .right_items .notifications_head .notification_alert{
        display: none;
    }
    .right_items .user_actions .dropdown_nav.user_name span{
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100px;
    }
    .vps_cards .vps_card .card_price{
        width: 155px;
        font-size: 16px;
    }
    .vps_cards .vps_card {
        padding: 20px 16px;
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 2fr;
    }
    .vps_cards .vps_card .card_action a{
        font-size: 14px;
        padding: 10px;
    }
    .vps_cards .vps_card .card_info .title{
        font-size: 16px;
    }
    .vps_cards .vps_card .card_title{
        font-size: 20px;
    }
    .useful_options .options_swiper .col_item{
        padding: 16px;
    }
    .option_card .card_body .card_content{
        font-size: 18px;
    }
    .useful.vps .useful_row .item{
        flex: 0 0 auto;
        width: calc(40% - 10px);
    }
    .contact_page .col_item.map{
        overflow: auto;
    }
    .contact_page .col_item.map .map{
        height: 100%;
    }
    .contact_page{
        padding: 60px 0;
    }
    .contact_page .col_item{
        padding: 30px 20px;
    }
    .contact_page .col_item .col_title,
    .contact_page .col_item .item_block .item_title{
        font-size: 22px;
    }
    .contact_page .col_item .item_block .item_title{
        margin-bottom: 15px;
    }
    .contact_page .col_item .item_block .title{
        font-size: 18px;
    }
    .contact_page .col_item .item_block{
        margin-bottom: 20px;
    }
    .useful.colocation .useful_row .item{
        width: calc(40% - 10px);
    }
    .useful .row .row_item .title i{
        font-size: 24px;
    }
    .domains_search ul{
        gap: 0 25px;
    }
    .domains_search ul li{
        font-size: 20px;
    }
    .domains_search ul li::before{
        right: -12px;
    }
    .domains_search .domains_row .domains_header{
        gap: 0 25px;
    }
    .clouds .cloud_row{
        gap: 30px 0;
    }
    .product_card .card_name{
        font-size: 32px;
    }
    .product_card .card_info .price h1{
        font-size: 32px;
    }
    .product_card .card_action a{
        font-size: 18px;
    }
    .advantages .gallery_card .card_title{
        font-size: 18px;
    }
    .domains_category .category_tabs .btn_list{
        max-width: inherit;
        margin-bottom: 30px;
    }
    .domains_list .domain_item{
        height: 150px;
    }
    .domain_item .domain_name{
        font-size: 28px;
    }
    .domain-names-intro .section_header .item_row .item{
        width: calc(50% - 10px);
    }
    .domain-names-intro .section_header .item_row{
        gap: 0;
        justify-content: space-between;
    }
    .domain-names-intro .section_header .item_row .item_image img{
        width: 80px;
        height: 80px;
    }
    .ssl_advantages .col_item .title{
        font-size: 20px;
        margin-bottom: 15px;
    }
    .ssl_advantages .col_item .description{
        max-width: 100%;
    }
    .sidebar .sidebar_item .item_title{
        font-size: 18px;
    }
    .sidebar .clear_filter button{
        width: 100%;
    }
    .ssl_products .sidebar_item .options{
        flex-direction: row;
        flex-wrap: wrap;
    }
    .ssl_products .sidebar_item .option_item{
        flex: 0 0 auto;
        width: calc(50% - 10px);
    }
    .tabs_container{
        flex-direction: column;
        gap: 30px 0;
    }
    .header_texts .section_description{
        margin-bottom: 40px;
    }
    .banner .banner_wrapper{
        padding: 30px 250px 30px 30px;
    }
    .useful .useful_row{
        flex-wrap: wrap;
        gap: 20px 0;
        margin-bottom: 30px;
    }
    .cms_support .section_title{
        margin-bottom: 40px;
    }
    .useful .useful_row .item{
        flex: 0 0 auto;
        width: calc(33.33% - 10px);
    }
    .useful_row .item img{
        max-width: 120px;
        max-height: 80px;
    }
    .productfaqs p{
        margin: 20px 0;
    }
    .service_card .card_content{
        height: 175px;
    }
    .header_menu .header_items .menu_list{
        gap: 0 30px;
    }
    .domains_search.domains .domains_row{
        padding: 0;
    }
    .domains_search .domains_row{
        padding: 25px 20px;
    }
    .domains_search .more_btn a{
        font-size: 20px;
    }
    .hero .swiper{
        padding-bottom: 50px;
    }
    .hero .swiper-pagination{
        justify-content: center;
        bottom: 0;
    }
    .callback{
        margin-bottom: 80px;
    }
    .callback .callback_title{
        font-size: 36px;
    }
    .callback form button{
        padding: 16px 50px;
    }
    .callback .callback_subtitle{
        font-size: 24px;
    }
    .services::before{
        width: 350px;
        height: 350px;
    }
    .services{
        margin-bottom: 60px;
    }
    .service_card .card_header .card_name{
        font-size: 28px;
    }
    .service_card .card_header .card_info{
        padding: 15px 0;
    }
    .service_card .card_header .card_icon img{
        width: 110px;
        height: 110px;
    }
    .service_card .card_action .action_btn{
        padding: 10px 0;
        width: 100%;
    }
    .advantages .advantage_image::before{
        width: 400px;
        height: 400px;
    }
    .advantages .advantages_texts{
        width: calc(50% - 20px);
    }
    .advantages .advantage_image{
        width: calc(50% - 20px);
    }
    .advantages .advantage_image img{
        max-width: 100%;
    }
    .advantages .advantages_texts .title{
        font-size: 36px;
    }
    .clients{
        padding: 200px 0;
    }
    .news{
        margin-bottom: 60px;
    }
    .news .news_row{
        gap: 20px 0;
    }
    .news .section_header{
        margin-bottom: 40px;
    }
    .testimonials{
        margin-bottom: 60px;
    }
    .testimonials .section_header::after{
        width: 200px;
        height: 200px;
    }
    .testimonials .container::before{
        width: 120px;
        height: 120px;
    }
    .hero::before{
        width: 700px;
        height: 700px;
        right: -50%;
    }
    .hero .slide_texts .title{
        font-size: 36px;
    }
    .header_menu .header_row .logo img{
        width: 200px;
    }
    .hero .slide_texts{
        width: calc(50% - 10px);
    }
    .hero .slide_image{
        width: calc(50% - 10px);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hero .test_btn{
        display: block;
        width: fit-content;
        position: static;
        margin-top: 8px;
    }
    .hero .slide_image img{
        max-height: 420px;
    }
    .header_menu .header_actions{
        gap: 0 30px;
    }
    .callback::before{
        width: 800px;
        height: 800px;
    }
    footer .footer_top .footer_col{
        width: calc(25% - 20px);
    }
    footer .footer_top .footer_col.footer_contacts{
        width: calc(25% - 20px);
    }
    .footer_col.footer_contacts .payments {
        gap: 10px;
    }
}
@media all and (max-width: 992px){
    .hero .row{
        gap: 20px 0;
    }
    header .header_top .right_items.logged .user_actions .dropdown_nav{
        padding: 0;
    }
    header .header_top .right_items.logged{
        gap: 0 30px;
    }
    .plans_date li .sales_badge{
        display: none;
    }
    .servers .plans_list .plan_item .price_item{
        font-size: 14px;
    }
    .servers .plans_list .plan_item{
        padding: 20px 16px;
    }
    .servers .tabs_container{
        padding: 30px 20px;
    }
    .plans_list .plan_item .item_action a{
        font-size: 14px;
    }
    .servers .sidebar .sidebar_item .item_title{
        font-size: 16px;
        margin-bottom: 15px;
    }
    .servers .tabs_container .sidebar{
        gap: 15px 0;
    }
    .plans_list .plan_item .content_item .title{
        font-size: 18px;
    }
    .servers .plans_list .plan_item .content_item,
    .servers .plans_list .plan_item .content_item p{
        font-size: 14px;
    }
    .servers .plans_list .plan_item .item_content{
        grid-template-columns: 3fr 1fr 2fr 1.5fr 1fr;
        gap: 0 6px;
    }
    .useful.servers .useful_row .item{
        width: calc(50% - 10px);
    }
    .useful.servers .useful_row .item:last-child{
        width: 100%;
    }
    .vps_cards .vps_card{
        display: flex;
        flex-wrap: wrap;
        gap: 15px 0;
    }
    .vps_cards .vps_card.master .vps_badge{
        font-size: 14px;
    }
    .vps_cards .cards_tab ul li .sales_badge span{
        display: none;
    }
    .vps_cards .vps_card .card_title{
        width: calc(50% - 10px);
        justify-content: flex-start;
        order: 1;
    }
    .vps_cards .vps_card .card_select{
        flex: 0 0 auto;
        width: calc(50% - 10px);
        order: 2;
        justify-content: flex-end;
    }
    .vps_cards .vps_card .card_select .custom_select{
        height: 40px;
    }
    .vps_cards .vps_card .card_info{
        order: 3;
        flex: 0 0 auto;
        width: calc(10% - 10px);
    }
    .vps_cards .vps_card .card_action{
        flex: 0 0 auto;
        order: 3;
    }
    .vps_cards .vps_card .card_price{
        flex: 0 0 auto;
        order: 3;
    }
    .vps_cards .cards_tab ul li{
       flex: 1;
    }
    .vps_cards .cards_tab ul{
        width: 100%;
    }
    .useful_options .options_swiper .swiper-pagination{
        display: block;
    }
    .useful_options .options_swiper .swiper{
        padding: 0;
    }
    .useful_options .options_swiper .swiper_navs{
        display: none;
    }
    .option_card .card_body .card_content{
        font-size: 16px;
    }
    .option_card .card_body{
        margin-bottom: 20px;
    }
    .option_card .card_body .card_image img{
        width: 90px;
        height: 90px;
    }
    .useful.vps .useful_row .item{
        flex: 0 0 auto;
        width: calc(50% - 10px);
        height: auto;
        font-size: 14px;
        padding: 16px;
    }
    .contact_page{
        padding: 40px 0;
    }
    .contact_page .col_item.map .map{
        height: 90%;
    }
    .contact_page .col_item.map{
        min-height: 600px;
        overflow: auto;
    }
    .contact_page .col_item .item_block .phones{
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .contact_page .col_item .item_block .title{
        font-size: 16px;
        font-weight: 500;
    }
    .contact_page .col_item .item_block .contact_wrapper a{
        flex: 0 0 auto;
        width: calc(50% - 10px);
    }
    .contact_page .contacts_row{
        gap: 30px 0;
    }
    .contact_page .col_item .col_title, .contact_page .col_item .item_block .item_title{
        font-size: 20px;
    }
    .useful.colocation .useful_row .item{
        width: calc(50% - 10px);
        height: auto;
        font-size: 14px;
        padding: 16px;
    }
    .useful .row .row_item ul li p br{
        display: none;
    }
    .header_items .language li.active .submenu{
        top: 44px;
    }
    .services{
        margin-bottom: 40px;
    }
    .clouds .cloud_advantages .title{
        font-size: 20px;
        margin-bottom: 20px;
    }
    .licence .more_btn span{
        font-size: 18px;
    }
    .licence table tbody tr td:nth-child(4){
        white-space: nowrap;
    }
    .licence_images .section_title{
        margin-bottom: 30px;
    }
    .additional_options .section_title{
        margin-bottom: 30px;
    }
    .custom_table{
        font-size: 14px;
    }
    .custom_table tbody td{
        padding: 12px;
    }
    .administration_table .custom_table{
        font-size: 14px;
    }
    .licence table td a, .administration_table td a{
        font-size: 14px;
        padding: 8px 10px;
        white-space: nowrap;
    }
    .administration .administration_bottom .title{
        font-size: 16px;
        margin: 20px 0;
    }
    .administration .administration_bottom .action a{
        padding: 10px 20px;
    }
    .administration_table .custom_table thead td{
        white-space: nowrap;
    }
    .products_swiper .swiper_navs{
        display: block;
    }
    .domains_category .btn_list li:not(:last-child){
        margin-right: 15px;
    }
    .domains_search.domains .domains_bottom a{
        font-size: 18px;
    }
    .domains_search.domains form input{
        padding-right: 160px;
    }
    .domain-names-intro h2.intro{
        margin-bottom: 20px;
    }
    .domain-names-intro p.intro{
        margin-bottom: 30px;
    }
    .domain-names-intro .section_header{
        margin-bottom: 40px;
    }
    .ssl_advantages .section_title{
        margin-bottom: 30px;
    }
    .ssl_advantages .col_item{
        padding: 20px;
    }
    .ssl_advantages .col_item .title{
        font-size: 18px;
    }
    .ssl_products .plans_list_header{
        display: none;
    }
    .plans_header{
        padding: 16px;
    }
    .ssl_products .plan_item .plan_header{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px 0;
    }
    .ssl_products .plan_item .plan_header .plan_type{
        display: none;
    }
    .ssl_products .plan_item .plan_header .plan_price,
    .ssl_products .plan_item .plan_header .plan_biennially_price{
        width: 35%;
        display: flex;
        align-items: center;
        gap: 0 5px;
    }
    .ssl_products .plan_item .plan_header .plan_price .date,
    .ssl_products .plan_item .plan_header .plan_biennially_price .date{
        display: block;
    }

    .ssl_products .plan_item .plan_header .plan_title{
        width: 100%;
    }
    .header_texts .section_description{
        margin-bottom: 30px;
        font-size: 20px;
    }
    .intro_block .intro_row{
        gap: 20px 0;
    }
    .intro_block .intro_item i{
        font-size: 24px;
    }
    .banner .banner_title{
        font-size: 32px;
    }
    .banner .banner_wrapper{
        padding-right: 200px;
    }
    .banner .banner_text{
        font-size: 16px;
        margin-bottom: 20px;
    }
    .useful .section_title,
    .cms_support .section_title{
        text-align: left !important;
    }
    .cms_support .section_title{
        margin-bottom: 30px;
    }
    .cms_support .options_row{
        gap: 0 20px;
    }
    .clients{
        padding: 170px 0;
    }
    .productfaqs .main_row{
        gap: 30px 0;
    }
    .webhostingintro{
        padding: 20px 0;
    }
    .webhostingintro i.fas, .webhostingintro i.far, .webhostingintro i.fal, .webhostingintro i.fab{
        font-size: 24px;
        padding: 0;
    }
    .useful .row{
        gap: 20px 0;
    }
    .webhostingintro .row{
        gap: 10px 0;
    }
    .cookie-alert .cookie_wrapper{
        padding: 15px 12px;
    }
    .back-to-top{
        left: 25px;
    }
    .back-to-top.active{
        bottom: 40px;
    }
    .cookie-alert button{
        padding: 10px 16px;
    }
    .domains_search ul li{
        font-size: 18px;
    }
    .domains_search ul li .price{
        font-size: 18px;
    }
    .domains_search .domains_row .domains_header{
        flex-direction: column;
        gap: 10px 0;
    }
    .domains_search ul li::before{
        display: none;
    }
    .hero .swiper-pagination-bullet{
        width: 12px;
        height: 12px;
    }
    .hero .slide_item{
        flex-direction: column;
        gap: 20px 0;
    }
    .hero .slide_item > div{
        width: 100%;
    }
    .callback{
        margin-bottom: 60px;
    }
    .callback .callback_title{
        font-size: 32px;
    }
    .callback .callback_subtitle{
        font-size: 20px;
    }
    .callback form .inputs > div{
        height: 50px;
        width: calc(33.33% - 12px);
    }
    .callback form .inputs input{
        padding: 0 20px;
    }
    .callback form textarea{
        padding: 20px;
    }
    .services::before{
        width: 300px;
        height: 300px;
    }
    .service_card .card_content{
        height: auto;
        overflow: inherit;
    }
    .service_card .card_header .card_icon img{
        width: 100px;
        height: 100px;
    }
    .service_card .card_header .card_name{
        font-size: 24px;
    }
    .service_card .card_header .card_info{
        font-size: 20px;
    }
    .advantages .advantage_image::before{
        width: 300px;
        height: 300px;
    }
    .advantages .advantages_texts{
        width: calc(50% - 10px);
    }
    .advantages .advantage_image{
        width: calc(50% - 10px);
    }
    .advantages .advantages_texts .title{
        font-size: 32px;
        margin-bottom: 15px;
    }
    .advantages .advantages_texts .subtitle{
        font-size: 18px;
    }
    .clients .section_header{
        margin-bottom: 20px;
    }
    .news .news_item .item_title{
        font-size: 18px;
        margin-bottom: 15px
    }
    .news .section_header .header_action a{
        padding: 10px 40px;
    }
    .section_title{
        font-size: 32px;
    }
    .section_header .swiper_navs > div{
        width: 36px;
        height: 36px;
    }
    .testimonials .testimonials_item{
        padding: 20px;
    }
    .testimonials .testimonials_item .testimonial_name{
        font-size: 18px;
    }
    .testimonials .testimonials_item .testimonials_content{
        font-size: 14px;
    }
    .hero .hero_image{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hero .hero_image img{
        width: 60%;
    }
    .hero .slide_texts .title{
        line-height: 140%;
        max-width: 80%;
        font-size: 32px;
    }
    .hero .slide_texts .subtitle{
        max-width: 80%;
        margin-bottom: 20px;
        font-size: 16px;
    }
    .hero .slide_texts .action a{
        padding: 12px 40px;
    }
    header .header_menu{
        padding: 12px 0;
    }
    .header_menu .header_actions{
        gap: 0 20px;
    }
    header .header_top .right_items{
        gap: 0 40px;
    }
    .callback::before{
        width: 600px;
        height: 600px;
    }
    footer .footer_top .footer_col{
        width: calc(50% - 15px);
    }
    footer .footer_top .footer_col.footer_contacts{
        width: calc(50% - 15px);
    }
    footer .footer_top{
        padding: 30px 0;
    }
    .footer_col.footer_contacts .contacts{
        margin-bottom: 20px;
    }
    footer .footer_top .top_row{
        gap: 30px 0;
    }
    .footer_col.footer_contacts .payments img{
        max-width: 45px;
    }
    .hero .swiper{
        padding-bottom: 40px;
    }
    .hero .swiper-pagination{
        justify-content: center;
        bottom: 0;
    }
    .header_top .container::before,
    .header_top .container::after{
        display: none;
    }
    .header_top .container .row::after{
        display: none;
    }
}
@media all and (max-width: 768px){
    .news .section_header{
        margin-bottom: 30px;
    }
    .right_items.logged .phone{
        display: none;
    }
    .right_items.logged .dropdown_nav.notifications_head .title{
        display: none;
    }
    .header_top .row {
       justify-content: space-between;
    }
    .servers .plans_header .results{
        font-size: 18px;
    }
    .servers .plans_date li{
        height: 36px;
    }
    .servers .plans_list .plan_item .item_title{
        font-size: 20px;
        top: -14px;
    }
    .servers .plans_list .plan_item .item_content{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 15px 0;
    }
    .servers .plans_list .plan_item .item_content .content_item:first-child{
        width: 100%;
    }
    .tabs_container .sidebar{
        gap: 15px 0;
    }
    .vps_cards .vps_card .card_info{
        width: calc(12% - 5px);
    }
    .vps_cards .vps_card .card_price{
        width: auto;
    }
    .useful_options .col_item .item_title{
        font-size: 22px;
    }
    .options_swiper .col_item .item_header{
        margin-bottom: 30px;
    }
    .domains_search form button span{
        display: none;
    }
    .domains_search ul{
        gap: 10px 0;
    }
    .domains_search ul li{
        flex: 0 0 auto;
        width: calc(50% - 10px);
    }
    .domains_search form button{
        padding: 0 10px;
    }
    .domains_search form input{
        padding-right: 55px;
        padding-left: 20px;
    }
    .clouds .cloud_row .row{
        gap: 20px 0;
    }
    .licence .licence_wrapper{
        gap: 30px 0;
    }
    .licence .compare_plans table.active{
        display: block !important;
        overflow: auto;
    }
    .licence .compare_plans table thead td{
        white-space: nowrap;
    }
    .licence .more_btn span{
        font-size: 16px;
    }
    .licence .licence_infos .custom_table{
        display: block !important;
        overflow: auto;
    }
    .licence table tbody tr td:nth-child(1){
        min-width: 150px;
    }
    .licence_images .images_row{
        gap: 30px 0;
        margin: 0;
    }
    .additional_options .custom_table tbody tr:last-child{
        white-space: nowrap;
    }
    .plan_list .more_btn span{
        font-size: 16px;
    }
    .plan_list .table_container table.active{
        display: block !important;
        overflow: auto;
    }
    .webhosting .table > tbody > tr > td{
        font-size: 14px;
    }
    .products_swiper .swiper_navs{
        display: none;
    }
    .advantages .advantages_row{
        gap: 15px 0;
    }
    #domains_search .result .title{
        font-size: 16px;
        padding: 20px;
    }
    #domains_search .result .search_content{
        padding: 20px;
    }
    #domains_search #generatePdf{
        font-size: 15px;
        padding: 8px 10px;
    }
    .domain-names-intro h2.intro{
        font-size: 24px;
    }
    .domains_list .domain_item{
        height: 140px;
        padding: 20px;
    }
    .domain_item .badge_alert{
        font-size: 14px;
    }
    .domain_item .domain_name{
        font-size: 24px;
    }
    .domains_list .list_item{
        gap: 15px 0;
    }
    .domains_category .category_tabs{
        display: flex;
        flex-direction: column;
        gap: 30px 0;
    }
    .domains_category .category_tabs{
        margin-bottom: 0;
    }
    .domains_category .category_tabs .btn_list{
        display: none !important;
    }
    .custom_select.domains{
        display: flex;
    }
    .domains_search.domains .domains_bottom a{
        font-size: 16px;
    }
    .domains_search.domains form button span{
        display: none;
    }
    .domains_search.domains form input{
        padding-right: 55px;
    }
    .domains_search.domains form button{
        width: auto;
        padding: 0 15px;
        border-bottom-left-radius: 90px;
        border-top-left-radius: 90px;
    }
    .domain-names-intro .section_header .title{
        font-size: 28px;
    }
    .domain-names-intro .section_header .item_row .item_image img{
        width: 60px;
        height: 60px;
    }
    .domain-names-intro .section_header .item_row .item{
        width: calc(50% - 5px);
        padding: 16px;
    }
    .tabs_container{
        padding: 20px;
        gap: 20px 0;
    }
    .ssl_products .plan_item .plan_header{
        padding: 10px 20px;
    }
    .ssl_products .plan_item .plan_content{
        padding: 20px 0;
        margin: 0 20px;
    }
    .ssl_products .plan_item .plan_header .plan_price, .ssl_products .plan_item .plan_header .plan_biennially_price{
        width: calc(50% - 10px);
    }
    .ssl_products .plan_item .plan_action a{
        font-size: 14px;
        padding: 5px 10px;
    }
    .ssl_products .plan_item .plan_content .text{
        font-size: 14px;
    }
    .header_texts .section_description{
        font-size: 18px;
    }
    .intro_block .intro_row{
        gap: 15px 0;
    }
    .banner .banner_wrapper{
        background-image: none;
        padding: 30px;
    }
    .banner .banner_text{
        max-width: 100%;
    }
    .banner .banner_action a{
        font-size: 16px;
    }
    .banner .banner_title{
        font-size: 28px;
    }
    .cms_support .options_row .col_item{
        flex: 0 0 auto;
        width: calc(50% - 10px);
    }
    .cms_support .options_row{
        flex-wrap: wrap;
        gap: 20px 0;
        justify-content: space-between;
    }
    .useful .useful_row .item{
        width: calc(50% - 10px);
    }
    .useful .options .custom_table td{
        font-size: 14px;
    }
    .useful .options table tr td:not(.center) i{
        margin: 0;
    }
    .document_wrapper .section_title{
        font-size: 28px;
    }
    .document_wrapper .content_item .item_title{
        font-size: 20px;
    }
    .clients{
        padding: 170px 0;
    }
    .document_wrapper{
        padding-bottom: 20px;
    }
    .callback form .inputs > div{
        width: 100%;
    }
    .callback form .inputs input{
        height: 50px;
    }
    .back-to-top.active{
        bottom: 25px;
    }
    .cookie-alert .cookie_wrapper{
        flex-direction: column;
    }
    .breadcrumbs{
        padding: 14px 0;
    }
    .breadcrumbs li,
    .breadcrumbs li a{
        font-size: 14px;
    }
    .cookie-alert .cookie_content{
        margin-bottom: 15px;
        font-size: 14px;
    }
    html.theme-light .cookie-alert button{
        font-size: 14px;
    }
    .cookie-alert{
        left: 0;
        bottom: 0;
        right: 0;
        margin: auto;
        width: 100%;
    }
    .domains_search .more_btn a{
        font-size: 18px;
    }
    .domains_search ul li{
        font-size: 18px;
    }
    .domains_search ul li .price{
        font-size: 18px;
    }
    .hero .slide_image img{
        max-height: 360px;
    }
    .callback .callback_title{
        font-size: 28px;
    }
    .callback .callback_subtitle{
        font-size: 18px;
        margin: 10px 0 20px 0;
    }
    .callback form .inputs{
        flex-direction: column;
        gap: 20px 0;
    }
    .callback form .send{
        justify-content: flex-start !important;
    }
    .callback form .inputs > input{
        width: 100%;
    }
    .service_card .card_action .action_btn{
        padding: 12px 35px;
        width: fit-content;
    }
    .advantages .advantages_texts .title{
        font-size: 28px;
    }
    .advantages .advantages_texts .subtitle{
        font-size: 16px;
    }
    .advantages .advantages_row{
        flex-direction: column;
    }
    .advantages .advantage_image img{
        max-width: 80%;
    }
    .advantages .advantages_texts,
    .advantages .advantage_image{
        width: 100%;
    }
    .clients .slide_item img{
        max-width: 120px;
    }
    .news .section_header .header_action a{
        font-size: 15px;
        padding: 8px 30px;
        height: 35px;
    }
    .news .news_item .item_title{
        font-size: 16px;
    }
    .news .news_item{
        padding: 15px;
    }
    .hero .slide_texts .title{
        max-width: 90%;
        font-size: 28px;
    }
    .testimonials .section_header::after{
        width: 170px;
        height: 170px;
    }
    .section_title{
        font-size: 28px;
    }
    .hero .slide_texts .title br{
        display: none;
    }

    .hero .test_btn{
        display: block;
        width: fit-content;
        position: static;
        margin-top: 10px;
        font-size: 14px;
    }
    .right_items .user_actions .login::before{
        right: -15px;
    }
    header .header_top .row{
        padding: 10px 0;
    }
    .header_menu .header_row .logo img{
        width: 180px;
    }
    .header_top .right_items .user_actions{
        gap: 0 30px;
    }
    header .header_top .right_items{
        gap: 0 30px;
    }
    .footer_top .footer_col .footer_menu li:not(:last-child){
        margin-bottom: 10px;
    }
    .footer_col.footer_contacts .contacts{
        margin-bottom: 15px;
    }

    .footer_col.footer_contacts .contacts a:not(:last-child){
        margin-bottom: 10px;
    }
    .footer_col.footer_contacts .payments li{
        flex: 0 0 auto;
        width: calc(33% - 10px);
    }
}
@media all and (max-width: 576px){
    .clients{
        padding: 150px 0;
    }
    .useful.vps .useful_table table.active{
        display: block !important;
    }
    .useful.vps .useful_table table tbody tr td:last-child{
        white-space: nowrap;
    }
    .right_items .user_actions li.active .dropdown{
        top: 36px;
    }
    .right_items .user_actions .dropdown{
        min-width: 250px;
    }
    .right_items.logged .phone{
        display: block;
    }
    .header_top .container .row
    .plans_header .sorting .title{
        display: none;
    }
    .servers .plans_list .plan_item .item_content .content_item:nth-child(2),
    .servers .plans_list .plan_item .item_content .content_item:nth-child(3){
        width: calc(50% - 10px);
        text-align: left;
    }
    .useful.servers .useful_row .item{
        width: 100%;
        justify-content: flex-start;
        flex-wrap: nowrap;
    }
    .vps_cards .vps_card .card_select .custom_select{
        height: 36px;
    }
    .vps_cards .cards_tab ul li .sales_badge{
       display: none;
    }
    .vps_cards .vps_card .card_info{
        width: calc(20% - 5px);
    }
    .vps_cards .vps_card .card_price{
        order: 3;
    }
    .vps_cards .cards_tab ul{
        padding: 0;
        flex-wrap: wrap;
    }
    .vps_cards .cards_tab ul li{
        width: auto;
        padding: 5px;
        font-size: 14px;
    }
    .useful_options .col_item .item_title{
        font-size: 20px;
    }
    .useful_options .col_item img{
        width: 50px;
        height: 50px;
    }
    .option_card .card_body .card_image img{
        width: 75px;
        height: 75px;
    }
    .header_menu .header_actions .cart{
        display: none;
    }
    .useful.vps .useful_row .item{
        width: 100%;
        justify-content: flex-start;
        flex-wrap: nowrap;
    }
    .contact_page .col_item .col_title, .contact_page .col_item .item_block .item_title{
        font-size: 18px;
    }
    .useful.colocation .useful_row .item{
       width: 100%;
        justify-content: flex-start;
        flex-wrap: nowrap;
    }
    .clouds .cloud_advantages li{
        font-size: 14px;
    }
    .clouds .cloud_advantages li .icon svg{
        width: 18px;
        height: 18px;
    }
    .products_wrapper .plans_header{
        font-size: 14px;
        flex-wrap: wrap;
        gap: 10px 0;
    }
    .plans_header .sorting .dropdown .selected{
        padding-right: 20px;
    }
    .plans_header .sorting .dropdown .selected{
        gap: 0;
    }
    .header_items .language li.active .submenu{
        top: 40px;
    }
    .hero::before{
        display: none !important;
    }
    .advantages .advantage_image::before{
        display: none !important;
    }
    .callback::before,
    .testimonials .container::before,
    .services::before{
        display: none !important;
    }
    .clouds .cloud_advantages .title{
        font-size: 18px;
    }
    .additional_options .custom_table{
        display: block !important;
    }
    .additional_options .custom_table tbody tr td:first-child{
        min-width: 160px;
    }
    .custom_table{
        overflow: auto;
    }
    .administration_table .custom_table{
        display: block !important;
        overflow: auto;
    }
    .intro_block .intro_item i{
        font-size: 20px;
        padding-right: 15px;
    }
    .domains_search.domains form button{
        padding: 0 10px;
    }
    .domain-names-intro .section_header .title{
        font-size: 24px;
    }
    .domain-names-intro .section_header .item_row{
        flex-wrap: wrap;
        gap: 20px 0;
    }
    .domain-names-intro .section_header .item_row .item{
        width: 100%;
    }
    .ssl_advantages .col_item .title{
        font-size: 16px;
    }
    .ssl_advantages .col_item .description{
        font-size: 14px;
    }
    .sidebar .clear_filter button{
        font-size: 15px;
        padding: 8px 15px;
    }
    .ssl_products .plan_item .plan_header .plan_price, .ssl_products .plan_item .plan_header .plan_biennially_price{
        width: 100%;
    }
    .ssl_products .plan_item .plan_action{
        position: absolute;
        right: 16px;
        bottom: 10px;
    }
    .ssl_products .plan_item .plan_header > div:not(:first-child){
        font-size: 14px;
    }
    .ssl_products .plan_item .plan_header .plan_price{
        margin-bottom: 10px;
    }
    .ssl_products .plan_item .plan_content .vendor_image{
        display: none;
    }
    .ssl_products .plan_item .plan_header{
        gap: 0;
        position: relative;
        padding: 10px 16px;
    }
    .ssl_products .plan_item .plan_content .text{
        width: 100%;
    }
    .ssl_products .plan_item .plan_content{
        padding: 16px 0;
        margin: 0 16px;
    }
    .ssl_products .plan_item .plan_header .plan_title{
        margin-bottom: 15px;
    }
    .header_texts .section_description{
        margin-bottom: 20px;
        font-size: 16px;
    }
    .productfaqs .main_row{
        gap: 25px 0;
    }
    .productfaqs a.btn-main{
        font-size: 15px;
    }
    .banner .banner_title{
        font-size: 24px;
        margin-bottom: 20px;
    }
    .useful_row .item img{
        max-height: 55px;
    }
    .useful .options table.active{
        display: block !important;
        overflow: auto;
    }
    .useful .options .custom_table td{
        white-space: nowrap;
    }
    .useful{
        padding: 30px 0;
    }
    .useful .useful_row .item{
        width: calc(50% - 5px);
        flex-wrap: wrap;
        height: auto;
    }
    .useful .useful_row{
        gap: 10px 0;
        align-items: stretch !important;
    }
    .useful .useful_row{
        margin-bottom: 20px;
    }
    .useful .row .row_item .title{
        margin-bottom: 15px;
    }
    .productfaqs{
        padding-top: 0;
    }
    .productfaqs h3.intro{
        font-size: 24px;
    }
    .document_wrapper .section_title{
        font-size: 24px;
    }
    .document_wrapper .description{
        margin-bottom: 15px;
    }
    .document_wrapper .content_item:not(:last-child){
        margin-bottom: 20px;
    }
    .document_wrapper .content_item .item_title{
        font-size: 16px;
        font-weight: 600;
    }
    .document_wrapper .content_item ul{
        gap: 15px 0;
    }
    .documents_main .section_title{
        font-size: 24px;
    }
    .documents_main ul{
        gap: 15px 0;
    }
    .header_menu .header_row .logo img{
        max-width: 150px;
    }
    html.theme-light .hero::before{
        width: 150px;
        height: 150px;
        right: 0;
        left: 0;
    }
    .domains_search ul{
        flex-wrap: wrap;
        gap: 10px 0;
        justify-content: space-between;
    }
    .domains_search .more_btn a{
        font-size: 14px;
    }
    .domains_search form input{
        height: 40px;
        font-size: 14px;
        padding: 0 60px 0 20px;
    }
    .domains_search form input::placeholder{
        font-size: 14px;
    }
    .domains_search ul li{
        flex: 0 0 auto;
        font-size: 16px;
        width: calc(50% - 10px);
    }
    .domains_search ul li .price{
        font-size: 16px;
    }
    .domains_search ul li:nth-child(2)::before{
        display: none;
    }
    .domains_search .domains_row .domains_header{
        gap: 5px 0;
        margin-bottom: 20px;
    }
    .domains_search ul li:last-child{
        width: 100%;
        text-align: center;
    }
    .header_menu .header_actions{
        gap: 0 12px;
    }
    .hero .swiper{
        padding-bottom: 35px;
    }
    .hero .slide_texts .action a{
        font-size: 15px;
    }
    .hero .slide_texts .subtitle{
        max-width: 100%;
        font-size: 16px;
    }
    .callback .callback_title{
        font-size: 24px;
    }
    .callback .callback_subtitle{
        font-size: 16px;
    }
    .callback form .inputs{
        gap: 15px 0;
    }
    .callback form .inputs input{
        font-size: 14px;
    }
    .callback form .inputs input::placeholder{
        font-size: 14px;
    }
    .hamburger_menu form input::placeholder{
        font-size: 14px;
    }
    .callback form button{
        width: 100%;
        padding: 15px 0;
        font-size: 15px;
    }
    .callback form .inputs,
    .callback form textarea{
        margin-bottom: 15px;
    }
    .clients .bg_layer{
        top: 20px;
    }
    .clients .slide_item{
        height: 80px;
    }
    .news .section_header{
        margin-bottom: 20px;
    }
    .news .news_item{
        padding: 20px;
    }
    .news .news_row{
        margin-bottom: 20px;
    }
    .hero::before{
        width: 600px;
        height: 600px;
        right: -300px;
    }
    .section_header .swiper_navs > div{
        width: 32px;
        height: 32px;
    }
    .section_title{
        font-size: 24px;
    }
    .hero{
        padding-top: 40px;
    }
    .hero .slide_texts .title{
        max-width: 100%;
        font-size: 24px;
    }
    header .header_top .right_items{
        gap: inherit;
        justify-content: space-between !important;
    }
    footer .footer_top .footer_col,
    footer .footer_top .footer_col.footer_contacts{
        width: calc(50% - 10px);
    }
    footer .footer_top .top_row{
        gap: 20px 0;
    }
    .footer_bottom .social_links li img{
        width: 24px;
        height: 24px;
    }
    .footer_bottom .social_links{
        gap: 0 8px;
    }
}
@media all and (max-width: 420px){
    .ssl_products .plan_item .plan_action{
        position: static;
        width: 100%;
    }
    .domains_search ul li{
        flex: 0 0 auto;
        width: initial;
    }
    .ssl_products .plan_item .plan_action a{
        width: 100%;
        padding: 8px;
    }
    .ssl_products .plan_item .plan_header .plan_biennially_price{
        margin-bottom: 10px;
    }
}