
html, body {
  font-family: termina, sans-serif;
  color: #111;
  background: #fff;
  transition: 0.3s ease-out;
  overflow-x: hidden;
    padding: 0 !important;
    margin: 0 !important;
  max-width: 100%;
  width: 100%;
  overscroll-behavior: none;
}

/* stylelint-disable */
@if (type-of($container-width) != number) {
    @error "`#{$container-width}` needs to be a number."
}
/* stylelint-enable */

.o-container {
    margin-right: auto;
    margin-left: auto;
    max-width: rem($container-width + (40px*2));

    @media (max-width: $to-small) {
        padding-right: 20px;
        padding-left: 20px;
    }

    @media (min-width: $from-small) {
        padding-right: rem(40px);
        padding-left: rem(40px);
    }
}


.main_header {
    
    background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-image: url(../img/bg.jpg);
}


.the_logo {
    z-index: 1;
    width: 185px !important;
    position: absolute;
    left: 70px;
    top: 60px;
}


.lables {
    margin-top: 20px;
}



section:not(#sectionPin) {
  min-height: 100vh;
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 2rem;
  padding: 50px 10vw;
  margin: auto;
  place-items: center;
}

.images_scale {
  height: 80vh;
  width: auto;
  object-fit: cover;
}

.images_scale2 {
  height: 80vh;
  width: auto;
  object-fit: cover;
}


h1 {
  font-size: 6rem;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 1rem;
  position: absolute;
  top: 10vw;
  left: 10vw;
  z-index: 4;
  overflow-wrap: break-word;
  hyphens: auto;
}

h1 span {
  display: block;
}
h2 {
  font-size: 2rem;
  max-width: 400px;
}
.credit {
  font-family: Termina, sans-serif;
}
.credit a {
  color: #111;
}
* {
  box-sizing: border-box;
}
#sectionPin {
  height: 100vh;
  overflow: hidden;
  display: flex;
  left: 0;
  background: #111;
  color: #fff;
}
.pin-wrap {
  height: 100vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 50px 10vw;
}
.pin-wrap > * {
  min-width: 60vw;
  padding: 0 5vw;
}

p {
  position: absolute;
  bottom: 10vw;
  right: 10vw;
  width: 200px;
  line-height: 1.5;
}

@media (max-width: 769px) {
    
.images_scale2 {
  height: auto;
  width: 100%;
  object-fit: cover;
}
    
.lables {
    height: 36px;
}
    
    
    
.the_logo {
    top: 60px;
    left: 50px;
    width: 200px !important;
}

    
    p {
  position: absolute;
  bottom: 80px;
    left: 50px;

}
    
    .coming {
        display: none;
    }
    
    
    
h1 {
  font-size: 30pt !important;
  top: 150px;

}
    
    .top_sec {
    padding-top 60px;
    margin-top: 170px;
}
    
}



