/* IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: "Open Sans Italic";
    src: url("../fonts/OpenSans/OpenSans-Italic.ttf") format("truetype");
    font-style: italic;
    font-weight: lighter;
}

@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans/OpenSans-regular.ttf") format("truetype");
    font-weight: regular;
}

/*=== BASIC CSS ===*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%
}

:root,
:after,
:before {
    --color-white: #fefefe;
    --color-black: #1a1a1a;
    --color-blue: #1d5e98;
    --color-blue-hvr: #0f8c9b;
    --color-dark-blue: #151c2d;
    --color-gray: #575757;

    --color-navbar-transparent: #fefefecb;
}

html {
    font-size: 16px;
    /*set default font-size for website*/
    scroll-behavior: smooth;
    background-color: #3c3c3c;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    background-attachment: fixed;
    background-image: linear-gradient(112.5deg, rgba(232, 232, 232, 0.03) 0%, rgba(232, 232, 232, 0.03) 2%, rgba(231, 231, 231, 0.03) 2%, rgba(231, 231, 231, 0.03) 4%, rgba(231, 231, 231, 0.03) 4%, rgba(231, 231, 231, 0.03) 11%, rgba(2, 2, 2, 0.03) 11%, rgba(2, 2, 2, 0.03) 67%, rgba(231, 231, 231, 0.03) 67%, rgba(231, 231, 231, 0.03) 90%, rgba(111, 111, 111, 0.03) 90%, rgba(111, 111, 111, 0.03) 100%), linear-gradient(157.5deg, rgba(210, 210, 210, 0.03) 0%, rgba(210, 210, 210, 0.03) 17%, rgba(254, 254, 254, 0.03) 17%, rgba(254, 254, 254, 0.03) 18%, rgba(96, 96, 96, 0.03) 18%, rgba(96, 96, 96, 0.03) 44%, rgba(159, 159, 159, 0.03) 44%, rgba(159, 159, 159, 0.03) 70%, rgba(24, 24, 24, 0.03) 70%, rgba(24, 24, 24, 0.03) 82%, rgba(16, 16, 16, 0.03) 82%, rgba(16, 16, 16, 0.03) 100%), linear-gradient(22.5deg, rgba(47, 47, 47, 0.03) 0%, rgba(47, 47, 47, 0.03) 32%, rgba(124, 124, 124, 0.03) 32%, rgba(124, 124, 124, 0.03) 40%, rgba(200, 200, 200, 0.03) 40%, rgba(200, 200, 200, 0.03) 42%, rgba(16, 16, 16, 0.03) 42%, rgba(16, 16, 16, 0.03) 64%, rgba(243, 243, 243, 0.03) 64%, rgba(243, 243, 243, 0.03) 94%, rgba(93, 93, 93, 0.03) 94%, rgba(93, 93, 93, 0.03) 100%), linear-gradient(90deg, #ffffff, #ffffff);
    min-height: 400vh;
}

body {
    font-family: "Open Sans";
}

a {
    text-decoration: none;
    color: var(--color-blue);
    transition: color 0.25s ease-in-out;
}

a:hover {
    color: var(--color-blue-hvr);
}

p,
span,
em,
i {
    font-family: "Nunito";
}
h2:not(.banner-title) {
    text-align: center;
    font-size: 2.5rem;
}
/*=== ========= ===*/


/*=== PRECONFIG' CLASSES ===*/
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.flex-center-left {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}

.no-l-style {
    list-style: none;
}

.hvr-underline-link {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
}

.hvr-underline-link:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 51%;
    right: 51%;
    bottom: 0;
    background: var(--color-blue-hvr);
    height: 1px;
    -webkit-transition-property: left, right;
    transition-property: left, right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-underline-link:hover:before,
.hvr-underline-link:focus:before,
.hvr-underline-link:active:before {
    left: 0;
    right: 0;
}

.svg-wave svg path {
    fill: var(--color-dark-blue);
    fill-opacity: 1;
}
.anchor {
    position: absolute;
}
.anchor#expertise {
    bottom: 15rem;
}
.anchor#realisations {
    top: -4rem;
}
.anchor#contact {
    top: 0;
}

/*=== ========= ===*/


/*=== HEADER ===*/
.header-wrapper {}

.navbar {
    justify-content: space-evenly;
    width: 100%;
    padding: 0 3rem;
    border-bottom: 2px double #1a1a1a21;
    background-color: var(--color-white);
    position: fixed;
    z-index: 10;
}

#logo-link .flex-center-left {
    flex-direction: column;
}

#logo-link:hover {
    color: var(--color-blue);
}

#logo-link img {
    width: 6.5rem;
    height: 6.5rem;
    object-fit: contain;
}

.navbar-btns .nav-items {
    margin: 2rem;
    text-transform: uppercase;
    
}

/* navbar animation css */
.navbar.scroll-set {
    background-color: var(--color-navbar-transparent);
}
#brand_text {
    overflow: hidden;
}
#navbar_logo.scroll-set {
     width: 3.8rem;
     height: 3.8rem;
}
.navbar-btns .nav-items.scroll-set {
    margin: 0.8rem 2rem;
}

.navbar, .navbar.scroll-set,
#navbar_logo, #navbar_logo.scroll-set,
.navbar-btns .nav-items, .navbar-btns .nav-items.scroll-set,
#brand_text {
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out; /* Firefox */
    -webkit-transition: all 0.2s ease-in-out; /* Safari and Chrome */
    -o-transition: all 0.2s ease-in-out; /* Opera */
}
.navbar.scroll-set > * {
    position: relative;
    z-index: 10;
}


/* ============ */
/* BANNER */
.banner {
    padding: 13rem 1rem 0;
    /* 10rem =  push fixed navbar */
    gap: 7rem;
    position: relative;
    z-index: 2;
    justify-content: space-evenly;
    align-items: flex-start;
}

.banner-title {
    font-size: 2.5rem;
    color: var(--color-blue);
    margin-bottom: 2rem;
}

.banner-message {
    font-size: 1.1rem;
    width: 80%;
}

.banner .left-col {
    width: 55%;
    padding: 2rem 0 0;
}

.banner .right-col {
    padding: 4rem 0 0;
    width: 30%;
}

.banner-deco {
    margin: -15rem 0 -1rem;
}


/*=== Expertises ===*/
.expertises {
    background-color: var(--color-dark-blue);
    color: var(--color-white);
    padding: 5rem 2rem;
    position: relative;
    z-index: 2;
}

.expertises-deco {
    background-color: transparent;
}

.card-flex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: flex-start;
}

.card-flex .card {
    display: grid;
    align-items: start;
    flex-basis: 50%;
    padding: 1.5rem 6rem;
    text-align: center;
    align-content: center;
    justify-items: center;
    grid-template-rows: 10rem auto auto;
    gap: 0;
}

.card-flex .card-img {
    width: 6rem;
    height: auto;
    margin: 2rem 0;
}

.card-flex .card-img svg {
    fill: var(--color-blue-hvr);
}

.card-title {
    color: var(--color-blue);
    font-size: 1.4rem;
}

.card-desc {
    font-size: 1.3rem;
    line-height: 1.8rem;
}

.card-title,
.card-desc {
    margin: 0.6rem 0;
}

/*=== Realisations ===*/
.realisations {
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}
.realisations h2 {
    color: var(--color-dark-blue);
    margin-bottom: 2.5rem;
}


.btn {
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    padding: 10px 20px;
    margin-right: 10px;
    background-color: #fff;
    border: 1px solid #2c2c2c;
    border-radius: 3px;
    cursor: pointer;
    outline: none;
}

.btn:last-child {
    margin-right: 0;
}

.btn:hover,
.btn.js-active {
    color: #fff;
    background-color: #2c2c2c;
}

.header {
    max-width: 500px;
    margin: 50px auto;
    text-align: center;
}

.header__title {
    margin-bottom: 30px;
    font-weight: 500;
}

.content {
    max-width: 700px;
    margin: auto;
}

.tabs-container {
    width: 85%;
    height: 40rem;
    margin: auto;
    background-image: linear-gradient(45deg, rgba(14, 14, 14,0.03) 0%, rgba(14, 14, 14,0.03) 38%,rgba(250, 250, 250,0.03) 38%, rgba(250, 250, 250,0.03) 45%,rgba(113, 113, 113,0.03) 45%, rgba(113, 113, 113,0.03) 100%),linear-gradient(135deg, rgba(148, 148, 148,0.03) 0%, rgba(148, 148, 148,0.03) 36%,rgba(219, 219, 219,0.03) 36%, rgba(219, 219, 219,0.03) 63%,rgba(62, 62, 62,0.03) 63%, rgba(62, 62, 62,0.03) 100%),linear-gradient(90deg, rgb(255,255,255),rgb(255,255,255));
    background-size: 100% 100%;
    box-shadow: 0 8px 17px 2px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
}
.tabs {
    position: relative;
    padding: 1rem 1.5rem;
    height: 100%;
    overflow: hidden;
}
.tabs-nav-container {
    position: relative;
}
.tabs-panel-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    transition: width 0.2s linear 0s, transform 0.2s ease-out 0s;
    background-color: var(--color-blue);
    border-radius: 3px;
    z-index: 1;
}
.tabs-nav {
    position: relative;
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    z-index: 5;
}
.mobile-menu-toggle {
    display: none;
}

#hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

#hamburger-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-blue);
    margin: 5px 0;
    transition: 0.3s;
}

@media screen and (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        width: 100%;
    }

    .nav-menu.active {
        display: block;
    }

    .navbar-btns {
        flex-direction: column;
        align-items: center;
    }

    .navbar-btns .nav-items {
        margin: 1rem 0;
    }
}
.tabs-nav-items {
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    padding: 15px;
    cursor: pointer;
}
.tabs-nav-items.js-active {
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0.05s;

}
.tabs-panel-container {
    position: relative;
    margin-top: 30px;
}
.tabs-panel {
    position: absolute;
    top: 0;
    left: 0;
    transition: none;
    transform: scale(0.8);
    width: 100%;
    opacity: 0;
}
.tabs-panel.js-active {
    transition: all 0.25s linear 0s;
    transform: scale(1);
    opacity: 1;
    z-index: 3;
}
.tabs-panel.js-active > * {
    z-index: 4;
}

/* styling tabs content */
.tabs-panel h3 {
    margin-bottom: 0.3rem;
    font-size: 1.5rem;
    color: var(--color-blue);
}
.tabs-panel h4 {
    margin: 0.3rem 0 0.5rem;
    color: var(--color-black);
}
.tabs-panel p {
    color: var(--color-gray);
}
.tabs-panel span {
    color: var(--color-blue-hvr);
}
.tabs-panel p,
.tabs-panel span {
    margin: 0.4rem 0;
}
.tabs-panel a {
    color: var(--color-blue-hvr);
}
.tabs-panel .fa-solid,
.tabs-panel .fa-regular,
.tabs-panel .fa-light,
.tabs-panel .fa-thin,
.tabs-panel .fa-duotone {
    color: var(--color-blue);
    margin-right: 0.7rem;
}
.tabs-panel .tabs-panel-card {
    padding: 0.5rem 1rem;
}
/* --- */


.tabs-panel-card {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 15px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
.tabs-panel-card:last-child {
    margin-bottom: 0;
}
.tabs-panel-card-spaced {
    justify-content: space-evenly;
}
.tabs-panel-avatar {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.15);
}
.tabs-panel-img {
    flex-shrink: 0;
    width: 8rem;
    height: 8rem;
    border-radius: 4px;
}
.tabs-panel-content {
    width: 100%;
    margin-left: 30px;
}
.tabs-panel-content:first-child {
    margin-left: 0;
}
.tabs-panel-content:not(:last-child) {
    margin-right: 30px;
}

.tabs-panel-content:before {
    margin-bottom: 15px;
}

/* CONTACT */
.contact {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: var(--color-dark-blue);
    position: relative;
    z-index: 3;
    padding: 2rem 0;
}
.contact-form {
    width: 80%;
    padding: 2rem 5rem;
    border-radius: 0.3rem;
    position: relative;
}
.form-deco.svg-wave {
    width: 100%;
    margin-top: -1rem;
    transform: rotateY(180deg);
}
.form-deco.svg-wave.bottom {
    margin-top: -2rem;
}
.form-deco.svg-wave.top {
    margin-top: 5rem;
}
.wave-container {
    position: relative;
    height: 198px;
    margin-top: 10rem;
    overflow: hidden;
}
.form-deco.top.svg-wave {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}
.wave-anim {
    background: url(../assets/wave.svg) repeat-x;
    position: absolute;
    top: -198px;
    width: 6400px;
    height: 198px;
    animation: wave 7s cubic-bezier( 0.36, 0.45, 0.63, 0.53) infinite;
    transform: translate3d(0, 0, 0);
}

.wave-anim:nth-of-type(2) {
    top: -175px;
    animation: wave 7s cubic-bezier( 0.36, 0.45, 0.63, 0.53) -.125s infinite, swell 7s ease -1.25s infinite;
    opacity: 1;
}

@keyframes wave {
    0% {
        margin-left: 0;
    }
    100% {
        margin-left: -1600px;
    }
}
@keyframes swell {
    0%, 100% {
        transform: translate3d(0,-25px,0);
    }
    50% {
        transform: translate3d(0,5px,0);
    }
}

.contact-form h2 {
    color: var(--color-white);
    margin-bottom: 2.5rem;
}
.contact-form .form-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}
.contact-form .form-inner > .form-left-col,
.contact-form .form-inner > .form-right-col {
    flex-basis: 50%;
    padding: 1.5rem 2rem;
}
.contact-form-fields {
    border: 0;
    width: 100%;
    margin: 3% 0;
    display: flex;
    flex-direction: column-reverse;
}
.contact-form-fields:last-child {
    margin-bottom: 0;
}
.contact-form label {
    font-weight: bold;
    color: var(--color-white);
}
.contact-form-fields input[type=text]:focus-visible + label,
.contact-form-fields input[type=text]:focus-visible + label i,
.contact-form-fields input[type=tel]:focus-visible + label,
.contact-form-fields input[type=tel]:focus-visible + label i,
.contact-form-fields textarea:focus-visible + label,
.contact-form-fields textarea:focus-visible + label i {
    color: var(--color-blue-hvr);
}
.contact-form input[type=text], .contact-form input[type=tel], .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    margin: 0.2rem 0;
    display: inline-block;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    background-color: transparent;
    border-radius: 0.3rem;
    box-sizing: border-box;
    outline: 0;
    transition: all 0.3s ease-in-out;
}
input[type=text]:focus-visible,
input[type=tel]:focus-visible,
select:focus-visible,
textarea:focus-visible {
    border: 1px solid var(--color-blue);
}

.contact-form textarea {
    height: 200px;
}
.submit-btn {
    display: flex;
    width: fit-content;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    margin: 0.7rem 0 0.7rem auto;
    border: 1px solid transparent;
    border-radius: 0.3rem;
    background-color: var(--color-blue);
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    font-size: 1.2rem;
}
.submit-btn:hover {
    background-color: transparent;
    border-color: var(--color-blue-hvr);
}
.submit-btn > * {
    color: var(--color-white);
}
.submit-btn input[type=submit] {
    padding: 1.2rem 3rem 1.2rem 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
}
.contact-form label .fa-solid {
    margin: 0.3rem 0.8rem 0.3rem 0.3rem;
    color: var(--color-white);
}
.contact-form .submit-btn i {
    margin: 0.3rem;
    position: absolute;
    right: 1rem;
}
.contact-form .submit-btn:hover .fa-solid {
    right: 0.8rem;
    color: var(--color-blue-hvr);
}

.contact-form label,
.contact-form label .fa-solid,
.contact-form .submit-btn .fa-solid {
    transition: all 0.2s ease-in-out;
}

/* <hr> */
hr {
    border: 0;
    height: 1px;
    width: 45%;
    position: relative;
    margin: 1.5rem auto;
    overflow: visible;
}
hr.center-diamond {
    background: var(--color-blue-hvr);
}
hr.center-diamond:before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--color-white);
    display: inline-block;
    border: 2px solid var(--color-blue-hvr);
    position: absolute;
    top: -5px;
    left: 50%;
    margin: 0 0 0 -3px;
    transform:rotate(45deg);
    -ms-transform:rotate(45deg); /* IE 9 */
    -webkit-transform:rotate(45deg); /* Opera, Chrome, and Safari */
}

/* FOOTER */
footer {
    padding: 2rem 2rem 0;
    background-color: var(--color-dark-blue);
    color: var(--color-white);
    position: relative;
}
.footer-logo img {
    width: 7rem;
    height: 7rem;
}
footer hr {
    margin: 0 auto;
}
footer .fa-solid {
    width: 1rem;
    margin-right: 0.5rem;
    color: var(--color-blue-hvr);
}

/* flex-cols */
.footer-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 0 2.5rem 0;
}
.footer-cols {
    display: flex;
    align-items: center;
    list-style: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-evenly;
}
.footer-cols > li {
    margin: 0 3%;
}

/* subnavs */
.footer-cols .footer-subnav {
    display: flex;
    list-style: none;
    flex-direction: column;
}

/* footer-nav-elements */
.footer-nav-title {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
}
.footer-nav-link {
    line-height: 1.6rem;
}
.footer-nav-link span {
    color: var(--color-blue);
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}
.footer-nav-link span:hover {
    color: var(--color-blue-hvr);
}
/* footer extra for rgpd and cgu */
.footer-extra {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.footer-extra .modal-btn {
    margin: 0 2%;
}

/* Modal - rgpd */
.modal {
    display: none; /* Hidden by default */
    position: fixed; 
    z-index: 30; /* Highest z-index */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}
/* Modal Content/Box */
.modal-content {
    position: relative;
    background-color: var(--color-dark-blue);
    color: var(--color-white);
    margin: 7% auto;
    padding: 3rem 3rem;
    border: 1px solid var(--color-white);
    border-radius: 0.5rem;
    width: 90%;
    max-height: 70vh;
    overflow: auto;
}

/* The Close Button */
.modal-content .close {
    position: absolute;
    top: 0;
    right: 1rem;
    display: block;
    width: fit-content;
    color: var(--color-white);
    font-size: 2rem;
    font-weight: bold;
    margin-left: auto;
    transition: all 0.25s ease-in-out;
}
.modal-content .close:hover,
.modal-content .close:focus {
    color: var(--color-blue-hvr);
    text-decoration: none;
    cursor: pointer;
}
.modal-content p {
    margin: 0.5rem 0;
    white-space: pre-line;
}
.modal-footer {
    color: var(--color-white);
    margin: 2rem 0;
    font-weight: bold;
    font-size: 1.2rem;
}
#rgpd-modal .modal-content h4,
#cgu-modal .modal-content h4 {
    font-size: 1.6rem;
}
#rgpd-modal .modal-content h5,
#cgu-modal .modal-content h5 {
    font-size: 1.4rem;
}
#rgpd-modal .modal-content ul,
#cgu-modal .modal-content ul {
    padding-left: 3rem;
}

.modal-btn {
    padding: 0.5rem 0.9rem;
    border: 1px solid transparent;
    border-radius: 0.3rem;
    background-color: var(--color-blue);
    color: var(--color-white);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.25s ease-in-out;
}
.modal-btn:hover {
    background-color: transparent;
    border-color: var(--color-blue-hvr);
}

/* SLIDER */
.webSlides {
    display: none;
    padding: 0 7%;
}
.webSlides img {
    min-height: 50vh;
    object-fit: contain;
    vertical-align: middle;
}
.dotContainer {
    margin: 3% 0 2%;
    text-align: center;
}
/* Slideshow container */
.slideshow-container {
    max-width: 1400px;
    position: relative;
    margin: auto;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: var(--color-black);
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
    color: var(--color-black);
    font-size: 1.2rem;
    padding: 0.3rem 0;
    position: absolute;
    bottom: -3rem;
    left: 0;
    width: 100%;
    text-align: center;
}
.text i {
    margin-right: 0.5rem;
    color: var(--color-blue);
    transition: all 0.3s ease-in-out;
}
.text:hover i {
    color: var(--color-blue-hvr);
}

/* Number text (1/3 etc) */
.numbertext {
    color: var(--color-black);
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}



/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4;
    } to {
        opacity: 1;
    }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .prev, .next,.text {
        font-size: 11px
    }
}