
/* Цвета - 
	Синий:  		rgb(41,35,92) или #29235C
	Темно-синий:  	rgb(37,32,77) или  #25204D
	Золотой:  rgb(193,161,82) или #C1A152
	Серебряный:  rgb(241,238,223) или #F1EEDF
	*/


@font-face {
    font-family: "Avenir";
    src: url('../fonts/AvenirNextCyr-Regular.eot');
    src: url('../fonts/AvenirNextCyr-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/AvenirNextCyr-Regular.woff') format('woff'),
    url('../fonts/AvenirNextCyr-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
	font-display: swap;
    }

@font-face {
    font-family: "Avenir";
    src: url('../fonts/AvenirNextCyr-Medium.eot');
    src: url('../fonts/AvenirNextCyr-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/AvenirNextCyr-Medium.woff') format('woff'),
    url('../fonts/AvenirNextCyr-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    }	
	
@font-face {
    font-family: 'Avenir';
    src: url('../fonts/AvenirNextCyr-Bold.eot');
    src: url('../fonts/AvenirNextCyr-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/AvenirNextCyr-Bold.woff') format('woff'),
    url('../fonts/AvenirNextCyr-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
	font-display: swap;
    }
	
@font-face {
    font-family: 'Avenir';
    src: url('../fonts/AvenirNextCyr-Heavy.eot');
    src: url('../fonts/AvenirNextCyr-Heavy.eot?#iefix') format('embedded-opentype'),
    url('../fonts/AvenirNextCyr-Heavy.woff') format('woff'),
    url('../fonts/AvenirNextCyr-Heavy.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    }
	
@font-face {
    font-family: 'Avenir';
    src: url('../fonts/AvenirNextCyr-Light.eot');
    src: url('../fonts/AvenirNextCyr-Light.eot?#iefix') format('embedded-opentype'),
    url('../fonts/AvenirNextCyr-Light.woff') format('woff'),
    url('../fonts/AvenirNextCyr-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    }

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

button,
input,
textarea {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
}

button:focus {
  box-shadow: none !important;
}

*:focus {
  outline: none;
}

body {
  font-family: "Avenir";
  font-weight: 400;
  color: #1b1b1b;
  background-color: #fff;
}

a {
  display: inline-block;
  font: inherit;
  color: inherit;
  transition: 300ms;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  max-height: 100%;
}

a img {
  border: none;
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
	    margin-bottom: 1em;
}

li {
	    margin-bottom: 0.3em;
}

.container {
  max-width: 1170px;
  margin: 0 auto;
}

@media screen and (max-width: 1260px) {
  .container {
    width: 970px;
  }
}

@media screen and (max-width: 991px) {
  .container {
    width: 750px;
  }
}

@media screen and (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 35px;
  }
}

@media screen and (max-width: 460px) {
  .container {
    padding: 0 20px;
  }
}

.wrapper {
  overflow: hidden;
  position: relative;
}

.header {
  padding: 17px 0;
  position: relative;
  z-index: 100;
  background: #ffffff;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.02);
  position: fixed;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .header {
    padding: 24px 0;
  }
}

@media only screen and (max-width: 420px) {
  .header {
    padding: 15px 0;
  }
}

.header__items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 100;
}

@media only screen and (max-width: 991px) {
  .header__logo {
    width: 160px;
  }
}

@media only screen and (max-width: 420px) {
  .header__logo {
    width: 140px;
  }
}

@media only screen and (max-width: 420px) {
  .header__logo {
    width: 120px;
  }
}

.header__nav {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .header__nav {
    flex-direction: column;
    position: fixed;
    background-color: #fff;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 50;
    left: 0;
    top: 0;
    display: none;
  }
  .header__nav.active {
    display: flex;
  }
}

.header__nav li {
  margin-right: 40px;
}

@media only screen and (max-width: 991px) {
  .header__nav li {
    margin-right: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .header__nav li {
    margin-right: 0;
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) and (max-width: 420px) {
  .header__nav li {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .header__nav li:last-child {
    margin-bottom: 0;
  }
}

.header__nav li:last-child {
  margin-right: 0;
}

.header__nav li a {
  font-size: 16px;
}

@media only screen and (max-width: 991px) {
  .header__nav li a {
    font-size: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .header__nav li a {
    font-size: 30px;
  }
}

@media only screen and (max-width: 420px) {
  .header__nav li a {
    font-size: 24px;
  }
}

.header__nav li a:hover {
  color: #3082de;
}

.header__end {
  display: flex;
  align-items: center;
}

.header__tel {
  font-size: 22px;
  font-weight: 600;
  color: #3082de;
  position: relative;
  z-index: 100;
}

@media only screen and (max-width: 991px) {
  .header__tel {
    font-size: 18px;
  }
}

@media only screen and (max-width: 767px) {
  .header__tel {
    font-size: 20px;
    margin-right: 20px;
    display: block;
  }
}

@media only screen and (max-width: 420px) {
  .header__tel {
    font-size: 16px;
  }
}

@media only screen and (max-width: 420px) {
  .header__tel {
    font-size: 14px;
    margin-right: 10px;
  }
}

.burger {
  display: none;
  width: 36px;
}

@media only screen and (max-width: 767px) {
  .burger {
    display: block;
    position: relative;
    z-index: 100;
  }
}

.burger a {
  display: block;
  cursor: pointer;
  padding: 12px 0;
}

.burger a span {
  position: relative;
  display: block;
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: #1b1b1b;
  transition: all 0.2s ease-in-out;
}

.burger a span:before, .burger a span:after {
  content: "";
  width: 36px;
  height: 3px;
  position: absolute;
  left: 0;
  background: #1b1b1b;
  border-radius: 2px;
  transition: all 0.2s ease-in-out;
}

.burger a span:before {
  top: -8px;
}

.burger a span:after {
  top: 8px;
}

.burger a.active span {
  background: transparent;
}

.burger a.active span:before {
  transform: rotate(45deg) translate(5px, 6px);
}

.burger a.active span:after {
  transform: rotate(-45deg) translate(5px, -6px);
}

/*end menu*/
.showcase {
  background: url(../images/showcase.png) no-repeat;
  background-size: cover;
  background-position: center;
}

.showcase__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding-top: 80px;
}

@media only screen and (max-width: 991px) {
  .showcase__inner {
    min-height: auto;
    padding: 160px 0 80px 0;
  }
}

.showcase__image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -242px;
  bottom: 0;
  transition: 1000ms;
  opacity: 0;
  transform: translateX(50px);
}

.showcase__image.element-show {
  transform: none;
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .showcase__image.element-show {
    transform: translateX(-38px);
  }
}

@media only screen and (max-width: 1700px) {
  .showcase__image {
    width: 1000px;
    right: -140px;
  }
}

@media only screen and (max-width: 1240px) {
  .showcase__image {
    width: 800px;
    right: -100px;
  }
}

@media only screen and (max-width: 991px) {
  .showcase__image {
    width: 700px;
    right: -150px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase__image {
    right: -60px;
    opacity: 0.8;
    position: static;
    width: 100%;
    margin-bottom: 20px;
  }
}

.showcase__title {
  max-width: 660px;
  font-size: 46px;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  z-index: 5;
  line-height: 66px;
  margin-bottom: 24px;
  transition: 1000ms;
  opacity: 0;
  transform: translateX(-50px);
  color: #C1A152;
}

.showcase__title.element-show {
  transform: none;
  opacity: 1;
}

@media only screen and (max-width: 1240px) {
  .showcase__title {
    font-size: 36px;
    line-height: 44px;
    max-width: 480px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase__title {
    font-size: 30px;
    line-height: 44px;
    text-align: center;
    margin-bottom: 35px;
  }
}

.showcase__title span {
  font-weight: 700;
  color: #C1A152;
}

@media only screen and (max-width: 767px) {
  .showcase__title span {
    display: block;
  }
}

.showcase__info {
  display: flex;
  align-items: flex-start;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 43px;
  max-width: 600px;
  position: relative;
  z-index: 5;
  transition: 1000ms;
  opacity: 0;
  transform: translateX(-50px);
  color: #C1A152;
}

.showcase__info.element-show {
  transform: none;
  opacity: 1;
}

@media only screen and (max-width: 1240px) {
  .showcase__info {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 35px;
    max-width: 500px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase__info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.showcase__info span {
  font-weight: 700;
}

.showcase__info img {
  min-width: 45px;
  width: 45px;
  margin-right: 15px;
  transform: translateY(3px);
}

@media only screen and (max-width: 767px) {
  .showcase__info img {
    margin-right: 0;
    transform: none;
    margin-bottom: 15px;
  }
}

.showcase__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 312px;
  height: 72px;
  background: #C1A152;
  box-shadow: -17px 7px 69px rgba(0, 0, 0, 0.11);
  border-radius: 0px;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin-top: 80px;
  margin-bottom: 80px;
}

.showcase__btn.element-show {
  transform: none;
  opacity: 1;
}

@media only screen and (max-width: 1240px) {
  .showcase__btn {
    font-size: 18px;
    width: 320px;
    height: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase__btn {
    width: 100%;
    height: 60px;
    font-size: 16px;
  }
}

.showcase__btn:hover {
   background: #F1EEDF;
   color: #C1A152;
}


/*Show case new */

.showcaseN {
  padding: 0 0 0 0;
  min-height: 400px;
  background-color: #F1EEDF;
  background: url(../images/map.svg) no-repeat;
  background-size: 100%;
  background-position: top;
  position: relative;
}

@media screen and (max-width: 767px) {
  .showcaseN {
    padding: 170px 0 70px 0;
    background-position: 70% 100%;
  }
}

.showcaseN__title {
  font-size: 40px;
  font-weight: 400;
  color: #C1A152;
  margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .showcaseN__title {
    font-size: 32px;
  }
}

.showcaseN__info {
  font-size: 20px;
  line-height: 31px;
  margin-bottom: 0px;
  width: 30%; 
}

.showcaseN__info2 {
  font-size: 20px;
  line-height: 31px;
  margin-left: 70%;
  margin-top: 40%;
  width: 30%; 
}

.showcaseN__info3 {
  font-size: 20px;
  line-height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top:40px;
}

.showcaseN__info2_bold{
	font-size: 40px;
	font-weight: 600;
	color: #C1A152;
}

@media screen and (max-width: 767px) {
  .showcaseN__info {
    font-size: 18px;
    line-height: 23px;
  }
}

.showcaseN__price {
  font-size: 20px;
  font-style: italic;
  color: #0f1b5ac9;
  margin-bottom: 32px;
}

@media screen and (max-width: 767px) {
  .showcaseN__price {
    font-size: 16px;
    margin-bottom: 68px;
  }
}

.showcaseN__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 312px;
  height: 72px;
  background: #C1A152;
  box-shadow: -17px 7px 69px rgba(0, 0, 0, 0.11);
  border-radius: 0px;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin-top: 80px;
  margin-bottom: 80px;
}


@media screen and (max-width: 767px) {
  .showcaseN__btn {
    height: 60px;
    width: 100%;
  }
}

.showcaseN__btn:hover {
  background: #25204D;
}

.showcaseN__call {
  padding: 40px 65px 40px 58px;
  background: #ffffff;
  box-shadow: -17px 7px 69px rgba(0, 0, 0, 0.11);
  border-radius: 16px;
  display: flex;
  align-items: center;
  position: absolute;
  right: -30px;
  bottom: -108px;
  max-width: 763px;
}

@media screen and (max-width: 1300px) {
  .showcaseN__call {
    max-width: 600px;
    padding: 30px 65px 30px 40px;
  }
}

@media screen and (max-width: 991px) {
  .showcaseN__call {
    max-width: 100%;
    right: auto;
    left: 0;
    width: 100%;
    bottom: -180px;
  }
}

@media screen and (max-width: 767px) {
  .showcaseN__call {
    padding: 50px 16px;
    bottom: -200px;
  }
}

.showcaseN__call-title {
  font-size: 40px;
  font-weight: 900;
  color: #0f1b5a;
  margin-bottom: 14px;
}

@media screen and (max-width: 1300px) {
  .showcaseN__call-title {
    font-size: 36px;
  }
}

@media screen and (max-width: 767px) {
  .showcaseN__call-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
}

.showcaseN__call-info {
  font-size: 22px;
  line-height: 29px;
}

@media screen and (max-width: 1300px) {
  .showcaseN__call-info {
    font-size: 20px;
    line-height: 27px;
  }
}

@media screen and (max-width: 767px) {
  .showcaseN__call-info {
    font-size: 14px;
    line-height: 18px;
  }
}

.showcaseN__call-image {
  min-width: 96px;
  width: 96px;
  margin-right: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .showcaseN__call-image {
    min-width: 80px;
    width: 80px;
    margin-right: 8px;
  }
}

.showcaseN__store{
  margin-top: 30px;
}

.showcaseN__items {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
}

@media screen and (max-width: 767px) {
  .showcaseN__items {
    display: block;
  }
}

.showcaseN__store-title{
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #0f1b5a;
  margin-bottom: 15px;
}

@media screen and (max-width: 1300px) {
  .showcaseN__store-title{
    font-size: 22px;
  }
}

@media screen and (max-width: 767px) {
  .showcaseN__store-title{
    font-size: 18px;
  }
}

.showcaseN__store-head{
  font-size: 18px;
  margin-bottom: 16px;
  text-align: center;
  color: #050a20cc;
}

@media screen and (max-width: 767px) {
  .showcaseN__store-head{
    text-align: center;
  }
}

.showcaseN__store-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 32px;
}

@media screen and (max-width: 767px) {
  .showcaseN__store-item {
    justify-content: center;
    margin-bottom: 12px;
    margin-right: 0;
  }
}

.showcaseN__store-item:hover {
  transform: scale(1.1);
}

.showcaseN__store-item:last-child {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .showcaseN__store-item:last-child {
    margin-bottom: 0;
  }
}

.bonus {
  padding: 70px 0 100px 0;
  background: url(../images/showcase2.svg) no-repeat;
  background-size: cover;
  background-position: center;
}

@media only screen and (max-width: 1240px) {
  .bonus {
    padding: 60px 0 80px 0;
  }
}

@media only screen and (max-width: 991px) {
  .bonus {
    padding: 60px 0 80px 0;
  }
}

.bonus__title {
  text-align: center;
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 18px;
  transition: 1000ms;
  opacity: 0;
  transform: translateY(50px);
  font-weight: 400;
  color: #C1A152; 
}

.bonus__title.element-show {
  transform: none;
  opacity: 1;
}

@media only screen and (max-width: 1240px) {
  .bonus__title {
    font-size: 42px;
	font-weight: 400;
  }
}

@media only screen and (max-width: 991px) {
  .bonus__title {
    font-size: 36px;
  }
}

@media only screen and (max-width: 767px) {
  .bonus__title {
    font-size: 32px;
    margin-bottom: 15px;
  }
}

.bonus__head {
  font-size: 32px;
  text-align: center;
  margin-bottom: 45px;
  transition: 1000ms;
  opacity: 0;
  transform: translateY(50px);
}

.bonus__head.element-show {
  transform: none;
  opacity: 1;
}

@media only screen and (max-width: 1240px) {
  .bonus__head {
    font-size: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .bonus__head {
    font-size: 26px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .bonus__head {
    font-size: 24px;
    text-align: center;
  }
}

.bonus__head span {
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .bonus__head span {
    display: block;
  }
}

.bonus__item {
  padding: 38px 0;
  background: #55c264;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  font-size: 40px;
  margin-bottom: 41px;
  transition: 1000ms;
  opacity: 0;
  transform: translateY(50px);
}

.bonus__item.element-show {
  transform: none;
  opacity: 1;
}

@media only screen and (max-width: 1240px) {
  .bonus__item {
    font-size: 36px;
    padding: 35px 0;
  }
}

@media only screen and (max-width: 991px) {
  .bonus__item {
    padding: 30px;
    font-size: 28px;
  }
}

@media only screen and (max-width: 767px) {
  .bonus__item {
    padding: 20px 1px;
    font-size: 24px;
    margin-bottom: 30px;
  }
}

.bonus__item span {
  font-weight: 700;
}

.bonus__text {
  text-align: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: 1000ms;
  opacity: 0;
  transform: translateY(50px);
}

.bonus__text.element-show {
  transform: none;
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .bonus__text {
    font-size: 16px;
  }
}

.bonus__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 340px;
  height: 90px;
  background: #f0132f;
  box-shadow: 0px 20px 70px rgba(240, 19, 47, 0.4);
  border-radius: 10px;
  color: #fff;
  font-size: 19px;
  font-weight: 500;
  margin: 0 auto;
  transition: 1000ms;
  opacity: 0;
  transform: translateY(50px);
}

.bonus__btn.element-show {
  transform: none;
  opacity: 1;
}

@media only screen and (max-width: 1240px) {
  .bonus__btn {
    font-size: 18px;
    width: 320px;
    height: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .bonus__btn {
    width: 100%;
    height: 60px;
    font-size: 16px;
  }
}

.bonus__btn:hover {
  box-shadow: 0px 20px 70px rgba(240, 19, 47, 0.7);
}



.polis {
  padding: 75px 0 40px 0;
}

@media only screen and (max-width: 991px) {
  .polis {
    padding: 60px 0 30px 0;
  }
}

@media only screen and (max-width: 767px) {
  .polis {
    padding: 40px 0 17px 0;
  }
}


.polis_gray {
  padding: 75px 0 40px 0;
  background-color: #F1EEDF;
}

@media only screen and (max-width: 991px) {
  .polis_gray {
    padding: 60px 0 30px 0;
	background-color: #F1EEDF;
  }
}

@media only screen and (max-width: 767px) {
  .polis_gray {
    padding: 40px 0 17px 0;
	background-color: #F1EEDF;
  }
}
 
/* forms */
.form {
  margin-bottom: 80px;
}

@media screen and (max-width: 991px) {
  .form {
    margin-bottom: 48px;
  }
}

.form__content {
  background: #f6f7f9;
  box-shadow: -17px 7px 69px rgba(0, 0, 0, 0.11);
  border-radius: 16px;
  padding: 56px 108px;
  margin-bottom: 48px;
}

@media screen and (max-width: 1300px) {
  .form__content {
    padding: 48px 100px 40px 100px;
  }
}

@media screen and (max-width: 991px) {
  .form__content {
    padding: 48px 40px 40px 40px;
  }
}

@media screen and (max-width: 767px) {
  .form__content {
    padding: 48px 12px 40px 12px;
    margin-bottom: 24px;
  }
}

.form__title {
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  color: #0f1b5a;
  margin-bottom: 48px;
}

@media screen and (max-width: 991px) {
  .form__title {
    font-size: 16px;
    margin-bottom: 32px;
  }
}

@media screen and (max-width: 767px) {
  .form__title {
    font-size: 14px;
    line-height: 18px;
  }
}

.form__inputs {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

@media screen and (max-width: 767px) {
  .form__inputs {
    display: block;
    margin-bottom: 16px;
  }
}

.form__inputs input {
  width: 100%;
  margin-right: 24px;
  height: 64px;
  background: #ffffff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: 0 16px;
  font-size: 18px;
  border: 0;
}

@media screen and (max-width: 767px) {
  .form__inputs input {
    height: 56px;
    margin-right: 0;
    margin-bottom: 16px;
  }
}

.form__inputs input::-moz-placeholder {
  color: #050a2099;
}

.form__inputs input::-ms-input-placeholder {
  color: #050a2099;
}

.form__inputs input::placeholder {
  color: #050a2099;
}

.form__inputs input:last-child {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .form__inputs input:last-child {
    margin-bottom: 16px;
  }
}

.form__area {
  margin-bottom: 32px;
}

@media screen and (max-width: 767px) {
  .form__area {
    margin-bottom: 36px;
  }
}

.form__area textarea {
  width: 100%;
  height: 112px;
  padding: 16px;
  resize: none;
  border: 0;
  background: #ffffff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .form__area textarea {
    height: 80px;
  }
}

.form__area textarea::-moz-placeholder {
  color: #050a2099;
}

.form__area textarea::-ms-input-placeholder {
  color: #050a2099;
}

.form__area textarea::placeholder {
  color: #050a2099;
}

.form__end {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .form__end {
    flex-direction: column-reverse;
  }
}

/* old 
.form__btn {
  display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 300ms;
  cursor: pointer;
  height: 72px;
  border: 0;
  width: 100%;
  margin-left: 40px;
  background: #249e85;
  box-shadow: -17px 7px 69px rgba(0, 0, 0, 0.11);
  border-radius: 16px;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
} */

.form__btn {
  display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 300ms;
  cursor: pointer;
  height: 72px;
  border: 0;
  width: 90%;
  margin-left: 40px;
  background: #f68026;
  box-shadow: -17px 7px 69px rgba(0, 0, 0, 0.11);
  border-radius: 24px;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
}



@media screen and (max-width: 767px) {
  .form__btn {
    width: 100%;
    height: 60px;
    margin-left: 0;
    margin-bottom: 16px;
  }
}

.form__btn:hover {
  background: #ff9f56;
}

.form__text {
  width: 100%;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 16px;
  color: rgba(0, 0, 0, 0.75);
}

@media screen and (max-width: 767px) {
  .form__text {
    font-size: 10px;
    line-height: 12px;
    text-align: center;
  }
}

.form__info {
  font-size: 22px;
  line-height: 28px;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .form__info {
    font-size: 18px;
    line-height: 24px;
  }
}

@media screen and (max-width: 767px) {
  .form__info {
    font-size: 14px;
    line-height: 18px;
  }
}

.form__info a {
  font-weight: 900;
  color: #f68026;
}

/* forms end*/



/* перечень услуг */

.comfort {
  padding: 24px 0 80px 0;
}

@media screen and (max-width: 1300px) {
  .comfort {
    padding: 48px 0 60px 0;
  }
}

@media screen and (max-width: 991px) {
  .comfort {
    padding: 48px 0;
  }
}

.comfort__title {
  font-size: 32px;
  font-weight: 900;
  color: #0f1b5a;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(50px);
  transition: 500ms;
}

.comfort__title.element-show {
  opacity: 1;
  transform: none;
}

@media screen and (max-width: 991px) {
  .comfort__title {
    font-size: 28px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {
  .comfort__title {
    font-size: 22px;
    font-weight: 600;
  }
}

.comfort__subtitle {
  font-size: 22px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(50px);
  transition: 500ms;
}

.comfort__subtitle.element-show {
  opacity: 1;
  transform: none;
}

@media screen and (max-width: 991px) {
  .comfort__subtitle {
    margin-bottom: 32px;
  }
}

@media screen and (max-width: 767px) {
  .comfort__subtitle {
    font-size: 14px;
  }
}

.comfort__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -moz-column-gap: 8px;
  column-gap: 8px;
  height: 100%;
}

@media screen and (max-width: 1300px) {
  .comfort__items {
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  .comfort__items {
    grid-template-columns: 1fr;
    row-gap: 16px;

  }
}

.comfort__item {
  background: #ffffff;
  box-shadow: -17px 7px 69px rgba(0, 0, 0, 0.11);
  border-radius: 16px;
  padding: 24px 12px 32px 12px;
  opacity: 0;
  transform: translateY(50px);
  transition: 500ms;
  height: 100%;
}

.comfort__item.element-show {
  opacity: 1;
  transform: none;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .comfort__item {
    display: flex;
    align-items: center;
  }
}

.comfort__image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .comfort__image {
    min-width: 80px;
    width: 80px;
    margin-right: 10px;
    margin-bottom: 0;
  }
}

.comfort__text {
  font-size: 18px;
  line-height: 23px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .comfort__text {
    font-size: 14px;
    line-height: 18px;
    text-align: left;
  }
}

/* конец перечень услуг*/


.polis__items {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}

@media only screen and (max-width: 991px) {
  .polis__items {
    justify-content: space-between;
	margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .polis__items {
    display: block;
	margin-bottom: 20px;
  }
}

.polis__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  min-width: 400px;
  margin-right: 80px;
  margin-left: 80px;
  transform: translateX(-50px);
  opacity: 0;
  transition: 500ms;
}

.polis__image.element-show {
  opacity: 1;
  transform: none;
}

@media only screen and (max-width: 1260px) {
  .polis__image {
    width: 360px;
    min-width: 360px;
    margin-right: 75px;
  }
}

@media only screen and (max-width: 991px) {
  .polis__image {
    min-width: 300px;
    width: 300px;
    margin-right: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .polis__image {
    display: block;
    min-width: auto;
    margin: 0;
    width: 100%;
    margin-bottom: 48px;
  }
  .polis__image img {
    width: 100%;
    height: 100%;
  }
}

@media only screen and (max-width: 420px) {
  .polis__image {
    margin-bottom: 30px;
  }
}

.polis__title {
  font-size: 40px;
  font-weight: 400;
  color: #C1A152;
  margin-bottom: 32px;
}

@media only screen and (max-width: 1260px) {
  .polis__title {
    font-size: 32px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .polis__title {
    margin-bottom: 36px;
  }
}

@media only screen and (max-width: 420px) {
  .polis__title {
    font-size: 26px;
    margin-bottom: 25px;
  }
}

.polis__list {
  margin-bottom: 50px;
}

@media only screen and (max-width: 1260px) {
  .polis__list {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .polis__list {
    margin-bottom: 42px;
  }
}

.polis__list li {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  font-size: 20px;
  letter-spacing: 0.01em;
}

@media only screen and (max-width: 1260px) {
  .polis__list li {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .polis__list li {
    font-size: 20px;
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 420px) {
  .polis__list li {
    font-size: 18px;
    margin-bottom: 15px;
  }
}


.polis__list li img {
  margin-right: 20px;
}

.polis__list li:last-child {
  margin-bottom: 0;
}

.polis__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 373px;
  height: 81px;
  background: #C1A152;
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
}

@media only screen and (max-width: 1260px) {
  .polis__btn {
    height: 65px;
    width: 320px;
  }
}

@media only screen and (max-width: 767px) {
  .polis__btn {
    width: 100%;
    height: 81px;
  }
}

@media only screen and (max-width: 420px) {
  .polis__btn {
    height: 60px;
    font-size: 16px;
  }
}

.polis__btn:hover {
  background: #25204D;
}

.polis__item {
  transform: translateX(50px);
  opacity: 0;
  transition: 500ms;
}

.polis__item.element-show {
  opacity: 1;
  transform: none;
}

.polis__name {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.01em;
   margin-bottom: 25px;
}



@media only screen and (max-width: 1260px) {
  .polis__name {
    font-size: 22px;
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 767px) {
  .polis__name {
    font-size: 20px;
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 420px) {
  .polis__n {
    font-size: 18px;
    margin-bottom: 15px;
  }
}


/*end polis*/





.partner {
  margin-top: 40px;
  margin-bottom: 60px;
}

@media only screen and (max-width: 767px) {
  .partner {
    margin-bottom: 65px;
  }
}

/* old partner title */

/*.partner__title {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 52px;
}

@media only screen and (max-width: 767px) {
  .partner__title {
    font-size: 30px;
    margin-bottom: 30px;
  }
}*/
/*end old partner title*/

/* new partner title*/

.partner__title {
  text-align: center;
  font-size: 32px;
  font-weight: 900;
  color: #0f1b5a;
  margin-bottom: 18px;
  
}



@media screen and (max-width: 991px) {
  .partner__title {
    font-size: 28px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {
  .partner__title {
    font-size: 22px;
    font-weight: 600;
  }
}

/* end new partner title */





.partner__items {
  padding: 0 55px;
}

@media only screen and (max-width: 767px) {
  .partner__items {
    padding: 0 35px;
  }
}

@media only screen and (max-width: 460px) {
  .partner__items {
    padding: 0 20px;
  }
}

.partner__item {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  opacity: 0.5;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  height: 100px;
}

@media only screen and (max-width: 767px) {
  .partner__item {
    display: block;
  }
}

.partner__image {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 10px;
  min-width: 200px;
  width: 200px;
}

@media only screen and (max-width: 460px) {
  .partner__image {
    width: auto;
    min-width: auto;
  }
}

.partner__image img {
  width: 100%;
}

.partner__name {
  font-size: 15px;
  letter-spacing: 0.01em;
  color: #4a5259;
  white-space: nowrap;
}

@media only screen and (max-width: 767px) {
  .partner__name {
    white-space: normal;
  }
}

@media only screen and (max-width: 460px) {
  .partner__name {
    font-size: 12px;
  }
}

.partner .slick-slide {
  margin: 0 50px;
}

@media only screen and (max-width: 1400px) {
  .partner .slick-slide {
    margin: 0 30px;
  }
}

@media only screen and (max-width: 767px) {
  .partner .slick-slide {
    margin: 0 15px;
  }
}

.partner .slick-list {
  margin: 0 -50px;
}

@media only screen and (max-width: 1400px) {
  .partner .slick-list {
    margin: 0 -30px;
  }
}

@media only screen and (max-width: 767px) {
  .partner .slick-list {
    margin: 0 -15px;
  }
}

.partner .slick-slide.slick-current.slick-active {
  opacity: 1;
  -webkit-filter: none;
  filter: none;
}

.clients {
  padding-bottom: 48px;
}

.clients__title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 50px;
  font-weight: 400;
  color: #C1A152;
}

@media only screen and (max-width: 1260px) {
  .clients__title {
    font-size: 36px;
  }
}

@media only screen and (max-width: 991px) {
  .clients__title {
    font-size: 30px;
    line-height: 48px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 460px) {
  .clients__title {
    font-size: 22px;
    line-height: 30px;
  }
}

.clients__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -moz-column-gap: 30px;
  column-gap: 30px;
  opacity: 0;
  transform: translateY(50px);
  transition: 500ms;
}

.clients__items.element-show {
  transform: none;
  opacity: 1;
}

@media only screen and (max-width: 1260px) {
  .clients__items {
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .clients__items {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 30px;
  }
}

@media only screen and (max-width: 460px) {
  .clients__items {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}

.clients__image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  height: 60px;
}

@media only screen and (max-width: 767px) {
  .clients__image {
    margin-bottom: 10px;
  }
}

.clients__head {
  font-size: 36px;
  font-weight: 600;
  color: #C1A152;
  text-align: center;
  margin-bottom: 5px;
}

@media only screen and (max-width: 767px) {
  .clients__head {
    font-size: 18px;
    margin-bottom: 5px;
  }
}

.clients__text {
  font-size: 18px;
  line-height: 22px;
  color: #4a5259;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .clients__text {
    font-size: 14px;
    line-height: 20px;
  }
}


.clients2 {
  padding-bottom: 20px;
}

.clients2__title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 50px;
}

@media only screen and (max-width: 1260px) {
  .clients2__title {
    font-size: 36px;
  }
}

@media only screen and (max-width: 991px) {
  .clients2__title {
    font-size: 30px;
    line-height: 48px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 460px) {
  .clients2__title {
    font-size: 22px;
    line-height: 30px;
  }
}

.clients2__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 30px;
  column-gap: 30px;
  opacity: 0;
  transform: translateY(50px);
  transition: 500ms;
}

.clients2__items.element-show {
  transform: none;
  opacity: 1;
}

@media only screen and (max-width: 1260px) {
  .clients2__items {
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .clients2__items {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 30px;
  }
}

@media only screen and (max-width: 460px) {
  .clients2__items {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}

.clients2__image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  height: 60px;
}

@media only screen and (max-width: 767px) {
  .clients2__image {
    margin-bottom: 10px;
  }
}

.clients2__head {
  font-size: 18px;
  font-weight: 600;
  color: #C1A152;
  text-align: center;
  margin-bottom: 5px;
}

@media only screen and (max-width: 767px) {
  .clients2__head {
    font-size: 16px;
    margin-bottom: 5px;
  }
}

.clients2__text {
  font-size: 16px;
  line-height: 22px;
  color: #4a5259;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .clients2__text {
    font-size: 14px;
    line-height: 20px;
  }
}



.review {
  background: rgba(48, 129, 222, 0.03);
  padding: 70px 0 80px 0;
  margin-bottom: 70px;
}

@media only screen and (max-width: 767px) {
  .review {
    padding: 40px 0 60px 0;
    margin-bottom: 60px;
  }
}

.review__item {
  padding: 50px 60px 56px 60px;
  background: #ffffff;
  border-radius: 10px;
}

@media only screen and (max-width: 991px) {
  .review__item {
    padding: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .review__item {
    padding: 40px;
  }
}

@media only screen and (max-width: 400px) {
  .review__item {
    padding: 20px;
  }
}

.review__header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.review__title {
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 46px;
}

@media only screen and (max-width: 767px) {
  .review__title {
    font-size: 30px;
    margin-bottom: 30px;
  }
}

.review__items {
  margin-bottom: 60px;
}

@media only screen and (max-width: 991px) {
  .review__items {
    margin-bottom: 130px;
  }
}

.review__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  min-width: 80px;
  border-radius: 50%;
  margin-right: 20px;
}

.review__image img {
  border-radius: 50%;
}

.review__name {
  font-size: 20px;
  font-weight: 500;
  color: #3082de;
  margin-bottom: 4px;
}

.review__city {
  font-size: 16px;
  color: #909090;
}

.review__text {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.01em;
}

.review .slick-slide {
  margin: 0 15px;
  height: auto;
}

@media only screen and (max-width: 767px) {
  .review .slick-slide {
    margin: 0;
  }
}

.review .slick-list {
  margin: 0 -15px;
}

@media only screen and (max-width: 767px) {
  .review .slick-list {
    margin: 0;
  }
}

.review .slick-track {
  display: flex !important;
}

.review__btns {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .review__btns {
    display: block;
  }
}

.review__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 391px;
  height: 81px;
  background: #fa2437;
  border-radius: 100px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-right: 30px;
}

@media only screen and (max-width: 767px) {
  .review__btn {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 400px) {
  .review__btn {
    height: 65px;
    font-size: 16px;
  }
}

.review__btn:hover {
  background: #970e1a;
}

.review__btn:last-child {
  margin-bottom: 0;
  margin-right: 0;
  background: none;
  border: 2px solid #fa2437;
  color: #fa2437;
}

.review__btn:last-child:hover {
  background: #fa2437;
  color: #fff;
}

.review .slick-arrow {
  font-size: 0;
  border: 0;
  background: none;
  border: 2px solid #fa2437;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: 50% / cover;
  background-position: center center;
  position: absolute;
  top: 50%;
  cursor: pointer;
  transform: translate(0, -50%);
  transition: 300ms;
  z-index: 5;
}

.review .slick-arrow:hover {
  border: 2px solid #ff0015;
}

.review .slick-next {
  background-image: url(../images/arrow-ri.png);
  right: -90px;
  left: auto;
}

@media only screen and (max-width: 1365px) {
  .review .slick-next {
    right: -30px;
  }
}

@media only screen and (max-width: 991px) {
  .review .slick-next {
    right: 35%;
    transform: translate(-35%, 0);
    top: auto;
    bottom: -90px;
  }
}

@media only screen and (max-width: 767px) {
  .review .slick-next {
    right: 30%;
    transform: none;
  }
}

@media only screen and (max-width: 400px) {
  .review .slick-next {
    right: 25%;
  }
}

.review .slick-prev {
  background-image: url(../images/arrow-le.png);
  left: -90px;
}

@media only screen and (max-width: 1365px) {
  .review .slick-prev {
    left: -30px;
  }
}

@media only screen and (max-width: 991px) {
  .review .slick-prev {
    left: 40%;
    transform: translate(-40%, 0);
    top: auto;
    bottom: -90px;
  }
}

@media only screen and (max-width: 767px) {
  .review .slick-prev {
    left: 30%;
    transform: none;
  }
}

@media only screen and (max-width: 400px) {
  .review .slick-prev {
    left: 25%;
  }
}

.need {
  margin-bottom: 80px;
}

@media only screen and (max-width: 767px) {
  .need {
    margin-bottom: 60px;
  }
}

.need__title {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 50px;
}

@media only screen and (max-width: 991px) {
  .need__title {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .need__title {
    font-size: 30px;
  }
}

.need__items {
  display: flex;
  margin-bottom: 50px;
  justify-content: space-between;
}

@media only screen and (max-width: 991px) {
  .need__items {
    display: block;
    margin-bottom: 40px;
  }
}

.need__head {
  font-size: 21px;
  font-weight: 500;
  color: #3082de;
  margin-bottom: 25px;
}

.need__text {
  font-size: 15px;
  line-height: 21px;
  color: #4a5259;
}

.need__image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.need__image img {
  width: 100%;
  height: 100%;
}

.need__item {
  background: rgba(48, 129, 222, 0.03);
  border-radius: 10px;
  display: flex;
  align-items: center;
  position: relative;
  width: 570px;
}

@media only screen and (max-width: 1260px) {
  .need__item {
    width: 468px;
  }
}

@media only screen and (max-width: 991px) {
  .need__item {
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
  }
  .need__item:last-child {
    margin-bottom: 0;
  }
}

.need__item:last-child {
  margin-right: 0;
}

.need__item-first {
  justify-content: space-between;
  padding: 13px 50px 13px 60px;
}

@media only screen and (max-width: 991px) {
  .need__item-first {
    justify-content: space-between;
  }
}

@media only screen and (max-width: 767px) {
  .need__item-first {
    padding: 11px 0 16px 40px;
  }
}

@media only screen and (max-width: 460px) {
  .need__item-first {
    padding-left: 20px;
    padding-right: 40px;
  }
}

.need__item-first .need__text {
  max-width: 193px;
}

@media only screen and (max-width: 991px) {
  .need__item-first .need__text {
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .need__item-first .need__image {
    min-width: 193px;
  }
}

@media only screen and (max-width: 460px) {
  .need__item-first .need__image {
    min-width: auto;
    width: 100px;
    position: absolute;
    top: -30px;
    right: -20px;
  }
}

.need__item-second {
  padding-left: 60px;
  justify-content: flex-end;
}

@media only screen and (max-width: 991px) {
  .need__item-second {
    justify-content: space-between;
    padding-right: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .need__item-second {
    padding: 0 0 10px 40px;
  }
}

@media only screen and (max-width: 460px) {
  .need__item-second {
    padding-left: 20px;
    padding-right: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .need__item-second .need__image {
    width: 100%;
    height: 100%;
    min-width: 220px;
    padding-right: 60px;
  }
  .need__item-second .need__image img {
    width: 100%;
    height: 100%;
  }
}

@media only screen and (max-width: 460px) {
  .need__item-second .need__image {
    min-width: auto;
    width: 120px;
    position: absolute;
    top: -30px;
    right: -30px;
    padding: 0;
    height: 140px;
  }
}

.need__item-second .need__text {
  max-width: 290px;
}

@media only screen and (max-width: 991px) {
  .need__item-second .need__text {
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .need__item-second .need__text {
    min-width: 205px;
  }
}

.need__checks {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .need__checks {
    display: block;
    margin-bottom: 20px;
  }
}

.need__check {
  background: #ffffff;
  border: 1px solid rgba(27, 27, 27, 0.1);
  box-sizing: border-box;
  border-radius: 6px;
  padding: 22px 30px;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin-right: 30px;
}

@media only screen and (max-width: 767px) {
  .need__check {
    padding: 8px 15px;
    margin-bottom: 15px;
    margin-right: 0;
  }
  .need__check:last-child {
    margin-bottom: 0;
  }
}

.need__check:last-child {
  margin-right: 0;
}

.need__subtitle {
  font-size: 22px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .need__subtitle {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

.need__question {
  width: 26px;
  cursor: pointer;
  height: 26px;
  border-radius: 50%;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(27, 27, 27, 0.4);
}

.need .checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  .need .checkbox {
    justify-content: center;
    padding: 11px 0;
  }
  .need .checkbox:nth-child(3) {
    background: rgba(224, 224, 224, 0.3);
  }
}

.need .checkbox:last-child {
  margin-bottom: 0;
}

.need .checkbox__inner {
  flex-shrink: 0;
  margin-right: 13px;
  width: 26px;
  height: 26px;
  min-width: 26px;
}

@media only screen and (max-width: 767px) {
  .need .checkbox__inner {
    margin-right: 10px;
  }
}

.need .checkbox__inner > span {
  width: 100%;
  height: 100%;
  border: 1px solid #fa2437;
  box-sizing: border-box;
  border-radius: 3px;
  display: block;
  position: relative;
}

.need .checkbox__inner > span::before {
  display: block;
  content: "";
  position: absolute;
  top: 11%;
  left: 4%;
  right: 0;
  bottom: 0;
  border: solid #fff;
  border-width: 0px 2px 2px 0;
  transform: rotate(45deg);
  width: 8px;
  height: 13px;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
}

.need .checkbox input {
  display: block;
}

.need .checkbox input:checked + span {
  background: #fa2437;
}

.need .checkbox input:checked + span::before {
  opacity: 1;
  visibility: visible;
}

.need .checkbox__text {
  font-size: 18px;
}

.need .checkbox__text a {
  color: #3082de;
}

.need__calc {
  background: #ffffff;
  border: 1px solid rgba(27, 27, 27, 0.1);
  border-radius: 6px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 30px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 1260px) {
  .need__calc {
    padding: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .need__calc {
    padding: 20px;
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}

.need__calc-head {
  font-size: 16px;
  margin-bottom: 10px;
  color: rgba(27, 27, 27, 0.6);
}

.need__calc-field {
  width: 100%;
  height: 70px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .need__calc-field {
    height: 50px;
  }
}

.need__calc-field input,
.need__calc-field select {
  border: 1px solid rgba(27, 27, 27, 0.1);
  box-sizing: border-box;
  border-radius: 6px;
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 0 30px;
  font-size: 18px;
}

.need__calc-date input{
  color: rgba(27, 27, 27, 0.6);
}

@media only screen and (max-width: 767px) {
  .need__calc-field input,
  .need__calc-field select {
    padding: 0 15px;
    font-size: 16px;
  }
}

.need__calc-field input::-moz-placeholder, .need__calc-field select::-moz-placeholder {
  font-size: 18px;
  color: rgba(27, 27, 27, 0.3);
}

.need__calc-field input::-ms-input-placeholder, .need__calc-field select::-ms-input-placeholder {
  font-size: 18px;
  color: rgba(27, 27, 27, 0.3);
}

.need__calc-field input::placeholder,
.need__calc-field select::placeholder {
  font-size: 18px;
  color: rgba(27, 27, 27, 0.3);
}

@media only screen and (max-width: 767px) {
  .need__calc-field input::-moz-placeholder, .need__calc-field select::-moz-placeholder {
    font-size: 16px;
  }
  .need__calc-field input::-ms-input-placeholder, .need__calc-field select::-ms-input-placeholder {
    font-size: 16px;
  }
  .need__calc-field input::placeholder,
  .need__calc-field select::placeholder {
    font-size: 16px;
  }
}

.need__calc-field select {
  color: rgba(27, 27, 27, 0.3);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../images/arrow-select.png);
  background-repeat: no-repeat;
  background-size: 50% / cover;
  cursor: pointer;
  background-position: 95% 50%;
}

.need__calc-field select.active {
  color: #000;
}

.need__calc-field select option {
  color: #000;
}

.need__calc-question {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #e0e0e0;
  font-size: 15px;
  color: rgba(27, 27, 27, 0.4);
  position: absolute;
  top: 20px;
  right: 30px;
}

@media only screen and (max-width: 767px) {
  .need__calc-question {
    top: 10px;
    right: 10px;
  }
}

.need__end {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .need__end {
    display: block;
  }
}

.need__end .checkbox__text {
  max-width: 754px;
}

@media only screen and (max-width: 767px) {
  .need__end .checkbox__text {
    max-width: 100%;
    font-size: 14px;
  }
}

.need__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 0;
  width: 390px;
  height: 81px;
  background: #fa2437;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 500;
  transition: 300ms;
  color: #fff;
}

@media only screen and (max-width: 1260px) {
  .need__btn {
    width: 350px;
    font-size: 15px;
    height: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .need__btn {
    width: 100%;
    height: 60px;
    margin-top: 20px;
  }
}

.need__btn:hover {
  background: #b91422;
}


.present {
  margin-bottom: 50px;
}

@media only screen and (max-width: 767px) {
  .present {
    margin-bottom: 30px;
  }
}

.present__title {
  text-align: center;
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 40px;
}

@media only screen and (max-width: 991px) {
  .present__title {
    font-size: 25px;
    line-height: 40px;
    margin-bottom: 34px;
  }
}

@media only screen and (max-width: 420px) {
  .present__title {
    font-size: 24px;
    line-height: 30px;
  }
}

.present__items {
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .present__items {
    display: block;
  }
}

.present__item {
  background: rgba(48, 129, 222, 0.03);
  border-radius: 10px;
  padding: 40px 50px 32px 50px;
  margin-right: 30px;
}

.present__item:last-child {
  margin-right: 0;
  margin-bottom: 0;
}

@media only screen and (max-width: 991px) {
  .present__item {
    padding: 40px 30px 32px 30px;
    margin-right: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .present__item {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 420px) {
  .present__item {
    padding: 20px;
  }
}

.present__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #3082de;
  margin: 0 auto 25px auto;
}

.present__icon img {
  width: 20px;
  height: 20px;
}

.present__text {
  text-align: center;
  font-size: 20px;
  line-height: 31px;
  font-weight: 500;
  color: #3082de;
}

@media only screen and (max-width: 991px) {
  .present__text {
    line-height: 28px;
  }
}


.faq {
  padding: 60px 0 80px 0 ;
  margin-top:0px;
  margin-bottom:0px;
  background: #F1EEDF;
}

@media only screen and (max-width: 991px) {
  .faq {
    margin-top: 40px;
  }
}

.faq__title {
  text-align: center;
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 30px;
  color: #C1A152;
}

@media only screen and (max-width: 991px) {
  .faq__title {
    font-size: 30px;
    margin-bottom: 30px;
  }
}

.faq__item {
  background: #ffffff;
  border: 1px solid rgba(193,161,82, 0.3);
  box-sizing: border-box;
  border-radius: 0px;
  margin-bottom: 20px;
  transform: translateY(20px);
  opacity: 0;
  transition: 500ms;
}

.faq__item.element-show {
  transform: none;
  opacity: 1;
}

@media only screen and (max-width: 991px) {
  .faq__item {
    margin-bottom: 10px;
  }
}

.faq__item.active {
  border: 1px solid #C1A152;
}

.faq__item:last-child {
  margin-bottom: 0;
}

.faq__header {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding: 30px 40px;
  justify-content: space-between;
}

@media only screen and (max-width: 991px) {
  .faq__header {
    padding: 22px 20px;
  }
}

.faq__arrow {
  display: flex;
  transition: 300ms;
  align-items: center;
  justify-content: center;
  min-width: 20px;
}

@media only screen and (max-width: 991px) {
  .faq__arrow {
    margin-left: 20px;
  }
}

.faq__body {
  padding: 0 40px 30px 40px;
}

@media only screen and (max-width: 991px) {
  .faq__body {
    padding: 0 20px 20px 20px;
  }
}

.faq__body-text {
  letter-spacing: 0.01em;
  font-size: 19px;
  color: #4a5259;
}
.faq__selected-text {
  letter-spacing: 0.01em;
  padding-left: 1em;
  padding-right: 1em;
  padding-top: 0.5em;
  padding-bottom:0.5em;
  font-size: 19px;
  color: #FFF;
  background-color: #C1A152
}

@media only screen and (max-width: 991px) {
  .faq__body-text {
    font-size: 14px;
    line-height: 22px;
  }
}

.faq__body-text:first-child {
  padding-top: 15px;
  border-top: 1px solid rgba(193,161,82, 0.3);
}

@media only screen and (max-width: 991px) {
  .faq__body-text:first-child {
    padding-top: 10px;
  }
}

.faq__name {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.faq__subname {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 0.2em;
}

@media only screen and (max-width: 991px) {
  .faq__name {
    font-size: 16px;
    line-height: 26px;
  }
}

.faq__header.active .faq__name {
  color: #C1A152;
}

.faq__header.active .faq__arrow {
  transform: rotate(180deg);
}



.map iframe {
  display: flex;
  align-items: center;
  justify-content: center;
}

.map__inner {
  position: relative;
}

.map__content {
  position: absolute;
  top: 82px;
  left: 0;
  padding: 50px 55px;
  background: #ffffff;
  width: 545px;
  border-radius: 10px;
}

@media only screen and (max-width: 991px) {
  .map__content {
    display: none;
  }
}

.map__title {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}

.map__item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
  width: 100%;
}

.map__item:last-child {
  margin-bottom: 0;
}

.map__block {
  padding-top: 6px;
  width: 100%;
}

.map__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  min-width: 30px;
  border: 1px solid #fa2437;
  box-sizing: border-box;
  border-radius: 5px;
  color: #fa2437;
  margin-right: 15px;
}

.map__adres {
  font-size: 16px;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}

.map__contacts {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 15px;
}

.map__contacts:last-child {
  margin-bottom: 0;
}

.map__contacts:nth-child(2) {
  padding-right: 30px;
}

.map__head {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}

.map__info {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.map__item:last-child .map__number {
  border: 1px solid #3082de;
  color: #3082de;
}

.footer__items {
  padding: 40px 0;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .footer__items {
    padding: 40px 0 85px 0;
  }
}

@media only screen and (max-width: 460px) {
  .footer__items {
    display: block;
    padding-bottom: 70px;
  }
}

.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 1260px) {
  .footer__logo {
    width: 190px;
  }
}

@media only screen and (max-width: 460px) {
  .footer__logo {
    margin: 0 auto 10px auto;
  }
}

.footer__nav {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 991px) {
  .footer__nav {
    display: none;
  }
}

.footer__nav li {
  margin-right: 40px;
}

@media only screen and (max-width: 1260px) {
  .footer__nav li {
    margin-right: 20px;
  }
}

.footer__nav li:last-child {
  margin-right: 0;
}

.footer__nav li a {
  font-size: 16px;
}

.footer__nav li a:hover {
  color: #3082de;
}

.footer__social {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 460px) {
  .footer__social {
    justify-content: center;
  }
}

.footer__social li {
  margin-right: 10px;
}

.footer__social li:last-child {
  margin-right: 0;
}

.footer__social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

@media only screen and (max-width: 1260px) {
  .footer__social li a {
    width: 35px;
    height: 35px;
  }
}

@media only screen and (max-width: 767px) {
  .footer__social li a {
    width: 40px;
    height: 40px;
  }
}

.footer__call {
  font-size: 20px;
  font-weight: 600;
  color: #3082de;
}

@media only screen and (max-width: 767px) {
  .footer__call {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 0);
  }
}

@media only screen and (max-width: 460px) {
  .footer__call {
    bottom: 20px;
    white-space: nowrap;
  }
}

.footer__end {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
}

@media only screen and (max-width: 767px) {
  .footer__end {
    padding: 32px 0;
  }
}

.footer__end-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .footer__end-items {
    display: block;
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .footer__end-guard {
    margin-top: 25px;
  }
}

.footer__end-guard:hover {
  text-decoration: underline;
}

.top_button {
  border: 2px solid #ffffff;
  border-radius: 50%;
  padding: 13px 15px;
  z-index: 150;
  position: fixed;
  bottom: 75px;
  width: 50px;
  height: 50px;
  min-width: 50px;
  right: 20px;
  background: #3082de;
  transform: rotate(180deg);
  display: none;
}

@media screen and (max-width: 767px) {
  .top_button {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border: 1px solid #fff;
    right: 5px;
    bottom: 20px;
  }
}

.top_button span {
  position: relative;
}

.top_button span::before {
  content: "";
  height: 2px;
  width: 15px;
  display: block;
  background: #fff;
  transform: rotate(45deg);
  top: 10px;
  right: -10px;
  position: absolute;
}

@media screen and (max-width: 767px) {
  .top_button span::before {
    width: 10px;
    top: 2px;
    right: -2px;
  }
}

.top_button span::after {
  content: "";
  height: 2px;
  width: 15px;
  display: block;
  background: #fff;
  transform: rotate(-45deg);
  top: 10px;
  left: 5px;
  position: absolute;
}

@media screen and (max-width: 767px) {
  .top_button span::after {
    width: 10px;
    top: 2px;
    left: -2px;
  }
}

.need__drop{
  display: none;
  font-size: 12px;
  color: red;
  position: absolute;
  bottom: -15px;
  left: 0;
}

.need__calc-item{
  position: relative;
}

.need__end{
  position: relative;
}

.need__check{
  position: relative;
}

.need__check.error .need__drop{
  display: block;
}

.need__calc-item.error .need__drop{
  display: block;
}

.need__end.error .need__drop{
  display: block;
}

@media only screen and (max-width: 767px) {
  .need__end.error .need__drop{
  bottom: 72px;
    left: 36px;
  }
}


.companies{
  padding: 70px 0 100px 0;
  background-color: #FFF;
}

@media only screen and (max-width: 1240px) {
  .companies {
    padding: 60px 0 80px 0;
  }
}

@media only screen and (max-width: 991px) {
  .companies {
    padding: 60px 0 80px 0;
  }
}

.companies__title {
  text-align: center;
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 18px;
  transition: 1000ms;
  opacity: 0;
  transform: translateY(50px);
  font-weight: 400;
  color: #C1A152; 
} 	

.companies__title.element-show {
  transform: none;
  opacity: 1;
}

@media only screen and (max-width: 1240px) {
  .companies__title {
    font-size: 42px;
	font-weight: 400;
	color: #C1A152; 
  }
}

@media only screen and (max-width: 991px) {
  .companies__title {
    font-size: 36px;
  }
}

@media only screen and (max-width: 767px) {
  .companies__title {
    font-size: 32px;
    margin-bottom: 15px;
  }
}

.companies__head {
  font-size: 32px;
  text-align: center;
  margin-bottom: 45px;
  transition: 1000ms;
  opacity: 0;
  transform: translateY(50px);
}

.companies__head.element-show {
  transform: none;
  opacity: 1;
}

@media only screen and (max-width: 1240px) {
  .companies__head {
    font-size: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .companies__head {
    font-size: 26px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .companies__head {
    font-size: 24px;
    text-align: center;
  }
}

.companies__head span {
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .companies__head span {
    display: block;
  }
}

.companies__item {
  padding: 38px 0;
  background: #55c264;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  font-size: 40px;
  margin-bottom: 41px;
  transition: 1000ms;
  opacity: 0;
  transform: translateY(50px);
}

.companies__item.element-show {
  transform: none;
  opacity: 1;
}

@media only screen and (max-width: 1240px) {
  .companies__item {
    font-size: 36px;
    padding: 35px 0;
  }
}

@media only screen and (max-width: 991px) {
  .companies__item {
    padding: 30px;
    font-size: 28px;
  }
}

@media only screen and (max-width: 767px) {
  .companies__item {
    padding: 20px 1px;
    font-size: 24px;
    margin-bottom: 30px;
  }
}

.companies__item span {
  font-weight: 700;
}

.companies__text {
  text-align: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: 1000ms;
  opacity: 0;
  transform: translateY(50px);
}

.companies__text.element-show {
  transform: none;
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .companies__text {
    font-size: 16px;
  }
}

.companies__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 340px;
  height: 90px;
  background: #f0132f;
  box-shadow: 0px 20px 70px rgba(240, 19, 47, 0.4);
  border-radius: 10px;
  color: #fff;
  font-size: 19px;
  font-weight: 500;
  margin: 0 auto;
  transition: 1000ms;
  opacity: 0;
  transform: translateY(50px);
}

.companies__btn.element-show {
  transform: none;
  opacity: 1;
}

@media only screen and (max-width: 1240px) {
  .companies__btn {
    font-size: 18px;
    width: 320px;
    height: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .companies__btn {
    width: 100%;
    height: 60px;
    font-size: 16px;
  }
}

.companies__btn:hover {
  box-shadow: 0px 20px 70px rgba(240, 19, 47, 0.7);
}


.agent {
  background: #f6f6f6;
}

.agent__inner {
  padding: 55px 0 84px 0;
  position: relative;
}

@media only screen and (max-width: 1240px) {
  .agent__inner {
    padding: 50px 0 75px 0;
  }
}

@media only screen and (max-width: 767px) {
  .agent__inner {
    padding: 40px 0 0 0;
  }
}

.agent__image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 30px;
  bottom: 0;
}

@media only screen and (max-width: 1240px) {
  .agent__image {
    width: 390px;
    right: 0;
  }
}

@media only screen and (max-width: 991px) {
  .agent__image {
    width: 360px;
    right: -60px;
  }
}

@media only screen and (max-width: 767px) {
  .agent__image {
    position: static;
    width: 100%;
    margin-top: 40px;
  }
  .agent__image img {
    width: 100%;
    height: 100%;
  }
}

.agent__content {
  position: relative;
  z-index: 5;
}

.agent__title {
  font-size: 40px;
  line-height: 54px;
  font-weight: 400;
  color:#C1A152;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-bottom: 0.5em;
}

@media only screen and (max-width: 1240px) {
  .agent__title {
    font-size: 36px;
    line-height: 48px;
  }
}

@media only screen and (max-width: 991px) {
  .agent__title {
    font-size: 32px;
    line-height: 44px;
  }
}

@media only screen and (max-width: 767px) {
  .agent__title {
    font-size: 28px;
    line-height: 38px;
  }
}

.agent__head {
  font-size: 24px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 1240px) {
  .agent__head {
    font-size: 22px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .agent__head {
    font-size: 20px;
    margin-bottom: 15px;
  }
}

.agent__info {
  font-size: 18px;
  line-height: 25px;
  max-width: 660px;
  margin-bottom: 25px;
}

@media only screen and (max-width: 1240px) {
  .agent__info {
    font-size: 16px;
    line-height: 22px;
    max-width: 550px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .agent__info {
    max-width: 500px;
  }
}

.agent__list {
  font-size: 17px;
  line-height: 29px;
  margin-bottom: 50px;
  max-width: 700px;
}

@media only screen and (max-width: 1240px) {
  .agent__list {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 40px;
    max-width: 550px;
  }
}

@media only screen and (max-width: 991px) {
  .agent__list {
    max-width: 500px;
  }
}

.agent__list li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.agent__list li::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  min-width: 10px;
  background: #f0132f;
  border-radius: 50%;
  margin-right: 20px;
  transform: translateY(8px);
}

@media only screen and (max-width: 767px) {
  .agent__list li::before {
    margin-right: 15px;
  }
}

.agent__list li:last-child {
  margin-bottom: 0;
}

.agent__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 340px;
  height: 90px;
  background: #f0132f;
  box-shadow: 0px 20px 70px rgba(240, 19, 47, 0.4);
  border-radius: 10px;
  color: #fff;
  font-size: 19px;
  font-weight: 500;
}

@media only screen and (max-width: 1240px) {
  .agent__btn {
    font-size: 18px;
    width: 320px;
    height: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .agent__btn {
    height: 60px;
    font-size: 16px;
    width: 280px;
  }
}

.agent__btn:hover {
  box-shadow: 0px 20px 70px rgba(240, 19, 47, 0.7);
}
