@import "fonts.css";
/* Font file */

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {

    /* Button */
    --button-blue-color: #06c;
    --button-blue-color-active: #0077ed;
    --button-green-color: #06c;

    /* Footer */
    --footer-border-color: #d2d2d7;
    --footer-text-color: #6e6e73;
    --footer-link-color: #424245;
    --footer-directory-title-color: #1d1d1f;
    --footer-directory-title-color-hover: #000;
}

body {
    /* font-family: "Inter", sans-serif; */
    font-family: "SF Pro Text", "Myriad Set Pro", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-weight: 300;
    overflow-y: scroll;
}

/* Desktop Nav */

.nav-container {
    background: rgba(0, 0, 0, 0.8);
    height: 44px;
    z-index: 300;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
}

.nav-container nav {
    width: 1000px;
    margin: 0 auto;
    padding: 0 8px;
    height: 100%;
}

nav .desktop-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

nav .desktop-nav li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 400ms;
}

nav .desktop-nav li a:hover {
    opacity: 1;
}

.link-logo {
    background: url('images/logo.svg');
    display: block;
    background-position: center;
    height: 40px;
    width: 40px;
    background-repeat: no-repeat;
    background-size: contain;
}

.link-search {
    background: url('images/icons/search-icon.svg');
    display: block;
    background-position: center;
    background-size: 18px;
    height: 44px;
    width: 20px;
    background-repeat: no-repeat;
}

.link-bag {
    background: url('images/icons/bag-icon.svg');
    display: block;
    background-position: center;
    background-size: 17px;
    height: 44px;
    width: 20px;
    background-repeat: no-repeat;
}

.link-close {
    background: url('images/icons/close-icon.svg');
    display: block;
    background-position: center;
    background-size: 17px;
    height: 44px;
    width: 20px;
    background-repeat: no-repeat;
}

/* Search Container */

.search-container.hide {
    opacity: 0;
    pointer-events: none;
}

.search-container {
    width: 60%;
    margin: 0 auto;
    padding: 0 42px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
}

.search-container .link-search {
    position: absolute;
    left: 12px;
    opacity: 0.5;
}

.search-container .link-close {
    position: absolute;
    top: 0;
    right: 12px;
    opacity: 0.5;
    cursor: pointer;
    transition: all 400ms;
}

.search-container .link-close:hover {
    opacity: 0.7;
}

.search-container form {
    width: 100%;
    margin: 0 auto;
}

.search-container form input {
    width: 100%;
    height: 44px;
    border: 0;
    outline: none;
    background: transparent;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 17px;
}

/* Overlay */

.overlay.show {
    position: fixed;
    background: rgba(0, 0, 0, 0.48);
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 100;
}

/* Quick Links */

.search-container .quick-links {
    background: #fff;
    position: absolute;
    left: 0;
    right: 0;
    padding: 16px 8px;
    border-radius: 0 0 16px 16px;
}

.search-container .quick-links h2 {
    text-transform: uppercase;
    font-size: 12px;
    color: #6e6e73;
    margin: 0 32px;
    margin-top: 10px;
}

.search-container .quick-links ul {
    list-style: none;
    margin-top: 12px;
}

.search-container .quick-links ul li a {
    display: inline-block;
    width: 100%;
    padding: 8px 50px;
    font-size: 14px;
    color: #1d1d1f;
    text-decoration: none;
    font-weight: 400;
}

.search-container .quick-links ul li a:hover {
    background: #f5f5f5;
    color: var(--button-blue-color)
        /*#2997ff; /*#1756a9*/
}

/* Desktop Nav Animation */

.desktop-nav li {
    transition: all 400ms ease;
}

.desktop-nav.hide li {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

/* Overlay Animation */

.overlay {
    transition: all 400ms ease;
}

/* Navigation Menu Items Transition Delay */

.desktop-nav li:nth-of-type(1),
.desktop-nav.hide li:nth-of-type(10) {
    transition-delay: 0ms;
}

.desktop-nav li:nth-of-type(2),
.desktop-nav.hide li:nth-of-type(9) {
    transition-delay: 30ms;
}

.desktop-nav li:nth-of-type(3),
.desktop-nav.hide li:nth-of-type(8) {
    transition-delay: 60ms;
}

.desktop-nav li:nth-of-type(4),
.desktop-nav.hide li:nth-of-type(7) {
    transition-delay: 90ms;
}

.desktop-nav li:nth-of-type(5),
.desktop-nav.hide li:nth-of-type(6) {
    transition-delay: 120ms;
}

.desktop-nav li:nth-of-type(6),
.desktop-nav.hide li:nth-of-type(5) {
    transition-delay: 150ms;
}

.desktop-nav li:nth-of-type(7),
.desktop-nav.hide li:nth-of-type(4) {
    transition-delay: 180ms;
}

.desktop-nav li:nth-of-type(8),
.desktop-nav.hide li:nth-of-type(3) {
    transition-delay: 210ms;
}

.desktop-nav li:nth-of-type(9),
.desktop-nav.hide li:nth-of-type(2) {
    transition-delay: 240ms;
}

.desktop-nav li:nth-of-type(10),
.desktop-nav.hide li:nth-of-type(1) {
    transition-delay: 270ms;
}

/* Search Container Animation */

.search-container form,
.search-container .link-search {
    opacity: 1;
    transform: translateX(0);
    transition: all 400ms ease;
    transition-delay: 300ms;
}

.search-container.hide form,
.search-container.hide .link-search {
    opacity: 0;
    transform: translateX(50px);
}

.search-container .link-search {
    opacity: 0.6;
}

.search-container.hide .link-close {
    opacity: 0;
}

.search-container .link-close {
    opacity: 0.5;
    transition: all 400ms ease;
    transition-delay: 400ms;
}

.search-container.hide .quick-links h2 {
    opacity: 0;
    transform: translateX(50px);
}

.search-container .quick-links h2 {
    opacity: 1;
    transform: translateX(0);
    transition: all 400ms ease;
    transition-delay: 100ms;
}

.search-container.hide .quick-links ul li {
    transform: translateX(60px);
    opacity: 0;
}

.search-container .quick-links ul li {
    opacity: 1;
    transform: translateX(0);
    transition: all 400ms ease;
}

.search-container .quick-links ul li:nth-of-type(1) {
    transition-delay: 120ms;
}

.search-container .quick-links ul li:nth-of-type(2) {
    transition-delay: 140ms;
}

.search-container .quick-links ul li:nth-of-type(3) {
    transition-delay: 160ms;
}

.search-container .quick-links ul li:nth-of-type(4) {
    transition-delay: 180ms;
}

.search-container .quick-links ul li:nth-of-type(5) {
    transition-delay: 200ms;
}


/* Hidden Items */

.mobile-nav,
.mobile-search-container {
    display: none;
}


/* Media Queries */

@media (max-width: 1100px) {
    .nav-container nav {
        width: 100%;
        padding: 0 32px;
    }
}

@media (max-width: 768px) {
    .nav-container .desktop-nav {
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 0vh;
        background: #000;
        justify-content: start;
        overflow: hidden;
        z-index: -1;
        transition: all 1000ms ease;
    }

    .nav-container.active .desktop-nav {
        height: 100vh;
    }

    .nav-container .desktop-nav li {
        width: 100%;
        padding: 0 32px;
    }

    .nav-container .desktop-nav li:first-child {
        margin-top: 120px;
    }

    .nav-container .desktop-nav .link-logo,
    .nav-container .desktop-nav .link-search,
    .nav-container .desktop-nav .link-bag {
        display: none;
    }

    .nav-container .desktop-nav li a {
        padding: 16px 0;
        display: inline-block;
        border-bottom: 1px solid #616161;
        width: 100%;
        font-size: 17px;
        transform: translateY(-80px);
        opacity: 0;
        transition: all 700ms ease;
    }

    .nav-container.active .desktop-nav li a {
        transform: translateY(0);
        opacity: 1;
    }

    /* Mobile Nav */

    nav .mobile-nav {
        display: flex;
        width: 100%;
        justify-content: space-between;
        list-style: none;
    }

    nav .menu-icon-container {
        width: 20px;
        height: 44px;
        display: flex;
        align-items: center;
        cursor: pointer;
    }

    nav .menu-icon {
        position: relative;
        width: 100%;
    }

    nav .menu-icon .line-1,
    nav .menu-icon .line-2 {
        position: absolute;
        height: 1px;
        width: 100%;
        background: #fff;
        transition-property: transform, top;
        transition-delay: 0ms, 160ms;
        transition-duration: 200ms;
    }

    nav .menu-icon .line-1 {
        top: -4px;
    }

    nav .menu-icon .line-2 {
        top: 4px;
    }

    .nav-container.active nav .menu-icon-container .menu-icon .line-1 {
        top: 0;
        transform: rotateZ(45deg);
        transition-property: top, transform;
        transition-delay: 0ms, 160ms;
        transition-duration: 200ms;
    }

    .nav-container.active nav .menu-icon-container .menu-icon .line-2 {
        top: 0;
        transform: rotateZ(-45deg);
        transition-property: top, transform;
        transition-delay: 0ms, 160ms;
        transition-duration: 200ms;
    }

    /* Bag Icon Animation */

    .nav-container.active .mobile-nav .link-bag {
        transform: translateY(8px);
        opacity: 0;
        pointer-events: none;
    }

    .nav-container .mobile-nav .link-bag {
        transition: all 1000ms ease;
    }



    /* Search Box */

    .mobile-search-container input {
        width: 100%;
        padding: 12px 36px;
        font-family: "Inter", sans-serif;
        font-size: 17px;
        background: #1b1b1b;
        border: 0;
        color: #fff;
        border-radius: 8px;
        outline: none;
    }

    .mobile-search-container {
        position: relative;
        padding: 0 16px;
        margin-top: -30px;
        border-bottom: 1px solid #616161;
        display: flex;
        padding-bottom: 16px;
        align-items: center;
        transform: rotateX(90deg);
        opacity: 0;
        transition: all 600ms ease;
    }

    .nav-container.active .mobile-search-container {
        transform: rotateX(0deg);
        margin-top: 10px;
        opacity: 1;
    }

    .mobile-search-container .link-search {
        position: absolute;
        left: 24px;
        opacity: .5;
        background-size: 15px;
    }

    /* Nav Move Up */

    .nav-container nav.move-up {
        margin-top: -40px;
    }

    /* Cancel Button */

    .mobile-search-container .cancel-btn {
        color: #2997ff;
        font-size: 17px;
        font-weight: 400;
        cursor: pointer;
        width: 0px;
        overflow: hidden;
        transition: all 400ms ease;
    }

    .mobile-search-container .search-bar.active+.cancel-btn {
        padding: 0 16px;
        width: 74px;
    }

    .mobile-search-container .search-bar {
        flex: 1;
    }

    /* Desktop Nav Move Down */

    nav .desktop-nav.move-down li:first-child {
        margin-top: 150px;
    }

    nav .desktop-nav.move-down li {
        opacity: 0;
        pointer-events: none;
    }


    /* Quick Links */

    .mobile-search-container .search-bar.active~.quick-links {
        top: 80px;
        opacity: 1;
        pointer-events: auto;
        transition-delay: 40ms;
    }

    .mobile-search-container .quick-links {
        position: absolute;
        left: 0;
        right: 0;
        padding: 0 32px;
        opacity: 0;
        pointer-events: none;
        top: 10px;
        transition: all 400ms ease;
    }

    .mobile-search-container .quick-links ul {
        list-style: none;
    }

    .mobile-search-container .quick-links h2 {
        color: #86868b;
        font-size: 12px;
        text-transform: uppercase;
        font-weight: 400;
    }

    .mobile-search-container .quick-links ul li a {
        padding: 16px 0;
        display: inline-block;
        text-decoration: none;
        color: #fff;
        font-size: 14px;
        font-weight: 400;
        border-bottom: 1px solid #616161;
        width: 100%;
    }

    .mobile-search-container .quick-links ul li a:hover {
        color: #2997ff;
    }

    /* Nav Animation */

    .nav-container nav {
        transition: all 400ms ease;
    }
}


input,
div,
span,
a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/*
.main_video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
  }
*/

video {
    width: 100vw;
    height: 100vh;
    object-fit: contain;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

.main {
    padding-top: 50px;
    /* overflow: hidden; */
    height: 90vh;
}

.wrapper {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px;
    /*
    display: flex;
    flex-direction: row;
    */
}

.grid {
    display: flex;
    flex-direction: row;
}

.preamble {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.preamble img {
    /* background: url(/images/Oskar_logo.svg); */
    /* background-repeat: no-repeat;
    min-height: 26px;
    outline: none;
    width: 100px;
    width: 6.25rem; */
    z-index: 1;
}

.headline {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* height: 70vh; */

    max-width: 800px;
}

.headline h1 {
    /* margin: 0 auto; */
    color: rgba(0, 0, 0, 0.8);
    word-wrap: break-word;

    font-size: 56px;
    line-height: 1.07143;
    font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    text-transform: capitalize;
    text-align: center;
    font-weight: 600;
    letter-spacing: .007em;
    
}

.headline p {
    max-width: 800px;
    margin: 48px;
    color: rgba(0, 0, 0, 0.6);

}

.subhead {
    margin: 16px;
    padding: 16px;
    font-size: 28px;
    text-align: center;
}

.company-name {
    color: var(--button-blue-color);
    text-transform: uppercase;
}

#company-small-letter {
    text-transform: lowercase;
    font-size: 1.25em;
}

.poster-image {
    max-height: 250px;
    object-fit: contain;
}

.button {
    /*
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    margin-bottom: 40px;
    */
    justify-content: center;
    /* background-color: transparent; */
    background-color: var(--button-blue-color);
    color: white;
    border: solid var(--button-blue-color) 1px;
    text-align: initial;
    align-items: center;
    border-radius: 50px;

    transition: border-color 0.4s ease 0s, background-color 0.4s ease 0s;
    transition-property: border-color, background-color;
    transition-duration: 0.4s, 0.4s;
    transition-timing-function: ease, ease;
    transition-delay: 0s, 0s;

    font-size: 17px;
    line-height: 1.1764805882;
    font-weight: 400;
    letter-spacing: -0.022em;
    font-family: SF Pro Text, SF Pro Icons, Helvetica Neue, Helvetica, Arial, sans-serif;
    min-width: 26px;
    padding: 9px 20px;
}

.button:hover,
.button:active {
    background-color: var(--button-blue-color-active);
    color: white;
}

.info {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 1em;
}

.info-link {
    font-size: 21px;
    line-height: 1.381002381;
    font-weight: 400;
    letter-spacing: .011em;
    font-family: SF Pro Display, SF Pro Icons, Helvetica Neue, Helvetica, Arial, sans-serif;
    text-decoration: none;

    color: var(--button-blue-color);
    letter-spacing: inherit;
    padding: 6px 22px;
}

.info-link:hover {
    text-decoration: underline;
}

.products {
    background-color: rgb(245, 245, 247);
    /* border-radius: 10px; */
}

.products h1 {
    font-size: 48px;
    line-height: 1.08349;
    font-weight: 600;
    letter-spacing: -.003em;
    font-family: SF Pro Display, SF Pro Icons, AOS Icons, Helvetica Neue, Helvetica, Arial, sans-serif;
    color: #1d1d1f;
    display: inline;
}

.products h2 {
    font-size: 48px;
    line-height: 1.08349;
    font-weight: 600;
    letter-spacing: -.003em;
    font-family: SF Pro Display, SF Pro Icons, AOS Icons, Helvetica Neue, Helvetica, Arial, sans-serif;
    color: #6e6e73;
    display: inline;
}

.products ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.products ul li {
    list-style: none;
}

.products .card {
    padding: 20px;
    width: 350px;
    height: 500px;
    cursor: pointer;
    border-radius: 10px;
    margin: 1em;

    color: #1d1d1f;
    background-color: #fff;

    white-space: normal;
    box-shadow: 2px 4px 12px rgb(0 0 0 / 8%);
    transition: all .3s cubic-bezier(0, 0, .5, 1);
}

.products .card:hover {
    transform: scale(1.01);
    box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.2);
}

.products ul li:nth-child(even) .card {
    background-color: #000;
    color: #fff;
}

.products .card .info {
    display: flex;
    flex-direction: column;
}

.products .card .info .eyebrow {
    /* color: #f5f5f7; */
    color: #6e6e73;
    text-transform: uppercase;
    font-size: 12px;
}

.products .card .info .card-header {
    font-size: 28px;
    line-height: 1.14286;
    font-weight: 600;
    letter-spacing: .007em;
    font-family: SF Pro Display, SF Pro Icons, AOS Icons, Helvetica Neue, Helvetica, Arial, sans-serif;
}

.products .card .info .card-description {
    font-size: 17px;
    line-height: 1.23536;
    font-weight: 400;
    letter-spacing: -.022em;
    font-family: SF Pro Text,SF Pro Icons,AOS Icons,Helvetica Neue,Helvetica,Arial,sans-serif;
    padding-top: 10px;
    margin-top: 0;
}

.products .card-1 {
    background-image: url(images/products/fume-arm-4.png);
    background-size: cover;
}

/*
.products .card-2 {
    background-image: url(images/products/exhaust-fan.png);
    background-size: cover;
}*/

.products .card-7 {
    background-image: url(images/products/fume-arm-5.png);
    background-size: contain;
}


/* Social Media links */
.social-contacts {
    float: right;
    text-align: right;
    padding-top: 0px;
    padding-right: 5px;
    padding-bottom: 0px;
    padding-left: 5px;
}

.social-media img {
    margin: 0 0.5em;
}

#facebook:hover>img,
#facebook:active>img {
    filter: invert(37%) sepia(71%) saturate(4108%) hue-rotate(204deg) brightness(99%) contrast(92%);
}

#youtube:hover>img,
#youtube:active>img {
    filter: invert(11%) sepia(84%) saturate(7489%) hue-rotate(358deg) brightness(96%) contrast(112%);
}

#rss:hover>img,
#rss:active>img {
    filter: invert(70%) sepia(65%) saturate(3234%) hue-rotate(0deg) brightness(104%) contrast(103%);
}

#twitter:hover>img,
#twitter:active>img {
    filter: invert(45%) sepia(95%) saturate(1684%) hue-rotate(179deg) brightness(104%) contrast(90%);
}

/*
#googlemaps {
    filter: invert(39%) sepia(99%) saturate(1425%) hue-rotate(203deg) brightness(102%) contrast(91%);
}

#googlemaps:hover > img, #googlemaps:active > img {
    filter: invert(39%) sepia(99%) saturate(1425%) hue-rotate(203deg) brightness(102%) contrast(91%);
}
*/

.gallery {
    padding: 0.5em;
}

/*
#gallery {
    text-decoration: none;
    filter: invert(39%) sepia(99%) saturate(1425%) hue-rotate(203deg) brightness(102%) contrast(91%);
}

#gallery:hover > img, #gallery:active > img {
    filter: invert(39%) sepia(99%) saturate(1425%) hue-rotate(203deg) brightness(102%) contrast(91%);
}
*/

#whatsapp:hover>img,
#whatsapp:active>img {
    filter: invert(89%) sepia(78%) saturate(1439%) hue-rotate(64deg) brightness(87%) contrast(90%);
}


footer {
    grid-area: footer;
    height: auto;
    width: 100%;
    background-color: rgb(245, 245, 247);
    color: var(--footer-link-color);
    text-align: center;
    font-size: 1em;
    font-weight: normal;
    font-family: "SF Pro Text", "Myriad Set Pro", "SF Pro Icons", "Apple Legacy Chevron", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-size: 12px;
    font-kerning: auto;
    left: 0px;
    bottom: 0px;
    height: 260px;
    width: 100%;
    border-top: 1px solid var(--footer-border-color);
}

footer #footer-main {
    margin: 0 auto;
    text-align: center;
    font-family: times;
    font-size: 22px;

    margin-bottom: 20px;
    padding-top: 50px;
    padding-bottom: 20px;

    color: var(--footer-directory-title-color);
}

footer #footer-detail {
    margin: 0 auto;
    text-align: center;
    font-family: "SF Pro Text", "Myriad Set Pro", "SF Pro Icons", "Apple Legacy Chevron", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    width: 100%;
    height: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

footer a:link {
    text-decoration: none;
}

footer #footer-links {
    margin-top: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

footer #footer-copyright {
    font-size: 12px;
    color: var(--footer-text-color);
    margin: 20px 25px 0px 25px;
    border-top: 1px solid var(--footer-border-color);
    padding-top: 5px;
    padding-bottom: 10px;
}

@media(max-width: 600px) {

    .wrapper {
        /* max-width: 900px;
        margin-left: auto;
        margin-right: auto; */
        padding: 10px;
    }

    .grid {
        flex-direction: column;
    }

    /* .headline {
        max-width: 350px;
    } */

    .headline h1 {
        /* max-width: 300px; */
        font-size: 32px;
    }

    .subhead {
        font-size: 19px;
        margin: 0;
        padding: 0;
    }

    .poster-image {
        /* height: 200px; */
        object-fit: contain;

    }

    .products h1, 
    .products h2 {
        /* max-width: 300px; */
        font-size: 32px;
    }

    .products .card {
        width: 300px;
    }

    .products ul {
        flex-direction: column;
    }
}