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

body {
    font-family: "Bacasime Antique", serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
}

h1 {
    font-family: "Bebas Neue", cursive;
    font-weight: 400;
    line-height: 0.88;
    color: #785830;
    text-align: center;
}
h1 span {
    font-size: 82px;
    display: block;
}

h2 {
    font-family: "Bebas Neue", cursive;
    font-size: 64px;
    font-weight: 400;
    line-height: 1.3;
    color: #785830;
    text-align: center;
    margin-bottom: 20px;
}

h3 {
    font-family: "Bebas Neue", cursive;
    font-size: 64px;
    font-weight: 400;
    line-height: 0.77;
}

h4 {
    font-family: "Bacasime Antique", sans-serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.36;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    font-family: "Mukta Vaani", sans-serif;
}

.button-block {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.container-fluid {
    width: 100%;
    overflow: hidden;
}

.container {
    margin: auto;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.container-wrapper {
    max-width: 2156px;
    margin: auto;
}

.wrapper {
    max-width: 947px;
    margin: auto;
}

.btn {
    max-width: 395px;
    width: 100%;
    height: 64px;
    border-radius: 31px;
    color: #FFFFFF;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.green {
    background-color: #41803F;
}

.brown {
    background-color: #785830;
}

main {
    overflow: hidden;
    background-image: url("/img/png/background1.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

p.large {
    font-family: "Bacasime Antique", sans-serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 0.92;
    text-align: center;
}

.logo a img {
    width: 451px;
    height: 165px;
    object-fit: contain;
}

header {
    height: 208px;
    box-shadow: 0 20px 31px 9px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}
header .wrapper {
    max-width: 1970px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: auto;
}
header button.burger {
    display: none;
    border: none;
    background: none;
    cursor: pointer;
}
header button.burger span {
    position: relative;
    display: block;
    width: 25px;
    height: 4px;
    background-color: black;
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
}
header button.burger span:before, header button.burger span:after {
    content: "";
    position: absolute;
    background: black;
    width: 25px;
    height: 4px;
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
}
header button.burger span:before {
    top: -8px;
    left: 0;
}
header button.burger span:after {
    top: 8px;
    left: 0;
}

.menu {
    transition: right 0.2s ease-in-out;
}
.menu nav ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}
.menu nav ul li {
    font-family: "Mukta Vaani", sans-serif;
    font-size: 33px;
    font-weight: 500;
    line-height: 1.66;
    color: #000000;
    border-radius: 31px;
    padding: 0 27px;
}
.menu nav ul li.active {
    background-color: #41803F;
}
.menu nav ul li.active a {
    color: #FFFFFF;
}
.menu nav ul li a {
    color: #000000;
}

.for-every-child {
    position: relative;
    max-width: 1920px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}
.for-every-child h1 {
    margin-bottom: 30px;
}
.for-every-child .wrapper p {
    text-align: center;
}
.for-every-child .wrapper a {
    margin: 40px auto 0 auto;
    line-height: 1;
}
.for-every-child .social-block {
    position: absolute;
    top: 25%;
    right: -170px;
}
.for-every-child .social-block a img {
    width: 69px;
}

.first-screen {
    position: relative;
    max-width: 1920px;
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.first-screen h1 {
    font-size: 235px;
}
.first-screen .social-block {
    position: absolute;
    top: 25%;
    right: -170px;
}
.first-screen .social-block a img {
    width: 69px;
}

.educating {
    text-align: center;
    margin-bottom: 78px;
}

.features {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: rgba(217, 217, 217, 0.9215686275);
    margin-bottom: 110px;
}
.features .features-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.features .features-item img {
    margin-right: 14px;
}

.about-us {
    margin-bottom: 180px;
}
.about-us .wrapper {
    max-width: 793px;
}
.about-us p {
    text-align: center;
}
.about-us .special-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    margin-bottom: 100px;
}
.about-us .special-block .special-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 30px;
    background-color: rgba(255, 255, 255, 0.4509803922);
    box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.1);
}
.about-us .special-block .special-item:nth-child(2) {
    margin: 50px 0;
}
.about-us .special-block .special-item h4 {
    text-align: center;
}
.about-us a {
    margin: auto;
}

.who-we-are {
    margin-bottom: 150px;
}
.who-we-are .mission-vision {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
    margin-top: 100px;
    margin-bottom: 134px;
}
.who-we-are .mission-vision ul {
    list-style: disc;
}
.who-we-are .mission-vision .mission-vision-item {
    width: 100%;
    max-width: 590px;
    position: relative;
}
.who-we-are .mission-vision .mission-vision-item h3 {
    margin-bottom: 20px;
}
.who-we-are .mission-vision .mission-vision-item h3::before {
    content: "";
    display: block;
    background-image: url("/img/svg/Disc_Plain_black.svg");
    background-size: contain;
    position: absolute;
    width: 42px;
    height: 42px;
    top: -6px;
    left: -60px;
}
.who-we-are .button-block {
    margin-top: 50px;
    margin-bottom: 130px;
}
.who-we-are .button-block a:first-of-type {
    margin-right: 50px;
}
.who-we-are .wrapper p {
    text-align: center;
}
.who-we-are .reviews-block {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}
.who-we-are .reviews-block .reviews-item {
    position: relative;
    width: 100%;
    max-width: 511px;
    min-height: 615px;
    background-color: #FFFFFF;
    padding: 65px 45px 80px;
    box-shadow: 0 0 33px 3px rgba(0, 0, 0, 0.1);
}
.who-we-are .reviews-block .reviews-item:nth-child(2) {
    margin: 0 50px;
}
.who-we-are .reviews-block .reviews-item .title {
    position: relative;
    padding-bottom: 20px;
    text-align: center;
}
.who-we-are .reviews-block .reviews-item .title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #D9D9D9;
}
.who-we-are .reviews-block .reviews-item .title::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 0;
    background-image: url("/img/svg/comillas3.svg");
    width: 65px;
    height: 65px;
}
.who-we-are .reviews-block .reviews-item .title span {
    display: block;
}
.who-we-are .reviews-block .reviews-item .description-block {
    padding-top: 50px;
}

.faq .wrapper {
    max-width: unset;
}
.faq ul {
    list-style: disc;
}
.faq .faqs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.faq .faqs .faq-item {
    position: relative;
    max-width: 615px;
    min-height: 285px;
    line-height: 1;
}
.faq .faqs .faq-item:first-of-type {
    margin-right: 200px;
}
.faq .faqs .faq-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100px;
    width: 65px;
    height: 73px;
    background-image: url("/img/svg/pregunta3.svg");
    background-size: contain;
}
.faq .faqs .faq-item p.title {
    margin-bottom: 40px;
}
.faq .button-block {
    margin-top: 125px;
    margin-bottom: 200px;
}

.faq .wrapper > p {
    text-align: center;
}

.resources {
    margin: 50px 0;
}
.resources h3 {
    margin: 50px 0 20px 0;
    text-transform: lowercase;
}
.resources ul {
    list-style: disc;
}

.contact-us {
    position: relative;
    padding: 120px 0 165px;
    background-color: rgba(239, 239, 239, 0.9215686275);
}
.contact-us::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    background-image: url("/img/png/hojason3.png");
    width: 693px;
    height: 910px;
    z-index: 0;
}
.contact-us::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-image: url("/img/png/hojason3.png");
    width: 693px;
    height: 910px;
    transform: scaleX(-1);
    z-index: 0;
}
.contact-us .wrapper {
    max-width: 977px;
    width: 100%;
}
.contact-us p {
    text-align: center;
}
.contact-us .form {
    margin-top: 55px;
}
.contact-us .form .input-wrapper {
    position: relative;
    border: 2px solid #000000;
    border-radius: 2px;
    margin-bottom: 45px;
    z-index: 10;
}
.contact-us .form .input-wrapper::after {
    content: "*";
    position: absolute;
    top: 30%;
    right: 24px;
}
.contact-us .form .input-wrapper input {
    border: none;
    border-radius: 0;
    width: 100%;
    height: 96px;
    font-family: "Bacasime Antique", sans-serif;
    font-size: 32px;
    background-color: #FFFFFF;
    padding: 32px 100px 32px 100px;
}
.contact-us .form textarea {
    position: relative;
    max-width: 973px;
    width: 100%;
    height: 304px;
    resize: none;
    border: 2px solid #000000;
    border-radius: 2px;
    font-family: "Bacasime Antique", sans-serif;
    font-size: 32px;
    padding: 60px 100px 0 100px;
    margin-bottom: 65px;
    z-index: 10;
}
.contact-us .form button[type=submit] {
    font-family: "Mukta Vaani", sans-serif;
    font-size: 32px;
    margin: auto;
    cursor: pointer;
    border: none;
}

.history {
    margin-bottom: 250px;
}
.history .container-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.history p.large {
    margin-bottom: 65px;
}
.history .left {
    max-width: 1002px;
}
.history .right .logo img {
    max-width: 1048px;
}

.who-we-are {
    margin-bottom: 110px;
}
.who-we-are .container-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 74px;
}
.who-we-are .container-wrapper .we-are-item {
    max-width: 1007px;
    margin-bottom: 65px;
    background-color: #D9D9D9;
    border-radius: 139px;
    padding: 88px 105px 105px 70px;
}
.who-we-are .container-wrapper .we-are-item h3 {
    position: relative;
    left: 110px;
    margin-bottom: 55px;
}
.who-we-are .container-wrapper .we-are-item h3::before {
    content: "";
    position: absolute;
    top: -30px;
    left: -120px;
    width: 102px;
    height: 109px;
    background-image: url("/img/svg/icono1.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

.sign-up-form {
    background-color: rgba(239, 239, 239, 0.9215686275);
    padding: 175px 10px 200px;
}
.sign-up-form p.large {
    margin-bottom: 65px;
}
.sign-up-form .container-wrapper p {
    text-align: center;
}
.sign-up-form .inputs-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.sign-up-form .form {
    margin-top: 75px;
}
.sign-up-form .form button {
    border: none;
    margin: auto;
    font-family: "Mukta Vaani", sans-serif;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}
.sign-up-form .input-wrapper {
    position: relative;
    border: 2px solid #000000;
    border-radius: 2px;
    margin-bottom: 45px;
    width: calc(50% - 95px);
}
.sign-up-form .input-wrapper::after {
    content: "*";
    position: absolute;
    top: 30%;
    right: 24px;
}
.sign-up-form .input-wrapper input {
    border: none;
    border-radius: 0;
    width: 100%;
    height: 96px;
    font-family: "Bacasime Antique", sans-serif;
    font-size: 32px;
    background-color: #FFFFFF;
    padding: 32px 100px 32px 100px;
}

.what-we-do {
    margin-bottom: 130px;
}
.what-we-do .wrapper {
    max-width: 1402px;
    width: 100%;
}
.what-we-do .wrapper p {
    text-align: center;
}

.services {
    margin-bottom: 80px;
}
.services .container-wrapper {
    max-width: 2030px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin-top: 95px;
}
.services .container-wrapper .service-item {
    max-width: 484px;
    width: 100%;
    min-height: 140px;
    background-color: #D9D9D9;
    border-radius: 139px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: space-between;
    padding: 10px 20px;
}
.services .container-wrapper .service-item button {
    background-color: transparent;
    font-size: 20px;
    border: none;
    margin-top: 10px;
    cursor: pointer;
}

.service-description {
    margin: 50px 0;
}

.specialist-slider {
    position: relative;
}
.specialist-slider .swiper-container {
    max-width: 1730px;
    margin: auto;
    overflow: hidden;
}
.specialist-slider .swiper-wrapper {
    padding-top: 150px;
}
.specialist-slider .swiper-slide {
    max-width: 670px;
    transform: scale(0.9) translateZ(0) !important;
    transition: transform 0.25s;
    margin: 0 -50px;
}
.specialist-slider .swiper-slide .image-block {
    position: relative;
}
.specialist-slider .swiper-slide .image-block img.image {
    width: 100%;
    height: 911px;
    object-fit: cover;
}
.specialist-slider .swiper-slide .image-block .medal {
    position: absolute;
    top: 30px;
    right: 40px;
}
.specialist-slider .swiper-slide-prev {
    z-index: 1;
}
.specialist-slider .swiper-slide-prev .medal {
    left: 20px;
}
.specialist-slider .swiper-slide-next {
    z-index: 1;
}
.specialist-slider .swiper-slide-active {
    z-index: 10;
    transform: scale(1) !important;
}
.specialist-slider .swiper-slide-active .footer {
    background-color: #41803F;
}
.specialist-slider .swiper-slide-active .footer .stars {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 20px;
}
.specialist-slider .swiper-slide-active .footer .stars .star {
    width: 50px;
    margin-right: 20px;
}
.specialist-slider .swiper-slide-active .footer .stars .star:last-of-type {
    margin-right: 0;
}
.specialist-slider .specialist-slider__buttons .specialist-slider__prev {
    position: absolute;
    top: 50%;
    right: 0;
    cursor: pointer;
    z-index: 10;
}
.specialist-slider .specialist-slider__buttons .specialist-slider__next {
    position: absolute;
    top: 50%;
    left: 0;
    cursor: pointer;
    z-index: 10;
}
.specialist-slider .footer {
    height: 191px;
    background-color: #785830;
    color: #FFFFFF;
    position: relative;
    top: -21px;
    padding-top: 30px;
}
.specialist-slider .footer span {
    display: block;
    text-align: center;
    font-family: "Bacasime Antique", serif;
    font-size: 64px;
    line-height: 1;
}
.specialist-slider .footer .stars {
    display: none;
}

.reviews {
    margin-top: 110px;
    margin-bottom: 80px;
}
.reviews .review {
    display: none;
}
.reviews .review p {
    text-align: center;
}
.reviews .review p:first-of-type {
    font-family: "Bacasime Antique", serif;
    font-size: 64px;
}

.service-categories {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    margin-bottom: 100px;
}
.service-categories .input-wrapper {
    position: relative;
    border: 2px solid #000000;
    max-width: 437px;
    margin-right: 80px;
}
.service-categories .input-wrapper span {
    position: absolute;
    right: 50px;
    top: 30%;
}
.service-categories .input-wrapper input {
    width: 100%;
    font-family: "Bacasime Antique", serif;
    font-size: 32px;
    padding: 32px 0 32px 90px;
    border: none;
}
.service-categories .service-category {
    display: none;
}
.service-categories .service-category ul {
    display: flex;
    flex-direction: row;
}
.service-categories .service-category ul li {
    position: relative;
    margin-right: 45px;
}
.service-categories .service-category ul li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -13px;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #41803F;
}
.service-categories .service-category ul li:last-of-type {
    margin-right: 0;
}

.meet-our-designers {
    margin-bottom: 90px;
}
.meet-our-designers .wrapper {
    max-width: 1402px;
    width: 100%;
}
.meet-our-designers .wrapper p {
    text-align: center;
}

.meet-julianna {
    position: relative;
    margin-bottom: 70px;
}
.meet-julianna::before {
    content: "";
    position: absolute;
    top: 0;
    left: -160px;
    background-image: url("/img/png/hojason3.png");
    background-repeat: no-repeat;
    transform: scaleX(-1) scale(1.4);
    width: 697px;
    height: 731px;
    z-index: 1;
}
.meet-julianna::after {
    content: "";
    position: absolute;
    top: 0;
    right: -210px;
    background-image: url("/img/png/hojason3.png");
    background-repeat: no-repeat;
    transform: scale(1.8);
    width: 827px;
    height: 1020px;
    z-index: 1;
}
.meet-julianna .wrapper {
    max-width: 1860px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}
.meet-julianna .left .meet-block {
    position: relative;
    max-width: 864px;
    flex-direction: column;
    justify-content: space-between;
    padding: 113px 120px 136px 104px;
    border: 10px solid #785830;
    border-radius: 133px;
    background-color: #FFFFFF;
    z-index: 10;
}
.meet-julianna .left .meet-block h2 {
    font-family: "Bacasime Antique", serif;
    font-size: 91px;
    line-height: 1;
    color: #000000;
    margin-bottom: 70px;
}
.meet-julianna .left .meet-block p {
    margin-bottom: 70px;
}
.meet-julianna .left .meet-block .social-buttons-block {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.meet-julianna .left .meet-block .social-buttons-block ul {
    display: flex;
    flex-direction: row;
}
.meet-julianna .left .meet-block .social-buttons-block img {
    width: 69px;
}
.meet-julianna .right {
    margin-top: 75px;
}
.meet-julianna .right .image-block {
    position: relative;
    max-width: 693px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
}
.meet-julianna .right .image-block span {
    max-width: 550px;
    display: block;
    font-family: "Bacasime Antique", serif;
    font-size: 64px;
    line-height: 1;
    text-align: center;
    margin: auto;
}
.meet-julianna .right .image-block img {
    max-width: 693px;
    width: 100%;
}

.avatars {
    position: relative;
}
.avatars .swiper-container {
    max-width: 1830px;
    margin: auto !important;
    overflow: hidden;
}
.avatars .swiper-slide {
    transform: scale(0.7) translateZ(0) !important;
}
.avatars .swiper-slide img {
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.avatars .swiper-slide-prev,
.avatars .swiper-slide-next {
    transform: scale(0.85) translateZ(0) !important;
}
.avatars .swiper-slide-active {
    transform: scale(1) translateZ(0) !important;
}
.avatars .avatars-slider__prev {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
}
.avatars .avatars-slider__prev img {
    width: 62px;
}
.avatars .avatars-slider__next {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
}
.avatars .avatars-slider__next img {
    width: 62px;
}

.our-team .button-block {
    margin-top: 70px;
    margin-bottom: 125px;
}

.sources-for-parents {
    margin-bottom: 150px;
}
.sources-for-parents .wrapper {
    max-width: 1400px;
}
.sources-for-parents p {
    text-align: center;
}

.timeline {
    position: relative;
    margin-bottom: 60px;
}
.timeline:before {
    content: "";
    position: absolute;
    bottom: -80px;
    left: 0;
    background-image: url("/img/png/hojason3.png");
    background-repeat: no-repeat;
    transform: scaleX(-1) scale(1.8);
    width: 880px;
    height: 880px;
}
.timeline .timeline-wrapper {
    position: relative;
    max-width: 1450px;
    padding: 55px 0;
    margin: auto;
}
.timeline .timeline-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120px;
    width: 22px;
    height: 100%;
    background-color: #785830;
}
.timeline .timeline-item {
    position: relative;
    border: 2px solid #000000;
    background-color: #FFFFFF;
    padding: 32px 90px 15px 60px;
    margin-bottom: 60px;
}
.timeline .timeline-item:last-of-type {
    margin-bottom: 0;
}
.timeline .timeline-item .timeline-icon {
    position: absolute;
    top: 50px;
    left: -160px;
    font-family: "Mukta Vaani", sans-serif;
    font-size: 54px;
    line-height: 1;
    color: #FFFFFF;
    background-color: #785830;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}
.timeline .timeline-item .header {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.timeline .timeline-item .header img {
    margin-right: 15px;
}
.timeline .timeline-item .header h5 {
    font-family: "Bacasime Antique", serif;
    font-size: 46px;
    line-height: 1;
    color: #000000;
}
.timeline .timeline-item .header p {
    font-family: "Bacasime Antique", serif;
    font-size: 37px;
    line-height: 1.32;
    color: #785830;
}
.timeline .timeline-item .main-content .button-block {
    justify-content: flex-end;
}
.timeline .button-block button {
    position: relative;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 10;
}
.timeline .button-block img {
    width: 62px;
}
.timeline .button-block span {
    font-family: "Bacasime Antique", serif;
    font-size: 42px;
    line-height: 1;
}

.faq.background {
    position: relative;
}
.faq.background::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: -30px;
    background-image: url("/img/png/hojason3.png");
    background-repeat: no-repeat;
    transform: scale(1.3);
    width: 693px;
    height: 880px;
    z-index: -10;
}

footer {
    padding: 130px 100px 110px 200px;
    background-color: rgba(65, 128, 63, 0.1490196078);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}
footer .logo {
    margin-right: 280px;
}
footer .logo img {
    width: 451px;
}
footer .footer-content {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}
footer .footer-content .about-us {
    max-width: 369px;
}
footer .footer-content .about-us p {
    text-align: justify;
}
footer .footer-content .contact ul {
    display: flex;
    flex-direction: row;
}
footer .footer-content .contact a img {
    width: 95px;
}

@media screen and (min-width: 769px) {
    .container {
        max-width: 720px;
    }
    .about-us {
        margin-bottom: 100px;
    }
    .menu nav ul li {
        font-size: 22px;
    }
    header .wrapper {
        padding: 0 15px;
    }
    h1 {
        font-size: 50px;
    }
    .first-screen h1 {
        font-size: 100px;
    }
    h3 {
        font-size: 34px;
    }
    body {
        font-size: 24px;
    }
    p.large {
        font-size: 34px;
        margin-bottom: 20px;
    }
    .for-every-child .wrapper p {
        font-size: 32px;
    }
    .what-we-do {
        margin-bottom: 100px;
    }
    .specialist-slider .swiper-wrapper {
        padding-top: 100px;
    }
    .specialist-slider .specialist-slider__buttons .specialist-slider__prev img {
        width: 80px;
    }
    .specialist-slider .specialist-slider__buttons .specialist-slider__next img {
        width: 80px;
    }
    .specialist-slider .swiper-container {
        max-width: 520px;
    }
    .specialist-slider .swiper-slide {
        max-width: 570px;
    }
    .reviews {
        margin-top: 50px;
    }
    .about-us-page .who-we-are {
        margin-bottom: 35px;
    }
    .who-we-are .container-wrapper .we-are-item {
        max-width: 100%;
    }
    .sign-up-form {
        padding: 100px 10px 100px;
    }
    .timeline .timeline-item {
        padding: 32px 10px 15px 10px;
    }
    .timeline .timeline-item .header {
        flex-direction: column;
    }
    .timeline:before {
        width: 610px;
        height: 710px;
    }
    .contact-us::before,
    .contact-us::after {
        width: 530px;
        height: 670px;
    }
    .who-we-are .reviews-block {
        flex-direction: column;
    }
    .who-we-are .reviews-block .reviews-item:nth-child(2) {
        margin: 40px 0;
    }
    .who-we-are .mission-vision {
        flex-direction: column;
        align-items: center;
    }
    .who-we-are .mission-vision .mission-vision-item:first-of-type {
        margin-right: 0;
        margin-bottom: 40px;
    }
    .who-we-are .mission-vision .mission-vision-item {
        width: 70%;
        max-width: unset;
    }
    .who-we-are .mission-vision .mission-vision-item h3::before {
        width: 32px;
        height: 32px;
        top: -3px;
    }
    .faq .faqs {
        flex-direction: column;
    }
    .faq .faqs .faq-item:first-of-type {
        margin-right: 0;
    }
    .faq .faqs .faq-item {
        max-width: 405px;
        min-height: 220px;
    }
    .faq .faqs .faq-item p.title {
        margin-bottom: 20px;
    }
    .faq.background > p {
        margin: 30px 0;
    }
    .features {
        flex-direction: column;
    }
    .contact-us {
        padding: 100px 15px 100px;
    }
    .history {
        margin-bottom: 100px;
    }
    .history .right .logo img {
        max-width: 390px;
    }
    .history .container-wrapper {
        flex-direction: column;
    }
    .history .container-wrapper p {
        text-align: justify;
    }
    .sign-up-form .inputs-container {
        flex-direction: column;
    }
    .sign-up-form .input-wrapper {
        width: 100%;
    }
    .services .container-wrapper {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        margin-top: 50px;
    }
    .meet-julianna .wrapper {
        flex-direction: column;
        align-items: center;
    }
    .meet-julianna .left .meet-block h2 {
        font-size: 71px;
    }
    .meet-julianna .left .meet-block {
        padding: 50px;
    }
    .meet-julianna .right {
        margin-left: 40px;
    }
    .meet-julianna .right .image-block img {
        max-width: 300px;
    }
    .avatars .swiper-container {
        max-width: 540px;
    }
    .timeline .timeline-wrapper {
        max-width: 370px;
    }
    .faq .button-block {
        margin-top: 75px;
        margin-bottom: 100px;
    }
    footer {
        flex-direction: column;
        padding: 100px 50px 60px 50px;
    }
    footer .logo {
        margin-right: 80px;
    }
    footer .footer-content {
        flex-direction: column;
        align-items: center;
    }
    footer .footer-content .contact a img {
        width: 65px;
    }
    footer .footer-content .contact ul {
        flex-direction: row;
    }
    footer h2 {
        font-size: 34px;
    }
}
@media screen and (min-width: 992px) {
    .container {
        max-width: 960px;
    }
    .features {
        flex-direction: row;
    }
    .meet-julianna .left .meet-block {
        min-height: 1184px;
    }
    .history .container-wrapper {
        flex-direction: row;
    }
    .faq .faqs .faq-item {
        max-width: 675px;
    }
    footer .footer-content {
        flex-direction: row;
        align-items: flex-start;
    }
    footer .footer-content .contact ul {
        flex-direction: column;
    }
}
@media screen and (min-width: 1024px) {
    .container {
        max-width: 990px;
    }
    .specialist-slider .swiper-container {
        max-width: 670px;
    }
    .meet-julianna .wrapper {
        flex-direction: row;
        align-items: flex-start;
    }
    .meet-julianna .right .image-block span {
        width: 430px;
        font-size: 44px;
    }
    .first-screen h1 {
        font-size: 150px;
    }
    .avatars .swiper-container {
        max-width: 790px;
    }
    .timeline .timeline-wrapper {
        max-width: 550px;
    }
    .timeline .timeline-item {
        padding: 32px 90px 15px 60px;
    }
    .timeline .timeline-item .header {
        flex-direction: row;
    }
}
@media screen and (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    h1 {
        font-size: 150px;
    }
    p.large {
        font-size: 44px;
    }
    .contact-us {
        padding: 120px 0 165px;
    }
    .for-every-child .wrapper p {
        font-size: 45px;
    }
    .who-we-are .reviews-block {
        flex-direction: row;
    }
    .who-we-are .reviews-block .reviews-item:nth-child(2) {
        margin: 0 50px;
    }
    .who-we-are .mission-vision .mission-vision-item {
        max-width: 370px;
    }
    .faq .faqs {
        margin-bottom: 40px;
    }
    .faq .faqs .faq-item:first-of-type {
        margin-right: 130px;
    }
    .faq .faqs .faq-item {
        max-width: 355px;
    }
    .who-we-are .mission-vision {
        flex-direction: row;
    }
    .history {
        margin-bottom: 100px;
    }
    .history .right .logo img {
        max-width: 430px;
    }
    .who-we-are .container-wrapper .we-are-item {
        max-width: 530px;
    }
    .sign-up-form .input-wrapper {
        width: 50%;
    }
    .specialist-slider .swiper-container {
        max-width: 930px;
    }
    .specialist-slider .swiper-slide .image-block .medal {
        width: 100px;
    }
    .specialist-slider .swiper-slide {
        max-width: 400px;
    }
    .specialist-slider .footer span {
        font-size: 44px;
    }
    .services .container-wrapper {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
    .meet-julianna .right .image-block img {
        max-width: 315px;
    }
    .meet-julianna .left .meet-block h2 {
        font-size: 91px;
    }
    .faq .faqs {
        flex-direction: row;
    }
    .avatars .swiper-container {
        max-width: 930px;
    }
    .timeline .timeline-wrapper {
        max-width: 660px;
    }
    .timeline .timeline-item .header p {
        font-size: 27px;
    }
    footer .footer-content .contact ul {
        flex-direction: row;
    }
}
@media screen and (min-width: 1440px) {
    .container {
        max-width: 1320px;
    }
    h3 {
        font-size: 44px;
    }
    .service-item h3 {
        font-size: 34px;
        text-align: center;
    }
    .who-we-are .mission-vision .mission-vision-item {
        max-width: 470px;
    }
    .who-we-are .mission-vision {
        margin-bottom: 100px;
    }
    .faq .faqs .faq-item:first-of-type {
        margin-right: 110px;
    }
    .faq .faqs .faq-item {
        max-width: 445px;
    }
    .history .right .logo img {
        max-width: 518px;
    }
    .who-we-are .container-wrapper .we-are-item {
        max-width: 617px;
    }
    .sign-up-form .input-wrapper {
        width: calc(50% - 95px);
    }
    .specialist-slider .swiper-container {
        max-width: 1100px;
    }
    .specialist-slider .swiper-slide {
        max-width: 460px;
    }
    .specialist-slider .footer span {
        font-size: 44px;
    }
    .specialist-slider .swiper-slide-active .footer .stars .star {
        width: 40px;
    }
    .meet-julianna .left .meet-block {
        padding: 113px 120px 136px 104px;
    }
    .meet-julianna .right .image-block img {
        max-width: 353px;
    }
    .avatars .swiper-container {
        max-width: 1150px;
    }
    .timeline .timeline-wrapper {
        max-width: 860px;
    }
    .timeline .timeline-item .header p {
        font-size: 37px;
    }
}
@media screen and (min-width: 1910px) {
    body {
        font-size: 32px;
    }
    .container {
        max-width: 1660px;
    }
    p.large {
        font-size: 64px;
    }
    .history .right .logo img {
        max-width: 768px;
    }
    .who-we-are .container-wrapper .we-are-item {
        max-width: 777px;
    }
    .sign-up-form {
        padding: 105px 10px 100px;
    }
    .specialist-slider .swiper-container {
        max-width: 1370px;
    }
    .specialist-slider .swiper-slide {
        max-width: 545px;
    }
    .meet-julianna .right .image-block img {
        max-width: 580px;
    }
    .avatars .swiper-container {
        max-width: 1500px;
    }
    .sources-for-parents {
        margin-bottom: 100px;
    }
    .faq .button-block {
        margin-top: 60px;
        margin-bottom: 100px;
    }
    .menu nav ul li {
        font-size: 33px;
    }
    footer {
        flex-direction: row;
    }
}
@media screen and (min-width: 2550px) {
    h1 {
        font-size: 120px;
    }
    .about-us {
        margin-bottom: 180px;
    }
    .first-screen h1 {
        font-size: 235px;
    }
    .home-page .container {
        max-width: 1660px;
    }
    .history .right .logo img {
        max-width: 1048px;
    }
    .history {
        margin-bottom: 250px;
    }
    .who-we-are .container-wrapper .we-are-item {
        max-width: 1007px;
    }
    .about-us-page .container {
        max-width: 2124px;
    }
    .sign-up-form {
        padding: 175px 10px 200px;
    }
    .service-page .container {
        max-width: 2054px;
    }
    .specialist-slider .swiper-wrapper {
        padding-top: 150px;
    }
    .specialist-slider .swiper-container {
        max-width: 1730px;
    }
    .specialist-slider .swiper-slide {
        max-width: 670px;
    }
    .reviews {
        margin-top: 110px;
    }
    .meet-julianna .right .image-block img {
        max-width: 693px;
    }
    .avatars .swiper-container {
        max-width: 1830px;
    }
    .team-page .container {
        max-width: 1964px;
    }
    .what-we-do {
        margin-bottom: 130px;
    }
    .sources-for-parents {
        margin-bottom: 150px;
    }
    .faq .button-block {
        margin-top: 125px;
        margin-bottom: 200px;
    }
    footer {
        padding: 130px 100px 110px 200px;
    }
    footer .logo {
        margin-right: 280px;
    }
    footer .footer-content .contact a img {
        width: 95px;
    }
}
@media screen and (max-width: 1970px) {
    .for-every-child .social-block {
        right: -100px;
    }
    .first-screen .social-block {
        right: -100px;
    }
}
@media screen and (max-width: 1630px) {
    .for-every-child .social-block {
        right: -40px;
    }
    .first-screen .social-block {
        right: -40px;
    }
}
@media screen and (max-width: 1490px) {
    .for-every-child .social-block {
        right: -30px;
    }
    .first-screen .social-block {
        right: -30px;
    }
}
@media screen and (max-width: 1340px) {
    header {
        height: 160px;
    }
    header button.burger {
        display: block;
    }
    header button.burger.clicked span {
        background-color: transparent;
    }
    header button.burger.clicked span:before {
        transform: rotate(45deg) translate(5px, 6px);
    }
    header button.burger.clicked span:after {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    header .menu {
        position: absolute;
        top: 0;
        right: -210px;
        background-color: #FFFFFF;
        height: 100vh;
        padding: 110px 20px 0;
        box-shadow: 0 20px 31px 9px rgba(0, 0, 0, 0.1);
    }
    header .menu.active {
        right: 0;
    }
    header .menu nav ul {
        flex-direction: column;
    }
    header .menu nav ul li a {
        display: block;
        padding: 15px 0 10px 0;
    }
}
@media screen and (max-width: 768px) {
    .container {
        max-width: 100%;
    }
    .who-we-are .mission-vision {
        flex-direction: column;
        align-items: center;
        margin-left: 10px;
    }
    .who-we-are .mission-vision .mission-vision-item:first-of-type {
        margin-bottom: 40px;
    }
    .who-we-are .mission-vision .mission-vision-item {
        width: 70%;
        max-width: unset;
    }
    .who-we-are .mission-vision .mission-vision-item h3::before {
        width: 32px;
        height: 32px;
        top: -5px;
        left: -50px;
    }
    .who-we-are .container-wrapper .we-are-item {
        max-width: 100%;
        border-radius: 70px;
    }
    .who-we-are .reviews-block {
        flex-direction: column;
    }
    .who-we-are .reviews-block .reviews-item:nth-child(2) {
        margin: 40px 0;
    }
    .for-every-child .wrapper p {
        font-size: 24px;
    }
    .sign-up-form {
        padding: 100px 10px 100px;
    }
    .timeline .timeline-item {
        padding: 32px 10px 15px 10px;
    }
    .about-us {
        margin-bottom: 100px;
    }
    .menu nav ul li {
        font-size: 22px;
    }
    header .wrapper {
        padding: 0 15px;
    }
    h1 {
        font-size: 50px;
    }
    .for-every-child .social-block {
        right: -10px;
    }
    .for-every-child .wrapper {
        max-width: 590px;
    }
    .faq .faqs {
        flex-direction: column;
    }
    .faq .faqs .faq-item:first-of-type {
        margin-right: 0;
    }
    .faq .faqs .faq-item {
        max-width: 405px;
        min-height: 220px;
    }
    .faq .faqs .faq-item p.title {
        margin-bottom: 20px;
    }
    .first-screen h1 {
        font-size: 100px;
    }
    .first-screen .social-block {
        right: -10px;
    }
    .contact-us {
        padding: 100px 15px 100px;
    }
    h3 {
        font-size: 34px;
    }
    body {
        font-size: 24px;
    }
    p.large {
        font-size: 34px;
        margin-bottom: 20px;
    }
    .what-we-do {
        margin-bottom: 100px;
    }
    .history {
        margin-bottom: 100px;
    }
    .history .right .logo img {
        max-width: 390px;
        width: 100%;
    }
    .history .container-wrapper {
        flex-direction: column;
    }
    .history .container-wrapper p {
        text-align: justify;
    }
    .sign-up-form .inputs-container {
        flex-direction: column;
    }
    .sign-up-form .input-wrapper {
        width: 100%;
    }
    .services .container-wrapper {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        margin-top: 50px;
    }
    .specialist-slider .swiper-container {
        max-width: 520px;
    }
    .specialist-slider__prev img,
    .specialist-slider__next img {
        width: 100px;
    }
    .meet-julianna .wrapper {
        flex-direction: column;
        align-items: center;
    }
    .meet-julianna .right .image-block img {
        width: 370px;
    }
    .avatars .swiper-container {
        max-width: 560px;
    }
    .features {
        flex-direction: column;
    }
    .sources-for-parents {
        margin-bottom: 100px;
    }
    .timeline .timeline-wrapper {
        left: 80px;
        max-width: 570px;
    }
    .faq .button-block {
        margin-top: 75px;
        margin-bottom: 100px;
    }
    footer {
        flex-direction: column;
        padding: 100px 50px 60px 50px;
    }
    footer .logo {
        margin-right: 80px;
    }
    footer .footer-content {
        flex-direction: column;
        align-items: center;
    }
    footer .footer-content .contact a img {
        width: 65px;
    }
    footer .footer-content .contact ul {
        flex-direction: row;
    }
    footer h2 {
        font-size: 34px;
    }
}
@media screen and (max-width: 576px) {
    body {
        font-size: 18px;
    }
    h1 {
        font-size: 30px;
    }
    .avatars .swiper-container {
        max-width: 320px;
    }
    .for-every-child .wrapper {
        max-width: 420px;
    }
    .faq .faqs .faq-item {
        position: relative;
        left: 40px;
    }
    .contact-us::before,
    .contact-us::after {
        width: 313px;
    }
    .specialist-slider .swiper-container {
        max-width: 440px;
    }
    .specialist-slider__prev img,
    .specialist-slider__next img {
        width: 50px;
    }
    .specialist-slider .swiper-slide-active .footer .stars .star {
        width: 40px;
        margin-right: 20px;
    }
    .reviews {
        margin-top: 10px;
        margin-bottom: 50px;
    }
    .timeline .timeline-wrapper {
        max-width: 370px;
    }
    .contact-us .form .input-wrapper input {
        font-size: 22px;
        padding: 32px 30px 32px 30px;
    }
    .contact-us .form textarea {
        font-size: 22px;
        padding: 30px 30px 0 30px;
    }
    .sign-up-form .input-wrapper input {
        font-size: 22px;
        padding: 32px 30px 32px 30px;
    }
    .who-we-are {
        margin-bottom: 50px;
    }
    .who-we-are .container-wrapper .we-are-item {
        padding: 88px 55px 55px 50px;
        border-radius: 50px;
    }
    .who-we-are .container-wrapper .we-are-item h3::before {
        left: -90px;
        width: 72px;
        height: 79px;
    }
    .who-we-are .mission-vision .mission-vision-item h3::before {
        width: 22px;
        height: 22px;
        top: 0;
        left: -40px;
    }
    .specialist-slider .swiper-wrapper {
        padding-top: 50px;
    }
    .specialist-slider .swiper-slide .image-block .medal {
        width: 100px;
        top: 10px;
        right: 10px;
    }
    .specialist-slider .footer span {
        font-size: 44px;
    }
    .service-categories {
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .timeline .button-block img {
        width: 52px;
    }
    .for-every-child .social-block a img,
    .first-screen .social-block a img {
        width: 49px;
    }
}
@media screen and (max-width: 435px) {
    .logo a img {
        width: 230px;
    }
    h1 span {
        font-size: 52px;
    }
    h2 {
        font-size: 34px;
    }
    .first-screen h1 {
        font-size: 50px;
    }
    .history {
        margin-bottom: 50px;
    }
    .history p.large {
        margin-bottom: 50px;
    }
    p.large {
        font-size: 24px;
    }
    .for-every-child .wrapper {
        max-width: 280px;
    }
    .who-we-are .button-block {
        flex-direction: column;
    }
    .who-we-are .button-block a:first-of-type {
        margin-right: 0;
        margin-bottom: 50px;
    }
    .who-we-are .reviews-block {
        margin-top: 50px;
    }
    .faq {
        margin-bottom: 50px;
    }
    .faq .wrapper {
        margin-bottom: 50px;
    }
    .faq .faqs .faq-item {
        max-width: 300px;
    }
    .services .container-wrapper {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(8, 1fr);
    }
    .meet-julianna .left .meet-block {
        padding: 53px 50px 56px 50px;
        border: 5px solid #785830;
        border-radius: 40px;
        min-height: auto;
    }
    .meet-julianna .left .meet-block h2 {
        font-size: 40px;
    }
    .meet-julianna .right .image-block span {
        font-size: 44px;
    }
    .meet-julianna .left .meet-block .social-buttons-block img {
        width: 39px;
    }
    .timeline .timeline-wrapper {
        left: 40px;
        max-width: 270px;
    }
    .timeline .timeline-wrapper::after {
        left: -70px;
        width: 10px;
        font-size: 34px;
    }
    .timeline .timeline-item .timeline-icon {
        left: -98px;
        width: 60px;
        height: 60px;
        font-size: 34px;
    }
    .timeline .timeline-item .header img {
        width: 50px;
    }
    .timeline .timeline-item .header h5 {
        font-size: 32px;
    }
    .timeline .timeline-item .header p {
        font-size: 22px;
    }
    .timeline .button-block img {
        width: 32px;
    }
    .faq .faqs .faq-item::after {
        width: 45px;
        height: 51px;
        left: -70px;
    }
    footer {
        padding: 50px 20px 60px 20px;
    }
    footer .logo img {
        width: 320px;
    }
    footer .footer-content .about-us {
        margin-bottom: 50px;
    }
}
@media screen and (max-width: 390px) {
    .meet-julianna .left .meet-block {
        padding: 53px 20px 56px 20px;
    }
    .faq .faqs .faq-item {
        max-width: 260px;
    }
    .timeline .timeline-wrapper {
        max-width: 240px;
    }
}
/*# sourceMappingURL=style.css.map */




.hidden {
    display:none;
}

.text-danger {
    color:red;
}

.meet-block {
    position: relative;
    max-width: 864px;
    min-height: 1184px;
    padding: 113px 120px 136px 104px;
    border: 10px solid #785830;
    border-radius: 133px;
    background-color: #FFFFFF;
    z-index: 10;
}


.service-item h3 {
    text-align:center;
    line-height:35px
}


.who-we-are .container-wrapper .we-are-item h3 {
    position: relative;
    left: 0px;
    margin-bottom: 25px;
    padding-left: 40px;
}

.who-we-are .container-wrapper .we-are-item h3::before {
    content: "•";
    position: absolute;
    left: 0;
    top: -13px;
    font-size: 2em;
    color: #41803F;
    background: none;
    width: auto;
    height: auto;
}
