:root {
  --index: calc(1vh + 1vw);
  --Color: #0d0d0d;
}

@font-face {
  font-family: ephesis;
  src: url(./Fonts/Ephesis/Ephesis-Regular.ttf);
}
@font-face {
  font-family: roboto;
  src: url(./Fonts/Roboto/Roboto-Black.ttf);
}
@font-face {
  font-family: dancingScript;
  src: url(./Fonts/Dancing_Script/DancingScript-VariableFont_wght.ttf);
}
@font-face {
  font-family: monserat;
  src: url(./Fonts/Montserrat/static/Montserrat-ExtraLight.ttf);
}
@font-face {
  font-family: kanit;
  src: url(./Fonts/Kanit/Kanit-SemiBold.ttf);
}
@font-face {
  font-family: raleway;
  src: url(./Fonts/Raleway/Raleway-VariableFont_wght.ttf);
}

body {
  background-color: rgb(0, 0, 0);
  color: white;
  margin: 0;
  background-image: url(./img/Background\ 2.jpg);
  background-size: contain;
  /*   background-attachment: fixed; */
  background-position: center center;
  /* background-position-y: 20px; */
  position: relative;
  overflow-x: hidden;
  max-width: 100%;
  user-select: none;
}
::-webkit-scrollbar {
  width: 0.5vw;
  background-color: var(--Color);
}
::-webkit-scrollbar-thumb {
  background-color: rgb(32, 32, 32);

  border-radius: 1vw;
}

/*--------  Header  -------------*/

header {
  background-color: #0d0d0d;
  padding: 0.6vw 2vw;
  font-size: 1.5vw;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 100%;
  border-bottom: 0.1vw solid grey;
  height: 5.5vw;
}
.logoSection {
  grid-column: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.headerLogo {
  width: 8vw;
  cursor: pointer;
  z-index: 2;
}
.headerLinks {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
  grid-column: 2/6;
}
.headerLinks a {
  text-decoration: none;
}
.headerLink {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  padding: 1vw;
  margin: 0;
  transition: transform ease-out 0.2s, color ease-out 0.2s;
  color: white;
}
.headerLink:hover {
  color: #e2bf6e;

  transform: scale(1.2);
}
.headerLinkSelected {
  color: #e2bf6e;

  transform: scale(1.2);
}
.headerLinkImg {
  width: 2.2vw;
  margin-right: 0.9vw;
  transition: transform ease 0.2s, display ease 0.2s;
}
.headerLinkImgHover {
  width: 2.2vw;
  margin-right: 0.9vw;
  transition: all ease 0.2s;
  display: none;
}

.hrHeader {
  width: 100%;
  margin-top: 0;
}

/*-----------  Burger  ------------*/
.burgerMenu {
  font-size: 4vw;

  justify-content: right;
  align-items: center;
  grid-column: 5;
  padding-right: 1.2vw;
  color: #e2bf6e;
  display: none;
}
.burgerInactive {
  padding: 0px 1.3vw 0.4vw 1.3vw;
  border: 0.1vw solid rgb(128, 128, 128);
  border-radius: 0.8vw;
  cursor: pointer;
  font-weight: 500;
  transition: box-shadow ease 0.2s, background-color ease 0.2s;
  user-select: none;
  text-shadow: 0 0 0.2vw rgba(255, 255, 255, 0.6);
}
.burgerInactive:hover {
  background-color: rgba(255, 255, 255, 0.082);
  box-shadow: 0 0 1vw rgba(255, 255, 255, 0.62);
}
/* .burgerInactive:active {
  transform: scale(0.95);
  background-color: transparent;
  box-shadow: none;
  color: #7e6a3d;
  border: 0.1vw solid rgb(157, 157, 157);
} */
.burgerActive {
  padding: 0px 1.3vw 0.4vw 1.3vw;
  border: 0.1vw solid rgb(128, 128, 128);
  border-radius: 0.8vw;
  cursor: pointer;
  font-weight: 500;
  transition: box-shadow ease 0.2s, background-color ease 0.2s;
  user-select: none;
  text-shadow: 0 0 0.2vw rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.082);
  box-shadow: 0 0 1vw rgba(171, 171, 171, 0.62);
}
.burgerActive:hover {
  background-color: rgba(255, 255, 255, 0.082);
  box-shadow: 0 0 1vw rgba(255, 255, 255, 0.62);
}
/* .burgerActive:active {
  transform: scale(0.95);
  background-color: transparent;
  box-shadow: none;
} */
/* .burgerLinkImg {
  width: 35px;
  margin-right: 17px;
  transition: all ease 0.2s;
} */

.burgerLinks {
  width: 100vw;
  font-size: 3.1vw;
  font-family: Arial, Helvetica, sans-serif;
  position: absolute;
  background-color: #0d0d0df4;
  display: none;
  top: 13.5vw;
  margin: 0;
  z-index: 10;
}
.burgerLinks a {
  text-decoration: none;
}
.burgerLink {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10vw;
  cursor: pointer;
  transition: color ease 0.2s, background-color ease 0.2s;
  color: white;
  opacity: 0;
}
.burgerLink:hover {
  background-color: rgba(83, 83, 83, 0.38);
  text-decoration: underline;
  color: #e2bf6e;
}

/* --------------   -Section1 ----------------*/

.homePage {
  min-height: calc(100vh - 12vw);
}

.section1 {
  margin: 3vw 2.2vw;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(6, 1fr);
}

.section1Info {
  grid-column: 5/9;
  grid-row: 1/8;
  display: grid;
  grid-template-rows: repeat(8, 1fr);
  flex-direction: column;
  grid-template-columns: 100%;
  padding-top: 0px;
  margin-top: 1vw;
}

.contactText {
  cursor: pointer;
}
.contactText:hover {
  text-decoration: underline;
  color: #e2bf6e;
}

.section1Logo {
  grid-column: 1/5;
  grid-row: 1/7;
  display: flex;
  background-color: rgba(0, 0, 0, 0);
  justify-content: center;
  align-items: center;
  margin-top: -2vw;
}
#section1LogoImg {
  width: 34vw;
  opacity: 0;
  animation: logo 1.5s ease forwards;
  animation-delay: 0.3s;
}
.section1h2 {
  font-family: raleway;
  font-size: 3.4vw !important;
  text-align: center;
  color: white;
  opacity: 0;
  animation: logo 2s ease forwards;
  animation-delay: 0.5s;
  grid-row: 1/6;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  grid-column: 1;
}
.section1Buts {
  grid-row: 6/9;
  grid-column: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  font-size: 1.7vw;
  opacity: 0;
  animation: logo 2s ease forwards;
  animation-delay: 0.8s;
}
.section1Buts a {
  text-decoration: none;
}
.contactUsBut {
  font-family: raleway;
  background-color: #0d0d0d4f;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.498);
  padding: 0.4vw 0.8vw;
  border: 0.1vw solid #e2bf6e;
  border-radius: 0.5vw;
  cursor: pointer;
  transition: color ease 0.3s, background-color ease 0.3s;
}
.readMoreBut {
  font-family: raleway;
  background-color: #0d0d0d4f;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.526);
  padding: 0.4vw 0.8vw;
  border: 0.1vw solid #e2bf6e;
  border-radius: 0.5vw;
  cursor: pointer;
  transition: color ease 0.3s, background-color ease 0.3s;
}

.contactUsBut:hover {
  background-color: #0d0d0d;
  color: white;
}
.readMoreBut:hover {
  background-color: #0d0d0d;
  color: white;
}
#section1Bg {
  position: absolute;
  z-index: -1;
  width: 100%;
  left: 0;
  top: 6.6vw;
}
#section1BgPhone {
  position: absolute;
  z-index: -1;
  width: 100%;
  left: 0;
  top: 6.6vw;
  display: none;
}

/* --------------   section2  --------------*/

.section2 {
  background-color: rgba(96, 96, 96, 0);
  padding-top: 2vw;
  display: grid;
  grid-template-columns: 40% 60%;
  margin-top: 7.5vw;
  opacity: 0;
  animation: logo 1.2s ease-in forwards;
  animation-delay: 1s;
}
.section2Gallery {
  margin: auto;
  background-color: rgba(0, 128, 0, 0);
  grid-column: 2;
  position: relative;
  border-radius: 1vw;
  display: flex;
  justify-content: center;
}
.section2Infos {
  background-color: rgba(255, 255, 255, 0);
  grid-column: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: raleway;
}
.section2Info {
  padding: 0 0 0 6vw;
  font-size: 1.6vw;
  color: #ffffff;
  text-align: left;
  line-height: 2.3vw;
  opacity: 0;
}
.section2GalleryImg {
  width: 50vw;
  border-radius: 0.2vw;
}

/*-------------- section 3  ----------------*/
.section3 {
  background-color: rgba(96, 96, 96, 0);
  margin-top: 6vw;
  display: grid;
  grid-template-columns: 60% 40%;

  opacity: 0;
  animation: logo 1.2s ease-in forwards;
  animation-delay: 1s;
}
.section3Gallery {
  margin: auto;
  background-color: rgba(0, 128, 0, 0);
  grid-column: 1;
  grid-row: 1;
  position: relative;
  border-radius: 1vw;
  display: flex;
  justify-content: center;
}
.section3Infos {
  background-color: rgba(255, 255, 255, 0);
  grid-column: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  grid-row: 1;
  margin-top: 0;
}
.section3Info {
  padding: 0 6vw 0 0px;
  font-size: 1.6vw;
  color: #ffffff;
  text-align: left;
  line-height: 2.3vw;
  font-family: raleway;
  opacity: 0;
}
.section3GalleryImg {
  width: 50vw;
  border-radius: 0.3vw;
}

/*----------section4------------*/
.section4 {
  background-color: rgba(96, 96, 96, 0);
  margin-top: 6vw;
  display: grid;
  grid-template-columns: 40% 60%;

  opacity: 0;
  animation: logo 1.2s ease-in forwards;
  animation-delay: 1s;
  margin-bottom: 6vw;
}
.section4Gallery {
  margin: auto;
  background-color: rgba(0, 128, 0, 0);
  grid-column: 2;
  grid-row: 1;
  position: relative;
  border-radius: 0.5vw;
  display: flex;
  justify-content: center;
}
.section4Infos {
  background-color: rgba(255, 255, 255, 0);
  grid-column: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  grid-row: 1;
  margin-top: 0;
}
.section4Info {
  padding: 0 0px 0 6vw;
  font-size: 1.6vw;
  color: #ffffff;
  text-align: left;
  line-height: 2.3vw;
  font-family: raleway;
  opacity: 0;
}
.section4GalleryImg {
  width: 50vw;
  border-radius: 0.3vw;
}
/*--------------safety-----------*/
.section5 {
  position: relative;
  background-color: rgba(255, 255, 255, 0);
  display: grid;
  width: 100%;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: (100%);
}
.section5 img {
  width: 15vw;
}
.safetyimg {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
/*------------- footer  -------------*/
footer {
  position: absolute;

  width: 100%;
  box-sizing: border-box;
  background-color: #0d0d0d;
  padding: 1.3vw 1.2vw;

  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-around;
  max-width: 100%;
  height: 5vw;
  border-top: 0.1vw solid grey;
}

.section1Icon {
  width: 1.7vw;
  margin-right: 0.7vw;
}
.icon2 {
  height: 2vw;
  width: 1.3vw;
}
.contactLine {
  font-family: monserat;
  text-align: left;
  display: flex;
  align-items: center;
  font-size: 1.3vw;
  font-weight: 100 !important;
}
.adressLink {
  color: white;
  text-decoration: none;
  transition: color ease 0.2s, text-decoration ease 0.2s;
}
.adressLink:hover {
  color: #e2bf6e;
  text-decoration: underline;
}
@media (min-width: 667px) and (orientation: portrait) {
  .section1Buts {
    grid-row: 4/9;
    grid-column: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    font-size: 2.5vw;
    opacity: 0;
    animation: logo 2s ease forwards;
    animation-delay: 0.8s;
  }
  .section1Logo {
    grid-column: 1/5;
    grid-row: 1/6;
    display: flex;
    background-color: rgba(0, 0, 0, 0);
    justify-content: center;
    align-items: center;
    margin-top: -2vw;
  }
  #section1LogoImg {
    width: 36vw;
    opacity: 0;
    animation: logo 1.5s ease forwards;
    animation-delay: 0.3s;
  }
  .section1h2 {
    font-family: raleway;
    font-size: 3.8vw !important;
    text-align: center;
    color: white;
    opacity: 0;
    animation: logo 2s ease forwards;
    animation-delay: 0.5s;
    grid-row: 1/6;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 1;
  }
  .section1Buts a {
    text-decoration: none;
  }
  .contactUsBut {
    font-family: raleway;
    background-color: #0d0d0d4f;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.498);
    padding: 0.4vw 0.8vw;
    border: 0.1vw solid #e2bf6e;
    border-radius: 0.5vw;
    cursor: pointer;
    transition: color ease 0.3s, background-color ease 0.3s;
  }
  .readMoreBut {
    font-family: raleway;
    background-color: #0d0d0d4f;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.526);
    padding: 0.4vw 0.8vw;
    border: 0.1vw solid #e2bf6e;
    border-radius: 0.5vw;
    cursor: pointer;
    transition: color ease 0.3s, background-color ease 0.3s;
  }
  header {
    background-color: #0d0d0d;
    padding: 0.6vw 2vw;
    font-size: 1.9vw;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    max-width: 100%;
    border-bottom: 0.1vw solid grey;
    height: 6.5vw;
  }
  .logoSection {
    grid-column: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .headerLogo {
    width: 9.5vw;
    cursor: pointer;
    z-index: 2;
  }
  .headerLinks {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    grid-column: 2/6;
  }
  .headerLinks a {
    text-decoration: none;
  }
  .headerLink {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    padding: 1vw;
    margin: 0;
    transition: transform ease-out 0.2s, color ease-out 0.2s;
    color: white;
  }
  .headerLink:hover {
    color: #e2bf6e;

    transform: scale(1.2);
  }
  .headerLinkSelected {
    color: #e2bf6e;

    transform: scale(1.2);
  }
  .headerLinkImg {
    width: 3vw;
    margin-right: 0.9vw;
    transition: transform ease 0.2s, display ease 0.2s;
  }
  .headerLinkImgHover {
    width: 2.2vw;
    margin-right: 0.9vw;
    transition: all ease 0.2s;
    display: none;
  }
  .hrHeader {
    width: 100%;
    margin-top: 0;
  }

  footer {
    position: absolute;

    width: 100%;
    box-sizing: border-box;
    background-color: #0d0d0d;
    padding: 1.3vw 1.2vw;

    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 100%;
    height: 6vw;
    border-top: 0.1vw solid grey;
  }

  .section1Icon {
    width: 2.2vw;
    margin-right: 0.7vw;
  }
  .icon2 {
    height: 2.5vw;
    width: 1.8vw;
  }
  .contactLine {
    font-family: monserat;
    text-align: left;
    display: flex;
    align-items: center;
    font-size: 1.6vw;
    font-weight: 100 !important;
  }
  .adressLink {
    color: white;
    text-decoration: none;
    transition: color ease 0.2s, text-decoration ease 0.2s;
  }
  .adressLink:hover {
    color: #e2bf6e;
    text-decoration: underline;
  }
}

@media (max-width: 666px) {
  .headerLinks {
    display: none;
  }
  .burgerMenu {
    display: flex;
  }
  header {
    height: 12vw;
  }
  .headerLogo {
    width: 16vw;
  }
  .homePage {
    min-height: calc(100vh - 22vw);
  }
  #section1Bg {
    top: 13.1vw;
  }
}
/* @media (max-width: 767px) {
  .section2Info {
    opacity: 1;
  }
  .section3Info {
    opacity: 1;
  }
  .section4Info {
    opacity: 1;
  }
} */
@media only screen and (max-width: 666px) and (orientation: portrait) {
  header {
    height: 16vw;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    max-width: 100vw;
  }
  .headerLogo {
    width: 23vw;
  }
  .homePage {
    min-height: calc(100vh - 28vw);
  }
  .burgerMenu {
    font-size: 6vw;
    padding-right: 2vw;
  }
  .burgerInactive {
    padding: 0px 1.9vw 0.8vw 1.9vw;
    border-radius: 1.3vw;
  }
  .burgerActive {
    padding: 0px 1.9vw 0.8vw 1.9vw;
    border-radius: 1.3vw;
  }
  .burgerLinks {
    font-size: 4.5vw;
    position: fixed;
    top: 17vw;
  }
  .burgerLink {
    height: 16vw;
  }
  .burgerInactive:hover {
    background-color: transparent;
    box-shadow: none;
  }
  .burgerActive:hover {
    background-color: rgba(106, 106, 106, 0.082);
    box-shadow: 0 0 1vw rgba(163, 163, 163, 0.62);
  }
  .section1 {
    margin: 6vw 2.2vw 6vw 2.2vw;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(6, 1fr);
  }

  .section1Info {
    grid-column: 5/8;
    grid-row: 1/7;
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    flex-direction: column;
    grid-template-columns: 100%;
    padding-top: 0px;
  }

  .contactText {
    cursor: pointer;
  }
  .contactText:hover {
    text-decoration: underline;
    color: #e2bf6e;
  }

  .section1Logo {
    grid-column: 1/6;
    grid-row: 1/7;
    display: flex;
    background-color: rgba(0, 0, 0, 0);
    justify-content: center;
    align-items: center;
    margin-top: 20vw;
  }
  #section1LogoImg {
    width: 55vw;
    opacity: 0;
    animation: logo 1.5s ease forwards;
    animation-delay: 0.3s;
  }
  .section1h2 {
    display: none;
  }
  .section1Buts {
    grid-row: 1/3;
    grid-column: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    font-size: 4.2vw;
    opacity: 0;
    animation: logo 2s ease forwards;
    animation-delay: 0.8s;
    position: relative;
    margin-top: 20vw;
  }
  .section1Buts a {
    text-decoration: none;
  }
  .contactUsBut {
    font-family: raleway;
    background-color: #0d0d0d4f;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.498);
    padding: 0vw 1vw;
    border: 0.1vw solid #e2bf6e;
    border-radius: 1.5vw;
    cursor: pointer;
    transition: color ease 0.3s, background-color ease 0.3s;
    min-width: 25vw;
    min-height: 7vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.7vw;
  }
  .readMoreBut {
    font-family: raleway;
    background-color: #0d0d0d4f;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.526);
    padding: 0 1vw;
    border: 0.1vw solid #e2bf6e;
    border-radius: 1.5vw;
    cursor: pointer;
    transition: color ease 0.3s, background-color ease 0.3s;
    min-width: 25vw;
    min-height: 7vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.7vw;
  }

  .contactUsBut:hover {
    background-color: #0d0d0d;
    color: white;
  }
  .readMoreBut:hover {
    background-color: #0d0d0d;
    color: white;
  }
  #section1Bg {
    position: absolute;
    z-index: -1;
    width: 100%;
    left: 0;
    top: 14vw;
    display: none;
  }
  #section1BgPhone {
    position: absolute;
    z-index: -1;
    width: 100%;
    left: 0;
    top: 9vw;
    display: block;
  }

  /*-------------SECTION2------------*/
  .section2 {
    background-color: rgba(96, 96, 96, 0);
    padding-top: 2vw;
    display: grid;
    grid-template-rows: 50% 50%;
    grid-template-columns: 100%;
    margin-top: 10vw;
    opacity: 0;
    animation: logo 1.2s ease-in forwards;
    animation-delay: 1s;
  }
  .section2Gallery {
    margin: auto;
    background-color: rgba(0, 128, 0, 0);
    grid-column: 1;
    grid-row: 1;
    position: relative;
    border-radius: 1vw;
    display: flex;
    justify-content: center;
  }
  .section2Infos {
    background-color: rgba(255, 255, 255, 0);
    grid-row: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: raleway;
  }
  .section2Info {
    padding: 4vw 7.5vw 0 7.5vw;
    font-size: 4.5vw;
    color: #ffffff;
    text-align: left;
    line-height: 7vw;
    opacity: 1;
  }
  .section2GalleryImg {
    width: 85vw;
    border-radius: 1.5vw;
  }

  /*-------SECTION3------------*/
  .section3 {
    margin-top: 6vw;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 50% 50%;
  }
  .section3Gallery {
    margin: auto;
    background-color: rgba(0, 128, 0, 0);
    grid-column: 1;
    grid-row: 1;
    position: relative;
    border-radius: 1.5vw;
    display: flex;
    justify-content: center;
  }
  .section3Infos {
    background-color: rgba(255, 255, 255, 0);
    grid-column: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    grid-row: 2;
    margin-top: 0;
  }
  .section3Info {
    padding: 4vw 7.5vw 0 7.5vw;
    font-size: 4.5vw;
    color: #ffffff;
    text-align: left;
    line-height: 7vw;
    font-family: raleway;
    opacity: 1;
  }
  .section3GalleryImg {
    width: 85vw;
    border-radius: 1.5vw;
  }

  /*----------section4------------*/
  .section4 {
    background-color: rgba(96, 96, 96, 0);
    margin-top: 2vw;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 50% 50%;
    opacity: 0;
    animation: logo 1.2s ease-in forwards;
    animation-delay: 1s;
    margin-bottom: 15vw;
  }
  .section4Gallery {
    margin: auto;
    background-color: rgba(0, 128, 0, 0);
    grid-column: 1;
    grid-row: 1;
    position: relative;
    border-radius: 0.5vw;
    display: flex;
    justify-content: center;
  }
  .section4Infos {
    background-color: rgba(255, 255, 255, 0);
    grid-column: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    grid-row: 2;
    margin-top: 0;
  }
  .section4Info {
    padding: 4vw 7.5vw 0 7.5vw;
    font-size: 4.5vw;
    color: #ffffff;
    text-align: left;
    line-height: 7vw;
    font-family: raleway;
    opacity: 1;
  }
  .section4GalleryImg {
    width: 85vw;
    border-radius: 1.5vw;
  }

  /*-----------Section safety--------*/
  .section5 {
    position: relative;
    background-color: rgba(255, 255, 255, 0);
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: (auto);
  }
  .section5 img {
    width: 35vw;
  }
  .safetyimg {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  /*-------footer----------*/
  footer {
    position: absolute;
    width: 100%;
    box-sizing: border-box;
    background-color: #0d0d0d;
    padding: 5vw 1.2vw;

    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    height: 40vw;
    border-top: 0.1vw solid grey;
  }

  .section1Icon {
    width: 5vw;
    margin-right: 2.2vw;
  }
  .icon2 {
    height: 5.2vw;
    width: 3vw;
    margin-right: 3vw;
    margin-left: 1vw;
  }
  .contactLine {
    font-family: monserat;
    text-align: left;
    display: flex;
    align-items: center;
    font-size: 4vw;
    font-weight: 100 !important;
  }
  .adressLink {
    color: white;
    text-decoration: none;
    transition: color ease 0.2s, text-decoration ease 0.2s;
  }
  .adressLink:hover {
    color: #e2bf6e;
    text-decoration: underline;
  }
}
/* @media (max-width: 590px) {
  #section1LogoImg {
    width: 220px;
    margin-top: -10px;
  }
  .section1Info {
    margin-left: 0px;
  }
  .section1h2 {
    font-size: 13px !important;
    margin-bottom: 30px;
  }
  .section1h2 {
    font-size: 22px !important;
    margin-bottom: 10px;
  }
  .section1Buts {
    font-size: 12px;
    grid-row: 3/9;
    margin-top: -20px;
  }
  #section1Bg {
    height: 260px;
  }
}
@media (max-width: 510px) {
  .burgerMenu {
    font-size: 25px;
    padding-right: 5px;
  }
  .section1h2 {
    font-size: 20px !important;
    margin-bottom: 10px;
  }
  .contactLine {
    display: none;
  }
  #section1Bg {
    height: 240px;
  }
  .section1 {
    margin-top: -50px;
  }
  .section1Buts {
    font-size: 12px;
    grid-row: 3/9;
    margin-top: -40px;
  }
}
@media (max-width: 400px) {
  .burgerLinks {
    font-size: 17px;
  }
} */

/*-----------heights-----------------*/

/* @media (max-height: 700px) {
  .headerLogo {
    width: 120px;
  }
}
@media (max-height: 570px) {
  .headerLogo {
    width: 105px;
  }
  header {
    font-size: 14.5px;
  }
  .headerLinkImg {
    width: 32px;
  }
  #section1Bg {
    top: 90px;
  }
}
 */
/*-----------------ANIMATION---------------------*/
@keyframes burgerLinks {
  from {
    opacity: 0;
    height: 0;
  }
  to {
    opacity: 100;
    height: 50vw;
  }
}
@keyframes burgerLinksReverse {
  from {
    opacity: 100;
    height: 50vw;
  }
  to {
    opacity: 0;
    height: 0px;
  }
}
@keyframes burgerLinksPhone {
  from {
    opacity: 0;
    height: 0;
  }
  to {
    opacity: 100;
    height: 80vw;
  }
}
@keyframes burgerLinksReversePhone {
  from {
    opacity: 100;
    height: 80vw;
  }
  to {
    opacity: 0;
    height: 0px;
  }
}
@keyframes burgerLink {
  from {
    opacity: 0;
  }
  to {
    opacity: 100;
  }
}
@keyframes burgerLinkReverse {
  from {
    opacity: 100;
  }
  to {
    opacity: 0;
  }
}
@keyframes logo {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes leftAppear {
  from {
    opacity: 0;
    transform: translate(-10vw, 10vw);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes rightAppear {
  from {
    opacity: 0;
    transform: translate(10vw, 10vw);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
