@font-face {
    font-family: 'Avenir Next';
    src: local('Avenir Next Demi'), local('Avenir-Next-Demi'),
         local('Avenir Next Medium'), local('Avenir-Next-Medium'),
        url('../fonts/AvenirNextCyr-Demi.woff2') format('woff2'),
        url('../fonts/AvenirNextCyr-Demi.woff') format('woff'),
        url('../fonts/AvenirNextCyr-Medium.woff2') format('woff2'),
        url('../fonts/AvenirNextCyr-Medium.woff') format('woff'),
        url('../fonts/AvenirNextCyr-Medium.ttf') format('truetype'),
        url('../fonts/AvenirNextCyr-Demi.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

::-webkit-scrollbar {
    display: none;
    width: 12px;
}

:root {
    --main-color1: #2AA9E3;
    --main-color2: #191261;
    --animate-time: 0.5s;
}

*,*:focus,*:hover{
    outline:none;
}

button:focus:not(:focus-visible) {
 outline: none;
}

body {
    width: 100vw;
    font-family: 'Avenir Next';
    background:#EEEEEE;
    image-rendering: -webkit-optimize-contrast;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    width: 100vw;
}

h1, h2, h3, h4 {
    text-transform: uppercase;
    font-weight: 600;
    color:var(--main-color2);
}

h1 {
    font-size: 5.22vh;   
}

section {
    overflow:hidden;
}


section:not(:first-child) {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

section:not(:first-child) h1 {
    margin-top: 7rem;
}

p {
    color:var(--main-color2);
    font-size: 1.25rem;
}

.smaller-text {
    font-size:0.9rem;
}

.featured-text {
    font-size: 1.30rem;
    font-weight: 500;
    color: var(--main-color1);
}

img#img-ship1 {
    height: 100vh;
    object-fit: cover;
}

.scroll-enable {
    overflow: scroll;
}
/* section:not(:first-child):not(:nth-child(2)) .row {
    margin-top: 9.6rem;
    margin-bottom: 9.6rem;
} */

#head-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    transition: all 0.55s linear;
    -o-transition: all 0.55s linear;
    -moz-transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    overflow: hidden;
}

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

.animated {
    transition: all var(--animate-time) ease-out;
}

#navbarCollapse {
    flex-direction: row-reverse;
}

a.navbar-brand img {
    width: 250px;
}

svg#Layer_1 {
    position: relative;
    width: 100%;
    height: 100%;
}

.navbar-toggler {
    overflow: auto;
    width: 82px;
    height: 79px;
}
.navbar-toggler-icon {
    background:url('../assets/menu-icon.png');
    width: 3em;
    height: 3em;
    position: absolute;
    top: 20px;
    right: 20px;
    background-size: 100%;
}

.dropdown-menu {
    background:none;
}

.navbar-nav a {
    border: 2px solid var(--main-color2);
    margin-left: 1em;
    color: var(--main-color2);
}

.navbar-nav a:hover, .navbar-nav li a:hover {
    background: var(--main-color2);
    color:white;
}

.navbar-nav a.topColors, button.topColors {
    color: white;
    border-color: white!Important;
}

.navbar-nav a.topColors:hover {
    background:white;
    color: var(--main-color2)!important;
}

#hero-image1, #hero-image2, #hero-image3, #hero-image4 {
    position: absolute;
    width: 100%;
    height: 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    margin: 0;
    background: url('../assets/hero-image.jpg') center top;
    opacity: 0;
    transform:scale(1.2);
}

#hero-image2 {
    background: url('../assets/hero-image2.jpg') center top;
    opacity: 0;
    transform:scale(1.2);
}

#hero-image3 {
    background: url('../assets/hero-image3.jpg') center top;
    opacity: 0;
    transform:scale(1.2);
}

#hero-image4 {
    background: url('../assets/hero-image4.jpg') center top;
}

.navbar-extender {
    position: absolute;
    width: 270px;
    height: 106px;
    background: white;
    z-index: -1;
    left: 0;
}

.navbar-extender:after {
    content:'';
    display:block;
    width: 140px;
    height: 100%;
    position:absolute;
    background: #ffffff;
    right: -30px;
    transform: skewX(-25deg);
}


.lang-selector {
    display:flex;
    width: 73px;
    height: 28px;
    justify-content: space-between;
    margin-left: 14px;
}
button.lang.nav-item {
    background: none;
    border: 2px solid var(--main-color2);
    font-size: 12px;
    cursor: pointer;
}

.temp-disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* END OF NAVBAR */

#header-main {
    position: absolute;
    top: 22%;
    text-align: center;
    background-attachment: relative;
    background-position: center center;
    min-height: 496px;
    width: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
}

.overflow {
    overflow: hidden;
}

span.brand-color {
    color: var(--main-color1);
}

.content-img {
    width: 100%;
    max-width: max-content;
    height: max-content;
    filter: grayscale(100);
    transition:all 0.4s ease-out;
    overflow:hidden;
}

.content-img:hover, .product-img:hover {
    filter: grayscale(0);
}

.product-img {
    filter: grayscale(100);
}

.content-img:hover .img-internal {
    transform:scale(1.13);
}

.bordered-block {
    border: 2px solid var(--main-color1);
    padding: 2vw;
    height: -webkit-fill-available;
    flex-direction: column;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.bordered-block>*:nth-child(2) {
    align-self: stretch;
}

.container-fluid2 {
    padding-right: 10vw;
    padding-left: 10vw;
    margin-right: auto;
    margin-left: auto;
}

.content-text {
    display:flex;
    flex-direction:column;
    align-items: flex-start;
    margin-top: 1.3rem;
    width: 100%;
    height: 55%;
}

.feature-text {
    font-size: 1.34rem;
}

.cta-link {
    padding: 0.52em 1.2em;
    text-transform: uppercase;
    color: var(--main-color2);
    font-weight: 300;
    font-size: 1.5em;
    border: 2px solid var(--main-color2);
    display: block;
    margin-top: 1.3em;
    width: max-content;
    text-decoration:none;
}

.chevron {
    display: block;
    margin: 0;
    padding: 0;
    width: 20px;
    position: relative;
    right: 0;
    width: inherit;
    float: right;
    transform: rotate(-90deg) scaleY(0.52) translateY(20px);
}

.cta-link:hover {
    background:var(--main-color2);
    color:white;
    text-decoration:none;
}

.cta-link:hover .chevron {
    transform: rotate(-90deg) scaleY(0.52) translateY(33px);
}

.news-block {
    overflow:hidden;
}
.news-block:after {
    content: '';
    display: block;
    position: absolute;
    width: 20px;
    height: 25px;
    background: url('../assets/hex.png') no-repeat;
    background-size: 100%;
    margin-left: -44px;
    margin-top: -87px;
    overflow: hidden;
}

.news-block::before {
    content: '';
    display: block;
    position: absolute;
    width: 2px;
    height: 100%;
    background: var(--main-color2);
    margin-left: -34px;
    margin-top: -20px;
}

.news-block:nth-child(4):before {
    background:#EEEEEE;
    margin-top:20px;
}

.row-white {
    background: white;
    overflow: hidden;
    border: 1px solid #EEEEEE;
    transition: border 0.45s;
}

.row-white h3 {
    font-family: 'Avenir Next Medium';
    font-weight: 900;
}

.row-white p {
    font-size: 1em;
}

.row-white img {
    transition: all 0.35s ease-out;
    transform: scale(0.92);
}

.row-white:hover {
    border-color: var(--main-color2);
}

.row-white:hover img {
    transform: scale(1.1);
}

b {
    font-family: 'Avenir';
    font-weight: 900;
}

.stripe {
    height: 10vh;
    width: 1px;
    margin: 10px 0;
    background: black;
}

.product-info {
    display: inline-block;
    padding: 6px 22px;
    background: #EEEEEE;
    color:var(--main-color2);
    font-size: 14px;
    position: relative;
    margin: 12px 0;
}

/* OWL CAROUSEL //////////////////////////////////////////////////////////////////////////////////*/

.owl-nav {
    width: 100%;
    position: absolute;
    top: 50%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.post-slide {
    margin: -3px -25px;
    transition: all 0.4s ease-in-out 0s;
    background:white;
    position: relative;
    height: auto;
    width: auto;
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
    -webkit-transition: all 0.93s ease-in-out;
    -moz-transition: all 0.93s ease-in-out;
    border: 2px solid var(--main-color2);
    overflow:hidden;
}

.owl-item.active .post-slide {
    /* opacity:0.4; */
    pointer-events: none;
}

.owl-item:nth-child(2) .post-slide {
    opacity:1;
}

.post-slide .post-img{
    position: relative;
    overflow: hidden;
    transform: scale(1);
    transition: all 0.62s ease-out 0s;
}
.post-slide .post-img:before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0);
    transition: all 0.4s linear 0s;
}
.post-slide:hover .post-img {
    transform:scale(1.1);
}
.post-slide .post-img {
    width: 100%;
}


.owl-nav {
    position: absolute;
    width: 110%;
    height: 300px;
    top: calc(50% - 150px);
    display: flex;
    left: 50%;
    transform: translateX(-50%);
    justify-content: space-between;
    font-size:5vw;
    outline: none;
    font-weight: 100;
    font-family: roboto;
}

.owl-nav button {
    transform:scaleX(0.7);
    opacity:0.5;
    transition:all 0.4s ease-out;
}

.owl-nav button:hover {
    transform:scaleX(0.6);
    opacity:1;
}

#pub-icon {
    width: 40px;
    margin-top: -9px;
    margin-right: 10px;
}

#pub-cta {
    margin: 0 auto;
}

#pub-cta:hover #pub-icon .st0 {
    fill: white;
}


.gloves-thumb {
    width: 100%;
    max-width: 540px;
    border:2px solid var(--main-color2);
}

.x-ray-img {
    display: block;
    margin: 0 auto;
    border: 2px solid var(--main-color2);
}

.x-ray-features-block, .xf-col {
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
}

.xf-cols {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 1rem;
}

.box-text {
    font-size: 2.3rem;
    font-weight:100;
    padding: 0rem 3.4rem;
    border:2px solid var(--main-color2);
    width: max-content;
    text-align: center;
    margin: 7px auto;
}

.x-ray-features-block:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: white;
    z-index: -1;
    transform: scaleX(1.3);
}

.cta-white {
    border: 2px solid white;
    color: white;
    margin: 50px auto;
}

.cta-white:hover {
    background:white;
    color:var(--main-color2);
}

.offcanvas-header{ display:none; }

.iframe-container{
    position: relative;
    width: 100%;
    height: 100%;
    padding-bottom: 56.25%; /* Ratio 16:9 ( 100%/16*9 = 56.25% ) */
    margin-top: -5%;
    margin-left: -6%;
}
.iframe-container > *{
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

.form-group {
    margin: 0;
}

.form-control {
     border-radius:0;
     border:none;
}

.form-group label {
    color:var(--main-color1);
    font-size:13px;
    opacity:0.5;
}


.about-block {
    width: 89%;
    padding: 2vw;
    margin: 2vw auto;
}

#btnContactUs {
    width: max-content;
    padding: 8px 32px;
    border-radius: 0;
    margin: 20px auto;
    float: right;
    background: var(--main-color1);
    color: white;
    text-transform: uppercase;
}

#btnContactUs:hover {
    background: var(--main-color2);
} 


.mobile-only {
    display: none;
}

.dropdown-menu {
    border:none;
}


@media (min-width: 992px) {
	.navbar .nav-item .dropdown-menu{ display: none; }
	.navbar .nav-item:hover .dropdown-menu{ display: block; }
	.navbar .nav-item .dropdown-menu{ margin-top:0; }
}	

@media only screen and (min-width : 481px) {
    .flex-row {
        display: flex;
        flex-wrap: wrap;
    }
    .flex-row > [class*='col-'] {
        display: flex;
        flex-direction: column;
    }
    .flex-row.row:after, 
    .flex-row.row:before {
        display: flex;
    }
}

@media (max-width: 1199px) {
    section:not(:first-child) {
        margin-top: 0;
        margin-bottom: 0;
    }
}


@media (max-width: 992px) {

    .mobile-only {
        display: block;
    }

    h1 {
        font-size: 4.49vh!Important;
        width:90%;
    }

    p {
        margin: auto;
    }

    .iframe-container {
        margin:0;
    }

    .product-img, .content-img {
        filter: grayscale(0)!Important;
    }

    .contacts-block {
        margin-top:6vh;
    }

    .mt-5, .my-5 {
        margin-top:25px!Important;
    }

    .mt-4, .my-4 {
        margin-top:15px!Important;
    }

    .owl-nav {
        width:100%;
    }

    .offcanvas-header{ display:block; }
    .navbar-collapse {
      position: fixed;
      top:0;
      bottom: 0;
      left: 100%;
      width: 100%;
      padding-right: 3rem;
      padding-left: 2rem;
      border: none;
      overflow-y: auto;
      visibility: hidden;
      background-color: var(--main-color2);
      transition: all .2s ease-in-out, -webkit-transform .2s ease-in-out;
      flex-direction:column;
    }

     .navbar-collapse li {
         margin-top:25px;
     }

     #close-button {
         padding: 14px;
         color:white;
         border-radius: 0;
         font-size: 21px;
         right: 0;
     }

    .navbar-collapse .nav-item a {
        border:none;
        padding:20px;
        text-transform:uppercase;
        color: white!Important;
        border: 2px solid white;
        width: 280px;
    }
    .navbar-collapse.show {
      visibility: visible;
      transform: translateX(-100%);
    }

    .lang-selector {  
        width:100px;
        justify-content:space-around;
        left:0;
    }

    
    #diagnosis {
        margin-top: 145px !important;
    }
}


@media (max-width: 800px) {


    h3 {
        font-size:2.4vh;
    }

    h3, h2 {
        text-align:center;
        margin:12px!Important;
    }

    .content-text {
        align-items: center;
    }

    .gloves-thumb {
        margin: 0 auto;
        margin-top: 34px;
        width: 100%;
    }

    .row-sm-flex {
        flex-direction: column-reverse;
    }

     .owl-carousel {
         margin: 0;
     }

     .news-block::after {
         display: none;
     }

     .feature-text {
        padding:24px;
        margin-bottom:20px;
        text-align: center;
        width: 80%;
    }

    .owl-carousel {
        padding:0;
        margin:0;
    }

    .mt-5, .mt-4 {
        margin-top: 10px!Important;
    }

}

@media (max-width: 582px) {

    h1 {
        font-size: 4vh!Important;
        width:90%;
        margin:0 auto;
        margin-bottom:20px;
        word-wrap:normal;

    }

    .post-slide {
        transform:scale(0.7);
    }

    section:first-child h1 {
        width:62%;
        text-align:center;
        margin:0 auto;
    }

    .product-img {
        transform:scale(0.98);
        border:2px solid var(--main-color2);
    }

    .cta-link {
        margin:10px auto;
        margin-top:32px;
        padding: 11px 29px;
        font-size: 11px;
    }

    .content-text h2 {
        margin-left: 30px;
        margin-top: 20px;
    }

    .content-img {
        max-width:90%;
        margin:0 auto;
        margin-top:20px;
    }

    .feature-text {
        padding:0;
        margin-bottom:20px;
        width:100%;
    }

    #header-main h1 {
        margin-top: 30px;
    }

    .cta-white {
        background: white!Important;
        color: var(--main-color2);
    }
        
    .navbar {
        margin:0;
        padding:0;
        top:0;
        overflow:hidden;
    }

    .navbar-extender {
        width:100vw!Important;
        height:96px!Important;
        top:0;
    }

    .navbar-brand img{
        width:200px!Important;
        margin-left:30px;
    }

    #Layer_1 .st-menu {
        fill: var(--main-color2)!IMPORTANT;
    }

    .news-block::before {
        display:none;
    }
}


@media (max-width: 390px) {

    .iframe-container {
        width: 100vw;
        left: 0;
        margin-bottom: 150px;
    }

    .iframe-container > * {
        width:100vw;
        margin:0 auto;
        left: -71px;
        height: 300px;
        margin-bottom: 50px;
    }

    section {
        margin: 0;
    }

    p {
        font-size: 15px!Important;
        text-align: center;
        width: 100%;
        padding: 2px;
    }
}