:root {
    --primary: #0241aa;
    --secondary: #ffd500;
    --light: #f9f5f2;
    --white: #fff;
}

body {
    font-family: 'Open Sans', sans-serif;
}

.container {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 15px;
    align-items: center;
}

.navbar {
    height: 90px;
    position: fixed;
    width: 100%;
    background-color: #00000096;
    z-index: 100;
}

.navbar-active {
    background-color: var(--white);
    box-shadow: 0 2px 4px #00000096;
}
.navbar-active .item {
    color: var(--primary) !important;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo {
    height: 90px;
    width: 90px;
    flex-grow: 0;
    flex-shrink: 0;
}

.navbar .mobile {
    margin-right: 15px;
    width: 40px;
    background-color: var(--secondary);
}

.navbar .menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    background-color: var(--light);
    width: 100%;
    height: calc(100vh - 90px);
    top: 90px;
    z-index: 10;
    padding: 15px;
    display: none;
}

.navbar .smenu {
    padding-left: 20px;
}
.navbar .smenu .item {
    border: 0;
}

.action:hover {
    color: #000;
}

.menu-open {
    display: flex !important;
    overflow: auto;
}

.navbar .item {
    font-size: 20px;
    color: var(--primary);
    border-bottom: 1px solid #0000001c;
    line-height: 45px;
}

.navbar .action {
    display: block;
}

.slider {
    height: 68.5vw;
    overflow: hidden;
    position: relative;
}
.slider--zero {
    height: 91px !important;
}

.bg-blue {
    background-image: url(../img/bg.jpg);
    background-size: cover;
}

.jumbo {
    padding: 50px 15px;
}

.jumbo + .jumbo {
    padding-top: 0;
}

.title {
    font-size: 30px;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
}
.subtitle {
    font-size: 25px;
    color: var(--primary);
    font-weight: 500;
}
.subtitle--black {
    color: #000;
}
.highlight {
    color: var(--primary);
    font-weight: 600;
}
.text strong {
    color: var(--primary);
}

.bg-blue .title {
    text-transform: none;
}

.bg-blue .subtitle {
    color: var(--white);
}

.box {
    background-color: var(--light);
    padding: 50px 15px;
}

.video {
    width: 100%;
    height: 300px;
}

.sitemap {
    display: flex;
    flex-direction: column;
}

.sitemap-title {
    text-transform: uppercase;
    font-size: 20px;
    color: var(--primary);
}

.sitemap-list {
    font-size: 16px;
    color: #000;
}

.sitemap-item {
    margin: 10px 0;
}

.sitemap-action:hover {
    text-decoration: underline;
}

.sitemap-col {
    display: none;
}

.sitemap-col:first-child {
    display: block;
}

.side-links {
    display: none;
}

.center {
    text-align: center;
}

.line {
    display: flex;
    flex-direction: column;
}
.line > img {
    width: 100%;
    margin-bottom: 10px;
    object-fit: contain;
}

.prod {
    padding: 10px;
    border: 2px dashed var(--primary);
    width: 100%;
    height: 100%;
    position: relative;
}
.prod a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--primary);
    font-weight: 600;
    height: 100%;
}

.prod img {
    width: 100% !important;
}
.prod h2 {
    text-align: center;
}

.prod a:hover::after {
    background: #0241aa1c;
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.cover {
    width: 300px;
}

form {
    margin: 10px 0;
}
label {
    display: block;
    margin-bottom: 5px;
    color: var(--primary);
}
input[type=text], textarea {
    border: rgba(0, 0, 0, 0.781) 1px solid;
    padding: 5px;
    margin-bottom: 5px;
    width: 100%;
}
.bt {
    background-color: var(--secondary);
    width: 150px;
    padding: 10px 15px;
    display: block;
}
.bt:hover {
    background-color: var(--primary);
    color: var(--white);
}

.text p {
    font-size: 20px;
    margin-bottom: 10px;
    text-align: justify;
}

.group-dots {
    text-align: center;
    position: absolute;
    bottom: 5px;
    width: 100%;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: var(--secondary);
    display: inline-block;
    transition: background-color 0.6s ease;
    z-index: 10;
}

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}
  
@-webkit-keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}
  
@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

@media screen and (min-width: 780px) {
    .container {
        width: 780px;
    }

    .grid {
        justify-items: center;
    }

    .grid img{
        width: 250px;
    }

    .grid--big img{
        width: 350px;
    }
    .grid--small {
        grid-template-columns: repeat(4, 1fr);
    }

    .sitemap {
        flex-direction: row;
        justify-content: space-between;
    }

    .sitemap-col {
        width: 30%;
        display: block;
    }

    .navbar .mobile {
        display: none;
    }

    .navbar .menu {
        display: flex;
        align-items: center;
        justify-content: space-around;
        position: unset;
        flex-direction: row;
        height: unset;
        background: #0000;
        padding: unset;
    }

    .navbar .item {
        font-size: 15px;
        text-transform: uppercase;
        font-weight: 600;
        color: var(--secondary);
    }

    .navbar .item {
        border-bottom: 0;
        line-height: 90px;
    }

    .navbar .smenu {
        position: absolute;
        background-color: var(--secondary);;
        top: 90px;
        padding: 0 10px;
        display: none;
    }
    .navbar .smenu .item {
        color: #000;
        line-height: 45px;
    }

    .navbar .menu .item:hover .smenu {
        display: block;
    } 

    .action:hover {
        color: var(--white);
    }
    .navbar-active .action:hover {
        color: #000;
    }

    .jumbo, .box {
        padding: 50px 0px;
    }

    .side-links {
        position: fixed;
        top: 100px;
        right: 15px;
        display: flex;
        flex-direction: row;
    }
    .side-links .link {
        background-color: var(--secondary);
        width: 50px;
        height: 50px;
        border-radius: 50px;
        padding: 9px;
        margin-bottom: 5px;
    }
    .side-links .link:hover {
        background-color: var(--white);
    }

    .title {
        font-size: 32px;
    }
    .subtitle {
        font-size: 27px;
    }

    .slider {
        height: 39.5vw;
    }

    .slider .slide {
        height: 39.5vw;
        position: absolute;
        display: none;
    }
    .slider .slide:first-child {
        display: block;
    }

    .slider .slide footer {
        position: absolute;
        color: #ffd504;
        bottom: 0;
        height: 150px;
        right: 0;
        background: #000000ad;
        width: 40%;
        font-size: 18px;
        text-align: center;
        padding: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 35px;
        text-transform: uppercase;
    }
    .slider .slide footer span {
        font-size: 24px;
        font-weight: bold;
    }

    .line {
        flex-direction: row;
        justify-content: space-between;
    }
    .line > img {
        flex-shrink: 1;
        width: 32%;
        margin-bottom: 0px;
    }

    .line .sitemap-list,
    .line #contactform {
        width: 50%;
    }
}

@media screen and (min-width: 984px) {
    .container {
        width: 984px;
    }

    .video {
        height: 450px;
    }

    .navbar .item {
        font-size: 18px;
    }

    .slider .slide footer {
        font-size: 22px;
    }
    .slider .slide footer span {
        font-size: 28px;
    }

    .side-links {
        top: 100px;
        flex-direction: column;
    }

    .title {
        font-size: 34px;
    }
}

@media screen and (min-width: 1280px) {
    .container {
        width: 1280px;
    }

    .sitemap-title {
        font-size: 25px;
    }

    .sitemap-list {
        font-size: 20px;
    }

    .grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .grid--big {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid--small {
        grid-template-columns: repeat(6, 1fr);
    }

    .jumbo, .box {
        padding: 70px 0px;
    }

    .navbar .menu {
        justify-content: center;
    }

    .navbar .item {
        margin: 0 15px;
    }

    .slider .slide footer {
        font-size: 24px;
    }
    .slider .slide footer span {
        font-size: 32px;
    }

    .side-links {
        top: 150px;
    }

    .title {
        font-size: 36px;
    }
    .subtitle {
        font-size: 29px;
    }
}