body, html {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

.flex, .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.hb {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.hc {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.hr {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

.vc {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.vb {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

/**  FAQ styles start **/
.category-faq {
  margin-top: 86px;
  margin-bottom: 70px;
}
.category-faq-title {
   font-weight: bold;
    font-size: 4rem;
    line-height: 4.7rem;
}
.category-faq-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 65px;
}
.category-faq-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 24px;
    position: relative;
}
.category-faq-item svg {
    position: absolute;
    right: 24px;
    top: calc(50% - 10px);
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
}
.category-faq-item:hover svg path {
    stroke: #FFCC00;
}
.category-faq-item .question {
   cursor: pointer;
    font-weight: 600;
    background: #F6F6F6;
    padding: 25px 55px 20px 24px;
    border-radius: 7px 7px 0 0;
}
.category-faq-item .question::marker {
  content: "";
}
.category-faq-item .answer {
       background: #F6F6F6;
    padding: 0 24px 25px 24px;
    border-radius: 0 0 7px 7px;
}
@media all and (max-width: 767px) {
  .category-faq-row {
    margin-top: 40px;
  }
  .category-faq-title {
    font-size: 3rem;
    line-height: 3.7rem;
   }
}
/**  FAQ styles end **/

/**  Rating styles start **/

.rating {
    margin-top: 20px;
    width: 100%;
}
.rating .rating-star {
    display: inline-block;
    width: 22px;
    height: 22px;
    position: relative;
}
.rating .rating-star:before,
.rating .rating-star:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.rating .rating-star:before {
    background: #F1F0F0;
}
.rating .rating-star:after {
    background: #FFCC00;
}

.rating .rating-star.full:before,
.rating .rating-star.active:before{
    display: none;
}
.rating .rating-star.full:after,
.rating .rating-star.active:after{
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.rating .rating-star.half:before {
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%);

}
.rating .rating-star.half:after {
    clip-path: polygon(50% 0%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.rating .rating-star.null:before {
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.rating .rating-star.null:after {
    display: none;
}
.rating .rating-score,
.rating .rating-count {
    display: inline-block;
}
.rating .rating-count {
    margin-left: 5px;
    color: #808080;
    font-size: 16px;
}
.rating .rating-score {
    margin-right: 8px;
    font-weight: bold;
    font-size: 26px;
}
.review-form {
    width: 80%;
    border: solid 1px #E5E5E5;
    padding: 20px;
    margin: 30px 0 0 0;
}
.review-form-wrap {
    width: 100%;
}
.review-form textarea {
    margin-top: 20px;
    width: 100%;
    height: 100px;
    border: solid 1px #E5E5E5;
    border-radius: 10px;
    resize: none;
    padding: 10px;
    font-size: 15px;
    line-height: 1.3;
}
.review-form textarea:focus {
    border-color: #282828;
}
.review-form textarea&::-webkit-input-placeholder,
.review-form textarea&:-moz-placeholder,
.review-form textarea&::-moz-placeholder,
.review-form textarea&:-ms-input-placeholder,
.review-form textarea&::placeholder {
    font-family: "Raleway", sans-serif;
    font-weight: normal;
    font-size: 15px;
    line-height: 1.3;
    color: #808080;
}
.review-form .rating--grade {
    width: auto;
}
.review-form .rating--grade .rating-star {
    width: 32px;
    height: 32px;
    margin-right: 5px;
}
.review-form a {
    display: inline-block;
    color: #ffffff;
    border: 1px solid #FFCC00;
    background: #FFCC00;
    border-radius: 37px;
    padding: 13px 24px;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 2.1rem;
    text-align: center;
    cursor: pointer;
    margin: 15px 0 0 0;
}
.review-form a:hover {
    background: #FDB700;
}
.rating-btn {
    color: #808080;
    text-decoration-line: underline;
    font-size: 1.8rem;
    line-height: 1;
    margin-top: 10px;
    text-align: center;
    display: block;
    width: 100%;
    cursor: pointer;
}
.rating-btn:hover {
    color: #4B4B4B;
}
.review-form-alert {
    width: 100%;
    text-align: center;
    font-size: 22px;
}
/**  Rating styles end **/


/**  Specialists and Faq styles start **/

.specialist__content,
.specialist__list,
.faq__content,
.faq__list {
    margin-top: 49px;
    font-size: 2rem;
    line-height: 3.34rem;
}
.specialist__content p,
.faq__content p {
    margin-bottom: 20px;
}
.specialist__content a,
.faq__content a {
    color: #FDB700;
    font-weight: 500;
    text-decoration: underline;
}
.specialist__content a:hover,
.faq__content a:hover {
    text-decoration: none;
    color: #4B4B4B;
}
.specialist__content p:last-child,
.faq__content p:last-child {
    margin-bottom: 0;
}
.specialist__content-left {
    width: calc(100% - 400px);
    padding-right: 80px;
}
.specialist__content-right {
    width: 400px;
}
.specialist__cover,
.specialist__list-item .photo {
    background: no-repeat top center;
    background-size: cover;
    border-radius: 50%;
}
.specialist__cover {
    display: block;
    width: 400px;
    height: 400px;
}
.specialist__list-item {
    width: 100%;
    margin-bottom: 40px;
}
.specialist__list-item .photo {
    display: inline-block;
    width: 300px;
    height: 300px;
    margin-right: 30px;
}
.specialist__list-item .text {
    width: calc(100% - 330px);
}
.specialist__list-item h5 {
    font-size: 3rem;
    line-height: 4rem;
    margin-bottom: 20px;
}
.specialist__list-item .more {
    display: block;
    text-align: right;
    margin-top: 20px;
    text-transform: uppercase;
    color: #808080;
    text-decoration-line: underline;
    font-size: 1.6rem;
}
.specialist__list-item .more:hover {
    color: #4B4B4B;
    text-decoration: none;
}
.faq__content hr {
    display: block;
    width: 100%;
    height: 10px;
    background: transparent;
    color: transparent;
    border: none;
}
.faq__list {
    max-width: 100%;
}
.faq__list-item {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.2;
    padding-bottom: 8px;
    border-bottom: solid 2px #060606;
    margin-bottom: 30px;
    font-weight: 600;
}
.faq__list-item:last-child {
    margin-bottom: 0;
}

@media (max-width: 1280px) {
    .specialist__content,
    .specialist__list,
    .faq__content,
    .faq__list {
        font-size: 1.4rem;
        line-height: 2.3rem;
    }
}
@media all and (max-width: 1400px) {
    .specialist__content-left,
    .specialist__content-right {
        width: 100%;
    }
    .specialist__content-left {
        order: 2;
        padding-right: 0;
    }
    .specialist__content-right {
        order: 1;
        margin-bottom: 40px;
    }
    .specialist__cover {
        margin: 0 auto;
    }
}
@media all and (max-width: 767px) {
    .specialist__content,
    .faq__content,
    .faq__list {
        margin-top: 30px;
    }
    .specialist__content-right {
        margin-bottom: 30px;
    }
    .specialist__cover,
    .specialist__list-item .photo {
        width: 280px;
        height: 280px;
    }
    .specialist__list-item .photo {
        margin: 0 auto;
    }
    .specialist__list-item .text {
        width: 100%;
        margin-top: 30px;
    }
    .specialist__list-item h5 {
        font-size: 2rem;
        line-height: 3rem;
    }
    .specialist__list-item .more {
        font-size: 1.3rem;
    }
    .faq__content hr {
        height: 5px;
    }
    .faq__list-item {
        font-size: 1.8rem;
        line-height: 2.8rem;
        padding-bottom: 5px;
    }
}
/**  Specialists and Faq styles end **/

/**  Cookie alert styles start **/
.cookie-alert {
    position: fixed;
    z-index: 99999;
    left: 0;
    bottom: -100%;
    width: 100%;
    padding: 30px;
    background: #000000;
    transition: ease-in-out 1.5s;
    -webkit-transition: ease-in-out 1.5s;
    -moz-transition: ease-in-out 1.5s;;
}
.cookie-alert.visible {
    bottom: 0;
}
.cookie-alert p {
    font-size: 1.5rem;
    line-height: 2.4rem;
    color: #ffffff;
}
.cookie-alert .close-btn {
    display: inline-block;
    color: #ffffff;
    border: 1px solid #FFCC00;
    background: #FFCC00;
    border-radius: 37px;
    padding: 13px 24px;
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 1.8rem;
    margin-left: 30px;
    cursor: pointer;
}
.cookie-alert .close-btn:hover {
    background: #FDB700;
}
.cookie-alert p a {
    color: #FFCC00;
    text-decoration: underline;
}
@media all and (max-width: 1160px) {
    .cookie-alert {
        padding: 20px;
    }
    .cookie-alert p {
        font-size: 1.2rem;
        line-height: 2.2rem;
    }
}
@media all and (max-width: 940px) {
    .cookie-alert {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .cookie-alert p {
        width: 100%;
    }
    .cookie-alert .close-btn {
        display: block;
        margin-top: 10px;
        border-radius: 32px;
        padding: 12px 22px;
        font-size: 1.4rem;
        line-height: 1.6rem;
        margin-left: 0;
    }
}
/**  Cookie alert styles end **/