
*{
  margin: 0;
  padding: 0;
}

/* FONTS */

@font-face {
    font-family: Montserrat;
    font-weight: 800;
    src: url('../fonts/Montserrat-ExtraBold.ttf');
    font-display: swap;
}

@font-face {
    font-family: Montserrat;
    font-weight: normal;
    src: url('../fonts/Montserrat-Regular.ttf');
    font-display: swap;
}

@font-face {
    font-family: Montserrat;
    font-weight: 300;
    src: url('../fonts/Montserrat-Light.ttf');
    font-display: swap;
}

@font-face {
    font-family: Montserrat;
    font-weight: 600;
    src: url('../fonts/Montserrat-SemiBold.ttf');
    font-display: swap;
}

@font-face {
    font-family: Montserrat;
    font-weight: 500;
    src: url('../fonts/Montserrat-Medium.ttf');
    font-display: swap;
}

/* HEADER */

#header{
  width: 100vw;
  max-width:100%;
  height: 20vw;
  background: linear-gradient(123.95deg, rgba(255, 216, 108, 0.25) 29.87%, rgba(239, 203, 104, 0.25) 78.08%), url('../img/header.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  display: grid;
  grid-template-rows: 5.208vw 1fr 5.208vw;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

#navbar{
  height: 5.208vw;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
a.menuA {
  margin-left: 0;
}

#logoCont{
  grid-column: 1;
  padding-left: 2.083vw;
  display: flex;
  align-items: center;
  height: 5.208vw;
}

#logoImg{
  background: url('../img/logo_white.svg');
  height: 3.1vw;
  width: 12vw;
  background-repeat: no-repeat;
  background-size: contain;
}

#logoTxt{
  font-family: Montserrat;
  font-weight: 500;
  font-size: 1.3vw;
}

#menuCont{
  grid-column: 2;
  padding-right: 2.083vw;
  display: flex;
  justify-content: flex-end;
  padding-top: 1.3vw;
}

.menuA{
  color: white;
  text-decoration: none;
  font-family: Montserrat;
  font-weight: 500;
  font-size: 1vw;
  text-transform: uppercase;
  margin-left: 2vw;
  transition: background 1s ease, box-shadow 1s ease;
  height: 2.6vw;
  border-radius: 2.604vw;
  line-height: 2.6vw;
  text-align: center;
}

li.menuA:hover{
  background: #E6DEC3;
  box-shadow: 10px 10px 20px rgba(207, 200, 176, 0.2), -10px -10px 20px rgba(207, 200, 176, 0.2), 10px -10px 20px rgba(253, 244, 215, 0.9), -10px 10px 25px rgba(207, 200, 176, 0.9), inset -1px 1px 2px rgba(253, 244, 215, 0.3), inset 1px -1px 2px rgba(207, 200, 176, 0.5);
}

.active{
  background: #E6DEC3;
  box-shadow: 10px 10px 20px rgba(207, 200, 176, 0.2), -10px -10px 20px rgba(207, 200, 176, 0.2), 10px -10px 20px rgba(253, 244, 215, 0.9), -10px 10px 25px rgba(207, 200, 176, 0.9), inset -1px 1px 2px rgba(253, 244, 215, 0.3), inset 1px -1px 2px rgba(207, 200, 176, 0.5);
}

#hMain{
  grid-row: 2/4;
  justify-self: center;
  display: grid;
  grid-template-rows: 1.2fr 1fr;
  justify-items: center;
}

#hMainP1{
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  font-size: 5.5vw;
  height: 5.5vw;
  transition: opacity 1.5s ease;
  display: none;
  align-self: flex-end;
}

#hMainP1 b{
  font-weight: 800;
}

.fadeIn{
  animation: fadeIn;
  animation-duration: 1s;
}

#hMainP2{
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  font-size: 2.75vw;
  transition: opacity 1.5s ease;
  display: none;
}

@-webkit-keyframes uparrow {
  0% { -webkit-transform: translateY(0);}
  100% { -webkit-transform: translateY(-0.4em);}
}

@-webkit-keyframes downarrow {
  0% { -webkit-transform: translateY(0);}
  100% { -webkit-transform: translateY(0.4em);}
}

#hLower{
  display: grid;
  grid-row: 3;
  grid-template-columns: 13.021vw 1fr 13.021vw;
}

#hArrow{
  grid-column: 2;
  background-image: url('../img/arrow_down.svg');
  background-repeat: no-repeat;
  background-size: contain;
  width: 3.646vw;
  height: 1.667vw;
  justify-self: center;
  align-self: center;
  -webkit-animation: downarrow 0.6s infinite alternate ease-in-out;
}

#hArrowA{
  width: 3.646vw;
  height: 1.667vw;
  display: block;
}

#lang{
  width: 5.5vw;
  height: 3.6vw;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;

  color: white;
  text-decoration: none;
  font-family: Montserrat;
  font-weight: 500;
  font-size: 1vw;
  text-transform: uppercase;
  margin-left: 1.5vw;
  transition: background 1s ease, box-shadow 1s ease, height 1s ease;
  border-radius: 1.604vw;

  margin-top: -0.313vw;
}

#lang a{
  width: 4.5vw;
  height: 2.6vw;
  line-height: 2.6vw;
  text-align: center;
  transition: background 1s ease, box-shadow 1s ease;
  border-radius: 2.604vw;
  margin-top: 0.521vw;
  text-decoration: none;
  color: white;
}

#lang a:hover{
  background: #E6DEC3;
  box-shadow: 5px 5px 10px rgba(207, 200, 176, 0.2), -5px -5px 10px rgba(207, 200, 176, 0.2), 5px -5px 10px rgba(253, 244, 215, 0.9), -5px 5px 13px rgba(207, 200, 176, 0.9), inset -1px 1px 2px rgba(253, 244, 215, 0.3), inset 1px -1px 2px rgba(207, 200, 176, 0.5);
}

/* SIDE MENU */

#sideMenu{
  width: 7.7vw;
  height: 100vh;
  background-color: #E6DEC3;
  top: 0;
  right: 0;
  position: fixed;
  overflow-x: hidden;
  z-index: 100;
  filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.25));
  display: none;
}

.animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s !important;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.sideMenuDown{
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  -webkit-animation-name: fadeInRightBig;
          animation-name: fadeInRightBig;
}
.sideMenuUp{
  display: grid !important;
  -webkit-animation-name: fadeOutRightBig;
          animation-name: fadeOutRightBig;
}

#smLogo{
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1.563vw;
}

#smLogoImg{
  background: url('../img/logo_black.svg');
  height: 1.8vw;
  width: 6.5vw;
  background-repeat: no-repeat;
  background-size: contain;
}

.smLogoTxt{
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 1.1vw;
}

#smMenu{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: right;
  height: 22vh;
  margin-top: -10vh;
}

.sidemenuA{
  color: black;
  text-decoration: none;
  font-family: Montserrat;
  font-style: normal;
  font-weight: 500;
  font-size: 0.9vw;
  margin-right: 0.781vw;
  transition: margin-right .5s ease;
  display: block;
  margin-bottom: 5px;
}

.sidemenuA:hover{
  margin-right: 1.5vw;
}

#smArrow{
  grid-row: 3;
  background-image: url('../img/arrow_up.svg');
  background-repeat: no-repeat;
  background-size: contain;
  width: 3.2vw;
  height: 1.667vw;
  justify-self: center;
  align-self: center;
  margin-bottom: 1.563vw;
}

#smArrowA{
  width: 3.2vw;
  height: 32px;
  display: block;
}

#smArrow:hover{
  -webkit-animation: uparrow 0.6s infinite alternate ease-in-out;
}

/* BURGER MENU */

#burgerButton{
  display: none;
  width: 8.333vw;
  height: 6.667vw;
  margin-right: 4vw;
  z-index: 101;
  cursor: pointer;
}

.burgerStroke{
  background-color: white;
  height: 0.500vw;
  position: absolute;
  transition: all 0.5s ease;
}

#burger1{
  width: 8.333vw;
  transform-origin: left;
}

#burger2{
  width: 5.833vw;
  margin-left: 2.500vw;
  margin-top: 3.333vw;
}

#burger3{
  width: 8.333vw;
  margin-top: 6.667vw;
  transform-origin: left;
}

#burgerMenu{
  top: 0;
  right: -70%;
  width: 70%;
  height: 100vh;
  position: fixed;
  background-color: rgba(230, 222, 195, 1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5x);
  

  z-index: 100;
  filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.25));
  display: none;
  transition: right 1s ease;

  grid-template-rows: 30% 1fr .5fr 1fr .5fr 1fr .5fr 1fr .5fr 1fr 30%;
  align-items: center;
  text-align: right;
}

.burgerMenuDown{
  display: grid !important;
  -webkit-animation-name: fadeInDownBig;
          animation-name: fadeInDownBig;
}
.burgerMenuUp{
  display: grid !important;
  -webkit-animation-name: fadeOutUpBig;
          animation-name: fadeOutUpBig;
}

.burgerButtonDown{
  display: block !important;
  -webkit-animation-name: fadeInDownBig;
          animation-name: fadeInDownBig;
}
.burgerButtonUp{
  display: block !important;
  -webkit-animation-name: fadeOutUpBig;
          animation-name: fadeOutUpBig;
}

#burgerMenuP{
  height: 16.667vw;
  justify-self: flex-start;
  line-height: 16.667vw;
  align-self: flex-start;
  margin-left: 10vw;
  font-family: 'Montserrat';
  font-size: 4vw;
  font-weight: 500;
  text-transform: uppercase;
  color: #000;
}

#burgerLangCont{
  grid-row: 11;
  justify-self: center;
  align-self: flex-end;

  font-family: Montserrat;
  font-style: normal;
  font-weight: 500;
  font-size: 4vw;

  text-transform: uppercase;
  margin-bottom: 6vw;
}

.burgerLang{
  cursor: pointer;
  text-decoration: none;
  color: black;
}

.burgerLangActive{
  border-bottom: 3px solid white;
}

#burgerLangCont a{
  margin-right: 6vw;
}
#burgerLangCont a:last-child {
  margin-right: 0;
}

#burgerNavbar{
  position: fixed;
  width: 100%;
  background: #e6dec3;
  height: 16.667vw;
  top: 0;
  z-index: 99;

  display: none;
  align-items: center;
  box-shadow: 0px 10px 50px rgb(0 0 0 / 25%);
}

#burgerNavLogo{
  width: 29vw;
  height: 13.1vw;
  background: url(../img/logo_white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 5vw;
}

#burgerButtonNav{
  display: none;
  width: 8.333vw;
  height: 6.667vw;
  z-index: 101;
  cursor: pointer;
  margin-right: 6vw;
  position: fixed;
  right: 0;
  top: 0;
  margin-top: 5vw;
}

#burgerNav1{
  width: 8.333vw;
  transform-origin: left;
}

#burgerNav2{
  width: 5.833vw;
  margin-left: 2.500vw;
  margin-top: 3.333vw;
}

#burgerNav3{
  width: 8.333vw;
  margin-top: 6.667vw;
  transform-origin: left;
}

/* MIDDLE */

#middleCont{
  width: 100vw;
  max-width:100%;
  background-color: #EDEEEF;
  display: grid;
  grid-template-columns: 1fr 7.7vw;

  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 1.094vw;
  line-height: 1.5vw;

  color: #000000;

  transition: height 1s ease;

  overflow: hidden;
}

#middleTxt{
  grid-column: 1;
  padding-left: 9.115vw;
  padding-right: 9.115vw;
  padding-top: 3.906vw;
  padding-bottom: 3.906vw;
}

#middleTxt p a{
  text-decoration: none;
  color: black;
  margin-left: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity .5s ease;
}

#middleTxt_8_Cont{
  display: flex;
  flex-direction: row;
}

#middleTxt_8_Cont a{
  text-decoration: none;
  color: black;
  margin-left: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity .5s ease;
}

/* MAIN */

#main{
  width: 100vw;
  max-width: 100%;
  background-color: #E8EAEC;
  box-shadow: 0px -10px 50px rgba(0, 0, 0, 0.25);
  display: grid;
  grid-template-columns: 1fr 7.7vw;
  grid-template-rows: 64vw 29vw 117vw 16vw;
  font-family: Montserrat;
  font-style: normal;
  color: #000000;
  background-image: url(../../img/wave_1.svg),url(../../img/wave_1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position-y: 23vw,76vw;
}

/* STEPS */

#steps{
  display: grid;
  grid-template-rows: 15.625vw 15.625vw 15.625vw;
  grid-template-columns: 1fr 1fr;
  padding-top: 3.906vw;
  padding-bottom: 3.906vw;
  height: 46.875vw;
}

.stepsP{
  grid-row: 1;
  grid-column: 1;
  font-weight: 300;
  font-size: 2.604vw;
  margin-left: 5.115vw;
}

.hl{
  grid-row: 2;
  grid-column: 1;
  width: 0;
  height: 0.156vw;
  background-color: black;
  transition: width 1s ease;
}

.stepCont{
  width: 33.854vw;
  height: 10.417vw;
  justify-self: center;
  align-self: center;
  background: linear-gradient(135deg, #DCDEE0 0%, #F4F6F8 100%);
  box-shadow: 15px 15px 30px rgba(209, 211, 212, 0.2), -15px -15px 30px rgba(209, 211, 212, 0.2), 15px -15px 30px rgba(255, 255, 255, 0.9), -15px 15px 38px rgba(209, 211, 212, 0.9), inset -1px 1px 2px rgba(255, 255, 255, 0.3), inset 1px -1px 2px rgba(209, 211, 212, 0.5);
  border-radius: 2.604vw;

  display: grid;
  grid-template-rows: 3.5vw 1fr;
  align-items: center;

  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 1.1vw;
}

.stepCont p{
  margin: 2.604vw;
  margin-top: 0;
  margin-bottom: 0;
}

.stepCont ul{
  margin: 2.604vw;
  margin-left: 4.3vw;
  margin-top: 0;
  color: #c4c4c4;
}

.stepCont ul li span{
  color: black;
}

#step_1{
  grid-row: 1;
  grid-column: 1/3;
  width: 38.854vw;
}

#step_2{
  grid-row: 2;
  grid-column: 1;
  justify-self: right;
  margin-right: 3.906vw;
}

#step_3{
  grid-row: 2;
  grid-column: 2;
  justify-self: left;
  margin-left: 3.906vw;
}

#step_4{
  grid-row: 3;
  grid-column: 1/3;
  width: 38.854vw;
}

/* FOR WHO */

#forWho{
  height: 36.458vw;
  grid-column: 1;
  display: grid;
  grid-template-rows: 4.167vw 0.156vw 1fr;
  font-size: 0.990vw;
}

#aboutSystemTxt{
  grid-row: 3;
  padding-left: 9.115vw;
  padding-right: 9.115vw;
  padding-top: 3.906vw;
  padding-bottom: 3.906vw;
}

/* USEFULL */

#usefull{
  grid-column: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 10.625vw;
  height: 133vw;
  box-shadow: 0px 50px 50px -50px rgb(0 0 0 / 25%);
  z-index: 10;
}

.usefullCont{
  width: 29vw;
  justify-self: center;
  background: linear-gradient(135deg, #DCDEE0 0%, #F4F6F8 100%);
  box-shadow: 15px 15px 30px rgba(209, 211, 212, 0.2), -15px -15px 30px rgba(209, 211, 212, 0.2), 15px -15px 30px rgba(255, 255, 255, 0.9), -15px 15px 38px rgba(209, 211, 212, 0.9), inset -1px 1px 2px rgba(255, 255, 255, 0.3), inset 1px -1px 2px rgba(209, 211, 212, 0.5);
  border-radius: 2.604vw;

  display: grid;
  grid-template-rows: 3.5vw 1fr;

  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 1vw;
  }

.usefullCont p, .usefullCont h3{
  margin: 2.604vw;
}

.usefullCont ul{
  margin: 2.604vw;
  margin-left: 4.3vw;
  color: #c4c4c4;
}

.usefullCont ul span{
  color: black;
}

er{
  font-weight: 600;
}

#usefull_1{
  height: 28.8vw;
  grid-row: 1;
  grid-column: 1;
}

#usefull_2{
  height: 37vw;
  margin-top: 13vw;
  grid-row: 1;
  grid-column: 2;
}

#usefull_3{
  height: 34.2vw;
  margin-top: 38vw;
  grid-row: 1;
  grid-column: 1;
}

#usefull_4{
  margin-top: 59vw;
  height: 52.2vw;
  grid-row: 1;
  grid-column: 2;
}

#usefull_5{
  height: 39.5vw;
  margin-top: 81vw;
  grid-row: 1;
  grid-column: 1;
}

#usefullWarning{
  grid-column: 1/3;

  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 1.1vw;

  padding-left: 9.115vw;
  padding-right: 9.115vw;
  padding-top: 3.906vw;
  padding-bottom: 3.906vw;
}

#usefullWarning b{
  font-weight: 600;
}

/* FOOTER */

#footer{
  grid-column: 1/3;
  display: grid;
  background-color: #E6DEC3;
  height: 16vw;
  z-index: 1;
  grid-template-columns: 7vw 1fr 1fr 7vw 7.7vw
}

#ftlogo{
  grid-column: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#ftLogoImg{
  background: url(../../img/logo_black.svg);
  height: 5.729vw;
  width: 14vw;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

#ftLogoTxt{
  font-family: Montserrat;
  font-style: normal;
  font-weight: 500;
  font-size: 1.13vw;
}

#ftInfo{
  grid-column: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 2.5vw 2.5vw 2.5vw 1fr;
  align-items: center;

  font-family: Montserrat;
  font-style: normal;
  font-size: 0.938vw;
}

#ftInfo p b{
  font-weight: 500;
}


hr{
  height: 1px;
  border-width: 0;
  color: white;
  background-color: white
}

nav ul li, aside ul li {
  list-style: none;
}
#menuCont_1 {
  width: 6.1vw;
}
#menuCont_2 {
  width: 13vw;
}
#menuCont_3 {
  width: 8vw;
}
#menuCont_4 {
  width: 6.5vw;
}
#menuCont_5 {
  width: 8vw;
}
.fw-600 {
  font-weight: 600;
  margin: 0 2.604vw;
  font-size: 1.1vw;
  
}
footer {
  font-family: Montserrat;
  font-style: normal;
  color: #000000;
}

#ftInfo a {
  color: #000000;
  text-decoration: none;
  transition: .5s;
}
#ftInfo a:hover {
  color: rgba(0, 0, 0, .5);
}
#ftInfo{
  grid-column: 3;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 2.5vw 2.5vw 2.5vw 1fr;
  align-items: center;

  font-family: Montserrat;
  font-style: normal;
  font-size: 0.938vw;
}

#ftInfo p b{
  font-weight: 500;
}

#phoneNumberPP{
  grid-row: 2;
  grid-column: 2;
  align-self:flex-end;
}

#phoneNumberP_1{
  grid-row: 3; margin-left: 1.302vw; grid-column: 2;
}

#phoneNumberP_2{
  grid-row: 4; margin-left: 1.302vw; grid-column: 2;
  
}

#phoneNumberP_3{
  grid-row: 3; margin-left: 1.302vw;
  
}

#phoneNumberP_4{
  grid-row: 4; margin-left: 1.302vw;
}

#emailPP{
  grid-row: 2; grid-column: 3;
  align-self:flex-end;
}

#email{
  grid-row: 3;
  margin-left: 1.302vw;
  grid-column: 3;
}
#email2{
  grid-row: 4;
  margin-left: 1.302vw;
  grid-column: 3;
}