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

body {
    color: #000000;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #e7ebe8;
}

:root {
    --purple: rgb(55, 37, 99);
    --litepurple: rgb(127, 85, 131);
    --green: #007c57;  /* 255,160,112 rgba(248, 184, 8); */
    --greentrans: #07b27f;  /* 255,203,177 rgba(248, 184, 88, 0.589); */
    --greenopasity: rgba(0, 124, 87, 0.8);
    font-size: 25px;
}

.hidden-header {
    position: absolute;
    white-space: nowrap;
    width: 1px;
    height: 1px;
    overflow: hidden;
    border: 0;
    padding: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    margin: -1px;
}

.header-wrapp {
    width: 100%;
    height: 100px;
    background: var(--greenopasity);
    position: fixed;
    padding: 0 100px 0 100px;
    top: 0; 
    z-index: 10;
}

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

.logo {
    width: 100px;
}

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

.menu .menu-item {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    font-size: 0.7rem;
    margin-right: 20px;
    margin-top: 10px;
}

.menu a:hover, .menu a:focus {
    color: var(--purple);
}

.main-container {
    padding: 200px 100px 0 100px;
}

.info-me-list img {
    width: 50px;
    margin-right: 20px;
}

.info-me-list li {
    color: var(--purple);
    font-weight: 600;
}

.in-bl {
    display: inline-block;
}

.about {
    display: flex;
    padding-bottom: 50px;
    border-bottom: solid 1px var(--purple);
}

.photo {
    width: 30%;
}

#photo {
    width: 300px;
}

.info-me {  
    width: 70%;
    margin-left: 50px;
}

.first-header {
    color: var(--purple);
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
}


.info-me-list ul {
    list-style: none;
    list-style-position: inside;
}

.info-me-list li {
    margin: 20px 0;
    font-size: 1rem;
    position: relative;
    padding-left: 3.2em;
    text-indent: 0;
}

.psi::before {
    content: '\3A8';
    font-weight: 600;
    font-size: 1.5rem;
    padding-right: 20px;  
    padding-left: 20px;      
    color: var(--green);
    position: absolute;
    left: 0;  
}

.books::before {
    font-family: "Font Awesome 6 Free";
    display: inline-block;
    content: '\f02d';
    padding-right: 20px; 
    padding-left: 20px;    
    font-size: 1.5rem;
    color: var(--green);
    position: absolute;
    left: 0;
}

.book-link {
  color: inherit; 
  text-decoration: none;
}

.link-container {
    color:var(--green);
}

.stethoscope::before {
    font-family: "Font Awesome 6 Free";
    display: inline-block;
    content: '\f0f1';
    font-size: 1.3rem;
    padding-right: 20px; 
    padding-left: 20px;       
    color: var(--green);
    position: absolute;
    left: 0;
}

.btn-container {
    padding: 0;
    width: 100%;
    height: 100px;
    margin-top: 50px;
}
  

.btn-call {
    display: flex;
    justify-content: right;
    margin: 3% 3% 0 0;
    /* width:50px; */
}

.pop-up {
    padding: 8% 18%;
}

.btn-call-link {
    display: inline-block;
    text-align: center;
    width: 27%;
}

.btn-call .btn-call-link {
    font-size: 0.7rem;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    background: var(--purple);
    padding: 10px 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
    animation: btnCallMove 2s infinite;
}

@keyframes btnCallMove {
    0% {
        padding: 10px 20px ;
    }
    50% {
        padding: 15px 25px ;
    }
    100% {
        padding: 10px 20px ;
    }

}

.info-work {
    padding: 150px 0;
}

.info-work ul {
    list-style: none;
} 

.fa-check-square{
    font-size: 2rem;
    color: var(--green);
    padding-right: 20px;
    position: relative;
    top: 10px;
}

.info-work li {
    margin: 20px 0;
    font-size: 1rem;
    font-weight: bold;
    color: var(--litepurple);
}

.inside-list li {
    font-size: .7rem;
    padding-left: 10%;
}

.scale::before {
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    content: '\f080';
    padding-right: 20px;    
    font-size: 1.5rem;
    color: var(--green);
}


.med-book::before {
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    content: '\f7e6';
    padding-right: 20px;    
    font-size: 1.5rem;
    color: var(--green);
}

.section-header {
    color: var(--purple);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 50px;
}

.test-wrapper {
 padding: 100px 100px 0 100px;
}

.test {
    background: var(--purple);
    color: #ffffff;
    text-align: center;
    padding: 10% 0;
}

.test .test-header {
    font-size: 2rem;
}

.btn-test {
    padding: 20px;
    background-color: var(--green);
    width: 300px;
    margin: 0 auto;
    border-radius: 10px;
    margin-top: 50px; 
}

.btn-test:hover, .btn-test:focus {
    background-color: var(--greentrans);
}

.btn-test .test-link-btn {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
}

.test-ua, .test-ru {
    font-size: 0.9rem;
    padding: 3% 24%;
}

.consultation-wrapper {
    padding: 0 100px 0 100px;
}

.consultations {
    padding: 150px 0 0 0;
}

.consultations-list {
    box-shadow: 0 0 30px rgba(0,0,0,0.4);
    padding: 5%;
}

.consultations ul {
    background-color: #ffffff;
    color: var(--litepurple);
    font-weight: bold;
    list-style: none;
    list-style-position: outside;
}

.consultation::before {
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    content: '\f46c';
    padding-right: 20px;    
    font-size: 1.5rem;
    color: var(--green);
}

.discount-twenty {
    font-size: 0.7rem;
    padding-left: 10%;
}

.discount-twenty span {
    font-size: 1rem;
    color: var(--green);
}

.discount-twenty span span {
    font-size: 1.7rem;
}



.consultations li {
    padding-bottom: 2%;
}

.g-meet-icon img{
    width: 80px;
}

.time-price {
    padding: 1rem;
}

.icon-phone::before {
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    content: '\f3cd';
    font-size: 1.3rem;
    color: var(--purple);
}

.icon-e-mail::before {
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    content: '\f0e0';
    font-size: 1.3rem;
    color: var(--purple);
}

.icon-clock::before {
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    content: '\f017';
    font-size: 1.3rem;
    color: var(--purple);
    padding-right: 20px;
}

.sup-asterics-container {
    font-style: italic;
}

.sup-asterics {
    font-size: 1.1rem;
}

.icon-hryvnya::before {
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    content: '\f6f2';
    font-size: 1.3rem;
    color: var(--purple);
    padding-right: 20px;
}

.icon-day::before {
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    content: '\f783';
    font-size: 1.3rem;
    color: var(--purple);
}

.upper {
    display: inline-block;
    text-transform: uppercase;
    padding-bottom: 1%;
}

.discount-container {
    display: flex;
    justify-content: center;
}

.discount {
    display: inline-block;
    text-align: center;
    width: 30%;
    font-size: 1.5rem;
}

.discount span {
    font-size: 4rem;
    color: var(--green);
}

.plus {
    padding-left: 30px;
}

.plus::before {
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    content: '\f271';
    padding-right: 20px;
    font-size: 1.3rem;
    color: var(--green);
}

.discount-info {
    display: inline-block;
    width: 70%;
    font-size: 0.7rem;
}

.discount-info ul {
    list-style: none;
}


.discount-ukraine {
    margin-top: 40px;
}

.discount-ukraine img {
    width:100%;
    height: 100%;
}

footer {
    color: #fff;
    width: 100%;
    padding-top: 100px;
}

.contact-h {
    font-size: 1rem;
    font-weight: bold;
}

.container-footer {
    display: flex;
    background: var(--greentrans);
    padding: 50px 100px 0 100px;
}

.c-f-one {
    display: inline-block;
    width: 40%;
}

.c-f-two {
    display: inline-block;
    width: 60%;
}

.working-time {
    margin-bottom: 20px;
}

.working-time .contact-h {
    margin: 0 0 20px 0;
}

.street {
  font-size: 0.7rem;
   padding: 10px 10px 20px 10px;
}

.contact-list {
    list-style-type: none;
}

.phone {
    margin: 10px 0;
}

.phone .phone-link {
    font-size: .7rem;
    text-decoration: none;
    color: #fff;

}

.phone .phone-link:hover, .phone .phone-link:focus {
    color: var(--purple);
}

.mail {
    margin: 10px 0 20px 0;
}

.mail a {
    font-size: .7rem;
    text-decoration: none;
    color: #fff;
}

.mail a:hover, .mail a:focus {
    color: var(--purple);
}

.social-list, .soc-icon {
    display: inline;
    list-style-type: none;
    width:30px;
    margin: 0 5px;
}

.soc-icon a {
    text-decoration: none;
}


.copyright {
    color: #fff;
    font-weight: normal;
    font-size: 10px;
    text-align: center;
    padding: 20px 0;
    background: var(--green);
}

.chevronup-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.chevronup a {
    text-decoration: none;
}

.fa-chevron-up {
    color: #ffffff;
    font-size: 1.3rem;
    background: var(--purple);
    border-radius: 10px;
    padding: 5px 8px;
}


/*Form style*/
#fcf-form {
    display:block;
}

.fcf-body {
    margin: 0;
    font-family: -apple-system, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
    padding: 30px;
    padding-bottom: 10px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    max-width: 100%;
}

.fcf-form-group {
    margin-bottom: 1rem;
}

#Phone::placeholder {
    color: rgba(108, 122, 137, 0.5);
    
}

.fcf-input-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}

.fcf-form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    outline: none;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.fcf-form-control:focus {
    border: 1px solid #313131;
}

select.fcf-form-control[size], select.fcf-form-control[multiple] {
    height: auto;
}

textarea.fcf-form-control {
    font-family: -apple-system, Arial, sans-serif;
    height: auto;
}

label.fcf-label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.fcf-credit {
    padding-top: 10px;
    font-size: 0.5rem;
    color: #545b62;
}

.fcf-credit a {
    color: #545b62;
    text-decoration: underline;
}

.fcf-credit a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.fcf-btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 0.5rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}


.form-btn-back {
    text-decoration:none; 
    font-size: 20px; 
    font-weight: bold; 
    color: #fff; 
    background: rgb(55, 37, 99); 
    padding: 10px 10px; 
    margin-top: 10px; 
    border-radius: 10px; 
    width:33%;
    text-align: center;
}


.thanks-message { 
    padding: 250px 100px 0 100px; 
    text-align: center; 
    font-weight: bold;"
}



@media (prefers-reduced-motion: reduce) {
.fcf-btn {
        transition: none;
    }
}

.fcf-btn:hover {
    color: #212529;
    text-decoration: none;
}

.fcf-btn:focus, .fcf-btn.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.fcf-btn-primary {
    color: #fff;
    background-color: var(--purple);
}

.fcf-btn-primary:hover {
    color: #fff;
    background-color: var(--litepurple);
}

.fcf-btn-primary:focus, .fcf-btn-primary.focus {
    color: #fff;
    background-color: var(--litepurple);
}

.fcf-btn-lg, .fcf-btn-group-lg>.fcf-btn {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}

.fcf-btn-block {
    display: block;
    width: 100%;
}

.fcf-btn-block+.fcf-btn-block {
    margin-top: 0.5rem;
}

input[type="submit"].fcf-btn-block, input[type="reset"].fcf-btn-block, input[type="button"].fcf-btn-block {
    width: 100%;
}


/*Page Skriner*/

.page-skriner {
    margin-top: 15%;
    padding: 0 10px;
}


.skriner {
    /*padding-top: 100px;*/
    display: flex;
    justify-content: center;
}

.order-title {
    text-align: center;
    font-size: 1rem;
    color: var(--purple);
}

.order {
    display: flex;
    justify-content: center;
    padding-bottom: 50px;
}


.order-btn  {
    padding: 10px 0;
    display: flex;
    justify-content: center;
}

.order-btn a{
    text-align: center;
    width: 15%;
    padding: 10px;
    text-decoration: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: bold;
    background: var(--purple);
    border-radius: 10px;
}


/*Mob menu*/ 

.btn-menu {
    display: none;
}

.hidden-menu-ticker {
    display: none;
}

.btn-menu {
    color: #fff;
    padding: 5px;
    position: fixed;
    top: 10px;
    right: 10px;
    cursor: pointer;
    transition: right .23s;
    z-index: 3;
    width: 35px;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
 
.btn-menu span {
    display: block;
    height: 5px;
    background-color: var(--purple);
    margin: 5px 0 0;
    transition: all .1s linear .23s;
    position: relative;
}
 
.btn-menu span.first {
    margin-top: 0;
}

.hidden-menu {
    display: block;
    position: fixed;
    list-style:none;
    padding: 50px 10px 10px;
    margin: 0;
    box-sizing: border-box;
    width: 200px;
    background-color: var(--greenopasity);
    height: 100%;
    top: 0;
    right: -200px;
    transition: right .2s;
    z-index: 2;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
}
 
.hidden-menu li {
    padding:10px 0;
}
 
.hidden-menu li a {
    font-weight: bold;
    text-decoration: none;
    font-size:15px;
    color: var(--purple);
    padding:6px 0px;
}

.hidden-menu-ticker:checked ~ .btn-menu {
    right: 160px;
}
.hidden-menu-ticker:checked ~ .hidden-menu {
    right: 0;
}
.hidden-menu-ticker:checked ~ .btn-menu span.first {
    -webkit-transform: rotate(45deg);
    top: 10px;
}
.hidden-menu-ticker:checked ~ .btn-menu span.second {
    opacity: 0;
}
.hidden-menu-ticker:checked ~ .btn-menu span.third {
    -webkit-transform: rotate(-45deg);
    top: -10px;
}


/* Desctop */
@media screen and (min-width: 768px) and (max-width: 1024px) {

    .main-container {
        padding: 200px 50px 0 50px;
    }

    .header-wrapp {
        padding: 0 50px 0 50px;
    }

    .info-me {
        margin-left: 100px;
    }
  /*  .book .book-header {
    width: 78%;
    } */

    .container-footer {
        padding: 50px 50px 0 50px;
    }

    .consultation-wrapper {
        padding: 0 50px 0 50px;
    }
    
    .page-skriner {
        margin-top: 30%;
    }

    .skriner {
        padding-left: 50px;
        padding-right: 50px;
    }

    .btn-call-link {
        width: 50%;
    }

    .test-ua,
    .test-ru {
        font-size: 0.8rem;
        padding: 3% 10%;
    }
    
    .form-btn-back {
        width:75%;
    }
}

/* iPad */
@media screen and (min-width: 414px) and (max-width: 768px) {
    :root {
        font-size: 20px !important;
    }

    .main-container {
        padding: 200px 20px 0 20px;
    }

    .header-wrapp {
        padding: 0 20px 0 20px;
    }

    #photo  { 
       height: 330px;
    }

    .consultation-wrapper {
        padding: 0 20px 0 20px;
    }

    .discount {
        font-size: 0.8rem;
    }

    .discount span {
        font-size: 2rem;
    }

    .in-bl {
        display: block;
    }

    .about {
        display: block;
    }
    
    .photo {
        display: flex;
        justify-content: center;
        padding-bottom: 10px;
        width: 100%;
    }
    
    .info-me {  
        width: 100%;
        margin-left: 0;
    }

    .btn-call {
        justify-content: center;
        margin: 5% 3% 0 0;
        text-align: center;
    }

    .btn-call-link {
        width: 50%;
    }

    .test-wrapper {
        padding: 100px 20px 0 20px;
    }

    .container-footer {
        display: block;
        padding: 50px 20px 0 20px;
    }

    .c-f-one, .c-f-two {
        width: 100%;
    }

    .c-f-one {
        margin-bottom: 20px;
    }

    .page-skriner {
        margin-top: 30%;
    }
    
    .skriner {
        padding-left: 0;
        padding-right: 0;
    }
        .test-ua,
        .test-ru {
            font-size: 0.9rem;
            padding: 3% 10%;
        }
        
        .form-btn-back {
        width:75%;
    }
}


/* Mobile */
@media screen and (min-width: 375px) and (max-width: 414px) {
   
    :root {
        font-size: 20px !important;
    }

    .btn-menu {
        display: block;
    }

    .menu {
        display: none;
    }

    .main-container {
        padding: 200px 20px 0 20px;
    }

   /* .book .book-header {
        width: 70%;
    } */

    .info-work li {
        font-size: 0.9rem;
    }

    .inside-list li {
        font-size: 0.8rem;
    }

    .header-wrapp {
        padding: 0 20px 0 20px;
    }

    .consultation-wrapper {
        padding: 0 20px 0 20px;
    }

    .discount {
        font-size: 0.8rem;
    }
    .discount span {
        font-size: 2rem;
    }

    .in-bl {
        display: block;
    }

    .about {
        display: block;
    }
    
    .photo {
        display: flex;
        justify-content: center;
        padding-bottom: 10px;
        width: 100%;
    }
    
    .info-me {  
        width: 100%;
        margin-left: 0;
    }

    .btn-call {
        justify-content: center;
        margin: 10% 3% 0 0;
        text-align: center;
    }

    .btn-call-link {
        width: 50%;
    }

    .test-wrapper {
        padding: 100px 20px 0 20px;
    }

    .container-footer {
        display: block;
        padding: 50px 20px 0 20px;
    }

    .c-f-one, .c-f-two {
        width: 100%;
    }

    .c-f-one {
        margin-bottom: 20px;
    }

    .page-skriner {
        margin-top: 30%;
    }
    
    .skriner {
        padding-left: 0;
        padding-right: 0;
    }

    #photo  { 
       height: 330px;
    }

    .test-ua,
    .test-ru {
        font-size: 0.8rem;
        padding: 3% 10%;
    }

    .form-btn-back {
        width:75%;
    }

}

@media screen and (min-width: 320px) and (max-width: 375px) {
    
    :root {
        font-size: 20px !important;
    }
    
    .btn-menu {
        display: block;
    }

    .menu {
        display: none;
    }

    .main-container {
        padding: 200px 20px 0 20px;
    }

    .header-wrapp {
        padding: 0 20px 0 20px;
    }

    .consultation-wrapper {
        padding: 0 20px 0 20px;
    }

    .discount {
        font-size: 0.8rem;
    }

    .discount span {
        font-size: 2rem;
    }

    .in-bl {
        display: block;
    }

    .about {
        display: block;
    }
    
    .photo {
        display: flex;
        justify-content: center;
        padding-bottom: 10px;
        width: 100%;
    }
    
    .info-me {  
        width: 100%;
        margin-left: 0;
    }

    .btn-call {
        justify-content: center;
        margin: 10% 3% 0 0;
        text-align: center;
    }    

    .btn-call-link {
        width: 50%;
    }

    .test-wrapper {
        padding: 100px 20px 0 20px;
    }

    .container-footer {
        display: block;
        padding: 50px 20px 0 20px;
    }

    .c-f-one, .c-f-two {
        width: 100%;
    }

    .c-f-one {
        margin-bottom: 20px;
    }

    .page-skriner {
        margin-top: 40%;
    }
    
    .skriner {
        padding-left: 0;
        padding-right: 0;
    }

    #photo  { 
       height: 330px;
 }
    .test-ua,
    .test-ru {
        font-size: 0.8rem;
        padding: 3% 10%;
    }
    
    .form-btn-back {
        width:75%;
    }
}

@media screen and (min-width: 280px) and (max-width: 319px) {

:root {
        font-size: 15px;
    }

    .btn-menu {
        display: block;
    }

    .menu {
        display: none;
    }

    .main-container {
        padding: 150px 0 0 4px;
    }

    .header-wrapp {
        padding: 0 20px 0 20px;
    }

    .consultation-wrapper {
        padding: 0 20px 0 20px;
    }

    .discount {
        font-size: 0.8rem;
    }

    .discount span {
        font-size: 2rem;
    }

    .in-bl {
        display: block;
    }

    .about {
        display: block;
    }

    .photo {
        display: flex;
        justify-content: center;
        padding-bottom: 10px;
        width: 100%;
    }

    .info-me {
        width: 100%;
        margin-left: 0;
    }

    .btn-call {
        justify-content: center;
        margin: 10% 3% 0 0;
        text-align: center;
    }

    .btn-call-link {
        width: 50%;
    }

    .test-wrapper {
        padding: 100px 20px 0 20px;
    }

    .container-footer {
        display: block;
        padding: 50px 20px 0 20px;
    }

    .c-f-one,
    .c-f-two {
        width: 100%;
    }

    .c-f-one {
        margin-bottom: 20px;
    }

    .page-skriner {
        margin-top: 40%;
    }
    
    .skriner {
        padding-left: 0;
        padding-right: 0;
    }

    #photo {
        height: 300px;
    }

    .test-ua,
    .test-ru {
        font-size: 0.8rem;
        padding: 3% 10%;
    }
    
    .btn-test {
        width: 200px;
    }

    #okno {
        width: 100% !important;
    }

    .form-btn-back {
        width:75%;
    }
    
    .thanks-message {
        padding: 250px 45px 0 45px;
    }
    } 

}