@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap");

/* BASIC */
:root {
    --bg: #0e111a;
    --bg2: #11141d;
    --text: #fff;
    --text1: #000;
    --color1: #2bcb71;
    --color2: #219f58;
    --light: rgb(255 255 255 / 10%);
    --light2: rgb(255 255 255 / 30%);
    --dark: rgb(0 0 0 / 30%);
    --radius: 5px;
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: normal;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
}

/* HEADER */
header {
    position: relative;
    background: transparent;
    width: 100%;
    top: 0;
    padding: 10px 0;
}

header.fixed {
    position: absolute;
    border-bottom: 1px solid var(--light);
    z-index: 7;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo span {
    font-size: 28px;
    font-weight: bold;
}

.header-menu {
    display: flex;
    align-items: center;
    margin-left: 10%;
    margin-right: auto;
}

.header-menu > a:before {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 20px;
    background: var(--color1);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.header-menu > a:hover:before {
    width: 30px;
}

/* HEADER MENU SUB 0.3 */
.header-menu_sub {
    position: relative;
}

.header-menu > a,
.header-menu_sub > a {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
}

.header-menu_sub div a {
    display: inline-block;
    padding: 10px 15px;
    width: 100%;
}

.header-menu_sub div a:hover {
    background: var(--bg2);
    color: var(--color1);
}

.header-menu_sub > a i {
    float: right;
    margin: 2px 8px;
}

.header-menu_sub > div {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    column-count: 1;
    background: var(--bg);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    padding: 20px 0;
    border-radius: 5px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    z-index: 8;
}

@media (min-width: 860px) {
    .header-menu div:hover.header-menu_sub div {
        visibility: visible;
        opacity: 1;
    }
}

.header-menu_sub > div:before {
    content: "";
    position: absolute;
    background: var(--bg);
    top: -5px;
    left: 10%;
    width: 26px;
    height: 26px;
    transform: rotate(45deg);
    z-index: -1;
}

/* MOB MENU 0.3 */
.mobmenu-btn {
    display: none;
}

@media (max-width: 860px) {
    .mobmenu-btn {
        display: block;
        background: var(--color1);
        border-radius: var(--radius);
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 20px;
        text-align: center;
        margin-left: 10px;
    }

    .mobmenu-btn.active:before {
        content: "\f00d";
    }

    .mobmenu-btn.active {
        z-index: 9;
    }

    .mobmenu {
        position: fixed;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        top: 0;
        right: -300px;
        width: 240px;
        height: 100%;
        margin-left: 0;
        background: var(--bg);
        transition: 0.3s;
        overflow-y: auto;
        z-index: 8;
    }

    .mobmenu.active {
        display: flex;
        align-items: flex-start;
        right: 0;
        padding: 20px;
        border-radius: 0;
    }

    .mobmenu a + div,
    .mobmenu a {
        display: block;
        width: 100%;
    }

    .mobmenu div > div {
        display: none;
        width: 100%;
        top: 0;
        column-count: 1;
    }

    .mobmenu div > a.active + div {
        position: relative;
        display: block;
        opacity: 1;
        visibility: visible;
    }
}

/* HEADER SEARCH */
.header-search {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--light);
    border: 1px solid var(--light);
    border-radius: var(--radius);
    padding-left: 20px;
    margin-left: auto;
    margin-right: 20px;
    transition: 0.3s;
    z-index: 7;
}

@media (max-width: 860px) {
    .header-search {
        margin-left: auto;
        margin-right: 10px;
        padding-left: 0;
    }

    .header-search.active {
        position: fixed;
        background: var(--bg2);
        padding: 10px;
        border-radius: 0;
        top: 0;
        left: 0;
        width: 100%;
        margin-left: 0;
    }
}

.header-search_icon {
    display: inline-block;
    color: var(--text);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
}

.header-search input {
    background: transparent;
    padding: 0;
    border-radius: 0;
    width: 200px;
    height: inherit;
    line-height: inherit;
    font-weight: 400;
}

@media (max-width: 860px) {
    .header-search input {
        display: none;
    }
    .header-search_icon {
        order: -1;
        color: var(--light);
    }
}

.header-search input::placeholder {
    color: var(--light2);
}

.header-search.active input,
.header-search.active .header-search_close {
    display: inline-block;
}

.header-search_close {
    display: none;
}

@media (max-width: 860px) {
    .header-search_close {
        display: none;
        position: absolute;
        opacity: 0.6;
        top: 0;
        right: 0;
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 25px;
        text-align: center;
    }
}

/* HEADER USER */
.header-user > a img {
    display: inline-block;
    border: 1px solid var(--light);
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    cursor: pointer;
}

.header-user > a .fa-user {
    display: inline-block;
    background: var(--light);
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
}

.header-user > div {
    position: absolute;
    background: var(--bg2);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    border-radius: var(--radius);
    width: 220px;
    top: 100%;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    overflow: hidden;
    z-index: 5;
}

.header-user.active > div {
    visibility: visible;
    opacity: 1;
    transform: translateY(10px);
}

.header-user_av {
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--dark);
}

.header-user_av > img {
    width: 34px;
    height: 35px;
    object-fit: cover;
    border-radius: 50%;
}

.header-user_av > span {
    flex: 1 1 0%;
    max-width: 100%;
    min-width: 50px;
    margin-left: 10px;
    font-weight: bold;
}

.header-user_av > span span {
    display: block;
    font-size: 12px;
}

.header-user_menu a {
    display: block;
    padding: 8px 20px;
    font-size: 14px;
}

.header-user_menu a:hover {
    background: var(--color1);
    color: var(--text);
}

.header-user_menu a i {
    margin-right: 10px;
    opacity: 0.8;
}

/* MODAL LOGIN 0.2 */
.modal-login > a {
    display: inline-block;
    background: var(--light);
    padding: 10px 20px;
    border-radius: var(--radius);
    cursor: pointer;
}

.modal-login > a i {
    margin-right: 10px;
    margin-top: 1px;
    float: left;
}

.modal-login form {
    display: none;
    position: fixed;
    min-width: 500px;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    background: var(--bg);
    padding: 40px 80px;
    border-radius: var(--radius);
    text-align: center;
    z-index: 9;
}

@media (max-width: 860px) {
    .modal-login form {
        min-width: 100%;
        padding: 30px;
        border-radius: 0;
    }
}

.modal-login form > i {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--light);
    border-radius: var(--radius);
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    cursor: pointer;
}

.modal-login form > i:hover {
    background: var(--color1);
}

.modal-login .e-float > a {
    position: absolute;
    top: 15px;
    right: 15px;
    border-bottom: 1px dotted #20a8d8;
}

.modal-login_lost {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #c5c5c5;
    margin-bottom: 20px;
}

.modal-login_lost a:hover {
    color: var(--color1);
}

.modal-login_btn a {
    background: var(--light);
    margin-left: 20px;
}

.modal-login_btn a:hover {
    background: var(--light2);
}

.modal-login_soc span {
    display: block;
    color: #767389;
    margin: 20px 0;
}

.modal-login_soc .e-flex {
    align-items: center;
    justify-content: center;
}

.modal-login_soc .e-flex > a,
.modal-login_soc .e-flex a > img {
    width: 40px;
    height: 40px;
    margin: 0 10px;
}

/* VERY BIG */
.very-big,
.very-big_one {
    position: relative;
    height: 600px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .very-big, .very-big_one {
        height: 420px;
    }
}


.very-big_one .swiper-slide {
    background: var(--bg);
}

.very-big_content {
    position: relative;
    padding: 180px 0;
    z-index: 3;
}

@media (max-width: 860px) {
    .very-big_content {
        padding: 150px 0 0;
    }
}

.very-big_rating {
    display: flex;
    align-items: center;
    font-size: 12px;
    margin-bottom: 15px;
}

.very-big_rating > span:nth-child(2) {
    padding: 2px 5px;
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: bold;
    margin-left: 10px;
    margin-right: 10px;
}

.very-big_meta,
.very-big_text {
    max-width: 550px;
    margin-bottom: 20px;
}

.very-big_meta span {
    display: inline-block;
    font-size: 12px;
    color: #a7a7a7;
}

.very-big_meta span:not(.very-big_meta span:first-child):before {
    content: "•";
    margin-right: 10px;
}

.very-big_link {
    align-items: center;
    margin-top: 25px;
}

.very-big_link a {
    display: inline-block;
    background: linear-gradient(225deg, var(--light), var(--bg));
    backdrop-filter: blur(10px);
    padding: 0 20px;
    border-radius: var(--radius);
    height: 48px;
    line-height: 48px;
    margin-left: 15px;
    text-align: center;
}

.very-big_link a:first-child {
    background: var(--color1);
    margin-left: 0;
}

.very-big_link a:last-child, .very-big_link a:last-child i {
    width: 48px;
    padding: 0;
}

.very-big_link a:first-child:hover {
    background: var(--color2);
}

.very-big_link a:hover {
    background: linear-gradient(20deg, var(--light), var(--bg));
}

.very-big_link a i {
    margin-right: 10px;
}

.very-big_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.very-big_bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, var(--bg), transparent 80%), linear-gradient(90deg, var(--bg), transparent 50%), linear-gradient(180deg, rgb(14 17 26 / 40%), transparent), linear-gradient(270deg, var(--bg), transparent 60%);
}

.very-big_two {
    position: absolute;
    bottom: 10%;
    right: 40px;
    width: 620px;
    padding: 60px 10px;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .very-big_two {
        display: none;
    }
}

.very-big_two > i {
    position: absolute;
    background: var(--light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--light2);
    border-radius: var(--radius);
    top: 0;
    left: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    z-index: 2;
    cursor: pointer;
}

.very-big_two > i:hover {
    background: var(--color1);
}

.very-big_two .fa-chevron-right {
    left: 45px;
}

.very-big_item {
    position: relative;
    width: 100%;
    height: 200px;
    min-height: 200px;
    border-radius: var(--radius);
    filter: brightness(0.6);
    overflow: hidden;
}

.swiper-slide-thumb-active .very-big_item {
    transform: scale(1.04);
    filter: brightness(1);
}

.very-big_item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, var(--bg2), transparent);
    z-index: 1;
}

.very-big_item > img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.very-big_item .very-big_meta {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    left: 10px;
    bottom: 10px;
    z-index: 3;
}

.very-count_rat {
    display: none !important;
}

.very-count > svg {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
}

.circle-bg {
    fill: none;
    stroke: var(--light);
    stroke-width: 3.8;
}

.circle {
    stroke: var(--color1);
    fill: none;
    stroke-width: 2.8;
    stroke-linecap: round;
}

.percentage {
    fill: #fff;
    font-size: 10px;
    text-anchor: middle;
}

/* LIM CAT */
.lim-cat {
}

.lim-cat_title {
    display: inline-block;
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 30px;
}

.lim-cat:hover .lim-cat_title i {
    display: inline-block;
}

.lim-cat_title i {
    display: none;
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 18px;
    text-align: center;
}

.lim-cat_items, .lim-cat_whs {
    position: relative;
    padding: 20px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .lim-cat_items, .lim-cat_whs {
        padding: 0;
        overflow: visible;
    }
}

.lim-cat_items > .fal, .lim-cat_whs > .fal {
    position: absolute;
    display: inline-block;
    background: var(--light);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    top: 35%;
    left: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    z-index: 5;
    cursor: pointer;
}

@media (max-width: 860px) {
    .lim-cat_items > .fal, .lim-cat_whs > .fal {
        display: none;
    }
}

.lim-cat_items > .fal.swiper-button-disabled, .lim-cat_whs > .fal.swiper-button-disabled {
    display: none;
}

.lim-cat_items > .fa-chevron-right, .lim-cat_whs > .fa-chevron-right {
    left: unset;
    right: 0;
}

.lim-cat_items .fal:hover, .lim-cat_whs > .fal:hover {
    background: var(--color2);
}

.lim-cat_watch {
    display: flex;
    align-items: center;
    background: var(--bg2);
    padding: 10px;
    border-radius: var(--radius);
    overflow: hidden;
}

.lim-cat_watch > img {
    display: inline-block;
    width: auto;
    height: 100px;
    border-radius: var(--radius);
    border: 1px solid var(--light);
    margin-right: 15px;
}

.lim-cat_watch h4 {
    font-size: 14px;
    margin-bottom: 10px;
}

.lim-cat_content {
    overflow: hidden;
}

.lim-cat_item {
    position: relative;
    display: block;
    padding: 3px;
    overflow: hidden;
}

.lim-cat_bg {
    position: relative;
    display: inline-block;
    border: 1px solid var(--light);
    border-radius: var(--radius);
    width: 100%;
    height: 240px;
    margin-bottom: 20px;
    transition: 0.2s;
    overflow: hidden;
}

.lim-cat_bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, var(--bg2), transparent);
}

@media (max-width: 860px) {
    .lim-cat_bg {
        height: 180px;
    }
}

.lim-cat_item:hover .lim-cat_bg {
    transform: scale(1.028);
}

.lim-cat_bg .rating-color,
.lim-cat_bg .very-count {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 2px 7px;
    border-radius: 3px;
    font-size: 12px;
}

.lim-cat_age {
    position: absolute;
    bottom: 20px;
    right: 10px;
    opacity: 0.3;
    font-weight: bold;
}

.lim-cat_item h4 {
    margin-bottom: 5px;
}

.lim-cat_meta {
    color: #b9b9ba;
    font-size: 14px;
}

.lim-cat_meta span:first-child {
    display: inline-block;
    border: 1px solid var(--light);
    padding: 2px 5px;
    border-radius: 2px;
    font-size: 12px;
    margin-right: 15px;
}

/* LIM ITEM 10 */
.lim-cat_items10 {
    counter-reset: toc1;
}

.lim-cat_items10 .lim-cat_item {
    overflow: visible;
}

.lim-cat_items10 .lim-cat_item:not(.swiper-slide:first-child .lim-cat_item) {
    filter: drop-shadow(-20px 10px 10px rgb(0 0 0 / 60%));
}

.lim-cat_items10 .lim-cat_item:before {
    content: counter(toc1, decimal);
    counter-increment: toc1;
    position: absolute;
    right: -70px;
    bottom: 20px;
    color: transparent;
    -webkit-text-stroke: 0.3rem rgb(255 255 255 / 80%);
    text-shadow: 0 0 0.1rem rgb(0 0 0 / 40%);
    font-size: 180px;
    font-family: Montserrat Numbers, sans-serif;
    font-weight: bold;
    font-style: italic;
}

@media (max-width: 860px) {
    .lim-cat_items10 .lim-cat_item:before {
        right: -50px;
        bottom: 20px;
        font-size: 140px;
    }
}

.lim-cat_items10 .lim-cat_bg {
    height: 200px;
    z-index: -1;
}

/* VERY FULL */
.very-full_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

@media (max-width: 860px) {
    .very-full_bg {
        height: 40vh;
    }  
}

.very-full_bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, var(--bg), transparent 80%), linear-gradient(90deg, var(--bg), transparent 50%), linear-gradient(180deg, rgb(14 17 26 / 40%), transparent), linear-gradient(270deg, var(--bg), transparent 60%);
    z-index: 1;
}

.video-background-controls, .video-background-controls i {
    display: inline-block;
    background: var(--light);
    border-radius: var(--radius);
    color: var(--text);
    width: 35px;
    height: 35px;
    line-height: 35px;
    top: 100px!important;
    right: 20px!important;
    text-align: center;
    cursor: pointer;
}

.very-full_lite {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10%;
    margin-bottom: 90px;
    z-index: 2;
}

@media (max-width: 860px) {
    .very-full_lite {
        display: none;
    }
}

.very-full_lite > a {
    display: block;
    max-width: max-content;
    background: var(--light);
    padding: 10px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.very-full_lite > a:hover {
    background: var(--color1);
}

.very-full_lite > a i {
    float: left;
    margin-top: 2px;
    margin-right: 10px;
}

.very-full_lite > img {
    max-width: 250px;
    max-height: 200px;
    margin: 0 auto;
}

.very-full_grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    grid-gap: 30px 30px;
    grid-auto-flow: row dense;
    z-index: 2;
}

@media (max-width: 860px) {
    .very-full_grid {
        display: block;
        margin-top: 100px;
    }
}

.very-full_rate span:first-child {
    display: block;
    font-size: 25px;
    text-align: center;
}

.very-full_left {
    display: block;
    width: 220px;
    overflow: hidden;
    text-align: center;
}

@media (max-width: 860px) {
    .very-full_left {
        width: auto;
        margin-bottom: 60px;
    }
}

.very-full_poster {
    position: relative;
    display: inline-block;
    height: 320px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    overflow: hidden;
}

.very-full_poster .very-count {
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.very-full_center h2 {
    margin-bottom: 15px;
}

.very-full_meta span {
    display: inline-block;
    color: #a7a7a7;
}

.very-full_meta span:not(.very-full_meta span:first-child):before {
    content: "•";
    margin-right: 10px;
}

.very-full_rating {
    display: flex;
    align-items: center;
    font-size: 12px;
    margin: 15px 0;
}

.very-full_rating > span:nth-child(2) {
    padding: 2px 5px;
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: bold;
    margin-left: 10px;
    margin-right: 10px;
}

.very-full_meta + .very-full_text {
    max-width: 600px;
    font-size: 16px;
    opacity: 0.8;
    margin: 20px 0;
}

.very-full_link {
    align-items: center;
    margin-bottom: 60px;
}

.very-full_link a {
    display: inline-block;
    background: linear-gradient(225deg, var(--light), var(--bg));
    backdrop-filter: blur(10px);
    padding: 0 20px;
    border-radius: var(--radius);
    height: 48px;
    line-height: 48px;
    margin-left: 15px;
    text-align: center;
}

.very-full_link a:first-child {
    background: var(--color1);
    margin-left: 0;
}

.very-full_link a:last-child, .very-full_link a:last-child i {
    width: 48px;
    padding: 0;
}

.very-full_link a:first-child:hover {
    background: var(--color2);
}

.very-full_link a:hover {
    background: linear-gradient(20deg, var(--light), var(--bg));
}

.very-full_link a i {
    margin-right: 10px;
}

.very-full_info {
    background: var(--light);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: var(--radius);
    grid-gap: 20px 40px;
}

.very-full_info span:last-child {
    opacity: 0.8;
    float: right;
}

/* TRAILER MODAL */
.trailer-modal {
    display: none;
    position: fixed;
    background: var(--bg);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 998;
}

.trailer-modal.active {
    display: block;
}

.trailer-modal_heading {
    padding: 20px;
    align-items: center;
    justify-content: space-between;
}

.trailer-modal_heading h4 {
    margin-bottom: 0;
}

.trailer-modal_heading i {
    display: inline-block;
    background: var(--light);
    border-radius: 10px;
    right: 0;
    top: 5px;
    font-size: 20px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
}

.trailer-modal_iframe {
    position: relative;
    padding-bottom: 85vh;
}

.trailer-modal_iframe iframe {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* RATING COLOR */
.rating-color {
    background-color: #3bb33b;
    box-shadow: 0 4px 9px rgb(59 179 59 / 50%);
}

.rating-color.low {
    background: #e13535;
    box-shadow: 0 4px 9px rgb(225 53 53 / 50%);
}

.rating-color.middle {
    background: #ff6702;
    box-shadow: 0 4px 9px rgb(255 103 2 / 50%);
}

.rating-color1 {
    color: #3bb33b;
    font-weight: bold;
}

.rating-color1.low {
    color: #e13535;
}

.rating-color1.middle {
    color: #ff6702;
}

/* FOOTER */
footer {
    position: relative;
    background: var(--bg2);
    padding: 30px 0;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 860px) {
    footer .container {
        flex-direction: column;
        align-items: flex-start;
    }
}

.footer-links ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    font-weight: 400;
}

.footer-links ul li + li {
    margin-left: 20px;
}

.footer-links ul li:hover {
    color: var(--color2);
}

.footer-links > span {
    display: block;
    font-size: 12px;
    color: #797882;
}

.footer-soc {
    display: flex;
    align-items: center;
}

@media (max-width: 860px) {
    .footer-soc {
        margin-top: 20px;
    }
}

.footer-soc a {
    width: 35px;
    height: 35px;
    border-radius: 10px;
    background: var(--light);
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
}

.footer-soc a:nth-child(1):hover {
    background: #23aaea;
}

.footer-soc a:nth-child(2):hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.footer-soc a:nth-child(3):hover {
    background: #f00;
}