@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600&display=swap");
:root {
  --yellow: #fcce18;
  --white: #fff;
  --black: #000;
  --blue-dark: #001248;
  --transition: all ease-in-out 0.2s;
}

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

*, *:before, *:after {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-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%;
}

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

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

button {
  cursor: pointer;
}

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

a, a:visited {
  text-decoration: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: 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;
}

.header {
  box-shadow: 3px 4px 15px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
}
.header__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.header__logo-text {
  font-weight: 600;
}
.header__logo-text:hover {
  text-decoration: none;
}
.footer__call-btn {
  position: fixed;
  right: 20px;
  bottom: 32px;
  width: 100px;
  height: 100px;
  background-color: rgba(55, 169, 2, 0.61);
  box-shadow: -7px 9px 14px rgba(0, 0, 0, 0.15);
  display: grid;
  place-content: center;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .footer__call-btn {
    width: 50px;
    height: 50px;
  }
}
.footer__call-btn:hover {
  filter: brightness(1.1);
}
.footer__call-img {
  width: 50px;
  min-width: 50px;
  height: 50px;
  min-height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .footer__call-img {
    width: 25px;
    min-width: 25px;
    height: 25px;
    min-height: 25px;
  }
}

html {
  font-style: normal;
  font-size: 18px;
}
@media (max-width: 767px) {
  html {
    font-size: 16px;
  }
}

html,
body {
  height: 100%;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  min-height: 100dvh;
}

* {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.33rem;
  transition: var(--transition);
}

h1,
.h1 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 2rem;
  line-height: 2.45rem;
  margin-bottom: 2.4rem;
}

h2,
.h2 {
  font-weight: 600;
  font-size: 1.33rem;
  line-height: 1.6rem;
  margin-bottom: 14px;
}

.page-wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

.main {
  flex: 1 1 auto;
}

.wrapper {
  width: 95%;
  max-width: 1100px;
  margin: 0 auto;
}

body.no-scroll {
  overflow: hidden;
}

.yellow {
  color: var(--yellow);
}

.uppercase {
  text-transform: uppercase;
}

.btn {
  font-weight: 600;
  padding: 12px 22px;
  box-shadow: 3px 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  border: 1px solid var(--blue-dark);
  color: var(--black);
  display: inline-flex;
  width: -moz-max-content;
  width: max-content;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
}
@media (max-width: 767px) {
  .btn {
    padding: 12px 15px;
  }
}
.btn:hover {
  text-decoration: none;
}
.btn_yellow {
  background-color: var(--yellow);
  color: var(--white);
  border: none;
}
.btn_blue {
  background-color: var(--blue-dark);
  color: var(--white);
  border: none;
}

a {
  color: var(--black);
}
a:hover {
  text-decoration: underline;
}

ul,
ol,
p {
  margin-bottom: 15px;
}

ul li:not(:last-child) {
  margin-bottom: 15px;
}

ol li {
  margin-left: 1.2rem;
}

section {
  margin-bottom: 50px;
}

.hero {
  background-image: url(../../img/hero.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 117px 0 192px;
}
@media (max-width: 991px) {
  .hero {
    padding: 60px 0;
  }
}
.hero__info-wrapper {
  width: 50%;
}
@media (max-width: 991px) {
  .hero__info-wrapper {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .hero__info-wrapper {
    width: 100%;
  }
}
.hero__info-wrapper * {
  color: var(--white);
}
.accept-list__list-item {
  display: inline-flex;
  width: 100%;
  align-items: center;
  gap: 10px;
}
.accept-list__list-item:before {
  content: "";
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  display: inline-block;
  background-image: url(../../img/acept.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.info__wrapper {
  display: grid;
  grid-template-columns: 1fr 40%;
  gap: 65px;
}
@media (max-width: 767px) {
  .info__wrapper {
    grid-template-columns: 100%;
    gap: 2rem;
  }
}
.info__text-wrapper {
  display: grid;
  gap: 15px;
}
.info__img-wrapper {
  display: grid;
  align-content: start;
}
.info__img {
  width: 100%;
  height: 100%;
  max-height: 350px;
  -o-object-fit: contain;
     object-fit: contain;
}

.line {
  position: relative;
  padding-left: 11px;
}
.line::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  display: inline-block;
  max-height: 310px;
  height: 100%;
  width: 1px;
  background-color: var(--yellow);
}

.banner {
  background-color: var(--yellow);
}
.banner__wrapper {
  display: grid;
  grid-template-columns: 1fr 250px;
  align-items: center;
  padding: 3.45rem 0;
  gap: 1rem;
}
@media (max-width: 767px) {
  .banner__wrapper {
    grid-template-columns: 100%;
  }
}
.banner__info-wrapper {
  display: grid;
  align-items: start;
  gap: 10px;
}
.banner__info-wrapper * {
  color: var(--white);
}
.banner__title {
  margin-bottom: 0;
}
.banner__btn {
  margin-left: auto;
}
@media (max-width: 767px) {
  .banner__btn {
    margin-left: 0;
  }
}

.list {
  background-image: url(../../img/kaska.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
}
@media (max-width: 991px) {
  .list {
    background-size: 200%;
    position: relative;
    isolation: isolate;
    background-position: center left;
  }
  .list:after {
    content: "";
    background-color: white;
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.5;
  }
}
.list__wrapper {
  display: grid;
}
.list__info-wrapper {
  width: 50%;
  margin-left: auto;
}
@media (max-width: 991px) {
  .list__info-wrapper {
    width: 100%;
  }
}

.phone-button {
}
.phone-button__number {
  display: inline-flex;
  width: unset!important;
  max-width: unset!important;
}
.phone-button__number img {
  width: 100%!important;
  max-width: 100%!important;
  object-fit: contain;
}
.phone-button__number.rem img {
  height: 1rem;
}
.phone-button__number.inverse img {
  filter: invert(100%);
}