@import url('https://fonts.googleapis.com/css2?family=Rajdhani&family=Teko:wght@300&display=swap');
html {
    scroll-behavior: smooth;
  }
*{
    margin: 0;
    padding: 0;
    font-family: 'Rajdhani', sans-serif;
}
body{
    height: 100vh;
}
/* Навбар */
.skew-menu{
    width: 100%;
    text-align: center;
    animation: skew__navbar 0.2s linear forwards;
    display: flex;
    position: fixed;
    top: 10px;
    z-index: 5;
    justify-content: center;
}
.skew__menu__container ul{
    justify-content: center;
    display: flex;
    list-style: none;
    transform: skewX(-25deg);
    flex-wrap: nowrap;
}
.skew-menu ul li:first-child{
      border-radius: 8px 0 0 8px;
      border-left: #8CF4FF 4px solid;
      border-bottom:#8CF4FF 4px solid ;
      box-shadow: #24272a 0 0 10px;
  }
.skew-menu ul li:last-child{
      border-radius: 0 8px 8px 0;
      border-right: #8CF4FF 4px solid;
      border-bottom:#8CF4FF 4px solid ;
      box-shadow: #24272a 0 0 10px;
  }
.skew-menu ul li:nth-child(3){
    border-bottom: #4c5862  4px solid;
}
.skew-menu ul li:nth-child(3):hover{
    border-bottom: #8CF4FF 4px solid;
}
.skew-menu ul li:nth-child(2):hover{
    border-bottom: #8CF4FF 4px solid;
}
.skew-menu ul li {
    font-weight: 700;
    font-size: 16px;
    margin-right: 5px;
    letter-spacing: 2px;
    background: transparent;
    float: left;
    text-transform: uppercase;
    color: rgb(160, 158, 158);
    background-color: #24272a;
}
  .skew-menu ul li:hover{
      background-color: #3C464F;
      color: #8CF4FF;
  }
  .skew-menu ul li a {
      display: block;
      padding: 20px 30px;
      color: inherit;
      text-decoration: none;
      transform: skew(25deg);
} 
/* Анимация Navabr ввиде появления */
@keyframes skew__navbar{
    0%{
        transform: scale(0);
    }
    100%{
        transform: scale(1);
    }
}
/* contact */
/* Фон на весь экран */
section.container{
    height: 100%;
    min-height: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    background-image: url(../img/America__desert.jpg);
    background-size: cover;
    background-position: center;
}
/* Блок главный контакт */
section.contact{
    width: 100%;
    height: 450px;
    display: flex;
}
/* Задаю 30/70% */
.left{
    width: 30%;
    height: 100%;
}
.right{
    width: 70%;
    height: auto;
    background-color: rgba(60, 70, 79,0.5);
    box-shadow: 0 0 30px 1px black;
    display: flex;
    padding: 0 10px 0 0;
}
/* Делю 50/50 стилизую left__text и left__input */
.vv{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.text__about__us{
    position: relative;
    font-size: 4em;
    color: #24272a;
    font-weight: 600;
    top: -25%;
}

/* Стилизую input */
.feedback-input {
    letter-spacing: 3px;
    font-weight:500;
    font-size: 18px;
    border-radius: 5px;
    line-height: 22px;
    background-color: #f55200;
    border: 2px #24272a solid;
    opacity: 0.7;
    border-left: #8CF4FF 2px solid;
    border-top: #8CF4FF 2px solid;
    transition: all 0.3s;
    padding: 13px;
    margin-bottom: 15px;
    width:100%;
    box-sizing: border-box;
    outline:0;
  }
  .feedback-input:focus{ 
      border:3px solid #3C464F;
      opacity: 1;
}
.feedback-input:hover{
    opacity: 1;
}
  textarea {
    height: 150px;
    line-height: 150%;
    resize:vertical;
  }
::-webkit-input-placeholder{
    color: #24272a;
}
  [type="submit"] {
    letter-spacing: 3px;
    font-family: 'Teko', sans-serif;
    width: 100%;
    background:#8CF4FF;
    border-radius:5px;
    cursor:pointer;
    color:white;
    font-size:32px;
    padding-top:10px;
    padding-bottom:10px;
    transition: all 0.3s;
    margin-top:-4px;
    font-weight:700;
    opacity: 0.7;
  }
  [type="submit"]:hover { 
      opacity: 1;
      color: #3C464F;
    }
/* Бургер */
#menu__toggle {
    opacity: 0;
  }
  
  #menu__toggle:checked ~ .menu__btn > span {
    transform: rotate(45deg);
  }
  #menu__toggle:checked ~ .menu__btn > span::before {
    top: 0;
    transform: rotate(0);
  }
  #menu__toggle:checked ~ .menu__btn > span::after {
    top: 0;
    transform: rotate(90deg);
  }
  #menu__toggle:checked ~ .menu__box {
    visibility: visible;
    left: 0;
  }
  
  .menu__btn {
    display: flex;
    align-items: center;
    position: fixed;
    top: 20px;
    left: 20px;
  
    width: 40px;
    height: 40px;
  
    cursor: pointer;
    z-index: 1;
  }
  
  .menu__btn > span,
  .menu__btn > span::before,
  .menu__btn > span::after {
    display: block;
    position: absolute;
  
    width: 100%;
    height: 2px;
  
    background-color: #233335;
  
    transition-duration: .25s;
  }
  .menu__btn > span::before {
    content: '';
    top: -8px;
  }
  .menu__btn > span::after {
    content: '';
    top: 8px;
  }
  
  .menu__box {
    display: block;
    position: fixed;
    visibility: hidden;
    top: 0;
    left: -100%;
  
    width: 300px;
    height: 100%;
  
    margin: 0;
    padding: 80px 0;
  
    list-style: none;
  
    background-color: rgba(49, 49, 49, 0.8);
    box-shadow: 1px 0px 6px rgba(0, 0, 0, .2);
  
    transition-duration: .25s;
  }
  
  .menu__item {
    display: block;
    padding: 12px 24px;
  
    color: #CFD8DC;
  
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 600;
  
    text-decoration: none;
  
    transition-duration: .25s;
  }
  .menu__item:hover {
    background-color: #233335;
  }
  .hamburger-menu{
    z-index: 999;
    position: absolute;
  }
/* АДАПТАЦИЯ */
@media (min-width:1023px){
  .hamburger-menu{
    visibility: hidden;
  }
}
@media (max-width:1023px){
    .left{
        display: none;
    }
    .right{
        width: 100%;
    }
    .hamburger-menu{
      visibility: hidden;
    }
}
@media (max-width:767px) {
    .left__text{
        display: none;
    }
    .input__container{
        width: 70%;
    }
    form{
        width: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
    .skew-menu{
        display: none;
    }
    .burger__cont{
        visibility: visible;
        display: flex;
        justify-content: flex-start;
        padding-left: 13px;
    }
    .hamburger-menu{
      visibility: visible;
    }
}
/* preload ***************************************/
.preloader{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: black;
  z-index: 1000;
  opacity: 1;
  visibility: visible;
  justify-content: center;
  align-items: center;
  display: flex;
}

.circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  animation: rotate 2.5s linear infinite;
}
.circle2 {
  box-shadow: 0px 5px 5px 3px #ff6004;
}
@keyframes rotate {
  100%{
      transform: rotate(360deg);
  }
}
/* когда preload кончит */
.done{
  opacity: 0;
  visibility: hidden;
}