/*#region Basic*/
*,
::before,
::after
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root
{
    --white: #fff;
    --black: #000;
    --gray: #EFEFF9;
    --yellow: #F7EA54;

    --px35: 35px;
    --px65: 65px;

    --two-cl: 50%;
    --three-cl: calc(100% / 3);
    --four-cl: 25%;
    --five-cl: 20%;
    --flex-direction: row;
}

@media (max-width: 767px)
{
    :root
    {
        --px35: 15px;
        --px65: 15px;

        --two-cl: 100%;
        --three-cl: 100%;
        --four-cl: 100%;
        --five-cl: 100%;
        --flex-direction: column;
    }
}

body
{
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

img,
iframe
{
    max-width: 100%;
    height: auto;
}

p:not([class]),
h2:not([class])
{
	margin-bottom: 15px;
	line-height: 1.5;
}
ul:not([class]),
ol:not([class])
{
    padding-left: 25px;
    margin: 15px 0;
}
ul:not([class]) li,
ol:not([class]) li
{
    margin-bottom: 5px;
}
ul:not([class]) li:last-child,
ol:not([class]) li:last-child
{
    margin-bottom: 0;
}
a,
button
{
    transition: all .3s;
}
.container
{
    max-width: 1280px;
    margin: 0 auto;
}
.p-t-b
{
    padding: var(--px35) 0;
}
.p-m
{
    padding: var(--px35) 0;
    margin: var(--px35) 0;
}
.list
{
    list-style: none
}
.list--row
{
    display: flex;
    justify-content: space-between;
}
.main {
}
/*#endregion*/


/*#region  Header*/
.header 
{
    position: sticky;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 10;

}    
.header__wrapper 
{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px;
}
.header__logo 
{
    width: 25%;
}
.header__logo-link {
}

.header__list 
{

}

.header__item
{
    margin-bottom: 5px;
    text-align: right;
}
.header__item:last-child
{
    margin-bottom: 0;
}
.header__mobile 
{
    width: 25%;
    font-weight: bold;
}
.header__link 
{
    color: var(--black);
    font-size: 22px;
    line-height: 1;
    text-decoration: none;
}
.header__link:hover
{
    color: var(--yellow)
}
.header__button
{
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    border: none;
    border-bottom: 1px dashed var(--black);
    background: none;
    cursor: pointer; 
}
.header__menu 
{
    width: 50%;
    padding: 20px;
    background: var(--yellow);
    border-radius: 45px;
}
.header__menu-item {
}
.header__menu-link 
{
    padding: 10px;
    color: var(--black);
    text-decoration: none;
}
.header__menu-link:hover,
.header__menu-link:active,
.header__menu-link:target,
.header__menu-link:focus
{
    background: #fff;
    border-radius: 45px;
} 
.header__mobile-btn
{
	display: none;
}
.header__mobile-toggle {
	width: 35px;
    height: 25px;
    border: none;
    background: transparent;
    position: relative;
    cursor: pointer;
  }
  .header__mobile-toggle:focus {
	outline: none;
  }
  .header__mobile-toggle--rotate:after, 
  .header__mobile-toggle--rotate:before,
.header__mobile-toggle--rotate span {
  width: 100%;
  height: 2px;
  border-radius: 100px;
  position: absolute;
  left: 0px;
  background: var(--black);
  transform: rotate(0deg);
  transition: all 0.4s;
}
.header__mobile-toggle--rotate:after, .header__mobile-toggle--rotate:before {
  content: "";
}
.header__mobile-toggle--rotate:after {
  top: 0px;
  margin-top: 0px;
}
.header__mobile-toggle--rotate:before {
  bottom: 0px;
  margin-bottom: 0px;
}
.header__mobile-toggle--rotate span {
  top: 45%;
  margin-top: 0;
}
.header__mobile-toggle--rotate.active:after {
  transform: rotate(135deg) translate(9px, -9px);
}
.header__mobile-toggle--rotate.active:before {
  transform: rotate(225deg);
  bottom: 50%;
  margin-bottom: -2px;
}
.header__mobile-toggle--rotate.active span {
  transform: rotate(135deg);
}

/*#endregion*/


/*#region Custom*/

.title 
{
    line-height: 1.2;
    text-align: center;
}
.title--h1 
{
    font-size: 36px;
    color: var(--black);
}
.title--h2
{   
    margin-bottom: 10px;
    font-size: 32px;   
}

.button 
{

}
.button__btn
{
    padding: 5px 15px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}
.button__btn--red
{
    background: var(--red);
    color: var(--white);
}
.button__btn--yellow
{
    background: var(--yellow);
    color: var(--black);
}
.button__btn--yellow:hover
{
    background: var(--gray);
}
/*#endregion*/

/*#region First*/

.first-bx 
{
    position: relative;
    background: url(../img/bg-first.jpg) no-repeat center center / cover;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
}


.first-bx__wrapper
{
    position: relative;
    display: flex;
    flex-direction: var(--flex-direction);
    align-items: center;
    justify-content: center;
    z-index: 2;

}
.first-bx__info,
.first-bx__form
{
    width: var(--two-cl);
}
.first-bx__info
{
    text-align: center;
}
.first-bx__title
{
    margin-bottom: 15px;
    color: var(--white);
    line-height: 1.2;
}
.first-bx__subtitle 
{
    color: var(--white);
    font-size: 18px;
}
/*#endregion*/

/*#region Adve*/

.adve 
{
    margin-bottom: var(--px35);
    background: #fbfbfb;
}
.adve__list,
.product__list 

{
    display: flex;
    justify-content: space-between;
    flex-direction: var(--flex-direction);
    list-style: none;
}
.adve__item 
{
    width: var(--five-cl);
}
.adve__item-bx,
.product__item-bx 
{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 5px;
    text-align: center;
}
.adve__icon
{
    margin-bottom: 10px;
    font-size: 32px;
}
.adve__text 
{

}

/*#endregion*/

/*#region Contact*/
.contact 
{
    padding: 0;
    background: var(--yellow);
    overflow: hidden;    
}
.contact__wrapper
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: var(--flex-direction);
    text-align: center;
    color: var(--black);
}
.contact__info-bx,
.contact__map-bx
{
    width: var(--two-cl);
}
.contact__info-bx
{
    padding: 15px 0;
}
.contact__info-bx i
{
    font-size: 14px;
}
.contact__title
{
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    
}
.contact__item
{
    line-height: 1.4;
}
.contact__item--link-list
{
    margin-top: 15px;
}
.contact__sub-title
{
    margin-bottom: var(--px35);
}
.contact__link 
{
    color: var(--black);
    font-size: 22px;
    text-decoration: none;
}
.contact__link:hover
{
    color: var(--white);
}
.contact__link--mobile {
}
.contact__link--email {
}

/*#endregion*/

/*#region Map*/

#map
{
    width: 100%;
    height: 400px;
}
/*#endregion*/


.form-bx
{
    position: relative;
}
.form-bx--bg
{
    background: url(../img/form-bg.jpg) no-repeat center center / cover;
}
.form-bx__wrapper
{
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    padding: var(--px65);
    text-align: center;
    color: var(--white);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 25px 25px rgb(0,0,0,0.1);
    z-index: 2;
}
.form-bx__title 
{
    margin-bottom: 5;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    
}
.form-bx__sub-title
{
    margin-bottom: var(--px35);
}
.form-bx__form 
{
    display: flex;
    flex-direction: column;
}
.form-bx__field 
{
    padding: 10px 15px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1;
    color: var(--white);
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--white);
    transition: .3s;
    outline: none;
}
.form-bx__field:active,
.form-bx__field:focus
{
    border: 0;
    border-bottom: 1px solid var(--yellow);
    outline: none;
} 
.form-bx__btn 
{
    padding: 15px 0;
    font-weight: bold;
    text-transform: uppercase;
}

::-webkit-input-placeholder {color:#fff;}
::-moz-placeholder          {color:#fff;}
:-moz-placeholder           {color:#fff;}
:-ms-input-placeholder      {color:#fff;}


/*#endregion*/

/*#region Info*/

.info
{
    background: #fbfbfb;
}

.info__wrapper 
{
    display: flex;
    justify-content: space-between;
    flex-direction: var(--flex-direction);
}
.info__item 
{
    width: calc(var(--three-cl) - 15px);
}

/*#endregion*/


/*#region Info-bx*/
.info-bx {
}
.info-bx__wrapper 
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: var(--flex-direction);
}

.info-bx__item 
{
    width: calc(var(--two-cl) - 15px);
}

.info-bx__img 
{
    border-radius: 20px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
}
/*#endregion*/

/*#region Steps*/

.step {
}
.step__title
{
    margin-bottom: var(--px35);
}
.step__list 
{
    display: flex;
    flex-direction: var(--flex-direction);
    flex-wrap: wrap;
}
.step__item 
{
    width: var(--four-cl);
    padding: 15px;
}
.step__item:nth-child(even)
{
    background: #fbfbfb;
}
.step__bx 
{
    padding: 5px;
}

.step__bx-title 
{
    display: flex;
    align-items: center;
}
.step__number 
{
    margin-right: 15px;
    margin-bottom: 15px;
    font-size: 55px;
    font-weight: 700;
    color: var(--gray);
    border-bottom: 2px solid;
    
}
.step__number--yellow
{
    color: var(--black);
}
.step__desc 
{
    font-weight: 500;
}

/*#endregion*/




/*#region Footer*/
.footer 
{
    padding: 15px 0;
}
.footer__copyright 
{
    color: var(--black);
    text-align: center;
}
/*#endregion*/


.overlay {

	opacity: 0;
	visibility: hidden;
	
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .5);
	z-index: 20;
	transition: .3s all;
 }
 
 

 
 .modal {
	

	opacity: 0;
	visibility: hidden;
	width: 100%;
	max-width: 400px;
	max-height: 400px;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 150;
	overflow: auto;
	box-shadow: 0 3px 10px -.5px rgba(0, 0, 0, .2); 
	text-align: left;
	padding: 30px;
	border-radius: 3px;
	background-color: #333;
	transition: 0.3s all;
 }
 
  .modal.active,
 .overlay.active{
	opacity: 1;
	visibility: visible;
 }
 
 
 .modal__cross {
	width: 15px;
	height: 15px;
	position: absolute;
	top: 20px;
	right: 20px;
	fill: var(--yellow);
	cursor: pointer;
 }
 .modal__cross:hover
 {
    fill: var(--white);
 }

 .modal-bx
{
    text-align: center;
    color: var(--white);
}
.modal-bx__title 
{
    margin-bottom: 5px;
    font-size: 22px;
    font-weight: 600;
    
}
.modal-bx__sub-title
{
    font-size: 14px;
    margin-bottom: 15px;
}
.modal-bx__form 
{
    display: flex;
    flex-direction: column;
}
.modal-bx__field 
{
    padding: 10px 15px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--white);
    transition: .3s;
    outline: none;
}
.modal__field:active,
.modal__field:focus
{
    border: 0;
    border-bottom: 1px solid var(--yellow);
    outline: none;
} 
.modal-bx__btn {
}

@media (max-width: 1280px)
{
    .container
    {
        padding-left: 15px;
        padding-right: 15px;
    }

}

@media (max-width: 990px)
{
    .header__menu
    {
        display: none;
        width: 100%;
        border-radius: 0;
        position: absolute;
        left: 0;
        top: 0;
    }
    
    .header__menu.active,
	.header__mobile-btn,
    .header__menu-link
	{
		display: block;
	}
    .header__logo
    {
        width: 25%;
    }
    .header__mobile
    {
        width: 60%;
    }
    .header__mobile-btn
    {
        width: 15%;
    }
    .header__item
    {
        text-align: center;
    }
    .header__menu-link:hover, 
    .header__menu-link:active, 
    .header__menu-link:target, 
    .header__menu-link:focus
    {
        background: none;
        text-decoration: underline;
    }

}
@media (max-width: 767px)
{
    
    .title--h1
    {
        font-size: 26px;
    }
    .header__link
    {
        font-size: 18px;
    }
    .first-bx__wrapper
    {
        align-items: center;
        padding: 15px 0;
    }
    .first-bx__subtitle
    {
        margin-bottom: 15px;
    }
    .adve__list 
    {
       align-items: center;
    }
    .adve__item
    {
        margin-bottom: 10px;
    } 
    .adve__item:last-child
    {
        margin-bottom: 0;
    } 
    .info-bx__item
    {
        text-align: center;
    }
}
@media (max-width: 375px)
{
    .title--h2
    {
        font-size: 24px;
    }
    .header__link {
        font-size: 16px;
    }
}

/*#region Icon*/

@font-face {
    font-family: 'icon';
    src:  url('../fonts/icon.eot?bji71x');
    src:  url('../fonts/icon.eot?bji71x#iefix') format('embedded-opentype'),
      url('../fonts/icon.ttf?bji71x') format('truetype'),
      url('../fonts/icon.woff?bji71x') format('woff'),
      url('../fonts/icon.svg?bji71x#icon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
  }
  
  [class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
  
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  .icon-phone:before {
    content: "\e942";
  }
  .icon-envelop:before {
    content: "\e945";
  }
  .icon-location:before {
    content: "\e947";
  }
  .icon-history:before {
    content: "\e94d";
  }
  .icon-clock:before {
    content: "\e94e";
  }
  .icon-accessibility:before {
    content: "\e9b2";
  }
  .icon-clipboard:before {
    content: "\e9b8";
  }
  .icon-list-numbered:before {
    content: "\e9b9";
  }
  .icon-sun:before {
    content: "\e9d4";
  }

  /*#endregion*/