@font-face {
  font-family: 'Inter';
  src: local('Inter'), local('Inter-Regular'),
      url('../fonts/Inter-Regular.woff2') format('woff2'),
      url('../fonts/Inter-Regular.woff') format('woff'),
      url('../fonts/Inter-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: local('Inter Medium'), local('Inter-Medium'),
      url('../fonts/Inter-Medium.woff2') format('woff2'),
      url('../fonts/Inter-Medium.woff') format('woff'),
      url('../fonts/Inter-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: local('Inter'), local('Inter-Bold'),
      url('../fonts/Inter-Bold.woff2') format('woff2'),
      url('../fonts/Inter-Bold.woff') format('woff'),
      url('../fonts/Inter-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

*{
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
}

html, body, p, ul, li, h1, h2, h3{
  margin: 0;
  padding: 0;
}

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

/*Header*/
.first-form{
	margin-top:50px;
}

.site-header{
  background-color: #0096DD;
  padding: 14px 0;
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;

}
.main-navigation ul{
  display: flex;
  align-items: center;
  list-style-type: none;
}
.mobile-menu{
  display: none;
}
.main-navigation li:not(:last-child){
  margin-right: 96px;
}
.main-navigation a{
  line-height: 19px;
  text-transform: uppercase;
  color: #FFFFFF;
  font-weight: 500;
  text-decoration: none;
}
.adress-text{
  font-weight: 500;
  line-height: 19px;
  text-transform: uppercase;
  color: #FFFFFF;
  position: relative;
}

.adress-text:before,
.footer-adress-name:before{
  content: '';
  display: block;
  width: 26px;
  height: 26px;
  background-image: url(../img/adress.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: -26px;
  top: calc(50% - 13px);
}
.phone a{
  font-weight: 700;
  line-height: 19px;
  text-transform: uppercase;
  color: #FFFFFF;
  text-decoration: none;
  position: relative;
}
.phone a:before,
.footer-phone-name:before{
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  background-image: url(../img/phone.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: -22px;
  top: calc(50% - 11px);
}

/*First screen*/

.first-screen{
  background-image: url(../img/young-handsome-physician-medical-robe-with-stethoscope.jpg);
  background-repeat: no-repeat;
  background-size:cover;
  padding-top: 50px;
  padding-bottom: 50px;
  min-height: calc(100vh - 92px);
  display: flex;
  align-items: center;
}
.first-screen .container {
    width: 100%;
}
.first-screen-inner{
  display: flex;
  justify-content: flex-end;
}
.first-screen-title{
  font-weight: 500;
  font-size: 70px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #0096DD;
  margin-bottom: 21px;
}
.first-screen-content{
  max-width: 550px;
}
.first-screen-sub-title{
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 12px;
}
.first-screen-text{
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
  color: #FFFFFF;
  margin-bottom: 55px;
}
.first-screen-title,
.first-screen-sub-title,
.first-screen-text{
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.4));
}
.first-screen-inner a{
  display: block;
}
.link-other-site{
  width: 300px;
  height: 60px;
  background-color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 19px;
  color: #000000;
  padding: 20px 0;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  position: relative;
  margin-bottom: 20px;
}
/*.link-other-site:after{*/
/*  content: '';*/
/*  display: block;*/
/*  width: 14px;*/
/*  height: 14px;*/
/*  background-image: url(../img/arrow-black.svg);*/
/*  background-size: cover;*/
/*  position: absolute;*/
/*  right: 58px;*/
/*  top: calc(50% - 7px);*/
/*}*/
.phone-btn{
  width: 300px;
  height: 60px;
  text-align: center;
  background-color: #7EDC00;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
  padding: 20px 0;
  text-decoration: none;
  border-radius: 50px;
  position: relative;
  transition: all .3s ease-in-out;
}
.phone-btn:hover{
  background-color: #73C900;
  transition: all .3s ease-in-out;
}
.phone-btn:before{
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  background-image: url(../img/phone.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: 41px;
  top: calc(50% - 11px);
}

/*Section why choose us*/

.why-choose{
  margin: 150px 0;
}

.section-title{
  background-color: #0096DD;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  font-size: 50px;
  line-height: 61px;
  text-align: center;
  padding: 20px 0;
  margin-bottom: 50px;
}
.why-choose-inner{
  background-color: #67B300;
}
.why-choose-inner .container{
  display: flex;
}
.why-choose-item{
  border-right: 5px solid #fff;
  height: 286px;
  padding: 28px 17px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex-basis: 25%;
}
.why-choose-item:first-child{
  border-left: 5px solid #fff ;;
}
.why-choose-img{
  flex-basis: 100px;
}
.why-choose-title{
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 10px;
}
.why-choose-text{
  font-weight: 700;
  font-size: 15px;
  line-height: 18px;
  text-align: center;
  letter-spacing: 0.03em;
  color: #FFFFFF;
}
.service-img{
  margin-right: 18px;
  margin-bottom: 20px;
  max-width: 385px;
  height: auto;
}
.service-img:nth-child(3),
.service-img:nth-child(6){
  margin-right: 0;
}
/*First-form section*/

.first-form-inner{
  border: 6px solid #63AC00;
  padding: 60px 33px 60px 40px;
}
.form-title{
  font-size: 30px;
  line-height: 45px;
  text-align: center;
  color: #000000;
  margin-bottom: 76px;
}
.form-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.form-inner input[type="text"],
.form-inner input[type="tel"]{
  border: none;
  border-bottom: 1px solid #777;
  padding: 22px 6px;
  font-size: 20px;
  width: 380px;

}
.first-form-btn{
  border: none;
  background-color: #00B0F3;
  color: #fff;
  width: 300px;
  height: 60px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  transition: all .3s ease-in-out;
}
.first-form-btn:hover{
  background-color: #00A8E7;
  transition: all .3s ease-in-out;
}
.form-inner .wpcf7-spinner{
  margin-top: 30px;
  margin-left: calc(50% - 45px);
}

/*Price section*/

.price{
  margin: 150px 0;
}
.price-inner{
  display: flex;
  align-items: center;
}
.price-img{
  margin-right: 66px;
}

.prises__list {
	max-width: 900px;
	margin: 0 auto;
}

.prises__item:not(:last-of-type) {
	border-bottom: 1px solid #ffffff;
}

.prises__item-title {
	font-size: 18px;
	line-height: 1.2;
	color: #ffffff;
	position: relative;
	cursor: pointer;
	padding: 25px 75px 25px 30px;
	background-color: #0096DD;
}

.prises__item-arrow {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	right: 20px;
	border-radius: 50%;
	background-color: #ffffff;
	transform: translateY(-50%);
	transition: background-color .3s, transform .3s;
}

.prises__item-arrow:before,
.prises__item-arrow:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 24px;
	height: 2px;
	background-color: #0096DD;
	z-index: 1;
	transition: background-color .3s;
}

.prises__item-arrow:after {
	transform: translate(-50%,-50%) rotate(90deg);
}

@media (min-width: 576px) {
    .prises__item-title:hover .prises__item-arrow,
    .prises__item.active .prises__item-arrow {
    	transform: translateY(-50%) rotate(45deg);
    }
}

.prises__item-content {
	overflow: hidden;
	height: 0;
	transition: height .3s;
}

.prises__item-table__wrapper {
	padding: 30px;
	border: 3px solid #0096DD;
}

.prises__item-table {
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
}

.prises__item-content td {
	padding: 3px 10px;
	border: 1px solid #333333;
}

.prises__item-content td:last-child {
	width: 170px;
}

.prises__item-notice p {
	font-size: 13px;
	line-height: 1.2;
}

.prises__item-notice p:last-of-type {
	margin-bottom: 0;
}

.photo-med-center{
  margin: 150px 0;
}
.photo-med-center-img{
  margin: 0 30px;
  width: 200px;
  height: auto;
 

}
.photo-med-center-inner{
  width: 1000px;
  margin: 0 auto;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next{
  border: none;
  background-color: #67B300;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: calc(50% - 14px);
  z-index: 99;

}
.owl-carousel .owl-nav button.owl-prev{
  background-image: url(../img/arrow-left.svg);
  left: 31%;
}
.owl-carousel .owl-nav button.owl-next{
  background-image: url(../img/arrow-right.svg);
  right: 31%;
}
#customers-testimonials .item {
  -webkit-transform: scale3d(0.8, 0.8, 1);
  transform: scale3d(0.8, 0.8, 1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#customers-testimonials .owl-item.active.center .item {
  opacity: 1;
  -webkit-transform: scale3d(1.0, 1.0, 1);
  transform: scale3d(1.0, 1.0, 1);
}
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
  margin: 0 auto 17px;
  
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
  background: #3190E7;
}
#customers-testimonials.owl-carousel .owl-dots{
display: inline-block;
width: 100%;
text-align: center;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot{
display: inline-block;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
  background: #d9d9d9;
  display: inline-block;
  height: 7px;
  margin: 0 5px 0px;
  transition: all 250ms ease-out 0s;
  width:7px;
  border-radius: 50%;
}


/*Second form section*/
.second-form{
  margin: 150px 0;
}
.second-form-title{
  font-size: 50px;
  line-height: 61px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
}
.second-form-sub-title{
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  margin-bottom: 43px;
}
.second-form-inner{
  background: linear-gradient(180deg, #00F483 0%, #00B0F3 100%);;
  padding: 5px;
  border-radius: 20px;

}
.second-form-container{
  background-color: #fff;
  border-radius: 20px;
  padding: 111px 188px 106px;
}
.second-form input[type="text"],
.second-form input[type="tel"]{
  width: 100%;
  border: none;
  border-bottom: 1px solid #00F483;
  font-size: 20px;
  line-height: 24px;
  color: #777;
  padding: 22px 6px;
}
.second-form input[type="text"]{
  margin-bottom: 34px;
}
.second-form input[type="tel"]{
  margin-bottom: 60px;
}
.second-form .first-form-btn{
  margin: 0 auto;
  display: block;
}
/*Footer*/

.site-footer{
  background-color: #0096DD;
  padding: 116px 0;
}
.footer-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-mail{
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 30px;
  line-height: 36px;
}
.footer-adress-name,
.footer-phone-name{
  font-weight: 700;
  font-size: 15px;
  line-height: 18px;
  color: #FFFFFF;
  position: relative;
  margin-bottom: 7px;
}
.footer-adress-text,
.footer-phone-link{
  font-size: 15px;
  line-height: 18px;
  color: #FFFFFF;
  text-decoration: none;
}
.footer-btn{
  border: 3px solid #fff;
  border-radius: 50px;
  display: block;
  width: 300px;
  height: 60px;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #FFFFFF;
  text-decoration: none;
  padding: 14px 0;
  text-align: center;
  position: relative;
}
.footer-btn:after,
.thank-you-link:after{
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  background-image: url(../img/arrow-up.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: calc(50% - 9px);
    right: 27px;
}

/*Page 404*/

.error-404{
  padding: 152px 0 200px;
  background-image: url('../img/Group\ 172.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}
.sub-title-error-page{
  font-size: 80px;
  line-height: 90px;
  color: #FFFFFF;
  text-align: center;
}
.title-error-page{
  font-weight: 600;
  font-size: 220px;
  line-height: 249px;
  color: #FFFFFF;
  text-align: center;
}
.text-error-page{
  font-weight: 600;
  font-size: 30px;
  line-height: 34px;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 50px;
}
.link-error-page{
  background-color: #00B0F3;
  color: #fff;
  width: 300px;
  height: 60px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  display: block;
  padding: 18px 0;
  text-align: center;
  text-decoration: none;
  margin: 0 auto;
}

.thank-you{
  padding: 8vh 0;
}
.thank-you .container{
  background-color: #67B300;
  border-radius: 20px;
  padding: 243px 0 143px;
}
.thank-you-title{
  font-weight: 600;
  font-size: 45px;
  line-height: 54px;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 26px;
}
.thank-you-text{
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 106px;
}
.thank-you-link{
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
  color: #FFFFFF;
  display: block;
  margin: 0 auto;
  width: 203px;
  position: relative;

}
.thank-you-link:after{
  right: 0;
}


.shadow-effect {
  background: #fff;
  padding: 20px;
  border-radius: 4px;
  text-align: center;
border:1px solid #ECECEC;
  box-shadow: 0 19px 38px rgba(0,0,0,0.10), 0 15px 12px rgba(0,0,0,0.02);
}
.mob-phone-link{
  display: none;
}
.input-hidden{
	display:none;
}

.welcome-section {
    text-align: center;
    color: #FFFFFF;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../img/young-handsome-physician-medical-robe-with-stethoscope.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.welcome-section:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(4,6,19,.7);
    z-index: -1;
}

.welcome-title {
    font-size: 28px;
    margin-bottom: 30px;
}

.welcome-text {
    font-size: 20px;
    margin-bottom: 20px;
}

.welcome-section a {
    display: inline-block;
    width: 300px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    padding: 20px 0;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color .3s;
}

.welcome-link-home {
    color: #000000;
    margin-bottom: 30px;
    background-color: #FFFFFF;
}

.welcome-link-home:hover {
    background-color: #EAE4E4;
}

.welcome-phone {
    color: #FFFFFF;
    background-color: #7EDC00;
    position: relative;
    justify-content: center;
    margin: 0 auto;
}

a.welcome-phone {
    display: flex;
}

.welcome-phone:hover {
    background-color: #73C900;
}

.welcome-phone:before {
    content: '';
    display: block;
    margin-right: 10px;
    width: 22px;
    height: 22px;
    background: url(../img/phone.svg) center center no-repeat;
    background-size: cover;
}


@media screen and (max-width: 1300px) {

.owl-carousel .owl-nav button.owl-prev{
  background-image: url(../img/arrow-left.svg);
  left: 30.5%;
}
.owl-carousel .owl-nav button.owl-next{
  background-image: url(../img/arrow-right.svg);
  right: 30.5%;
}

}



@media screen and (max-width: 1200px) {
  .container{
    max-width: 960px;
  }
  .main-navigation li:not(:last-child) {
    margin-right: 50px;
  }
  .service-img:nth-child(3), .service-img:nth-child(6) {
    margin-right: 18px;
  }
  .services-inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .form-inner input[type="text"], .form-inner input[type="tel"]{
    width: 260px;
  }
  .owl-carousel .owl-nav button.owl-prev{
    background-image: url(../img/arrow-left.svg);
    left: 21%;
  }
  .owl-carousel .owl-nav button.owl-next{
    background-image: url(../img/arrow-right.svg);
    right: 21%;
  }
  .prises__wrapper {
		padding: 30px 0 60px;
  }
}
@media screen and (max-width: 992px) {
  .container{
    width: 720px;
  }
  .main-navigation li:not(:last-child) {
    margin-right: 30px;
  }
  .adress-text{
    display: none;
  }

  .first-screen-inner{
    justify-content: center;
  }
  .first-screen-title {
      font-size: 60px;
  }
  .first-screen-sub-title,
  .first-screen-text {
      font-size: 30px;
  }
  .first-screen-title,
  .first-screen-sub-title,
  .first-screen-text{
    text-align: center;
  }
  .link-other-site{
    margin: 0 auto 20px
  }
  .phone-btn{
    margin: 0 auto;
  }
  .why-choose-inner .container{
    flex-wrap: wrap;
  }
  .why-choose-item{
    flex-basis: 50%;
  }
  .why-choose-item:nth-child(3){
    border-left:5px solid #fff;
    border-top: 5px solid #fff;
  }
  .why-choose-item:nth-child(4){
    border-top: 5px solid #fff;
  }
  .service-img{
    max-width: 340px;
  }

    .prises__item-title {
		padding: 20px 75px 20px 30px;
	}
	.prises__item-table__wrapper {
		padding: 20px;
	}
  .form-inner{
    flex-direction: column;
  }
  .form-inner input[type="text"], .form-inner input[type="tel"] {
    width: 100%;
  }
  .form-inner input[type="tel"]{
    margin-bottom: 60px;
  }
  .footer-inner{
    flex-direction: column;

  }
  .footer-mail{
    margin-bottom: 44px;
  }
  .footer-adress-name, .footer-phone-name{
    margin: 0 auto;
    max-width: 55px;
    margin-bottom: 10px;
   
  }
  .footer-phone-name{
    max-width: 76px;
  }
  .footer-adress-text, .footer-phone-link{
    text-align: center;
    margin-bottom: 45px;
  }
  .footer-phone-link{
    display: block;
    max-width: 160px;
  }
}
@media screen and (max-width: 768px) {
  .container{
    max-width: 540px;
  }
  .main-navigation{
    display: none;
  }
  .why-choose-title{
    font-size: 27px;
    line-height: 32px;
  }
  .why-choose-text{
    max-width: 200px;
  }
  .service-img {
    margin-right: 10px;
    margin-bottom: 10px;
    max-width: 255px;
  }
  .service-img:nth-child(3), .service-img:nth-child(6) {
    margin-right: 10px;
  }
  .form-title{
    margin-bottom: 20px;
  }
  .services-inner{
    margin-bottom: 50px;
  }
  .owl-carousel .owl-nav button.owl-next{
    right: 20px;
  }
  .owl-carousel .owl-nav button.owl-prev{
    left: 20px;
  }
  .second-form-container{
    padding: 50px 23px;
  }
  .mobile-menu{
    display: block;
  }
  .burger .line-menu{
    width: 73px;
    height: 1px;
    background-color: #fff;
    transition: all .3s ease-in-out;
  }
  .burger .line-menu:not(:last-child){
    margin-bottom: 20px;
    transition: all .3s ease-in-out;
  }

  .burger-active .line-menu:nth-child(2){
    display: none;
  }   
  .burger-active .line-menu:first-child{
    transform: rotate(-45deg);
    transition: all .3s ease-in-out;
  }
  .burger-active .line-menu:last-child{
    transform: rotate(45deg);
    transition: all .3s ease-in-out;
  }
  .burger-active .line-menu{
    margin-bottom: 0 !important;
    transition: all .3s ease-in-out;
  }

  #mobile-menu{
    position: absolute;
    top: 172px;
    background-color: #fff;
    list-style-type: none;
    width: 100%;
    left: 0;
    padding: 30px 0;
    z-index: 99;
    transform-origin: top;
    transform: scale(1,0);
    transition: all .3s ease-in-out;
  }
  #mobile-menu li{
    padding: 20px 50px;
    border-bottom: 1px solid #dad9d9;
  }
  #mobile-menu li a{
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    font-weight: 700;
    
  }
  
  .hidden{
    overflow: hidden;
  }
  .site-branding{
    flex-basis: 33%;
  }

}

@media screen and (max-width: 530px) {
  .container{
    max-width: 100%;
    padding: 0 15px;
  }
  .phone .desktop-phone-link{
    display: none;
  }
  .first-screen-title{
    font-size: 44px;

  }
  .first-screen-sub-title,
  .first-screen-text{
    font-size: 20px;
  }
  .price-img{
    width: 100%;
  }
  .second-form-title {
    font-size: 20px;
    line-height: 24px;
  }
  .first-form-btn{
    width: 260px;
  }
  .link-other-site {
    width: 260px;
  }
  .why-choose{
    margin-top: 0;
    margin-bottom: 40px;
  }
  .phone-btn:before{
    width: 18px;
    height: 18px;
    left: 24px;
    top: calc(50% - 9px);
  }
  .section-title {
    font-size: 25px;
    line-height: 30px;
    padding: 35px 0;
    margin-bottom: 5px;
  }
  .phone-btn{
    width: 260px;
  }
  .why-choose-title {
    font-size: 15px;
    line-height: 18px;
  }
  .why-choose-item {
    height: 165px;
    padding: 5px;
    background-color: #67B300;
  }
  .why-choose-text {
    max-width: 100%;
    font-size: 12px;
    line-height: 14px;
  }
  .why-choose-img {
    height: auto;
    width: 69px;
    flex-basis: 69px;
  }
  .why-choose-inner{
    background: none;
  }
  .why-choose-inner .container{
    padding: 0 5px;
  }
  .service-img {
    margin-right: 5px;
    margin-bottom: 5px;
    max-width: 140px;
  }
  .service-img:nth-child(3), .service-img:nth-child(6) {
    margin-right: 5px;
  }
  .services-inner {
    margin-bottom: 40px;
  }
  .form-title {
    font-size: 20px;
    line-height: 26px;
  }
  .first-form-inner {
    border: 2px solid #63AC00;
    padding: 50px 20px;
  }
  .form-inner input[type="text"], .form-inner input[type="tel"]{
    padding: 15px 6px;
    font-size: 15px;
  }
  .form-inner input[type="text"], .form-inner input[type="tel"] {
    width: 97%;
  }
  
  .form-inner .wpcf7-spinner {
    margin-top: 15px;
    margin-left: calc(50% - 101px);
  }
  	.prises__item-title {
		padding: 15px 70px 15px 20px;
	}

	.prises__item-table__wrapper {
		padding: 15px;
	}

	.prises__item-content td:last-child {
		width: 100px;
	}
  .photo-med-center {
    margin: 40px 0;
  }
  .photo-med-center .section-title{
    margin-bottom: 0;
  }
  .owl-carousel .owl-nav button.owl-prev, 
  .owl-carousel .owl-nav button.owl-next{
    width: 40px;
    height: 40px;
    top: calc(50% - 40px);
  }
  .owl-carousel .owl-nav button.owl-prev {
    left: 10px;
  }
  .owl-carousel .owl-nav button.owl-next {
    right: 10px;
  }
  .second-form {
    margin: 40px 0;
  }
  .second-form-sub-title {
    font-size: 15px;
    line-height: 18px;
  }
  .mob-phone-link:before{
    display: none !important;
  }
  .mob-phone-link{
    display: block;
    background-color: #fff;
    width: 65px;
    height: 65px;
    padding: 15px;
    border-radius: 50%;
  }

  .mobile-menu-active{
    transform-origin: top;
    transform: scale(1,1) !important;
    transition: all .3s ease-in-out;
  }
}

@media screen and (max-width: 340px) {
  .second-form-inner .first-form-btn,
  .first-form-inner .first-form-btn {
    width: 100%;
  }
}


