@import url(variables.css);

/*******************************************************************************************************************/
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

html {
    width: 100vw;
    height: 100%;
    overflow-x: hidden;
    background-color: #000;
    font-size: 62.5%;
}

body {
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    width: 100vw;
    font-family: 'IBM Plex Sans', sans-serif;
}

main {
    width: 100vw;
    height: auto;
}

section {
    width: 100vw;
}

ul {
    list-style-type: none;
}

button,
button:focus {
    background-color: transparent;
    border: 0;
    outline: none;
}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/******************* Text styles ******************/

h2 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 900;
    font-size: 52px;
    color: #fff;
    line-height: 59px;
    letter-spacing: 0.01em;
    text-align: center;
}
@media screen and (max-width: 850px) {
    h2 {
        font-size: 38px;
        line-height: 42px;
    }
}
@media screen and (max-width: 500px) {
    h2 {
        font-size: 32px;
        line-height: 42px;
    }
}

p {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 20px;
}

/******************* Buttons ******************/
.btn-primary {
    height: 50px;
    border-radius: 2px;
    background-color: #000;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    gap: 6px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 12px;
    cursor: pointer;
}
.btn-primary:focus,
.btn-primary:visited {
    color: #fff;
}
@media (hover: hover) {
    .btn-primary:hover {
        background-color: #414141;
        background-image: var(--ws-gradient);
        color: #000;
        -webkit-filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.1));
        filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.1));
    }
}
@media screen and (max-width: 768px) {
    .btn-primary {
        font-size: 16px;
    }
}

.btn-primary.btn-inverse {
    background-color: #414141;
    background-image: var(--ws-gradient);
    color: #000;
    -webkit-filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.1));
    filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.1));
    padding: 0 40px;
    min-width: 280px;
}
@media (hover: hover) {
    .btn-primary.btn-inverse:hover {
        background-color: var(--light-blue);
        background-image: none;
        color: #000;
        -webkit-filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.1));
        filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.1));
    }
}

.btn-blog {
    padding: 0 40px;
}

.btn-secondary {
    height: 40px;
    border-radius: 2px;
    background-color: var(--lighter-blue);
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    gap: 6px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 12px;
}
@media (hover: hover) {
    .btn-secondary:hover {
        background-image: var(--ws-gradient);
        color: #000;
        -webkit-filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.1));
        filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.1));
    }
}
@media screen and (max-width: 768px) {
    .btn-secondary {
        font-size: 16px;
    }
}

.btn-read {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #c1c1c1;
    text-decoration: underline;
}
@media (hover: hover) {
    .btn-read:hover {
        color: var(--light-blue);
    }
}
.btn-read:focus {
    color: #fff;
}

.btn-icon {
    padding: 0 30px;
}
.btn-icon img {
    width: auto;
    height: auto;
    max-height: 14px;
}
.btn-icon:hover svg path {
    fill: #000;
}
.btn-icon .icon {
    height: auto;
    width: 18px;
}
@media (hover: hover) {
    .btn-icon:hover {
        color: inherit;
    }
}

/******************* Images ******************/
.img-cover {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/****************************************** General ******************************************/
/* Used in blog page and article page */
.date {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #868686;
}
.date span {
    font-weight: 500;
    color: #939393;
}
@media screen and (max-width: 768px) {
    .date {
        font-size: 14px;
    }
}

/****************************************** Header ******************************************/
header {
    width: 100vw;
    height: 84px;
    background-color: var(--grey-header);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: fixed;
    top: 0;
    z-index: 3;
}
header .top-header {
    padding: 0 5% 0 0;
    background-color: #181818;
    height: 34px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    border-bottom: 1px solid #000;
}
@media screen and (max-width: 520px) {
    header .top-header {
        padding: 0 3% 0 0;
    }
    header .top-header .product-menu-item.ws {
        padding-left: 3%;
    }
}
header .top-header ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 36px;
    height: 100%;
}
@media screen and (max-width: 520px) {
    header .top-header ul {
        gap: 20px;
    }
}
header .top-header .product-menu-item a {
    font-family: 'IBM Plex Sans', sans-serif !important;
    font-weight: 500;
    font-size: 14px;
    color: #646363;
    white-space: nowrap;
}
header .top-header .product-menu-item.ws {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #111111;
    padding-left: 5%;
    padding-right: 5%;
    height: 34px;
}
header .top-header .product-menu-item.ws a .ws-icon {
    height: 16px;
    width: auto;
    margin-right: 4px;
}
@media (hover: hover) {
    header .top-header .product-menu-item a:hover {
        color: var(--light-blue);
    }
    header .top-header .product-menu-item.ws a:hover {
        color: #fff;
    }
    header .top-header .product-menu-item.ws a:hover svg path {
        fill: #fff;
    }
}
header .top-header .product-menu-item.disabled a {
    color: #646363;
    cursor: default;
}
header .top-header .product-menu-item.active a {
    color: var(--lighter-blue);
}
header .bottom-header {
    height: 50px;
    padding: 0% 5%;
    background-color: #000000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    border-bottom: 1px solid #0e0e0e;
}
@media screen and (max-width: 520px) {
    header .bottom-header {
        padding: 0 3%;
    }
}
header .bottom-header .logo-and-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px;
}
header .bottom-header .logo-and-text #main-logo {
    height: 26px;
    width: auto;
}
@media screen and (max-width: 450px) {
    header .bottom-header .logo-and-text #main-logo {
        height: 18px;
    }
}

header .bottom-header .logo-and-text #logo-name {
    height: 18px;
    width: auto;
}
@media screen and (max-width: 520px) {
    header .bottom-header .logo-and-text #logo-name {
        height: 14px;
    }
}
@media screen and (max-width: 400px) {
    header .bottom-header .logo-and-text #logo-name {
        display: none;
    }
}
header .bottom-header #desktop-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
}
header .bottom-header #desktop-menu ul .menu-item a {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #858585;
    white-space: nowrap;
}
@media (hover: hover) {
    header .bottom-header #desktop-menu ul .menu-item a:hover {
        color: var(--light-blue);
    }
}
header .bottom-header #desktop-menu ul .menu-item.active a {
    color: var(--light-blue);
}
header .bottom-header li.menu-item img {
    height: 26px;
    width: 26px;
}
header .bottom-header .menu-git {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    border-radius: 50%;
    height: 25px;
    width: 26px;
}
header .bottom-header .menu-git svg {
    height: 18px;
    width: auto;
}
@media (hover: hover) {
    header .bottom-header .menu-git:hover svg path {
        fill: var(--light-blue);
    }
}
header .bottom-header .menu-git a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
}
header .bottom-header .disabled a {
    cursor: default;
    color: var(--grey) !important;
}
header .bottom-header .menu-item.disabled:hover {
    cursor: default;
    background: var(--grey);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
header .bottom-header span#coming-text {
    color: var(--grey);
}

.flex-start {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

/* Mobile Menu */
#mobile-menu {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    background-color: var(--black);
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

#mobile-menu.open {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
}

#mobile-menu ul {
    width: 90%;
    margin: auto;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.mobile-menu-item {
    padding: 20px;
    text-align: center;
}

#mobile-menu a {
    font-size: 16px;
    font-size: 1.6rem;
    color: var(--lightgrey);
    text-align: center;
}

@media (hover: hover) {
    #mobile-menu a:hover {
        color: #ef445f;
    }
    #mobile-menu .mobile-menu-item.disabled a:hover {
        color: var(--grey);
    }
}
/* Icon Menu Hamb. Animation */
#icon-hamburguer {
    display: none;
    width: 28px;
    height: 18px;
    z-index: 11;
    /* margin: 50px auto; */
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    z-index: 11;
}

#icon-hamburguer span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--black);
    border-radius: 4px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

#icon-hamburguer.open span {
    background: var(--lightgrey);
}

#icon-hamburguer span:nth-child(1) {
    top: 0px;
}

#icon-hamburguer span:nth-child(2),
#icon-hamburguer span:nth-child(3) {
    top: 8px;
}

#icon-hamburguer span:nth-child(4) {
    top: 16px;
}

#icon-hamburguer.open span:nth-child(1) {
    top: 10px;
    width: 0%;
    left: 50%;
}

#icon-hamburguer.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

#icon-hamburguer.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#icon-hamburguer.open span:nth-child(4) {
    top: 10px;
    width: 0%;
    left: 50%;
}

/********************* 1st Section - Banner ***************************************************************/
h1 {
    font-family: 'IBM Plex Sans', sans-serif;
    color: #fff;
    text-align: center;
    font-size: 120px;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -1.6px;
}
section#banner {
    min-height: calc(100vh - 60px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    background-image: url(../assets/images/wizardsardine/bg_banner.jpg);
    background-size: cover;
    background-attachment: fixed;
    margin-top: 84px;
    background-position: center;
}
section#banner .overlay {
    /*  background-color: rgba(0, 0, 0, 0.8); */
    width: 100%;
    height: auto;
    padding: 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
section#banner .banner-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 1000px;
    width: 100%;
    height: 80%;
}

section#banner .banner-wrapper .flex-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    width: 100%;
}

section#banner .btn-banner {
    padding: 10px 60px;
    white-space: nowrap;
}

section#banner .banner-wrapper p.description {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: #e7e7e7;
    margin: 30px 0;
    line-height: 24px;
    letter-spacing: 0.6px;
    text-align: center;
}

.title-green {
    background: -o-linear-gradient(213deg, #61ffe1 0%, #60f8e1 20%, #5fe7e4 50%, #5ccbe8 70%, #59a4ee 100%);
    background: linear-gradient(237deg, #61ffe1 0%, #60f8e1 20%, #5fe7e4 50%, #5ccbe8 70%, #59a4ee 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-purple {
    background: -o-linear-gradient(213deg, #5433ff 0%, #5d35ff 20%, #6e38ff 40%, #853cff 60%, #a341ff 80%, #ac43ff 100%);
    background: linear-gradient(237deg, #5433ff 0%, #5d35ff 20%, #6e38ff 40%, #853cff 60%, #a341ff 80%, #ac43ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 768px) {
    section#banner {
        background-attachment: scroll;
        background-position: center;
    }
    section#banner .banner-wrapper {
        justify-content: flex-start;
    }
}
@media screen and (max-width: 1000px) {
    h1 {
        font-size: 90px;
    }
}

@media screen and (max-width: 650px) {
    h1 {
        font-size: 70px;
    }
}
@media screen and (max-width: 600px) {
    section#banner .btn-banner {
        padding: 10px;
        width: 100%;
    }
}
@media screen and (max-width: 500px) {
    h1 {
        font-size: 60px;
        line-height: 100%;
    }
    section#banner .flex-btns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        max-width: 280px;
    }
}
@media screen and (max-width: 400px) {
    h1 {
        font-size: 50px;
    }
}

/********************* 2st Section - Services ***************************************************************/
section#services {
    background-image: url(../assets/images/wizardsardine/bg_services.jpg);
    background-size: cover;
    padding: 6%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 50px;
}
#services .flex-services {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
}
#services .service-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 18px 24px 18px 18px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 17px;
    border-radius: 5px;
    background: #0c0c0c;
    -webkit-box-shadow: 2px 4px 10px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 2px 4px 10px 0px rgba(0, 0, 0, 0.15);
    width: 48%;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
@media (hover: hover) {
    #services .service-item:hover {
        -webkit-transform: scale(1.03);
        -ms-transform: scale(1.03);
        transform: scale(1.03);
        cursor: default;
    }
    #services .service-item:hover .service-description {
        color: #b9b9b9;
    }
}
#services .service-description {
    color: #909090;
    font-family: IBM Plex Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% */
    letter-spacing: 0.16px;
    margin-top: 4px;
}
#services figure img {
    height: auto;
    width: 30px;
}
h5 {
    color: #fff;
    font-family: IBM Plex Sans;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

h6 {
    color: #a7a7a7;
    text-align: center;
    font-family: IBM Plex Sans;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 138.5%;
    text-align: center;
    max-width: 700px;
}

@media screen and (max-width: 1140px) {
    section#services {
        padding: 6% 4%;
    }
}
@media screen and (max-width: 1090px) {
    h5 {
        font-size: 20px;
        line-height: 24px;
    }
}

@media screen and (max-width: 800px) {
    #services .service-item {
        width: 100%;
        gap: 20px;
    }
    #services figure img {
        height: auto;
        width: 36px;
    }
}
@media screen and (max-width: 700px) {
    section#services {
        padding: 60px 20px;
        gap: 30px;
    }
    #services .flex-services {
        gap: 10px;
    }
    #services .service-item {
        padding: 14px;
        gap: 16px;
    }
    #services .service-description {
        font-size: 14px;
        line-height: 18px;
    }
    h5 {
        font-size: 18px;
        line-height: 21px;
    }
    h6 {
        font-size: 16px;
    }
}

/********************* 3th Section - Solutions ***************************************************************/
#solutions {
    background-color: #0c0c0c;
    background-size: cover;
    margin: 0;
    padding: 6%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 50px;
    min-height: 80vh;
}
#solutions .img-holder {
    background-position: center;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    aspect-ratio: 2/1;
}
#solutions .img-holder .overlay {
    width: 100%;
    height: auto;
    background: rgba(30, 30, 30, 0.56);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
}
#solutions .img-holder .overlay img {
    width: 100%;
    max-width: 60%;
    max-height: 60px;
}
#solutions .gradient-wrapper,
#blog-recent .gradient-wrapper {
    width: 100%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    padding: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
@media (hover: hover) {
    #solutions .gradient-wrapper:hover,
    #blog-recent .gradient-wrapper:hover {
        background-image: var(--ws-gradient);
        cursor: pointer;
    }
    #solutions .gradient-wrapper.disabled:hover {
        background: transparent;
        cursor: default;
    }
    #solutions .gradient-wrapper.disabled a:hover {
        cursor: default;
    }
}
#solutions .revault {
    background-image: url(../assets/images/wizardsardine/cover_revault.jpg);
}
#solutions .liana {
    background-image: url(../assets/images/wizardsardine/cover_liana.jpg);
}
#solutions .bunker {
    background-image: url(../assets/images/wizardsardine/cover_bunker.jpg);
}
#solutions .card-text-area {
    background-color: #181818;
}
#solutions .card-text-area h4 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 900;
    font-size: 36px;
    color: #fcfcfc;
    line-height: 49px;
    letter-spacing: 0.01em;
}
#solutions .card-text-area p {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #a8a8a8;
    line-height: 22px;
    letter-spacing: 0.01em;
}
.corner-coming-soon {
    position: absolute;
    top: -1px;
    right: -1px;
    width: 100%;
    height: 60%;
    background: rgba(0, 0, 0, 0.72);
    -webkit-clip-path: polygon(0 0, 100% 50%, 100% 0);
    clip-path: polygon(0 0, 100% 50%, 100% 0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 8%;
}
.corner-coming-soon h5 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #e6e6e6;
}
.corner-coming-soon span {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #a6a6a6;
}
.each-solution:hover .gradient-wrapper {
    background: var(--ws-gradient);
}
#solutions-opt2 {
    background-color: #0c0c0c;
    background-size: cover;
    margin: 0;
    padding: 6%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 50px;
}
#solutions-opt2 .grid-solutions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 5%;
    max-width: 1000px;
    margin: auto;
}
#solutions-opt2 .gradient-wrapper {
    width: 47%;
    border-radius: 10px;
    overflow: hidden;
    min-height: 250px;
    padding: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 50px;
}
#solutions-opt2 .gradient-wrapper:first-child,
#solutions-opt2 .gradient-wrapper:nth-child(3) {
    margin-top: 0;
}
@media (hover: hover) {
    #solutions-opt2 .gradient-wrapper:hover {
        background-image: var(--ws-gradient);
        cursor: pointer;
    }
}
#solutions-opt2 .gradient-wrapper .each-solution {
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    border-radius: 10px;
    overflow: hidden;
}
#solutions-opt2 .gradient-wrapper .each-solution .overlay {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 30px;
    width: 100%;
    height: auto;
    background: rgba(30, 30, 30, 0.56);
}
#solutions-opt2 .gradient-wrapper .each-solution .overlay:hover {
    background-image: var(--ws-gradient);
}
#solutions-opt2 .gradient-wrapper .each-solution h4 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 900;
    font-size: 38px;
    color: #fff;
}
#solutions-opt2 .gradient-wrapper .each-solution .description-solution {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #cecece;
}
#solutions-opt2 .overlay:hover h4,
#solutions-opt2 .overlay:hover .description-solution {
    color: rgb(226, 226, 226);
}
#solutions-opt2 .revault {
    background: url(../assets/images/wizardsardine/cover_revault.jpg);
    background-size: cover;
    background-position: center;
}
#solutions-opt2 .liana {
    background-image: url(../assets/images/wizardsardine/cover_liana.jpg);
    background-size: cover;
    background-position: center;
}
#solutions-opt2 .lianapro {
    background-image: url(../assets/images/wizardsardine/cover_lianapro.jpg);
    background-size: cover;
    background-position: center;
}

@media screen and (max-width: 900px) {
    #solutions {
        padding: 4% 5%;
        gap: 30px;
    }
}
@media screen and (max-width: 850px) {
    #solutions .card-text-area h4 {
        font-size: 28px;
    }
}
@media screen and (max-width: 800px) {
    #solutions .img-holder {
        aspect-ratio: 1/0.6;
    }
    #solutions .gradient-wrapper,
    #blog-recent .gradient-wrapper {
        width: auto;
    }
}
@media screen and (max-width: 768px) {
    #solutions {
        padding: 60px 20px;
    }
    #solutions-opt2 .gradient-wrapper {
        margin-top: 30px;
    }
    #solutions-opt2 .gradient-wrapper .each-solution .description-solution {
        font-size: 16px;
    }
    #solutions-opt2 .gradient-wrapper .each-solution h4 {
        font-size: 32px;
    }
    .corner-coming-soon {
        padding: 4%;
    }
}
@media screen and (max-width: 600px) {
    #solutions-opt2 {
        padding-bottom: 80px;
    }
    #solutions-opt2 .gradient-wrapper {
        width: 100%;
        margin-top: 0;
        min-height: 200px;
    }
    #solutions-opt2 .grid-solutions {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px;
    }
    #solutions-opt2 .gradient-wrapper .each-solution {
        width: 100%;
    }
}
/********************* 4th Section - Contact - Talk to us  ***************************************************************/
#contact {
    background: url(../assets/images/wizardsardine/bg_contact.jpg);
    background-size: cover;
    padding: 2% 10%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
#contact .container-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 30px;
    padding: 60px 10%;
    width: 100%;
    max-width: 1200px;
    background: -o-linear-gradient(left, #000 0%, #262626 35.42%, #232323 67.71%, #000 100%);
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#000),
        color-stop(35.42%, #262626),
        color-stop(67.71%, #232323),
        to(#000)
    );
    background: linear-gradient(90deg, #000 0%, #262626 35.42%, #232323 67.71%, #000 100%);
}
h2.gradient-title {
    text-align: center;
    font-size: 64px;
    font-weight: 700;
    line-height: 80px;
    /* background: var(--ws-gradient); */
    background: -o-linear-gradient(213deg, #61ffe1 0%, #60f8e1 20%, #5fe7e4 50%, #5ccbe8 70%, #59a4ee 100%);
    background: linear-gradient(237deg, #61ffe1 0%, #60f8e1 20%, #5fe7e4 50%, #5ccbe8 70%, #59a4ee 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#contact .contact-description {
    color: #e9e9e9;
    text-align: center;
    font-size: 26px;
    font-weight: 300;
    line-height: 122%;
    letter-spacing: 0.05em;
}

@media screen and (max-width: 940px) {
    #contact {
        padding: 6%;
    }
    #contact .container-contact {
        padding: 40px 10%;
    }
    h2.gradient-title {
        font-size: 50px;
    }
    #contact .contact-description {
        font-size: 20px;
        letter-spacing: 0.02em;
    }
}
@media screen and (max-width: 768px) {
    h2.gradient-title {
        font-size: 40px;
    }
    #contact .container-contact {
        padding: 40px 20px;
    }
}
@media screen and (max-width: 600px) {
    #contact {
        padding: 40px 20px;
        gap: 10px;
    }
    #contact .container-contact {
        gap: 20px;
    }
    h2.gradient-title {
        font-size: 36px;
    }
    #contact .contact-description {
        font-size: 18px;
        letter-spacing: 0.02em;
    }
}

/********************* 5th Section - Blog - Recent  ***************************************************************/
#blog-recent {
    background-color: #bbc5c9;
    padding: 6% 5%;
    background-color: #151515;
    gap: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-image: url(../assets/images/wizardsardine/bg_blog.jpg);
}
#blog-recent h2 {
    text-align: center;
    color: #fff;
}
#blog-recent .card {
    max-width: 350px;
    background-color: #1e1e1e;
    max-width: 500px;
    width: 100%;
}
#blog-recent .card .card-text-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}
#blog-recent .card .card-text-area .card-text-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}
#blog-recent .card .img-holder {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: hidden;
    height: 60%;
}
#blog-recent .card .img-holder img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
#blog-recent .card .img-holder .chips-wrapper {
    position: absolute;
    right: 10px;
    top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
}
#blog-recent .card .img-holder .chips-wrapper .chip {
    font-size: 13px;
}
#blog-recent .card h4 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    line-height: 28px;
    letter-spacing: 0.01em;
}

#blog-recent .card p {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #868686;
    line-height: 24px;
    letter-spacing: 0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Used in multiple sections */
.flex-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 5%;
    max-width: 1000px;
    margin: auto;
}

.flex-grid .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: auto;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    min-width: 240px;
    height: 100%;
}

.flex-grid .card .card-text-area {
    padding: 20px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.chip {
    background-color: #171717;
    border-radius: 4px;
    padding: 6px 10px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--light-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
@media screen and (max-width: 900px) {
    #blog-recent {
        padding: 4% 5%;
        gap: 30px;
    }
    .flex-grid {
        gap: 20px;
    }
}
@media screen and (max-width: 800px) {
    .flex-grid {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .flex-grid .card {
        max-width: 450px;
        width: 100%;
    }
    /*  .flex-grid .card .card-text-area {
    flex: none;
  } */
}
@media screen and (max-width: 768px) {
    #blog-recent {
        padding: 60px 20px;
    }
}
@media screen and (max-width: 600px) {
    #blog-recent .card p {
        font-size: 16px;
        line-height: 20px;
    }
    #blog-recent .card h4 {
        font-size: 22px;
        line-height: 28px;
    }
}
/********************* 6th Section - Newsletter  ***************************************************************/
section#newsletter {
    background: -o-linear-gradient(left, #000 0%, #121212 21.87%, #1e1d1d 46.87%, #0f0f0f 76.56%, #000 100%);
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#000),
        color-stop(21.87%, #121212),
        color-stop(46.87%, #1e1d1d),
        color-stop(76.56%, #0f0f0f),
        to(#000)
    );
    background: linear-gradient(90deg, #000 0%, #121212 21.87%, #1e1d1d 46.87%, #0f0f0f 76.56%, #000 100%);
    padding: 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
    overflow: hidden;
}

.newsletter-description {
    color: #bdbdbd;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.18px;
}
.container-input {
    background: var(--ws-gradient);
    position: relative;
    width: 500px;
    height: 61px;
    padding: 2px;
    border-radius: 40px;
}

input {
    background-color: #212121;
    border-radius: 40px;
    border: none;
    width: 100%;
    height: 100%;
    color: #fff;
    padding: 10px 30px;
    font-size: 16px;
    outline: none;
    outline-style: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: transparent;
    font-family: 'IBM Plex Sans', sans-serif;
    letter-spacing: 0.05em;
}
input::-webkit-input-placeholder {
    color: rgb(144, 144, 144);
}
input::-moz-placeholder {
    color: rgb(144, 144, 144);
}
input:-ms-input-placeholder {
    color: rgb(144, 144, 144);
}
input::-ms-input-placeholder {
    color: rgb(144, 144, 144);
}
input::placeholder {
    color: rgb(144, 144, 144);
}

input:focus,
input:focus-visible {
    background-color: #373737;
    outline: none;
    outline-style: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #5572f5;
}

.btn-newsletter {
    border-radius: 30px;
    background-color: #000;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 46px;
    width: 130px;
    position: absolute;
    bottom: 8px;
    right: 8px;
    cursor: pointer;
}
.btn-newsletter:focus,
.btn-newsletter:visited {
    color: #fff;
}
@media (hover: hover) {
    .btn-newsletter:hover {
        background-color: #414141;
        background-image: var(--ws-gradient);
        color: #000;
        -webkit-filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.1));
        filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.1));
        cursor: pointer;
    }
}
@media screen and (max-width: 768px) {
    section#newsletter {
        gap: 26px;
    }
    .newsletter-description {
        margin-top: -20px;
        max-width: 500px;
        line-height: 120%;
    }
    .btn-newsletter {
        font-size: 16px;
        padding: 0;
    }
}
@media screen and (max-width: 650px) {
    .container-input {
        width: 400px;
    }
}
@media screen and (max-width: 460px) {
    .container-input {
        width: 300px;
        height: 51px;
    }
    input {
        padding: 12px;
        font-size: 15px;
    }
    .btn-newsletter {
        width: 90px;
        font-size: 14px;
        right: 6px;
        height: 36px;
    }
}

form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}

.error-container {
    margin: 10px 10px 0;
    max-width: 500px;
}
/* Mailchimp Input Style */
#mc_embed_signup {
    background: lightblue;
    clear: left;
    max-width: 700px;
}
/* subscribe btn reset style */
#mc-embedded-subscribe {
    clear: none;
    width: initial;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: none;
}

/* Error and Success messages text */
#mce-error-response,
#mce-success-response {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 17px;
    background-color: transparent;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.4px;
}

/* success message */
#mce-success-response {
    color: rgb(111, 208, 96);
}
/* error message */
#mce-error-response {
    color: #ff4f4f;
}

/********************* Footer WS ***************************************************************/
footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    background-color: #0e0e0e;
    border-top: 1px solid;
}
footer .footer-top-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 4% 10%;
    background-color: #0e0e0e;
    width: 100%;
}
footer .footer-bottom-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #000;
    padding: 20px;
}
footer .footer-bottom-container a {
    height: 34px;
}

footer .footer-bottom-container .img-apoios {
    height: 34px;
    width: auto;
}

footer .logo-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
}

footer .logo-wrapper img {
    width: 200px;
    height: auto;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}
footer .logo-wrapper .logo-name {
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.5%;
    font-size: 26px;
}
footer .logo-wrapper #credits {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #676767;
}
footer .footer-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 60px;
}

footer .footer-menu .each-col h6 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: rgb(189, 189, 189);
    margin-bottom: 10px;
}
footer .footer-menu .each-col ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
}
footer .footer-menu .each-col ul li {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: rgb(189, 189, 189);
}
footer .footer-menu .each-col ul li:hover {
    color: #fff;
    text-decoration: underline;
}
footer .footer-menu .each-col ul .disabled {
    color: grey;
}
footer .footer-menu .each-col ul .disabled:hover {
    text-decoration: none;
    color: grey;
}
footer .footer-menu .each-col ul .disabled:hover a {
    cursor: default;
}
footer .footer-menu .each-col .icons-holder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}
footer .footer-menu .each-col .icons-holder .a-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

@media (hover: hover) {
    footer .footer-menu .each-col .icons-holder .a-icon:hover svg path {
        fill: var(--ws-green);
    }
}
footer .footer-menu .each-col .icons-holder .a-icon img {
    width: 30px;
    height: 30px;
}
/* Media queries Footer */
@media screen and (max-width: 768px) {
    footer .footer-bottom-container {
        padding: 16px;
    }
    footer .footer-bottom-container .img-apoios {
        max-height: 28px;
        height: auto;
        width: 100%;
    }
}
@media screen and (max-width: 700px) {
    footer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    footer .footer-top-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 60px;
        padding: 8%;
    }
}

@media screen and (max-width: 600px) {
}
@media screen and (max-width: 500px) {
    footer .footer-menu {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 30px;
    }
    footer {
        gap: 40px;
    }
    footer .logo-wrapper {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    footer .footer-top-container {
        gap: 40px;
    }
}
