html {
    font-size: 15px;
    scroll-behavior: smooth;
    height: 100%;
}

body {
    height: 100%;
    margin: 0;
    background: #fff;
    font-family: 'inter', sans-serif;
    color: #010039;
}

a {
    color: #BB3C64;
    text-decoration: none;
    transition: color 0.5s ease;
}

a:hover {
    text-decoration: none;
    color: #010039;
}

span {
    letter-spacing: 1px;
}

/*--HEADINGS----------------------------------------*/

h1 {
    font-size: 6em;
    font-family: "museo-sans-rounded", sans-serif;
    font-weight: 700;
    line-height: 1em;
}

.product-landing-4 h2 span {
    color: black;
}

.product-landing-4 h2 {
    width: 70%;
}

h1 span {
    color: #A83278;
    letter-spacing: normal;
}

h2 {
    font-size: 4em;
    font-family: "museo-sans-rounded", sans-serif;
    font-weight: 500;
    line-height: 1em;
    margin: 0;
}

h2 span {
    color: #A83278;
    letter-spacing: normal;
}

h3 {
    font-size: 3em;
    font-family: "museo-sans-rounded", sans-serif;
    font-weight: 500;
    line-height: 1em;
}

h3 strong {
    font-weight: 600;
}

h4 {
    font-size: 1.5em;
    font-family: "museo-sans-rounded", sans-serif;
    font-weight: 800;
    line-height: 1.1em;
}

h4 span {
    color: #A83278;
    letter-spacing: normal;
}


#snippet--flashes {
    width: auto;
    margin: 0 auto;
    position: fixed;
    top: 2em;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    text-align: center;
}

#snippet--flashes .alert {
    display: none;
}

/*--ALERTS---------------------------------*/

.alert {
    padding: 1em 3em 1em 3em;
    border-radius: 10px;
    background-color: #fff;
    position: relative;
}

.alert .close {
    position: absolute;
    right: 0.75em;
    top: 0.75em;
    color: #fff;
    opacity: 0.75;
    transition: opacity 0.4s ease;
    cursor: pointer;
}

.alert a {
    color: #fff;
}

.alert .close:hover {
    opacity: 1;
}


.alert-danger {
    color: #fff;
    border-color: #B71C1C;
    background-color: #B71C1C;
}

.alert-info {
    color: #44aaee;
    border-color: #01579B;
    background-color: #01579B;
}

.alert-warning {
    color: #fff;
    border-color: #E65100;
    background-color: #E65100;
}

.alert-success {
    color: #fff;
    border-color: #1B5E20;
    background-color: #1B5E20;
}

/*--BUTTONS-----------------------*/

.btn-primary {
    font-size: 1em;
    padding: 1em 3em;
    color: #fff;
    border-radius: 2em;
    background: linear-gradient(90deg, #EA5633 0%, #992A88 100%);
    transition: box-shadow 0.5s ease;
    cursor: pointer;
    text-decoration: none;
    align-self: center;
    font-weight: 400;
    box-shadow: 0 0px 0px transparent;
}

.btn-primary:hover {
    text-decoration: none;
    color: #fff;
    box-shadow: 0 0px 9px rgba(234, 86, 51, 0.75);
}

.btn-primary img {
    padding-left: .5em;
}

/*--HEADER--------------------------------------*/

header .navbar {
    background-color: rgba(21, 23, 50, 0.95);
    backdrop-filter: blur(10px);
}

header .nav-item a {
    color: #fff;
    transition: color 0.5s ease;
}

header .nav-item a:hover, .navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: #BB3C64;
}

.navbar-brand {
    padding-left: 1em;
}

.navbar-brand .logo-mobile {
    display: none;
}

header .btn-primary {
    padding: .5em 3em;
}

/*--SLIDER-1---------------------------------------*/

#slider1 .img-box {
    display: flex;
    flex-direction: column;
}

#slider1 .img-box img {
    margin-bottom: 1em;
    transition: transform 0.5s ease;
    height: 35vh;
    object-fit: cover;
    border-radius: 30px;
}

#slider1 .img-box img:hover {
    transform: scale(.98);
}

#slider1 .img-box a {
    color: #A83278;
    transition: color 0.5s ease;
    text-decoration: none;
}

#slider1 .img-box a:hover {
    color: #010039;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    display: none;
}

.slide-controls {
    margin-left: auto;
    margin-right: auto;
}

.owl-nav {
    margin-left: auto;
    margin-right: auto;
    padding-top: 2em;
    display: flex;
    justify-content: center;
}

.owl-nav img {
    height: 30px;
}

.owl-carousel .owl-item {
    padding-right: 10px;
    margin: 0 !important;
    width: 30vw !important;
}

.custom-control-prev, .custom-control-next {
    width: 1em;
    height: auto;
    cursor: pointer;
}

.slide-controls a {
    transition: transform 0.5s ease;
}

.slide-controls a:hover {
    transform: scale(1.1);
}

.slide-controls img {
    height: 2em;
}

/*--SLIDER-2---------------------------------------*/

.slider-2 .img-box, .slider2-mobile .img-box {
    position: relative;
    display: inline-block;
    width: 100%;
}

.slider-2 .img-box .overlay, .slider2-mobile .img-box .overlay {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    background-color: rgba(1, 0, 57, 0.5);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: end;
    color: white;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slider-2 .img-box .overlay .eye-icon, .slider2-mobile .img-box .overlay .eye-icon {
    width: 3em;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.slider-2 .img-box:hover .overlay, .slider2-mobile .img-box:hover .overlay {
    opacity: 1;
    z-index: 1;
}

.slider-2 .img-box img, .slider2-mobile .img-box img {
    display: block;
    width: auto;
    margin: 0;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
}

.slider-2 .img-box p, .slider2-mobile .img-box p {
    position: absolute;
    bottom: 0;
    left: 1em;
}

.slider2 .col-md-3 {
    padding: .5em;
}

.slider2-mobile {
    display: none;
}

.slider2 .controls-holder {
    display: none;
}

/*--HOME----------------------------------------*/

.home-1 {
    background: url('../img/home.jpg') no-repeat right top;
    height: 100vh;
    background-size: cover;
    align-content: center;
    margin-bottom: -15vh;
    padding-bottom: 15vh;
    text-align: center;
    color: #fff;
    position: relative;
}

.home-1::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(21, 23, 50, 0.7);
    top: 0;
    left: 0;
    z-index: 1;
}

.home-1 * {
    z-index: 2;
}

.home-1 h1 {
    font-size: 6em;
    text-transform: uppercase;
    padding: 15px 0;
}

.home-1 h3 {
    font-size: 4em;
    text-transform: uppercase;
}

.home-1 h4 {
    font-size: 1.8em;
    letter-spacing: 3px;
}

#slider1.container-fluid {
    padding: 0;
}

.home-2 {
    margin-top: 5vh;
    background: url('../img/home-2.png') no-repeat left top;
    background-size: 80%;
    background-position-y: 15vh;
    padding-bottom: 10vh;
}

.home-2 .container-fluid {
    position: relative;
}

.home-2 .container-fluid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 46%;
    height: 100%;
    background-color: #010039;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    z-index: 0;
    background-position-x: 49%;
}

.home-2 .container {
    display: flex;
    flex-direction: row;
}

.home-2 .container:nth-of-type(2) {
    margin-top: 10vh;
}

.home-2 .left-side {
    color: #fff;
    padding: 4em 0;
    z-index: 2;
}

.home-2 .left-side p {
    margin: 0;
    width: 70%;
}

.home-2 .right-side {
    align-content: center;
}

.home-2 .right-side p {
    margin-bottom: 2em;
}

.home-2 .right-side .col:first-child {
    border-bottom: 1px solid #CECECE;
    margin-bottom: 1em;
}

.home-2 .col-lg-7 {
    display: flex;
    flex-direction: column;
}

.home-2 .col-lg-7 h3 {
    font-weight: 700;
}

.home-2 .col-lg-7 span {
    margin: 2em 0;
}

.home-2 .col-lg-7 h4 {
    font-size: 1em;
    color: #010039;
}

.arrow-2 {
    margin-left: .5em;
    margin-bottom: 1px;
}

.home-2 .col-lg-5.pt-5 {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.icon-row {
    display: flex;
}

.icon-box {
    display: flex;
    align-items: center;
    width: 50%;
}

.icon-box img {
    height: 5em;
    margin-right: 1em;
    border-radius: 20px;
}

.icon-box p {
    margin: 0;
}

.home-3 .container {
    display: flex;
    color: #fff;
}

.home-3 {
    position: relative;
}

.home-3::before {
    position: absolute;
    content: "";
    background: #010039;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    height: 100%;
    right: 0;
    width: 50%;
    z-index: -1;
}

.home-3 span {
    margin: 1em 0 1.5em 0;
    font-size: .85em;
}

.home-3 .col-lg-5 {
    display: flex;
    flex-direction: column;
}

.home-3 .btn-primary {
    align-self: start;
}

.home-3 .col-lg-7 img {
    position: absolute;
    left: 0;
    height: 85%;
    width: 51%;
    object-fit: cover;
    z-index: -2;
}

.home-4 span {
    font-size: 1.5em;
}

.home-4 h2 {
    font-weight: 900;
}

.partners-1 {
    padding-top: 7em !important;
}

.partners .col-lg-3 {
    align-content: center;
    padding: 3em 0;
}

.partners .col-lg-3 img {
    mix-blend-mode: darken;
}

/*--ABOUT----------------------------------------*/

.about-1 {
    background: url('../img/about.png') no-repeat right center;
    height: 60vh;
    background-size: contain;
    align-content: center;
}

.about-1 .col {
    display: flex;
    flex-direction: column;
}

.about-1 span {
    width: 33%;
    margin-top: 1em;
}

.about-2 {
    display: flex;
}

.about-3 .left-side img {
    width: 100%;
    border-radius: 30px;
}

.about-3 .right-side {
    align-content: center;
}

.about-3 .right-side img {
    width: 33%;
    margin-bottom: 3em;
}

.about-3 p {
    width: 90%;
}

.about-4 {
    margin-bottom: 10em;
}

.about-4 .col-lg-4 {
    display: flex;
    justify-content: center;
}

.about-4 a {
    padding: 1em 5em;
}

/*--PRODUCTS----------------------------------------*/

.products-1 {
    background: url('../img/products.png') no-repeat right top;
    height: 60vh;
    background-size: contain;
    align-content: center;
}

.products-1 h2 span {
    color: #A83278 !important;
}

.slider-1-heading span {
    color: black !important;
}

.products-1 .col {
    display: flex;
    flex-direction: column;
}

.products-1 span {
    color: black !important;
}

.row-text {
    display: flex;
    margin-top: -.8em;
}

.products-1 h3 {
    font-weight: 900;
    margin: .5em 0 1em 0;
}

.products-2 {
    margin: 15vh 0 5vh 0;
}

.products-2 h3 {
    font-weight: 800;
    font-size: 3.5em;
}

.products-2 .left-side p {
    width: 75%;
    margin: 1.5em 0;
}

.products-2 .mobile-img {
    display: none;
}

.list-row {
    display: flex;
    align-items: center;
}

.list-row img {
    height: .7em;
}

.list-row a img {
    height: 2em;
    margin-right: .5em;
}

.list-row span {
    margin: 0 0 0 1em;
    font-size: .85em;
}

.products-2 .right-side a {
    align-self: start;
    margin-top: 2em;
}

/*--PRODUCT-LANDING-PAGE----------------------------*/

.product-landing {
    height: 75vh;
    position: relative;
}

.product-landing .left-side {
    position: relative;
    max-width: 400px;
    margin-top: 77px;
}

.product-landing .left-side h1 {
    position: relative;
    max-width: 400px;
    text-wrap: wrap;
    padding: 0.75em 0 0.35em 0;
    font-size: 4.5em;
}

.product-description {
    color: white !important;
    padding-bottom: 3em;
    max-width: 400px;
    padding-right: 3em;
}

.product-landing .left-side:after {
    position: absolute;
    content: "";
    background: rgba(1, 0, 57, 0.67);
    height: 100%;
    width: 100%;
    left: 0;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    padding: 2em 0 3.5em 2em;
    z-index: -1;
    top: 0;
}

.product-landing-4 .circle {
    width: 2.5em;
    height: 2.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2em;
    color: white;
    border-radius: 50%;
    background: linear-gradient(45deg, #EA5633 0%, #992A88 100%);
    text-align: center;
    line-height: normal;
}

.specification-image-description {
    display: flex;
    padding: 1em;
}

.specification-image-description p {
    font-family: inter, sans-serif;
    font-size: 1em;
    padding: 0.0em 1.5em;
}

.product-landing span {
    color: #01909E;
}

.product-landing .left-side::before {
    position: absolute;
    content: "";
    background: rgba(1, 0, 57, 0.67);
    height: 100%;
    width: 100vw;
    left: -100vw;
    padding: 2em 2em 3.5em 2em;
    z-index: -1;
    top: 0;
}

.number-holder {
    width: 2.5em;
    height: 2.5em;
}

.product-landing * {
    z-index: 2;
    color: #fff;
}

.product-landing .container {
    height: 75vh;
    align-content: center;
}

.product-landing .land-bg {
    position: absolute;
    z-index: -1;
    height: 75vh;
    object-fit: cover;
    right: 0;
    width: 100%;
}

.product-landing-2 {
    background: url('../img/landing-2.png') no-repeat right bottom;
    background-size: 90%;
    background-position-x: 390%;
    background-position-y: 100%;
}

.product-landing-2 .icon-holder {
    background: #010039;
    padding: .2em;
    border-radius: 20px;
    margin-right: 1em
}

.product-landing-2 i {
    color: #fff;
    font-size: 3.5em;
}

.product-landing-6 i {
    color: #fff;
    font-size: 3.5em;
}

.product-landing-6 p {
    width: 60%;
    margin-left: auto !important;
    margin-right: auto !important;
}

.product-landing-3 .container-fluid {
    position: relative;
}

.product-landing-3 .container-fluid::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: #010039;
    z-index: -1;
    background-position-x: 50%;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.product-landing-3 .land-bg-2 {
    position: absolute;
    z-index: -2;
    right: 0;
    width: 55%;
    height: 80%;
    top: 10%;
    object-fit: cover;
}

.product-landing-3 .left-side {
    padding: 6em 0;
    display: flex;
    flex-direction: column;
    color: #fff;
}

.product-landing-3 .left-side a {
    align-self: start;
    margin-top: 2em;
}

.product-landing-4 .enlarge {
    display: none;
}

.product-landing-4 .col-lg-12:first-of-type {
    align-items: center;
}

.product-landing-4 .right-side img {
    width: 100%;
}

.product-landing-5 .col-lg-6 {
    display: flex;
    flex-direction: column;
}

.product-landing-5 h4, .product-landing-5 h4 {
    margin: 0;
}

.product-landing-5 .dark-box, .product-landing-5 .light-box {
    background-color: #010039;
    border-radius: 15px;
    color: #fff;
    text-align: center;
    padding: 1em;
}

.product-landing-5 .border-box {
    display: flex;
    flex-direction: column;
    margin: 5px 0 0 0;
    border: 1px solid #D0D0D0;
    border-radius: 5px;
}

.product-landing-5 .left-side .border-box span {
    padding: .7em 0 .7em 2em;
}

.product-landing-5 .right-side .border-box span {
    padding: .7em 0 .7em 2em;
    color: #B63A6A;
}

.product-landing-6 .col-lg-6 .col {
    background-color: #010039;
    color: #fff;
    padding: 2em 0;
    border-radius: 20px;
    height: 100%;
}

.product-landing-6 h4 {
    margin: 1em 0 2em 0;
}

.product-landing-6 img {
    height: 5em;
}

.product-landing-7 iframe {
    width: calc(100% - 1.5em);
    height: 50vh;
    margin: 1.5em 0;
    border-radius: 5px;
    padding: 0;
    margin-left: .75em;
}

/*--PARTNERS--------------------------------------*/

.partners-2 h3 {
    font-weight: 600;
    margin-bottom: .5em;
}

.partners-2 span {
    color: #A83278;
}

.partners-3 .container {
    height: 50vh;
}

.partners-3 .container:first-child::before {
    background: url('../img/canada.png') no-repeat left top;
    content: '';
    position: absolute;
    left: 0;
    width: 50%;
    height: 50vh;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    z-index: -1;
    background-size: cover;
}

.partners-3 .container:nth-child(2)::before {
    background: url('../img/eu.png') no-repeat right top;
    content: '';
    position: absolute;
    right: 0;
    width: 50%;
    height: 50vh;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    z-index: -1;
    background-size: cover;
}

.partners-3 .right-side h4 {
    margin-top: 1.5em;
}

.partners-3 .right-side span {
    font-size: .85em;
}

.partners-5 .container-fluid {
    position: relative;
}

.partners-5 .container-fluid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 49%;
    height: 100%;
    background-color: #010039;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    z-index: -1;
    background-position-x: 49%;
}

.partners-5 .container {
    display: flex;
    flex-direction: row;
}

.partners-5 .left-side {
    color: #fff;
    padding: 4em 0;
}

.partners-5 .left-side h2 {
    margin-bottom: .5em;
}

.partners-5 .right-side {
    align-content: center;
}

.partners-5 .right-side h4 {
    margin-bottom: 1em;
}

.bg-par {
    position: absolute;
    z-index: -1;
    height: 95vh;
    right: 0;
    margin-top: -15vh;
    width: 100%;
}

/*--CONTACT-FORM----------------------------------*/

.contact-1 {
    padding-top: 10em !important;
}

.contact-form .col-lg-6 {
    display: flex;
    flex-direction: column;
}

.contact-form .col-lg-12 {
    text-wrap: nowrap;
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: #04102A;
}

.contact-form input[type=text] {
    border: none;
    border-bottom: 1px solid #DBDBDB;
    padding: 1.5em 0 .5em 0;
    color: #04102A;
    outline: none;
    letter-spacing: 2px;
    width: 48%;
    margin-right: 1em;
}

.products-2 span {
    color: black;
}

.products-2 h4 {
    font-weight: bold !important;
}

.products-2 .link {
    color: white !important;
    font-weight: normal;
    text-transform: lowercase;
}

.products-2 .link h4 {
    font-weight: lighter;
}

.products-2 .link span {
    color: white !important;
    font-weight: normal;
    text-transform: lowercase;
}

.products-2 p strong {
    font-weight: normal;
    color: black;
}

.products-2 .right-side img {
    border-radius: 30px;
}

.contact-form input[type=email] {
    border: none;
    border-bottom: 1px solid #DBDBDB;
    padding: 1.5em 0 .5em 0;
    color: #04102A;
    outline: none;
    letter-spacing: 2px;
    width: 48%;
    margin-right: 1em;
}

.contact-form .left-side input[type=text] {
    margin-right: 1em;
}

.contact-form .right-side input[type=text] {
    margin-left: 1em;
}

.contact-form .left-side input[type=email] {
    margin-right: 1em;
}

.contact-form .right-side input[type=email] {
    margin-left: 1em;
}

.contact-form textarea {
    margin: 11px;
}

.contact-form textarea {
    border: none;
    height: 200px;
    border-bottom: 1px solid #DBDBDB;
    padding: 1.5em 0 .5em 0;
    color: #04102A;
    outline: none;
    letter-spacing: 2px;
}

.contact-form .col-lg-4 input[type=submit] {
    width: 100%;
    border: none;
}

/*--CONTACT-----------------------------------*/

.contact-1 .col-lg-12 {
    display: flex;
    flex-direction: row;
}

.contact-2 .col-lg-12 .row:nth-child(2) {
    display: none;
}

.contact-2 .icon-box {
    display: flex;
    flex-direction: column;
}

.contact-2 .icon-box img {
    height: 2em;
}

.contact-2 .icon-box a {
    color: #010039;
    padding: 1em 0 1.5em 0;
}

.contact-3 .social-icons img {
    height: 85%;
    padding: 0 2em;
    margin-left: 1em;
    transition: transform 0.5s ease;
}

.contact-3 .social-icons img:hover {
    transform: scale(1.1);
}

/*--MODAL-GALLERY-REFERENCES------------------------*/

.modal-body {
    padding: 0 !important;
}

.modal-body .img-fluid {
    width: 100%;
}

.card-img-top {
    cursor: pointer;
    transition: transform 0.5s ease;
    border-radius: 30px;
}

.card-img-top:hover {
    transform: scale(1.01);
}

.card {
    border: none;
}

.modal {
    align-content: center;
}

.references-2 {
    padding-top: 5em !important;
}

.references-2 a span {
    color: #A83278;
}

#link-to-detail {
    color: black !important;
}

.owl-stage {
    padding-left: 2em !important;
    width: max-content !important;
}

/*--REFERENCES - GALLERY----------------------------------------*/

.gallery .main-photo {
    width: 100%;
    height: auto;
    margin-bottom: 1em;
}

.gallery-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1em;
}

.gallery-list a:first-child {
    margin-left: 0;
}

.gallery-list a img {
    width: 100%;
    height: auto;
}

/*--FOOTER----------------------------------------*/

.footer {
    margin: 1em 0;
    background: #010039;
    color: #fff;
    padding-top: 1em;
    position: relative;
}

.footer::after {
    position: absolute;
    content: "";
    background: url('../img/ft-logo.png') no-repeat right bottom;
    background-size: contain;
    height: 70%;
    width: 15%;
    right: 0;
    bottom: 0;
}

.footer .col-lg-3 {
    padding: 3em;
}

.footer h3 {
    font-weight: 600;
    margin-bottom: 1em;
}

.footer span {
    font-weight: 300;
}

.footer img {
    padding-right: 1.5em;
    transition: transform 0.5s ease;
}

.footer img:hover {
    transform: scale(1.1);
}

.footer .d-flex {
    gap: 10em;
    margin-top: 5em;
    padding-left: 2em;
}

.footer a {
    color: #fff;
    transition: color .5s ease;
}

.footer a:hover {
    color: #BB3C64;
}

.footer .d-flex a {
    font-size: .85em;
}

/*--MOBILE-------------------------------------------------------------*/

@media (max-width: 768px) {

    header {
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 999;
    }

    .navbar-collapse {
        margin-top: 7.5px;
        font-size: 1.3em;
        border-top: 1px solid rgba(1, 0, 57, 0.13);
    }

    .navbar-collapse .btn-primary {
        border-radius: 30px;
    }

    .navbar-toggler, .navbar-toggler .collapsed, .navbar-toggler:focus {
        border: transparent;
        padding: 0 .2em;
        font-size: 2em;
        outline: none;
        box-shadow: none;
    }

    .navbar-brand .logo {
        display: none;
    }

    .navbar-brand .logo-mobile {
        display: flex;
    }

    h1 {
        font-size: 5.5em;
    }

    h2 {
        font-size: 3.5em;
    }

    h3 {
        font-size: 2.8em;
    }

    .slider-1 {
        margin-bottom: 5vh;
    }

    .slider2 {
        display: none;
    }

    .slider2-mobile {
        display: block;
    }

    .controls-holder {
        display: block;
    }

    .controls-holder {
        text-align: center;
    }

    .btn-primary {
        padding: .5em 2.5em;
    }

    .carousel-item .row {
        padding: 11.25px !important;
    }

    .icon-box {
        flex-direction: column;
        width: 100%;
    }

    .icon-box img {
        margin: 0 0 .5em 0;
        border-radius: 0;
    }

    .icon-box p {
        text-align: center;
        margin-bottom: 2em;
    }

    /*--HOME-MOBILE-----------------------------*/
    .home-1 {
        background-size: auto;
        height: 70vh;
        padding-top: 10vh;
        background-position: 55% 20%;
    }

    .home-1::before {
        height: 70vh;
    }

    .home-1 .container {
        padding-left: 22.5px;
    }

    .home-1 h1 {
        font-size: 3.5em;
        margin: -.1em 0 .2em 0;
        font-weight: 800;
    }

    .home-1 h3 {
        font-size: 2em;
    }

    .home-1 h4 {
        font-size: 1em;
    }

    .home-2 {
        background: url('../img/home-2.png') no-repeat left bottom;
        background-size: 150vh;
        background-position-y: 100%;
        padding-bottom: 0;
    }

    .home-2 .left-side p {
        margin: 0;
        width: 100%;
    }

    .home-2 .container {
        flex-direction: column;
        padding: 22.5px;
    }

    .home-2 .container-fluid::before {
        height: 40%;
        width: 100%;
        border-radius: 0;
        top: 4%;
    }

    .home-2 .right-side {
        margin-top: 5vh;
    }

    .home-2 .col-lg-7 span, .home-2 .col-lg-7 a {
        display: none;
    }

    .home-2 .left-side {
        margin-left: -22.5px;
    }

    .home-2 .right-side {
        margin-left: -11.25px;
    }

    .home-2 .col-lg-5.pt-5 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .home-3 {
        margin-top: 10em !important;
    }

    .home-3::before {
        width: 100%;
        border-radius: 0;
    }

    .home-3 .col-lg-7 img {
        width: 100%;
        margin-top: -18vh;
        height: auto;
    }

    .home-3 .col-lg-5 {
        padding-bottom: 3em !important;
    }

    .home-4 .container {
        padding: 0 1.5em;
    }

    .home-4 br {
        display: block;
    }

    .home-4 .col-lg-12.pt-5 {
        margin: 0 !important;
    }

    /*--PRODUCTS-MOBILE-----------------------------*/
    .products-1 {
        height: auto;
        background-position-y: 20vh;
    }

    .products-1 .row-text {
        margin-top: 4em;
    }

    .products-1 .container, .products-2 .container {
        padding: 0 1.5em;
    }

    .products-1 h3 {
        margin: 0 0 4em 0;
    }

    .products-2 {
        margin: 0 0 5vh 0;
    }

    .products-2 .container .col-lg-12:first-child {
        padding-top: 0em !important;
    }

    .products-2 .mobile-img {
        display: flex;
        width: 100%;
        margin-top: 2em;
        border-radius: 20px;
    }

    .products-2 .left-side p {
        width: 100%;
    }

    .products-2 .right-side img {
        display: none;
    }

    .products-2 .right-side a {
        justify-content: center;
        margin-top: 0;
        padding: .5em 1em;
        width: 100%;
        display: flex;
        align-items: center;
    }

    .products-2 .right-side a img {
        display: flex;
        height: .8em;
    }

    /*--PRODUCTS-DETAIL-LANDING-MOBILE-------------------*/
    .product-landing {
        height: 65vh;
        align-content: center;
    }

    .product-landing .container {
        height: 65vh;
    }

    .product-landing .land-bg {
        height: 65vh;
        right: 0;
    }

    .product-landing h1 {
        font-size: 2.8em;
    }

    .product-landing .left-side {
        width: 80%;
        padding: 1em 1.5em;
    }

    .product-landing-2 {
        background-size: 200%;
        background-position-x: 0%;
        background-position-y: 80%;
    }

    .product-landing-2 .container {
        padding: 0 1.5em;
    }

    .product-landing-2 .col-lg-12 {
        padding-top: 1em !important;
        margin-bottom: 0 !important;
        margin-top: 0 !important;
    }

    .product-landing-2 .col-lg-6 {
        margin-top: 2em;
    }

    .product-landing-2 .icon-box {
        flex-direction: row;
    }

    .product-landing-2 img {
        margin: 0 1em 0 0;
    }

    .product-landing-3 {
        padding-bottom: 0 !important;
    }

    .product-landing-3 .land-bg-2 {
        position: relative;
        z-index: 0;
        width: 100vw;
        border-radius: 0;
        height: 30vh;
        margin-left: -11px;
        object-fit: cover;
    }

    .product-landing-3 .container-fluid::after {
        width: 100%;
        border-radius: 0;
        top: 25%;
        height: 75%;
    }

    .product-landing-3 .left-side {
        padding: 3em 0;
    }

    .product-landing-4 {
        padding-top: 0 !important;
    }

    .product-landing-4 .container, .product-landing-5 .container {
        padding: 0 1.5em;
    }

    .product-landing-4 .right-side img {
        width: 100%;
        padding-top: 3em;
    }

    .product-landing-4 .enlarge {
        display: block;
    }

    .product-landing-4 a {
        text-align: end;
    }

    .product-landing-4 a img {
        margin-left: 1em;
    }

    .product-landing-5 .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .product-landing-5 .col-lg-6:last-child {
        padding: 0 .7em 0 .25em;
    }

    .product-landing-5 .col-lg-6:first-child {
        padding: 0 .25em 0 .7em;
    }

    .product-landing-5 .left-side .border-box span, .product-landing-5 .right-side .border-box span {
        padding: .7em 0 .7em 1em;
    }

    .product-landing-5 h4 {
        font-size: 1.2em;
    }

    .product-landing-6 .col-lg-6 {
        padding: 0 1.3em 1.3em 1.3em !important;
    }

    .product-landing-7 .container {
        padding: 0 1.5em 0 1.5em !important;
    }

    .product-landing-7 .col-lg-4 {
        width: 33.3%;
        padding: 0 .25em;
    }

    .product-landing-7 .card {
        margin-bottom: .5em !important;
    }

    .product-landing-7 .card img {
        border-radius: 5px;
        aspect-ratio: 1 / 1.7;
        object-fit: cover;
        height: auto;
    }

    .product-landing-7 iframe {
        width: calc(100% - .5em);
        height: auto;
        margin-left: .25em;
        margin-bottom: .5em;
    }

    /*--ABOUT-MOBILE-----------------------------*/
    .about-1 {
        background: url('../img/about.png') no-repeat right bottom;
        height: auto;
        background-size: 70vh;
        background-position-x: -60%;
        background-position-y: 60%;
        padding: 7em 1em 0 1em !important;
    }

    .about-1 .col {
        padding-top: 15vh;
    }

    .about-1 span {
        width: 100%;
        margin-top: 1em;
    }

    .about-2 {
        padding-left: 1em;
    }

    .about-2 .icon-row {
        flex-direction: column;
    }

    .about-2 .icon-box {
        flex-direction: row;
    }

    .about-2 .icon-box img {
        margin: .5em 1em .5em 0;
    }

    .about-2 .icon-box p {
        margin: 0;
        text-align: start;
    }

    .about-3 {
        margin-top: 0 !important;
        padding: 0 1em;
        margin-bottom: 0 !important;
    }

    .about-3 .col-lg-12:nth-child(even) {
        display: flex;
        flex-direction: column-reverse;
    }

    .about-3 .col-lg-12:nth-of-type(2) p {
        padding-bottom: 3em !important;
    }

    .about-3 .right-side img {
        width: 100%;
        margin: 0;
        padding: 2em 25% !important;
    }

    .about-3 .right-side p {
        width: 100%;
        padding: 0 !important;
        margin: 0;
    }

    .about-4 {
        margin-bottom: 3em;
    }

    .about-4 a {
        padding: .5em 3em;
        width: 90%;
        text-align: center;
    }

    /*--PARTNERS-MOBILE--------------------------*/
    .partners .container {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .partners .col-lg-3 {
        width: 50%;
        padding: 3em .5em;
        border: none;
    }

    .partners .col-lg-3 img {
        width: 100%;
    }

    .bg-par {
        width: 100%;
        height: auto;
        padding-top: 50vh;
    }

    .partners-1 {
        padding-top: 7em !important;
    }

    .partners-1 .container, .partners-2 .container {
        padding: 0 1.5em;
    }

    .partners-1 .col-lg-4 {
        padding-left: 1em !important;
        padding-top: 1em;
    }

    .partners-3 .left-side img {
        width: calc(100% + 22.5px);
        margin: 0 -11.25px 2em -11.25px;
    }

    .partners-3 .right-side {
        padding: 0 1.5em !important;
    }

    .partners-3 .container:last-child .col-lg-12 {
        flex-direction: column-reverse;
    }

    .partners-3 .container {
        height: auto;
    }

    .partners-3 .col-lg-12 {
        padding-top: 33vh;
    }

    .partners-3 .container:first-child::before {
        width: 100%;
        border-radius: 0;
        background: url('../img/canada.png') no-repeat center top;
        background-size: cover;
        height: 25%;
    }

    .partners-3 .container:nth-child(2)::before {
        width: 100%;
        border-radius: 0;
        background: url('../img/eu.png') no-repeat center top;
        background-size: cover;
        height: 25%;
    }

    .partners-4 .text-center {
        text-align: start !important;
        padding: 2em 1em 0 1em !important;
    }

    .partners-5 .container {
        flex-direction: column-reverse;
    }

    .partners-5 .container-fluid::before {
        top: 37%;
        width: 100%;
        height: 60%;
        border-radius: 0;
    }

    .partners-5 .right-side {
        padding: 0 1em !important;
    }

    .partners-6 .text-center {
        padding: 0 !important;
    }

    /*--CONTACT------------------------------*/
    .contact-1 .container {
        padding: 0 1.5em;
    }

    .contact-2 .col-lg-5 {
        padding-left: 2em;
    }

    .contact-2 .icon-box {
        width: 50%;
        padding: 1em 0 1em .5em;
    }

    .contact-2 .icon-box:first-child {
        border-right: 1px solid #DBDBDB;
        padding: 1em .5em 1em 0;
    }

    .contact-3 .social-icons img {
        margin: 0;
    }

    .contact-2 .col-lg-12 .row:nth-child(2) {
        display: flex;
    }

    /*--REFERENCES---------------------------*/
    .references-1 {
        padding-top: 1em !important;
    }

    .references-1 .container {
        padding: 0 .5em;
    }

    .references-1 .col-lg-12 {
        margin: 0 0 1em 0 !important;
    }

    /*--CONTACT-FORM--------------------------*/
    .contact-form .container {
        padding: 0 1.5em;
    }

    .contact-form input {
        width: 100%;
        margin-right: 0;
    }

    .contact-form .col-lg-4 {
        text-align: end;
    }

    .contact-form .col-lg-4 button {
        width: 55%;
    }

    .contact-form textarea {
        width: calc(100% - 1em);
    }

    /*--FOOTER----------------------------*/
    .footer {
        margin: 0;
        padding-bottom: 2em;
    }

    .footer .col-lg-3 {
        padding: 3em 2em 0 2em;
    }

    .footer .col-lg-3:first-child {
        padding: 0 2em 0 2em;
    }

    .footer h3 {
        margin-bottom: .5em;
    }

    .footer img {
        height: 1.5em;
    }

    .footer .d-flex {
        flex-direction: column;
        gap: 1em;
        font-size: .8em;
    }

    .footer::after {
        width: 40%;
    }

    /*--SLIDER----------------------------*/
    .owl-carousel .owl-item {
        width: 250px !important;
    }
}

/*

@media screen and (max-width: 1920px) {
    html {
        font-size: 14px;
    }

    h1 {
        font-size: 4em;
    }

    h2 {
        font-size: 2.4em;
    }

    h3 {
        font-size: 1.8em;
    }

    h4 {
        font-size: 1.3em;
    }
}


/* Zajistit, že na Macu zůstane výchozí styl */

/*
@media screen and (min-resolution: 192dpi), 
       screen and (-webkit-min-device-pixel-ratio: 2) {
    
    html {
        font-size: 15px;
    }
}