
@font-face {
    font-family: 'din';
    src: url(../../fonts/DINLight.ttf);
    font-weight: lighter;
}

@font-face {
    font-family: 'din';
    src: url(../../fonts/DINMedium.ttf);
    font-weight: normal;
}

 :root {
    --blue: #000792;
    --light-blue: #33def2;
    --green-lime: #00a9b0;
    --light-green: #58e99b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-family: 'din', sans-serif;
}

input::-webkit-input-placeholder {
    font-size: 14px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

#button {
    display: inline-block;
    background-color: #FF9800;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#button::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: #fff;
}

#button:hover {
    cursor: pointer;
    background-color: #333;
}

#button:active {
    background-color: #555;
}

#button.show {
    opacity: 1;
    visibility: visible;
}

.text-green-n {
    color: #00a9b0 !important ;
}

.form-control {
    border: none;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.288);
    border-radius: 0;
    margin-top: 20px;
    font-size: 14px;
    transition: border-bottom 0.2s ease-in-out;
}

.form-control:focus {
    border: none;
    border-bottom: 2px solid var(--green-lime);
    box-shadow: none;
}

.form-control:focus::placeholder {
    border: none;
    box-shadow: none;
    color: rgba(0, 0, 0, 0.233) !important;
}

.form-control::placeholder {
    color: rgba(44, 44, 44, 0.568)
}

.swiper-container {
    padding: 0;
    height: 550px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    .swiper-container {
        height: 500px;
    }
}

.swiper-slide {
    width: 100%;
    background-size: cover;
    display: flex;
    align-items: center;
    /* padding-bottom: 90px; */
    justify-content: center;
    transition: all 0.3s ease;
}

/*.swiper-slide:after {
    content: "";
    background-image: linear-gradient(0deg, black, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    z-index: 1;
    opacity: 0.3;
    pointer-events: none;
}

    .swiper-slide:before {
        content: "";
        background-color: rgba(69, 69, 78, 0.062);
        background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
        position: absolute;
        width: 100%;
        height: 100%;
        bottom: 0;
        z-index: 1;
        pointer-events: none;
    }*/


/* swiper arrows */

.swiper-button-prev,
.swiper-button-next {
    width: 50px;
    height: 50px;
    background-image: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-prev {
    left: 30px;
}

.swiper-button-next {
    right: 30px;
}

.swiper-button-prev span,
.swiper-button-next span {
    width: 10px;
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    position: absolute;
    border: solid 2px white;
    border-left: 0;
    border-bottom: 0;
    transition: all 0.3s ease;
}

.swiper-button-prev span {
    transform: rotate(-135deg);
    left: 50%;
}

.swiper-button-next span {
    transform: rotate(45deg);
    right: 50%;
}

.swiper-button-prev span:after,
.swiper-button-next span:after {
    content: "";
    position: absolute;
    background-color: white;
    width: 0px;
    height: 2px;
    transition: all 0.3s ease;
    transform: rotate(-45deg);
}

.swiper-button-prev:hover span {
    left: 30%;
}

.swiper-button-next:hover span {
    right: 30%;
}

.swiper-button-prev:hover span:after,
.swiper-button-next:hover span:after {
    width: calc(20px - 4px);
}


/* swiper arrows mobile */

@media screen and (max-width: 768px) {
    .swiper-button-prev {
        left: 0px;
    }
    .swiper-button-next {
        right: 0px;
    }
    .swiper-button-prev:hover span {
        left: 50%;
    }
    .swiper-button-next:hover span {
        right: 50%;
    }
    .swiper-button-prev:hover span:after,
    .swiper-button-next:hover span:after {
        display: none;
    }
}


/* swiper pagination */

.swiper-pagination {
    height: 40px;
}

.swiper-pagination-bullet {
    background-color: white;
    border: solid 1px white;
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.swiper-pagination-bullet:hover {
    background-color: white;
}

.swiper-pagination-bullet-active {
    width: 20px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    left: 0;
    background-color: white;
    border: solid 1px white;
}


/* text content */

.slide-text {
    text-align: start;
    color: white;
    opacity: 1;
    z-index: 2;
    font-family: "IBM Plex Sans", sans-serif;
    width: 80%;
    /* max-width: 500px; */
}

.slide-text h1 {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 3.25rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.slide-text p {
    font-size: 1.25rem;
    font-family: "IBM Plex Mono", monospace;
    max-width: 700px;
}


/* text mobile */

@media screen and (max-width: 768px) {
    .slide-text {
        width: 60%;
    }
    .slide-text h1 {
        font-size: 20px;
        letter-spacing: 0.02em;
    }
    .slide-text p {
        font-size: 14px;
    }
}


/* button */

.slide-text .btn {
    font-family: "IBM Plex Mono", monospace;
    background-color: #05a872d3;
    border: solid 1px white;
    padding: 10px 30px;
    min-width: 100px;
    width: fit-content;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
    color: white;
    position: relative;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    margin-top: 30px;
}

.slide-text .btn:after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    z-index: 2;
    left: 0px;
    top: 0px;
    border-radius: inherit;
    transition: all 0.3s ease-in-out;
}

.slide-text .btn:hover {
    font-weight: 800;
    background-color: rgba(0, 67, 192, 0.219);
}

.swiper-container button:focus {
    outline: 0;
}

.social-links {
    height: 5.4vw;
    margin-inline: auto;
}

.site-footer {
    background-color: #26272b;
    padding: 45px 0 20px;
    font-size: 15px;
    line-height: 24px;
    color: #737373;
}

.site-footer hr {
    border-top-color: #bbb;
    opacity: 0.5
}

.site-footer hr.small {
    margin: 20px 0
}

.site-footer h6 {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 5px;
    letter-spacing: 2px
}

.site-footer a {
    color: #737373;
    text-decoration: none !important;
}

.site-footer a:hover {
    color: #3366cc;
    text-decoration: none;
}

.footer-links {
    padding-left: 0;
    list-style: none
}

.footer-links li {
    display: block
}

.footer-links a {
    color: #737373
}

.footer-links a:active,
.footer-links a:focus,
.footer-links a:hover {
    color: #3366cc;
    text-decoration: none;
}

.footer-links.inline li {
    display: inline-block
}

.site-footer .social-icons {
    text-align: right
}

.site-footer .social-icons a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-left: 6px;
    margin-right: 0;
    border-radius: 100%;
    background-color: #33353d
}

.copyright-text {
    margin: 0
}

@media (max-width:991px) {
    .site-footer [class^=col-] {
        margin-bottom: 30px
    }
}

@media (max-width:767px) {
    .site-footer {
        padding-bottom: 0
    }
    .site-footer .copyright-text,
    .site-footer .social-icons {
        text-align: center
    }
}

.social-icons {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.social-icons li {
    display: inline-block;
    margin-bottom: 4px
}

.social-icons li.title {
    margin-right: 15px;
    text-transform: uppercase;
    color: #96a2b2;
    font-weight: 700;
    font-size: 13px
}

.social-icons a {
    background-color: #eceeef;
    color: #818a91;
    font-size: 16px;
    display: inline-block;
    line-height: 44px;
    width: 44px;
    height: 44px;
    text-align: center;
    margin-right: 8px;
    border-radius: 100%;
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear
}

.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
    color: #fff;
    background-color: #29aafe
}

.social-icons.size-sm a {
    line-height: 34px;
    height: 34px;
    width: 34px;
    font-size: 14px
}

.social-icons a.facebook:hover {
    background-color: #3b5998
}

.social-icons a.twitter:hover {
    background-color: #00aced
}

.social-icons a.linkedin:hover {
    background-color: #007bb6
}

.social-icons a.dribbble:hover {
    background-color: #ea4c89
}

@media (max-width:767px) {
    .social-icons li.title {
        display: block;
        margin-right: 0;
        font-weight: 600
    }
}

.btn-outline-primary {
    color: var(--green-lime) !important;
    border-color: var(--green-lime)!important;
    font-size: 12px;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    color: #fff !important;
    box-shadow: 0 0 8px 0 var(--green-lime) !important;
    border-color: var(--green-lime)!important;
    background-color: var(--green-lime);
}

.btn-check:active+.btn-outline-primary,
.btn-check:checked+.btn-outline-primary,
.btn-outline-primary.active,
.btn-outline-primary.dropdown-toggle.show,
.btn-outline-primary:active {
    color: #fff !important;
    background-color: var(--green-lime);
    border-color: var(--green-lime);
}

.btn-primary {
    border-color: var(--green-lime)!important;
    color: #fff;
    background-color: var(--green-lime)!important;
    font-size: 12px;
}