@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: "Montserrat", sans-serif;
  background-color: #000;
}

body::-webkit-scrollbar {
  width: 0;
}

body.lock {
  overflow: hidden;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-ms-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
.main__wrapper {
  width: 100%;
  height: 100%;
  min-height: 100vh;
   position: relative;
   overflow-x: clip;
}

/*********HEADER*********/
/*********HEADER*********/
/*********HEADER*********/

.header {
  width: 100%;
  height: 165px;
  padding: 54px 19px 0px 45px;
  position: absolute;
  top: 0;
  z-index: 1000;
}

.header__container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;

}

.header__logo {
  width: 334px;
  height: 111px;
}

.header__burger {
  height: 62px;
  width: 230px;

  position: relative;
}

.header__burger-button {
  width: 62px;
  height: 62px;
  background: linear-gradient(180deg, #1F9D96 0%, #9D9D9D 100%);
  box-shadow: -9px 11px 13px -1px #00000066;
  border-radius: 51px;
  position: absolute;
  right: 26px;
  padding: 13px;
}
.header__burger-button img{
width: 100%;
height: 100%;
object-fit: contain;
}
.burger__content {
  position: absolute;
  width: 230px;
  height: 424px;
  border-radius: 16px;
  background-image: url('../images/ui/burger_back.svg');
  top: calc(62px + 13px);
  right: 0;

  /* closed state */
  opacity: 0;
  visibility: hidden;
  transform: translateX(120%);
  transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s;
}

.burger__content.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.burger__content nav {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  padding:  16px 26px 33px 0px;
}
.burger__content nav a {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  display: block;
  height: 24px;
}
.burger__content nav a:hover {
  border-bottom: 2px solid rgba(31, 157, 150, 1);
}
/*********FOOTER***********/
/*********FOOTER***********/
/*********FOOTER***********/
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media only screen and (max-width: 1024px) {
  .header{
        width: 100%;
    height: 165px;
    padding: 20px 10px 0px 20px;
  }
  .header__container a{

  }
  .header__logo {
        width: 295px;
    height: 70px;
  }
    .header__container a img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
        .burger__content nav{
        background-color: #433e42e8;
        border-radius: 15px;
    }
}