/*Обнуление*/
*{
	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%;
  scroll-behavior: smooth;
}
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;}
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;}
/*--------------------*/


body {
  width: 100%;
  font-family: 'Inter', sans-serif;
  background-color: #F5F0E8;
  font-weight: normal;
  font-size: 20px;
}
h1{
	font-size: 32px;
	color: #00376E;
	font-family: 'Playfair Display', serif;
}

p{
  font-size: 24px;
  line-height: 1.7;
  padding: 25px 10px;
  text-align: justify;
  color: #00376E;
}

.button{
  display: inline-block;
  height: 43px;
  padding: 10px 15px;
  background-color: #1A73E8;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 400;
  border-radius: 14px;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 1.15);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.button:hover {
  background-color: #3ABCDE;
}

.button:active {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(2px);
}

.line {
  width: 50%;
  height: 1px;
  background-color: #3ABCDE;
}

a{
  color: #fff;
}

a :hover{
  color: #3ABCDE;
}

.header-contact{
  width: 100%;
  background-color: #1A73E8;
  color: #fff;
  text-align: center;
  gap: 20px;
}

.phone {
  padding-top: 24px;
}

.address{
  padding: 24px 0;
}

.email{
  padding-bottom: 24px;
}

.header {
  background: #F5F0E8;
}

.nav{
  display: flex;
  align-items: center;
  position: relative;
  padding: 10px 20px;
  background-color: #fff;
}

.logo{
  margin: 0 auto;
  text-align: center;
  color: #3ABCDE;
  padding-bottom: 20px;
}

.logo img{
  width: 169px;
  height: auto;
  padding: 14px 0;
}

.header-burger { display: flex; } /* бургер виден */
.nav-btn {
  display: none;
} 

.burger-title{
  color: #1A73E8;
  margin-left: auto;
}
/* Бургер-кнопка */
.header-burger {
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-burger span,
.header-burger span::before,
.header-burger span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: #1A73E8;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease;
  position: relative;
}

.header-burger span::before,
.header-burger span::after {
  content: '';
  position: absolute;
  left: 0;
}

.header-burger span::before { top: -6px; }
.header-burger span::after  { top: 6px; }

/* Анимация в крестик */
.header-burger.active span           { background: transparent; }
.header-burger.active span::before   { transform: translateY(6px) rotate(45deg); }
.header-burger.active span::after    { transform: translateY(-6px) rotate(-45deg); }

/* Выпадающее меню */
.header-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #1a73e8;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
  z-index: 100;
}

.header-menu.open {
  max-height: 300px;
  color: #00376E;
 }

.header-menu ul  { list-style: none; padding: 8px 0; }
.header-link     { display: block; padding: 14px 16px; text-decoration: none; }


.baner {
  width: 100%;
  background: url('../images/banner-background-mobile.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 10px;
}

.baner img{
  /* display: none; */
}

.baner h1{
  text-align: center;
  padding: 30px 0 0 0;
}

.baner .btn{
  text-align: center;
  padding-bottom: 24px;
  
}
.services {
  width: 100%;
  background-color:#fff;
  margin-bottom: 10px;
}
.title {
  padding: 10px 0 24px 10px;
}

.title h1 {
  padding-bottom: 10px;
}

.description {
  font-size: 13px;
  color: #349BB5;
  margin-bottom: 18px;
}

.line {
  width: 300px;
  color: #3ABCDE;
  margin-bottom: 25px;
}

.list {
  display: block;
  text-align: center;
}

.list img{
  margin-bottom: 24px;
}

.services .btn{
  padding: 24px 0;
  text-align: center;
}

.about {
  width: 100%;
  background-color: #fff;
  margin-bottom: 10px;
}

.about .content{
  background: url('../images/banner-background-mobile.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.contact {
  width: 100%;
  background-color: #EAF6F2;
  padding: 0 10px;
  display: block;
}

.card, .entry {
  width: 100%;
  background-color: #fff;
  border: solid 2px #3ABCDE;
  border-radius: 15px;
  margin-bottom: 10px;
  color: #00376E;
  font-family: 'Playfair Display', serif;
}

.card-ico {
  text-align: center;
  margin: 14px 0;
}

.card-info {
  text-align: center;
  line-height: 1.7;
  margin-bottom: 10px;
}

.card-title {
  font-size: 24px;
}

.main-info {
  font-size: 20px;
}

.supplement {
  font-size: 16px;
}

.entry p{
  text-align: center;
}

.entry .btn{
  text-align: center;
  padding-bottom: 24px;
}
footer{
  background-color: #1A73E8;
  width: 100%;
  color: #fff;
  font-family: 'Playfair Display', serif;

}

.footer-about p {
  color: #fff;
  line-height: 1.4;
}

.footer-line {
  width: 300px;
  text-align: center;
  height: 1px;
  background-color: #3ABCDE;
  margin: 0 auto;
}

.footer-business-hours {
  margin-top: 24px;
}

.footer-title {
  font-size: 24px;
  text-align: center;
  margin-bottom: 50px;
}

.footer-business-time {
  font-size: 20px;
  text-align: center;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-button {
  text-align: center;
  margin-bottom: 24px;
}

.footer-contact {
  margin-top: 24px;
}

.footer-address, .footer-phone, .footer-email {
  text-align: center;
  font-size: 20px;
  line-height: 1.7;
}

.footer-email{
  margin-bottom: 24px;
}
.copyright {
  padding: 10px 0;
  text-align: center;
  font-size: 16px;
}

/* Desctop version*/

@media (min-width: 1024px){

.wrapper-header-contact {
  display: flex;
  align-items:center;
  justify-content: center;
  gap: 20px;
}

.phone, .address, .email {
  padding: 24px 20px;
}
.nav{
  background-color: transparent;
}

  /* Лого и nav в одну строку */
  .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
  }

  .logo {
    margin: 0;
  }

  /* Прячем бургер и подпись */
  .header-burger { display: none; }
  .burger-title  { display: none; }

  /* Показываем кнопку */
  .nav-btn { display: flex; }

  /* Меню горизонтально */
  .nav {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 0;
  }

  .header-menu {
    position: static;
    max-height: none;
    overflow: visible;
    box-shadow: none;
    background: #F5F0E8;
    font-size: 24px;
  }

  .header-menu ul {
    display: flex;
    gap: 32px;
    padding: 0;
  }

  .header-menu li {
    border-bottom: none;
  }

  .header-link {
    padding: 0;
    color: #1a73e8;
  }
  .title{
    padding: 24px 0 24px 24px;
  }
}

@media (min-width: 1120px){

  .baner-content{
        width: 1120px;
        margin: 0 auto;
  }
  .content{
    padding-left: 64px;
  }
  .baner h1{
    text-align: left;
    padding-top: 68px;
  }
  .baner p{
    padding-left: 0;
    width: 750px;
   	font-family: 'Playfair Display', serif;
    line-height: 1.7;
  }
  .baner .btn{
    text-align: left;
    padding: 78px 0 108px 64px;
  }
  .services, .about{
    width: 1120px;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  .about{
    background-color:#fff;
  }

  .about .content{
    background:none;
    padding-bottom: 70px;
    width: 80%;
  }

  .about-wrapper{
    background-image: url('../images/about-img.png');
    background-size:contain;
    background-position: right;
    background-repeat: no-repeat;
  }

  .contact{
    width: 1120px;
    margin: 0 auto;
    padding-bottom: 24px;
  }

  .contact-cards{
  display: flex;
	flex-wrap: wrap;
	gap: 20px;
  }
  
  .card{
    display: flex;
    width: 480px;
    margin: 0 0 32px 4% ;
  }

  .card-ico{
    margin: 24px;

  }

  .card-info{
    text-align: left;
  }
  .footer-wrapper{
    display: flex;
  }
  .footer-info{
    width: 40%;
  }
  .footer-line{
    display: none;
  }
  .footer-business-hours{
    width: 30%;
  }
}
