@import url(../fonts/style.css);
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;600;700;900&family=Rubik:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --Green: #128242;
    --main-Green: #135035;
    --dark: #128242;

}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: 0;
    transition: 0.15s all;


}

body {
    background-color: #fff;
    scroll-behavior: smooth;
    font-family: 'Rubik', sans-serif;

    /* scrollbar-width: none; */
    /* overflow-x: hidden; */
    margin: auto;
    overflow-x: hidden;

}

body::-webkit-scrollbar {
    display: none;
}

a {
    text-decoration: none;
    cursor: pointer;
}

li {
    list-style: none;
    cursor: pointer;
}

button {
    outline: none;
    cursor: pointer;
}

.mySlides {
    display: none;
    
}

.slideshow-container {
  /*max-width: 1000px;*/
  position: relative;
  margin: auto;
}

.active-slide {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'SF UI Display';
}

.mb-115 {
    margin-bottom: 115px !important;
}

.mb-150 {
    margin-bottom: 150px !important;
}

.mt-150 {
    margin-top: 150px !important;
}

.mt-166 {
    margin-top: 166px;
}

.mt-135 {
    margin-top: 130px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-100 {
    margin-top: 100px;
}

.pb70 {
    padding-bottom: 70px;
}

.green {
    color: var(--Green) !important;
}

.red {
    color: #EF3E3E !important;
}



.flex {
    display: flex;
    flex-direction: row;
}

.sticky {
    position: sticky;
    top: 0;
}

.container{
    width: 100%;
    max-width: 1442px;
    margin: auto;
    transition: 0.15s all;
}

.hero-text h1 {
    color: var(--Green);
    font-family: SF UI Display;
    font-size: 100px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
}

.hero-text h2 {
    color: #135035;
    font-family: SF UI Display;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
}

  .imgBox{
    width: 100%;
    height: 600px;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    background-color: #010204;
    -webkit-perspective: 300px;
    perspective: 300px; 
}

.imgBox img{
    position: absolute;
    right: 0;
    top: -120px;
}

.imgBox img:nth-child(2){
    position: absolute;
    left: 50px;
    top: 450px;
}

.hero-text {
    margin-left: 50px;
    position: absolute;
    top: 130px;
    z-index: 2;
}

nav {
    margin-top: 30px !important;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}


.dropdown-nav {
    position: relative;
    display: inline-block;
    margin-right: 30px;

}

.dropdown-content-nav {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    padding: 10px;
    left: -10px;
    z-index: 9999;
}

.dropdown-nav li {
    margin-bottom: 10px !important;
    margin-right: 0 !important;
}

.dropdown-nav li:hover {
    color: var(--Green);
}

.dropdown-nav:hover .dropdown-content-nav {
    display: block;
}

.links li {
    margin-right: 30px;
}

.links {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.nav-link-active,
.nav-link:hover {
    color: var(--Green);
}


nav a {
    color: #333;
    font-family: 'SF UI Display';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;
}



.languages li {
    border-left: 1px solid #333;
}

.languages li>a:first-child {
    margin-left: 20px;

}

.lngActive {
    color: #135035;
}

.mobile-languages {
    display: none;
}

.hamburger {
    display: none;
}


.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    /* padding: 11px 25px; */

    z-index: 1;
}

.dropdown-content a {
    color: #333;
    padding: 12px 11px;
    text-decoration: none;
    display: block;
    font-family: 'SF UI Display';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;
    margin-right: 0;
}

.dropdown:hover .dropdown-content {
    display: block !important;
    padding-left: 10px;
    padding-top: 10px;
}

.dropdown-content a:hover {
    background-color: var(--Green);
    color: #fff;
}




/* .hero-text h1 {
    color: var(--Green);
    font-family: SF UI Display;
    font-size: 100px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
}

.hero-text h2 {
    color: var(--main-Green);
    font-family: SF UI Display;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
}


} */



.hero-arrow {
    width: 60px;
    position: absolute;
    top: 650px;
    left: 90px;
}

.about-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 150px;
    margin-bottom: 150px;

}

.text-box {
    display: flex;
    flex-direction: row;
    max-width: 250px;
    width: 100%;
    /* margin-left: 85px; */
    padding-bottom: 80px;


}


.text-box h6 {
    color: #333;
    font-family: SF UI Display;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;
}

.about-section h6 {
    position: sticky !important;
    top: 20px;
    height: 20px;
}

.about-section .content-box {
    margin-top: -70px;
}

.content-box {
    max-width: 1112px;
    width: 100%;
}

.content-box h1 {
    color: var(--main-Green);
    font-size: 75px;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
    width: 100%;

}

.content-box span {
    color: var(--main-Green);
    font-size: 75px;
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;

}

.grid-content {
    display: grid;
    align-items: end;
    /* grid-template-columns: 1fr 1fr 1fr; */
    grid-template-areas: '. . block4' 'block2 block3 block4';
    grid-gap: 30px;
}

#about-text {
    position: relative;
    top: 70px;
    z-index: 99;
    flex-direction: column !important;
}

.about-text-block {
    display: flex;
    max-width: 782px;
    width: 100%;
    justify-content: space-between;
}

.block1 {

    max-width: 362px;
    width: 100%;
    color: #818181;
    font-family: Rubik;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    position: sticky;
    top: 30px;
    margin-top: 10px;
    z-index: -1;
}

.block1-1 {

    max-width: 371px;
    width: 100%;
    color: #818181;
    font-family: Rubik;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    position: sticky;
    top: 30px;
    z-index: -1;

}


.block2 {
    grid-area: block2;
    display: flex;
    flex-direction: column;
    background-color: #fff;

}

.block3 {
    grid-area: block3;
    background-color: #fff;
}

.block4 {
    grid-area: block4;
}

.about-arrow {
    max-height: 210px;
    height: 100%;
    margin-bottom: 62px;
}

.about1 {
    background-image: url("../img/about2.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 381px;
    height: 230px;
    margin-bottom: 30px;
}

.about2 {
    background-image: url("../img/about1.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 381px;
    height: 300px;
}

.about3 {
    background-image: url("../img/about3.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 371px;
    height: 489px;
    margin-bottom: 30px;
}

.about4 {
    background-image: url("../img/about4.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 371px;
    height: 210px;
}

.about5 {
    background-image: url("../img/about5.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 300px;
    height: 379px;
}

.about6 {
    background-image: url("../img/about6.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 300px;
    height: 450px;
    margin-top: 30px;
}

.about-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 70px;
}

.about-arrow img {
    width: 60px;
}

.our-history {

    background-color: #0D0D0D;
    margin-left: 0 !important;
    margin-right: 0 !important;
    position: relative;
}




.our-history .text-box h1 {
    color: var(--dark);

}

.our-history .text-box {
    position: sticky;
    top: 0;

}

.our-history h6 {
    color: var(--Green);
    margin-top: 80px !important;
    font-family: SF UI Display;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    /* 16px */
    text-transform: uppercase
}

.our-history-title img {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    margin: auto;

}

.history-dates {
    max-width: 782px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: auto;
    margin-top: 136px !important;
}

.history-dates>img:nth-child(even) {
    align-self: flex-end;
}

.history-content {
    max-width: 782px;
    width: 100%;
    margin: auto;
    margin-top: 150px !important;

}

.history-content h1 {
    color: var(--Green);
    font-size: 75px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
}

.history-text-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
}

.history-text-box p {
    max-width: 371px !important;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.history-text-box p:first-of-type {
    max-width: 379px !important;
    width: 100%;
}

.history-text-box p {
    color: #818181;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.history-gallery img {
    margin-bottom: 30px;
}

.history-workers {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 80px;
}

.histrory-arrow {
    position: absolute;
    bottom: 60px;
    right: 150px;
}

.our-products h6 {
    margin-bottom: 30px;
    color: #333;
    font-family: SF UI Display;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    /* 16px */
    text-transform: uppercase;
}

.card-right-side {
    grid-area: description;
}

.card-image {
    grid-area: image;
}

.card-left-side {
    grid-area: property;
}

.prodCard{
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: space-between;
    width: 100%;
    height: auto;
    border: 1px solid #ccc;
    margin-bottom: 30px;
}

.cardBlack{
    /* width: calc(100% / 3); */
    max-width: 300px;
    background-color: #222;
    padding: 30px;
    padding-right: 20px;
}

.cardInfo{
    /* width: calc(100% / 3); */
    max-width: 300px;
    padding: 30px;
    padding-left: 0px;
}

.cardImg{
    width: calc(100% - 600px);
    margin: 30px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.cardImg img{
    position: absolute;
    width: 100%;
}

.product-card {

    display: grid;
    justify-content: space-between;
    grid-template-areas: "description image property";
    border: 1px solid #818181;
    margin-bottom: 30px;
    max-height: 510px;

}


.prodCard:nth-of-type(even) {
   flex-direction: row-reverse;
}


.prodCard:nth-of-type(even) .cardInfo {

    margin-right: 35px;
    padding-left: 30px;
}


.card-right-side {
    max-width: 301px;
    width: 100%;
    height: 510px;
    padding: 30px 20px 30px 30px;
    background-color: #222;
}

.product-name {
    margin-bottom: 10px;
    color: #818181;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;

}

.product-title {
    margin-bottom: 5px;
    color: #FFF;
    font-family: Rubik;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
}

.product-type {
    color: #40A0D6;
    font-family: Rubik;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    /* 19.2px */
    text-transform: uppercase;
}

.product-property-title {
    margin-top: 30px;
    color: #818181;
    font-family: SF UI Display;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;
}

.product-properties {
    color: #FFF;
    font-family: Rubik;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    margin-top: 10px;
}

.product-description-title {
    margin-bottom: 10px;
    margin-top: 10px;
    color: #818181;
    font-family: SF UI Display;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;
}

.product-description {
    color: #FFF;
    font-family: Rubik;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 19.2px;
}

.card-image {
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    margin: auto;
    max-width: 782px;
    width: 670px;
    height: 450px;
    margin-top: 30px;
}

.card-image img {
    position: absolute;
    height: 100%;

}

.card-left-side {
    max-width: 300px;
    width: 100%;
    padding: 30px 41px 30px 0;
}

.application-title {
    color: #818181;
    font-family: SF UI Display;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;
}

.application {
    padding-top: 15px;
    color: var(--main-Green);
    font-family: Rubik;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

.btns-group {
    width: 130px;
    display: flex;
    justify-content: space-between;
}

.btns-group button {
    width: 62px;
    border: 1px solid #818181;

}

.card-left-side li {
    list-style: disc;
    color: var(--main-Green);
    margin-top: 10px;
    font-family: Rubik;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
}

.application-highlight {
    margin-top: 15px;
    color: var(--main-Green);
    font-family: Rubik;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
}

.quality {
    /* background: url(../img/quality.png);  */
    background-color: #0D0D0D;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    margin: auto;
}


#quality h6 {
    color: var(--Green) !important;
    font-family: SF UI Display;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    position: sticky;
    top: 30px;
    height: 20px;
    text-transform: uppercase;
}

#quality>.content-box>h1 {
    color: var(--dark);
    margin-bottom: 40px !important;
    margin-top: 40px !important;
    position: relative;
    z-index: 99;
    /* position: sticky;
    top: 0; */
}

.quality .flex,
#sustainabilty .flex,
.production-region .flex,
.benefits {
    justify-content: space-between;
}

.quality .flex {
    position: relative;
    z-index: 1;
}

.paragraph-side {

    color: #818181;
    font-family: Rubik;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    max-width: 381px;
    width: 100%;

}

.paragraph-side p {
    margin-bottom: 20px;

}

.paragraph-side li {
    margin-bottom: 15px;
    list-style: disc;

}

.image-side {
    max-width: 608px;
    width: 100%;
    height: 360px;
    position: absolute;
    top: -170px;
    right: 0;
    z-index: -1;

}

#quality>.content-box>.flex {
    width: 100%;
    justify-content: space-between;
}

.quality-circles {
    margin-top: 80px;
    max-width: 990px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;

}

.quality-image-last {
    margin-top: 80px;
    max-width: 782px;
    width: 100%;
    height: 510px;
}

#quality-last-block {
    flex-direction: column !important;
}

.quality-text-box {
    max-width: 782px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 40px;
}

.quality-text-box p:first-of-type {
    max-width: 365px;
    width: 100%;
}

.quality-text-box p:last-of-type {
    max-width: 371px;
    width: 100%;
}

.quality-text-box,
.sustainability-paragraph p {
    color: #818181;
    font-family: Rubik;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* position: sticky;
    position: -webkit-sticky;
    top: 190px; */

}

.sustain-head{
    max-width: 450px;
    width: 100%;
}

.sticky{
    position: sticky;
    float: left;
    top: 80px;
}


#units {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}

#sustainabilty h1 {
    margin-top: 40px;
    margin-bottom: 40px;
    color: var(--dark);

}

#sustainabilty h6 {
    color: var(--Green) !important;
    font-family: SF UI Display;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    position: sticky;
    top: 30px;
    height: 20px;
    text-transform: uppercase;
}


.sustainability-paragraph {
    position: sticky;
    top: 20px;
    max-width: 371px;
    width: 100%;

}



.sustainability-units {
    max-width: 612px;
    width: 100%;
    /* margin-left: auto;
    margin-top: -550px; */
}

.production-box-left {
    max-width: 381px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.production-box-left p {
    color: #818181;
    font-family: Rubik;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

.production-icons {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* margin-top: 47px; */
}

.production-box-right {
    max-width: 371px;
    width: 100%;
}

.production-box-right p {
    color: #818181;
    font-family: Rubik;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.production-box-right p:first-of-type {
    margin-bottom: 20px;
}

#production-region {
    max-width: 782px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    margin-bottom: 40px;
}

.sales-network {
    margin-top: 80px;
}

.sales-network h3 {
    color: var(--dark);
    font-family: SF UI Display;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
}

.sales-items {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 782px;
    width: 100%;
    border-top: 1px solid var(--Green);
    margin-top: 10px;

}

.sales-items p {
    color: #818181;
    font-family: Rubik;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    text-transform: uppercase;
    margin-top: 10px;
}

.sales-items p:hover {
    color: var(--Green);
}

.sales-block1 {
    max-width: 381px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 10px;
}

.sales-block1>div {
    display: flex;
    flex-direction: column;
}

.sales-block1>div:first-of-type {
    margin-right: 80px;
}

.sales-block2>div:first-of-type {
    margin-right: 80px;
}

.sales-block2 {
    max-width: 371px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 10px;
}

.benefits {
    display: flex;
    flex-direction: row;
    margin-bottom: 100px;
}

.benefits h1 {
    margin-top: 40px;
    color: var(--dark);
}

.benefits h6 {
    color: var(--Green, #128242);
    font-family: SF UI Display;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    position: sticky;
    top: 30px;
    height: 20px;
}

.benefits-items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 782px;
    width: 100%;
}

.benefit-item-card {
    max-width: 371px;
    width: 100%;
    margin-top: 80px;
}

.benefit-item-card:nth-of-type(even) {
    max-width: 371px;
    width: 100%;
}

.benefit-title {
    color: var(--Green, #128242);
    font-family: SF UI Display;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
    margin-top: 15px;
    margin-bottom: 10px;
}

.benefit-content {
    color: #818181;
    font-family: Rubik;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.top-food {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    overflow: hidden;
    color: #fff;

}

.our-team {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.our-team>.text-box {
    display: flex;
    flex-direction: column !important;
    justify-content: space-between;
    padding-bottom: 0 !important;
}

.our-team h6 {
    color: #333;
    font-family: SF UI Display;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    /* 16px */
    text-transform: uppercase;
}

.btn-arrows {
    display: flex;
    flex-direction: row;
    /* margin-bottom: 20px; */
    transition: 0.25s all;
}

.btn-arrows button {

    transition: 0.25s all;
    width: 62px;
    height: 29px;
    border: 1px solid #818181;
    /* padding: 12px 48px 12px 24px; */

    color: #818181;
    background-image: url("../img/left_arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
}

.btn-arrows button:last-of-type {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}



.btn-arrows button:hover {
    background-image: url("../img/left_arrow_white.svg");
    background-color: var(--Green);
    border: 2px solid var(--Green);
}

.btn-arrows button:last-of-type {
    margin-left: 10px;
}

.btn-arrows button:last-of-type img {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.top-menu {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: auto;
    scroll-behavior: smooth;
    width: 100%;
    margin-left: 30px;
    max-width: 1112px;
}

.top-menu::-webkit-scrollbar {
    height: 0px;
}


.top-menu-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 310px;
    width: 100%;
    height: 465px;
    margin-right: 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-sizing: border-box;
    transition: all .25s ease;

}

.top-menu-card:hover {
    transform: translate(0, -10px);
}

.top-menu-card:last-child {
    margin-right: 0;
}

.staff-img {
    width: 310px;
    height: 465px;
    background-color: #0D0D0D;
    margin-bottom: 20px;
}

.staff-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-us {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 100px;

}



.contact-field {
    max-width: 701px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-left: 20px;
}

.contact-field label {
    color: #333;
    font-family: SF UI Display;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;
}

.contact-field>.flex {
    flex-direction: column;
    max-width: 371px;
    width: 100%;
}

.contact-field>.flex:last-of-type {
    max-width: 300px !important;
    width: 100%;
}

.contact-us h6 {
    color: #333;
    font-family: SF UI Display;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.contact-us>.content-box {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

}

.name-box,
.message-box,
.phone-box,
.email-box {
    display: flex;
    flex-direction: column;
    color: #333;

}

.contact-field input,
.contact-field textarea {
    border: 1px solid #333;
    padding: 18px 15px;
    color: #818181;
    font-family: SF UI Display;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    outline: none;
}

.contact-us iframe {
    margin-top: 15px;
}

.name-box input {
    width: 371px;
    height: 50px;
    margin-top: 5px;
    margin-bottom: 30px;
    outline: none;
}

.message-box textarea {
    width: 371px;
    height: 120px;
    resize: none;
    margin-top: 5px;
}

.phone-box input {
    width: 300px;
    height: 50px;
    margin-top: 5px;
    margin-bottom: 30px;
}

.email-box input {
    margin-top: 5px;
    margin-bottom: 20px;
    width: 300px;
    height: 50px;
}

.email-box button {
    width: 300px;
    height: 50px;
    background-color: var(--Green);
    color: #fff;
    text-align: center;
    font-family: SF UI Display;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;
    border: none;
}

footer {
    border-top: 1px solid #818181;
    transition: .9s ease;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

footer>.logo-box {
    max-width: 188px;
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

footer>.logo-box img {
    width: 100%;
}

footer>.logo-box>p {
    color: #818181;
    font-family: SF UI Display;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
}


footer>.footer-links {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;

}

.footer-links>.flex {
    flex-direction: column;
    justify-content: space-between;
}

.footer-links h6 {
    color: #333;
    font-family: SF UI Display;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    /* 16px */
    text-transform: uppercase;
}

.footer-links a {
    color: #818181;
    font-family: SF UI Display;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
}

.links-box>li {
    margin-top: 15px;
}

.footer-numbers {
    display: flex;
    flex-direction: column;
}

.footer-numbers>a {
    margin-top: 15px;
}

.footer-email>h6 {
    margin-bottom: 15px;
}

.footer-address {
    max-width: 291px;
    width: 100%;

}

.footer-address p {
    margin-top: 15px;
    color: #818181;
    font-family: SF UI Display;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
}

.designed p {
    margin-top: 15px;
    color: #818181;
    font-family: SF UI Display;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
}

.flex-links{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-social>h6 {
    margin-bottom: 15px;
}


@-webkit-keyframes large-shape {
    0% {
        stroke-dashoffset: 1000
    }

    100% {
        stroke-dashoffset: 0
    }
}

@keyframes large-shape {
    0% {
        stroke-dashoffset: 1000
    }

    100% {
        stroke-dashoffset: 0
    }
}

.line {
    /* stroke-dasharray: 5;
    stroke-dashoffset: 5;
  animation: offset 3s linear forwards; */
    -webkit-animation: large-shape 10s ease-out infinite;
    animation: large-shape 10s ease-out infinite;
}


.card {
    width: 600px;
    min-width: 550px;
    height: 400px;
    background: transparent;
    border-radius: 0px;
    position: relative;
    z-index: 1;
    margin: 10px;
    margin-top: 0;
    min-height: 356px;
    transition: all .25s ease;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .08);
    overflow: hidden;
    box-sizing: border-box;
}

.card:hover {
    transform: translate(0, -10px);
    box-shadow: 0px 17px 35px 0px rgba(0, 0, 0, .07);
}

.textCard {
    width: 500px;
    min-width: 400px;
    height: 500px;
    position: relative;
    z-index: 1;
    margin: 25px;
    min-height: 356px;
    transition: all .25s ease;
    padding: 40px 0px;
}

.card .card-text {
    padding: 20px;
}

.card-text {
    padding-top: 70px;
}

.card-text h4 {
    font-size: 70px;
    color: #f2f2f2;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.card-text p {
    color: #f2f2f2;
    line-height: 25px;
}

.card .card-img {
    /*transform: translate(90px,-10px);*/
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .35s ease-out;
    margin-bottom: 10px;
}

.card img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.card-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    overflow: auto;
    scroll-behavior: smooth;
}

.card-content button {
    width: 90%;
    margin-top: 10px;
    position: absolute;
    bottom: 20px;
    margin: auto;
    right: 0;
    left: 0;
}

.card-content::-webkit-scrollbar {
    height: 0px;
}

.card-content:after {
    content: '';
    display: block;
    min-width: 20px;
    height: 100px;
    position: relative;
}

.btn2 {
    min-width: 60px;
    margin: auto 30px;
    height: 60px;
    border: 0px;
    outline: none;
    cursor: pointer;
    z-index: 2;
    transition: all .25s ease;
    position: absolute;
    right: 200px;
    bottom: -20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}

.btn2:hover {
    box-shadow: 0px 17px 35px 0px rgba(0, 0, 0, .07);
}

.btn2 i {
    font-size: 1.2rem;
}

.btn3 {
    min-width: 60px;
    margin: auto 30px;
    height: 60px;
    border: 0px;
    outline: none;
    cursor: pointer;
    z-index: 1;
    transition: all .25s ease;
    position: absolute;
    right: 5px;
    bottom: -20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}

.btn3:hover {
    box-shadow: 0px 17px 35px 0px rgba(0, 0, 0, .07);
}

.btn3 i {
    font-size: 1.2rem;
}

.slider {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    /*height:90vh;*/
    overflow: hidden;
    padding-top: 40px;
}

.suggestion {
    position: relative;
    padding-bottom: 100px;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

footer{
    border-top: 1px solid #818181;
    width: 100%;
    padding: 40px 0;
    margin: auto;
}

footer p{
    font-size: 16px;
    color: #818181;
    font-family: 'SF UI Display', sans-serif;
}

.wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.logoBox{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 200px;
}

.logoBox img{
    width: 200px;
}

.logoBox p{
    margin-bottom: 20px;
}

.footerLinksBox{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    max-width: calc(100% - 300px);
}

.items{
    display: flex;
    flex-direction: column;
    margin: 0 10px;
    margin-bottom: 20px;
}

.items h6{
    font-family: 'SF UI Display', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    text-transform: uppercase;
}

.items a{
    display: block;
    text-decoration: none;
    transition: 0.25s;
    color: #818181;
    font-family: 'SF UI Display', sans-serif;
    /* font-weight: 300; */
    line-height: 100%;
    padding: 7px 0;
}

.items a:hover{
    text-decoration: underline;
}

.items p{
    max-width: 300px;
}

.itemsGroup{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mediaIcons{
    display: flex;
}

.mediaIcons img{
    margin-right: 10px;
}

@media screen and (max-width: 905px){
    .footerLinksBox{
        max-width: 100%;
    }

    .items:nth-child(1){
        margin-left: 0;
    }

    .items p{
        max-width: 200px;
    }
}

@media screen and (max-width: 618px) {
    .items{
        margin-left: 0;
        margin-right: 10px;
        width: 100%;
    }
}