@import url("https://fonts.googleapis.com/css2?family=Cormorant:wght@700&family=Open+Sans:wght@300;400;500;600;700&display=swap");
/* Global */
:root {
  --pale: #f8edd0;
  --darkPale: #d6d5b4;
  --green: #3a5a40;
  --dark-green: #a3b18a;
  --light-green: #a3b18a;
}

/* @font-face {
  font-family: 'OpenSans-Regular';
  src: url("OpenSans-Regular.ttf") format("truetype");
} 

@font-face {
  font-family: 'Open Sans';
  src: url("OpenSans-Light.ttf") format("truetype");
}

@font-face {
  font-family: "Cormorant";
  src: url("Cormorant.ttf") format("truetype");
}  */

* {
  margin: 0;
  padding: 0;
}

body,
html {
  font-family: "Open Sans";
  font-weight: 300;
  height: 100%;
  scroll-behavior: smooth;
  font-size: calc(15px + 0.390625vw);
  width: 100%;
}

@media screen and (max-width: 768px) {
  body,
  html {
    /* font-weight: 400; */
  }
}

img {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

b {
  font-weight: 500;
}

.containter {
  max-width: 100%;
  padding: 0px 7% 0px 7%;
}

@media screen and (max-width: 1250px) {
  .containter {
    padding: 0px 3% 0px 3%;
  }
}

/* Header */
.intro {
  /* The image used */
  background-image: url("../img/main.webp");

  /* Full height */
  height: 100%;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.start {
  background-image: url(../img/main.webp);
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.navigation {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  height: auto;
  max-height: 100vh;
  color: white;
  padding: 5px;
  backdrop-filter: blur(10px);
  color: var(--pale);
  font-family: "Open Sans", serif;
}

.navigation-logo {
  /* margin-left: 1.5rem; */
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

#nav-logo-img {
  width: 50px;
  height: 50px;
}

.navigation-menu-btn {
  display: none;
}

.navigation-menu > .menu-link {
  padding: 0 2rem;
}

.navigation-menu-btn > label > span {
  display: block;
  height: 8px;
  border-top: 2px solid #eee;
  margin-left: auto;
}

.navigation-menu {
  display: flex;
}

.menu-link > a {
  text-decoration: none;
  color: var(--pale);
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.menu-link > a::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--pale);
  transform-origin: bottom center;
  transition: transform 0.25s ease-out;
}

#nav-lang > a {
  text-decoration: none;
  color: var(--pale);
  display: inline-block;
  position: relative;
  cursor: pointer;
}

#nav-lang > a::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--pale);
  transform-origin: bottom center;
  transition: transform 0.25s ease-out;
}

.menu-link > a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom center;
}

#mainLogo {
  max-width: 221px;
  width: 30vw;
}

@media screen and (min-width: 1051px) {
  .navigation-lang {
    display: block !important;
    margin-right: 1rem;
  }

  .navigation-menu {
    display: flex !important;
  }

  #mainTitle {
    display: block !important;
  }

  .mobileEnabled {
    display: none !important;
  }
}

#sec5Title {
  margin-bottom: 0px !important;
  color: var(--green);
  font-family: "Cormorant";
  font-size: 4rem;
  text-align: center;
  padding-top: 3rem;
  /* padding-bottom: 3rem; */
}

@media screen and (max-width: 768px) {
  #mainTitle {
    /* top: 20%; */
  }

  .mobile-bottom-rem {
    padding-bottom: 4rem;
  }

  #sec5Description {
    font-size: 1.2rem !important;
    max-width: 81vw !important;
    margin: 0 auto !important;
  }

  #companyDescr {
    font-size: 16px !important;
    color: white;
    max-width: 75vw;
    text-align: center;
    margin: 0 auto;
  }

  #sec5Title {
    margin-bottom: 25px !important;
    color: var(--green);
    font-family: "Cormorant";
    font-size: 4rem;
    text-align: center;
    padding-top: 3rem;
    /* padding-bottom: 3rem; */
  }
}

@media screen and (max-width: 1050px) {
  .navigation-logo {
    width: 100%;
    max-width: 100vw;
    justify-content: space-between;
  }

  .navigation-logo > img {
    height: 60px;
    margin-left: 1rem;
    padding: 5px;
  }

  .navigation-menu-btn {
    display: block;
    margin-right: 2rem;
  }

  .navigation {
    flex-direction: column;
  }

  .navigation-menu {
    flex-direction: column;
    display: none;
    align-self: start;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
  }

  .menu-link {
    margin: 10px 0;
  }

  .navigation-lang {
    display: none;
    align-self: start;
    padding: 0 2rem;
    margin-bottom: 2rem;
  }

  .lang-link {
    margin-top: 2rem;
    margin-right: 20px;
    margin-bottom: 2rem;
  }

  .mobileEnabled {
    display: block !important;
  }
}

.top {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100px;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* OLD */

.logo {
  width: 25%;
  margin: auto;
  display: block;
}

.nav {
  width: 60%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.caption {
  position: absolute;
  left: 0;
  top: 30%;
  width: 100%;
  text-align: center;
  color: #000;
}

#companyTitle {
  color: var(--pale);
  font-size: 2.8rem;
  font-family: "Cormorant";
  font-weight: bold;
}

#companyDescr {
  color: var(--pale);
  font-family: "Open Sans";
  font-size: 1.3rem;
  padding: 0.5rem;
}

.nav > a {
  font-family: "Open Sans";
  text-decoration: none;

  color: var(--pale);
  font-size: 24px;
}

.lang {
  width: 20%;
  font-size: 24px;
  font-family: "Open Sans";
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang > span {
  color: var(--pale);
}

.lang > a {
  text-decoration: none;
  color: var(--pale);
}

/* About First Slide */
.advantages {
  background-color: var(--pale);
  padding-top: 50px;
}

/* Cards */
#advTitle {
  font-family: "Cormorant";
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--green);
  text-align: center;
  margin-bottom: 2.5rem;
}

#advCards {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  white-space: nowrap;
  max-width: 1805px;
  margin: 0 auto;
  margin-bottom: 120px;
  gap: 15px;
}

.advCardText {
  font-size: 1.1rem;
  text-align: center;
  font-family: "Open Sans";
}

.advCard > img {
  width: 11vw;
}

@media screen and (max-width: 1250px) {
  #advCards {
    margin-bottom: 20px !important;
  }
}

@media only screen and (max-width: 1440px) {
  #advCards {
    flex-wrap: wrap;
    flex-direction: row;
    max-width: 100vw;
    width: 100%;
    gap: 8px;
  }

  #advTitle {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  .advCardText {
    font-size: 1.05rem;
  }

  .advCard {
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 1100px) {
  .advCard > img {
    width: 17vw;
  }
}
@media only screen and (max-width: 1024px) {
  .advCardText {
    font-size: 0.9rem;
  }

  .advCard > img {
    width: 14vw;
  }
}

@media only screen and (max-width: 1000px) {
  .advCard > img {
    width: 45vw;
    margin-bottom: 20px;
  }

  .advCardText {
    font-size: 1rem;
    font-weight: 400;
  }
}

@media only screen and (max-width: 1250px) {
  .containter {
    padding: 0px 6% 0px 6% !important;
  }

  .descriptionTitle {
    font-size: 3rem !important;
  }

  .containerMobile {
    flex-direction: column !important;
  }

  .containerMobileReverse {
    flex-direction: column-reverse !important;
  }

  .containerWidth {
    max-width: 100% !important;
  }

  .containerBottomPadding {
    /* padding-bottom: 1rem!important; */
  }

  .containterPadding {
    padding-bottom: 3.5rem !important;
  }

  .conitainerFont {
    font-size: 1.3rem !important;
    font-family: "Open Sans";
    color: var(--green);
  }

  .mobileHide {
    display: none !important;
    visibility: hidden !important;
  }

  .mobileShow {
    display: block !important;
  }

  .numberMobile {
    text-align: center !important;
    font-size: 8rem !important;
  }

  .manDescrp {
    font-size: 1rem !important;
  }

  .lineMobile {
    height: 8rem !important;
    left: 0 !important;
    transform: none !important;
  }

  .descriptionMobile {
    align-self: center !important;
  }

  .containterDescription {
    max-width: 55%;
  }

  #manufacturingTitle {
    font-size: 3rem !important;
  }
}

.advCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--green);
}

.advCard > img {
  margin-bottom: 35px;
}

#aboutUsDescription {
  display: flex;
  margin-bottom: 200px;
  gap: 40px;
  max-width: 1740px;
}

#aboutImages {
  gap: 10px;
  max-width: 50%;
  display: flex;
}

.imgHover {
  transition: transform 0.2s ease;
}

.imgHover:hover {
  transform: scale(1.03);
}

#aboutText {
  max-width: 50%;
}

#aboutText > h1 {
  color: var(--green);
  font-family: "Cormorant";
  font-size: 80px;
}

#aboutText > span {
  color: var(--green);
  font-family: "Open Sans";
  font-size: 35px;
}

#aboutText > span > p {
  margin-bottom: 25px;
}

@media screen and (max-width: 1250px) {
  #aboutUsDescription {
    flex-direction: column;
  }

  #aboutImages {
    width: 100%;
  }

  #aboutText {
    width: 100%;
    padding: 0 0;
  }
}

/* About Pomace */

#pomace {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  gap: 5%;
  margin-bottom: 200px;
  max-width: 1740px;
}

/* Responsive image with class imgPomace */
.imgScale {
  width: 100%;
  height: auto;
}

.imgSett {
  user-drag: none;
  -webkit-user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.descriptionTitle {
  font-family: "Cormorant";
  font-size: 3.2rem;
  /* font-weight: bold; */
  color: var(--green);
  text-align: left;
  margin-bottom: 50px;
  /* white-space: nowrap; */
}

.descriptionText {
  color: var(--green);
  font-family: "Open Sans";
  font-size: 1.1rem;
}

@media screen and (max-width: 1382px) {
  .descriptionText {
    font-size: 1.1rem;
  }
}

.descriptionText > p {
  margin-bottom: 25px;
}

.centerImage {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* About Concentrate */
#concentrate {
  display: flex;
  justify-content: space-between;
  gap: 5%;
  padding-bottom: 150px;
  max-width: 1740px;
}

/* Manufacturing */
.manufacturing {
  background-color: var(--dark-green);
  width: 100%;
}

#manufacturingTitle {
  color: var(--pale);
  font-family: "Cormorant";
  font-size: 4rem;
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.manufacturingCard {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 200px;
  margin-bottom: 8rem;
}

.manNumber {
  color: var(--darkPale);
  font-family: "Cormorant";
  font-size: 7.5rem;
  text-align: left;
  line-height: 6rem;
  margin-bottom: 3rem;
}

.manDescrp {
  text-align: left;
  font-family: "Open Sans";
  font-size: 1.25rem;
  margin-top: 1.5rem;
  color: var(--pale);
}

.imgLine {
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
}

.containterFlex {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  gap: 5%;
  margin-bottom: 200px;
  max-width: 1505px;
  margin: 0 auto;
}

.maxWidth1200 {
  max-width: 1350px;
}

@media screen and (max-width: 1250px) {
  .containterFlex {
    /* flex-direction: column; */
  }
}

.containterPadding {
  padding-bottom: 150px;
}

.containerImages {
  max-width: 50%;
}

.containterDescription {
  max-width: 50%;
}

.containterFlexImages {
  display: flex;
  gap: 15px;
}

/* Technologies */
#sec3 {
  background-color: var(--pale);
  width: 100%;
}

.section {
  background-color: var(--pale);
  position: relative;
  z-index: 10;
  padding: 4rem 1rem 4rem 4rem;
}

.overlay {
  position: absolute;
  z-index: -10;
  background-color: rgba(163, 177, 138, 0.4);
  width: 50vw;
  height: 82%;
  right: 0px;
  border-radius: 20px 0 0 20px;
}

.content {
  height: 70%;
  padding: 40px;
  display: grid;
  grid-template-columns: 50% 45%;
  align-items: center;
  gap: 3rem;
}

.images {
  width: 80%;
  height: auto;
  justify-self: end;
}

.technoPointContainer {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 3rem;
}

.technoPointContainer p {
  color: var(--green);
  font-size: 1.1rem;
  font-family: "Open Sans";
}

@media screen and (max-width: 1250px) {
  #sec3 {
    display: none;
  }
}

@media screen and (min-width: 1251px) {
  #sec3Mobile {
    display: none;
  }
}

/* Sec3 Mobile */

@media screen and (max-width: 1250px) {
  #sec3Mobile {
    display: block;
    background-color: var(--pale);
  }

  #technoMobile {
    width: 75%;
    padding: 30px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    background-color: rgba(163, 177, 138, 0.4);
    border-radius: 20px;
  }

  #sec3Title {
    font-family: "Cormorant";
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--green);
    text-align: left;
    margin-bottom: 50px;
  }

  .technoPointContainer > img {
    width: 15vw;
    align-self: start;
  }
}

/* asd */
#sec4 {
  background-image: url("../img/main.webp");
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 5rem;
}

#sec4Title {
  color: var(--pale);
  padding-top: 3.5rem;
  padding-bottom: 1rem;
  font-size: 3.5rem;
}

.qualityCards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 3%;
  margin-bottom: 200px;
  max-width: 1740px;
  margin: 0 auto;
}

@media screen and (max-width: 1250px) {
  .qualityCards {
    flex-direction: column;
    align-items: center;
  }

  .qualityCard {
    margin-bottom: 2rem;
  }

  .qualityCard > img {
    width: 15vw;
    height: auto;
  }
}

.qualityCard {
  background-color: var(--dark-green);
  color: var(--pale);
  max-width: 60vw;
  border-radius: 50px;
  padding: 2rem;
  line-height: 1.9rem;
  font-family: "Open Sans";
  font-size: 1rem;
  text-align: center;
}

/* Sadivnitsvo */
@media screen and (min-width: 1251px) {
  .sad-Text {
    width: 60%;
    display: flex;
    flex-direction: column;
  }

  .sad-Text2 {
    width: 40%;
    flex-direction: column;
  }
}

@media screen and (max-width: 1250px) {
  .sad-Text {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .sad-Text2 {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    /* margin-bottom: 4rem; */
  }

  .gardDescription {
    margin: 1rem 0;
  }

  #growthApple {
    margin: 3rem 0;
  }

  .gardDescription {
    font-size: 1.2rem;
  }
}

/* sec5 */
#sec5 {
  background-color: var(--pale);
}

#sec5Title {
  font-size: 3rem;
}

#sec5Description {
  font-family: "Open Sans";
  font-size: 1.2rem;
  font-weight: lighter;
}

.gardDescription {
  color: var(--green);
  line-height: 2rem;
  font-family: "Open Sans";
  font-size: 1.1rem;
}

.appleImagesContainter {
  display: flex;
  flex-direction: row;
  max-width: 1800px;
  flex-wrap: wrap;
  margin: 0 auto;
  text-align: center;
  justify-content: center;
}

.appleImage > img {
  width: 20vw;
}

#appleDescription {
  color: var(--green);
  font-family: "Open Sans";
  font-size: 1.3rem;
  text-align: center;
  margin: 0 auto;
}

@media screen and (min-width: 1251px) {
  #appleDescription {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 1250px) {
  .appleImage > img {
    width: 40vw;
  }
}

/* Sec7 */
@media screen and (max-width: 1250px) {
  #sec7 {
    flex-direction: column;
  }

  #contacts {
    width: 100% !important;
    padding: 0;
    /* padding-left: 15px; */
  }

  .mapouter {
    width: 100% !important;
    height: 400px !important;
  }

  .imgContact {
    width: 45px;
  }
}

/*
  Modal Image
*/

#contacts {
  background-color: var(--dark-green);
  color: var(--pale);
  width: 40%;
}

#contatsTitle {
  color: var(--pale);
  margin-bottom: 1rem;
  padding-top: 3%;
  padding-left: 13%;
}

.contactDetails {
  line-height: 2.5rem;
  /* margin-left: 3%; */
  padding-left: 13%;
  font-family: "Open Sans";
}

.mapouter {
  position: relative;
  text-align: right;
  width: 60%;
}
.gmap_canvas {
  overflow: hidden;
  background: none !important;
  width: 100%;
  height: 100%;
}
.gmap_iframe {
  height: 100% !important;
}

.justifyCenter {
  justify-content: center;
  align-items: center;
}

.lineStyle {
  position: relative;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 950px) {
  .lineStyle {
    width: 22%;
    margin-top: 25px;
    rotate: 5deg;
  }

  .manImageSize {
    width: 33%;
  }

  .noGap {
    gap: 0% !important;
  }
}

/* Tractor */

/* modal content styles */
.modal-content-wrapper {
  max-width: 1805px;
  width: 90%;
  display: flex;
  margin: auto;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 70px 0;
}
.modal-content-wrapper .image-modal-content {
  /* flex: 0 0 30%; */
  cursor: pointer;
  transition: 300ms ease-out;
  margin-right: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  #contatsTitle {
    padding-top: 4%;
    margin-left: 0% !important;
    margin-bottom: 10px !important;
    padding-left: 8% !important;
  }

  .contactDetails {
    padding-left: 8% !important;
  }

  #contactIcons {
    padding-bottom: 7%;
  }

  .contactIcons {
    padding-top: 15px;
  }

  .descriptionTitle {
    margin-bottom: 30px !important;
  }

  .modal-content-wrapper .image-modal-content {
    /* flex: 0 0 45%; */
  }
}
@media (max-width: 1000px) {
  .modal-content-wrapper {
    padding-bottom: 5rem !important;
  }
}
.modal-content-wrapper .image-modal-content:hover {
  transform: scale(1.03);
  transition: 300ms ease-in;
}
.modal-content-wrapper .image-modal-content img {
  -webkit-box-shadow: 0px 30px 40px -25px rgba(0, 0, 0, 1);
  -moz-box-shadow: 0px 30px 40px -25px rgba(0, 0, 0, 1);
  box-shadow: 0px 30px 40px -25px rgba(0, 0, 0, 1);
}

.modalImgMain {
  width: 14vw;
  height: 100%;
}

@media screen and (max-width: 1250px) {
  .modalImgMain {
    width: 25vw;
    height: 100%;
  }
}

/* modal popup styles */
.image-modal-popup {
  position: fixed;
  overflow: auto;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  animation: 500ms fadeIn;
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.image-modal-popup .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  margin-top: 30px;
  position: relative;
}

.image-modal-popup .description {
  text-align: center;
}
.image-modal-popup img {
  width: 70%;
  height: auto;
  margin-bottom: 10px;
  cursor: pointer;
}
.image-modal-popup span {
  position: absolute;
  top: 0;
  right: 10px;
  font-size: 4rem;
  color: red;
  cursor: pointer;
}
.image-modal-popup p {
  margin: 5px auto;
  font-size: 1.1rem;
}
.image-modal-popup a {
  margin-bottom: 5px;
  display: inline-block;
  color: #222;
  font-weight: 500;
  text-decoration: none;
  background: #fff;
  margin: 10px 10px;
  padding: 10px 15px;
  border-radius: 6px;
}
