:root {
    --primary: #8C5CFB;
    --secondary: #AD9EFB;
    --accent: #FB9291;
    --dark: #1C1D32;
    --black: #1D2226;
    --light: #ffffff;
    --bg-light: #AEA1F4
}

body {
    background-color: #c7c7c7
}

.body,
html {
    height: 100%;
    min-height: 100vh
}

.header,
footer {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0
}

.main {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    overflow: hidden
}

.footer-to-bottom {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: 0;
    position: relative;
    background-color: #fff
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: Montserrat, sans-serif;
    font-size: 16px
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

a {
    text-decoration: none;
    color: inherit
}

h1,
h2,
h3,
h4 {
    font-family: "Playfair Display", serif;
    font-weight: 900;
    text-align: center;
    line-height: 1
}

figure {
    margin: 0;
    padding: 0;
    font-size: 0
}

img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.promobar {
    text-align: center;
    padding: 10px;
    background-color: #a05bfa;
    color: #fff
}

.header {
    z-index: 5;
    max-width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    -webkit-transition: .3s;
    transition: .3s;
    background: transparent;
    /* -webkit-box-shadow: 0 0 5px 0 #1c1d32; */
    /* box-shadow: 0 0 5px 0 #1c1d32 */
}

.header__content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.header__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%
}

.header__logo {
    width: 188px;
    margin-bottom: 5px
}

.header__logo img {
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
    height: auto
}

.header__bottom {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    left: 0;
    right: 0;
    bottom: -80px;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: 0s;
    transition: 0s;
}

.header__social {
    padding: 0;
    margin: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 250px;
    -ms-flex-pack: distribute;
    justify-content: space-around
}

.nav .menu-item a[href$="are-you-ready-to-work-with-us/"] {
    border-radius: 2.625rem;
    background: rgba(255, 255, 255, .2);
    font-size: 1rem;
    line-height: 1.125rem;
    padding: 14px 35px;
    color: var(--light);
    -webkit-transition: .3s linear;
    transition: .3s linear;
    cursor: pointer;
    max-width: 200px
}

.nav .menu-item a[href$="are-you-ready-to-work-with-us/"]:hover {
    text-decoration: none !important;
    background: var(--dark)
}

@-webkit-keyframes openHeader {
    0% {
        bottom: calc(100% - 120px)
    }
    100% {
        bottom: 0
    }
}

@keyframes openHeader {
    0% {
        bottom: calc(100% - 120px)
    }
    100% {
        bottom: 0
    }
}

.nav {
    color: #fff;
    width: 100%;
    font-family: "Playfair Display", serif;
    font-weight: 700
}

.nav-menu__wrap {
    text-align: center;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: .4s;
    transition: .4s;
    padding: 0;
    margin: 0;
    overflow: hidden
}

.nav ul {
    list-style: none
}

.nav a {
    color: var(--light);
    text-decoration: none;
    display: block;
    margin: 0 auto 15px
}

.nav a:hover {
    text-decoration: underline
}

.nav .sub-menu {
    padding: 0
}

.nav .menu-item {
    font-size: 1rem;
    line-height: 1.5rem;
    position: relative
}

.nav .menu-item .menu-item {
    padding-bottom: 0
}

.nav__btn {
    background-color: transparent;
    border: none;
    width: 50px;
    cursor: pointer;
    height: 50px;
    z-index: 10;
    padding: 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.nav__btn__row {
    -webkit-transition: .2s;
    transition: .2s;
    background-color: var(--light);
    height: 3px;
    width: 100%;
    border-radius: 2px
}

.nav__btn__row + .nav__btn__row {
    margin-top: 7px
}

.container {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1380px
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px
}

.col-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%
}

.col-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%
}

.col-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%
}

.col-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%
}

.col-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%
}

.col-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
}

.col-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%
}

.col-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%
}

.col-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%
}

.col-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%
}

.col-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%
}

.col-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}

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

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

.reviews-lg {
    display: none;
}

.reviews-lg-rating {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.reviews-lg-rating svg {
    display: block;
    margin-right: 6px
}

.reviews-lg-rating svg:last-child {
    margin-right: 0
}

.reviews-lg-text {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 500;
    text-align: center
}

.reviews-lg-item {
    padding-top: 60px;
    padding-bottom: 60px
}

.reviews-lg-item:nth-child(odd) {
    background: #aea1f4
}

.reviews-lg-item:nth-child(even) {
    background: #9e8eef
}

.reviews-lg-item > .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 1200px
}

.reviews-lg-item > .container > * {
    margin-bottom: 30px
}

.reviews-lg-item > .container > :last-child {
    margin-bottom: 0
}

.reviews-lg-reviewer {
    font-size: 1.5rem;
    line-height: 1.875rem;
    text-align: center;
    font-weight: 700;
    font-family: "Playfair Display", serif;
    color: var(--light)
}

.ideas {
    display: none;
    padding: 102px 0;
    background: var(--dark)
}

.ideas-title {
    color: var(--light);
    font-size: 2.5rem;
    line-height: 3.438rem;
    margin-top: 0;
    margin-bottom: 30px
}

.ideas-text {
    text-align: center;
    color: var(--light);
    font-size: 1.563rem;
    line-height: 2.188rem;
    max-width: 768px;
    margin: 0 auto;
    margin-bottom: 60px
}

.ideas-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 60px
}

.ideas-cards-item {
    width: 100%;
    max-width: 345px;
    background: var(--light);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    border-radius: 25px;
    padding: 16px 16px 30px;
    -webkit-transition: .2s ease-out;
    transition: .2s ease-out;
    margin: 0 10px 15px;
    color: var(--dark);
    text-decoration: none
}

.ideas-cards-item > * {
    margin-bottom: 20px
}

.ideas-cards-item > :last-child {
    margin-bottom: 0
}

.ideas-cards-item:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.ideas-cards-item--img {
    background: var(--secondary);
    height: 253px;
    width: 100%;
    border-radius: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden
}

.ideas-cards-item--img img {
    width: 100%
}

.ideas-cards-item--sticker {
    font-size: .75rem;
    line-height: .875rem;
    border-radius: 36px;
    padding: 11px 20px;
    font-weight: 600
}

.ideas-cards-item--sticker.sticker-blog {
    background: rgba(140, 92, 251, .3);
    color: #8c5cfb
}

.ideas-cards-item--sticker.sticker-guide {
    background: rgba(254, 186, 44, .3);
    color: #feba2c
}

.ideas-cards-item--title {
    margin-top: 0;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 700
}

.ideas-cards-item--descr {
    font-size: .875rem;
    line-height: 1.313rem;
    font-weight: 400;
    color: var(--dark);
    opacity: .3
}

.more-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--light);
    font-family: "Playfair Display", serif;
    font-size: 1.563rem;
    line-height: 1.875rem;
    margin: 0 auto
}

.more-link svg {
    display: block;
    margin-left: 15px;
    -webkit-transition: .2s ease-out;
    transition: .2s ease-out
}

.more-link:hover svg {
    -webkit-transform: translate(10px, 0);
    transform: translate(10px, 0)
}

.form-section-2 {
    background: transparent;
}

.form-section-2 h2 {
    font-size: 2.5rem;
    line-height: 4.063rem;
    margin-top: 0;
    margin-bottom: 22px;
    color: var(--dark);
}

.form-section-2 h2 span {
    color: var(--light)
}

.form-section {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1.09%, #8c5cfb), color-stop(98.69%, #f8faff));
    background: linear-gradient(180deg, #8c5cfb 1.09%, #f8faff 98.69%);
    padding: 102px 0 65px
}

.form-section h2 {
    font-size: 2.5rem;
    line-height: 4.063rem;
    margin-top: 0;
    margin-bottom: 22px
}

.form-section h2 span {
    color: var(--light)
}

.form-section-text {
    font-size: 1.125rem;
    line-height: 2.25rem;
    font-weight: 500;
    text-align: center;
    margin: 0
}

.hero__btn {
    line-height: 1.2;
    padding: 22.5px 60px;
    border-radius: 50rem;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    letter-spacing: .02em;
    background-color: var(--dark);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: background-color .4s;
    transition: background-color .4s
}

.hero__btn .icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 6px;
    width: 21px;
    height: 21px;
    overflow: hidden;
    position: relative
}

.hero__btn .icons-1,
.hero__btn .icons-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-style: normal;
    -webkit-transition: -webkit-transform .4s;
    transition: -webkit-transform .4s;
    transition: transform .4s;
    transition: transform .4s, -webkit-transform .4s
}

.hero__btn .icons-2 {
    -webkit-transform: translateY(120%);
    transform: translateY(120%)
}

.hero__btn:hover {
    background-color: var(--accent)
}

.hero__btn:hover .icons-1 {
    -webkit-transform: translateY(-120%);
    transform: translateY(-120%)
}

.hero__btn:hover .icons-2 {
    -webkit-transform: translateY(0);
    transform: translateY(0)
}

@font-face {
    font-family: Roboto;
    src: url(../fonts/RobotoRegular/RobotoRegular.eot);
    src: url(../fonts/RobotoRegular/RobotoRegular.eot?#iefix) format("embedded-opentype"), url(../fonts/RobotoRegular/RobotoRegular.woff) format("woff"), url(../fonts/RobotoRegular/RobotoRegular.ttf) format("truetype");
    font-style: normal;
    font-weight: 400
}

.footer {
    font-family: "Playfair Display";
    padding: 40px 0;
    background-color: #f8faff;
    color: #1c1d32
}

.footer__container {
    max-width: 1130px;
    margin: 0 auto;
    padding: 0 15px
}

.footer__logo {
    max-width: 230px;
    margin-bottom: 23px
}

.footer__logo img {
    width: 100%
}

.footer__wrapper {
    margin-bottom: 30px
}

.footer__wrapper-bottom {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.footer__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.footer__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 700
}

.footer__list .list {
    margin: 0;
    margin-right: 32px
}

.footer__item {
    margin-bottom: 15px
}

.footer__item a:hover {
    text-decoration: underline
}

.footer__info {
    font-weight: 700
}

.footer__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -5px
}

.footer__wrap-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 15px
}

.footer__icon {
    cursor: pointer;
    margin: 0 5px
}

.footer__icon:hover path {
    fill: #8c5cfb
}

.footer__icon path {
    -webkit-transition: .3s;
    transition: .3s
}

#footer__form.footer__form .button {
    font-size: 14px;
    font-family: 'Montserrat';
    font-weight: 500;
    display: block;
    background: #8c5cfb;
    border: 0;
    color: #fff;
    padding: 12px;
    width: 100%;
    border-radius: 34px;
    cursor: pointer;
    -webkit-transition: .3s;
    transition: .3s
}

#footer__form input[type="submit"]:hover {
    background: #1c1d32
}

#footer__form .footer__input {
    border-radius: 23px;
    background: #fff
}

#footer__form .mc4wp-success {
    padding: 10px;
    font-size: 14px;
    text-align: center;
}

#footer__form .mc4wp-success p {
    margin: 0;
}

#footer__form .footer__input input[type="email"] {
    background: #fff;
    -webkit-box-shadow: 0 0 35px rgba(71, 79, 181, .05);
    box-shadow: 0 0 35px rgba(71, 79, 181, .05);
    border: 2px solid transparent;
    width: 100%;
    height: 100%;
    padding: 12px 20px;
    border-radius: 23px;
    margin-bottom: 10px;
    max-width: 100%;
    font-size: 14px
}

#footer__form .mc4wp-form-fields {
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

#footer__form .footer__input input[type="email"]:focus-visible {
    outline: 0
}

#footer__form .footer__input input[type="email"]:active,
#footer__form .footer__input input[type="email"]:focus {
    border: 2px solid #16172b
}

#footer__form .footer__input input[type="email"]::-webkit-input-placeholder {
    color: #ccced6
}

#footer__form .footer__input input[type="email"]::-moz-placeholder {
    color: #ccced6
}

#footer__form .footer__input input[type="email"]:-ms-input-placeholder {
    color: #ccced6
}

#footer__form .footer__input input[type="email"]::-ms-input-placeholder {
    color: #ccced6
}

#footer__form .footer__input input[type="email"]::placeholder {
    color: #ccced6
}

.footer__copyright {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    font-size: 12px;
    font-weight: 400
}

.footer__info-contact {
    font-size: 16px;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.footer__info-contact a {
    display: inline;
    margin-bottom: 10px
}

.footer__info-contact a:hover {
    text-decoration: underline
}

.popup2 .modal-content .button {
    margin-top: 30px;
    font-size: 18px
}

.popup2 .modal-content p {
    margin-top: 10px;
    line-height: 1.5;
    font-size: 16px
}

.popup2 .modal-content input {
    border: solid 1px green;
    padding: 15px 10px;
    font-size: 16px;
    min-height: 30px;
    margin-top: 20px;
    width: 100%
}

.list {
    list-style-type: none;
    padding: 0
}

.title-60 {
    font-weight: 900
}

.title-50 {
    font-weight: 900
}

#form-section .wpforms-container.custom-form {
    width: 100%;
    max-width: 980px;
    margin: 50px auto 0
}

#form-section .wpforms-container.custom-form input:not([type=checkbox]),
#form-section .wpforms-container.custom-form input:not([type=radio]),
#form-section .wpforms-container.custom-form input:not([type=submit]),
#form-section .wpforms-container.custom-form textarea {
    width: 100%
}

#form-section .wpforms-container.custom-form .choices .choices__inner,
#form-section .wpforms-container.custom-form input:not([type=checkbox]),
#form-section .wpforms-container.custom-form input:not([type=radio]),
#form-section .wpforms-container.custom-form input:not([type=submit]),
#form-section .wpforms-container.custom-form textarea {
    padding: 15px 33px;
    background-color: var(--light);
    border: none;
    -webkit-box-shadow: 0 0 35px rgba(71, 79, 181, .05);
    box-shadow: 0 0 35px rgba(71, 79, 181, .05);
    outline: 0;
    font-size: .938rem;
    line-height: 1.875rem;
    color: var(--dark);
    font-weight: 500;
    font-family: Montserrat, sans-serif
}

#form-section .wpforms-container.custom-form .choices .choices__inner::-webkit-input-placeholder,
#form-section .wpforms-container.custom-form input:not([type=checkbox])::-webkit-input-placeholder,
#form-section .wpforms-container.custom-form input:not([type=radio])::-webkit-input-placeholder,
#form-section .wpforms-container.custom-form input:not([type=submit])::-webkit-input-placeholder,
#form-section .wpforms-container.custom-form textarea::-webkit-input-placeholder {
    opacity: .3
}

#form-section .wpforms-container.custom-form .choices .choices__inner::-moz-placeholder,
#form-section .wpforms-container.custom-form input:not([type=checkbox])::-moz-placeholder,
#form-section .wpforms-container.custom-form input:not([type=radio])::-moz-placeholder,
#form-section .wpforms-container.custom-form input:not([type=submit])::-moz-placeholder,
#form-section .wpforms-container.custom-form textarea::-moz-placeholder {
    opacity: .3
}

#form-section .wpforms-container.custom-form .choices .choices__inner:-ms-input-placeholder,
#form-section .wpforms-container.custom-form input:not([type=checkbox]):-ms-input-placeholder,
#form-section .wpforms-container.custom-form input:not([type=radio]):-ms-input-placeholder,
#form-section .wpforms-container.custom-form input:not([type=submit]):-ms-input-placeholder,
#form-section .wpforms-container.custom-form textarea:-ms-input-placeholder {
    opacity: .3
}

#form-section .wpforms-container.custom-form .choices .choices__inner::-ms-input-placeholder,
#form-section .wpforms-container.custom-form input:not([type=checkbox])::-ms-input-placeholder,
#form-section .wpforms-container.custom-form input:not([type=radio])::-ms-input-placeholder,
#form-section .wpforms-container.custom-form input:not([type=submit])::-ms-input-placeholder,
#form-section .wpforms-container.custom-form textarea::-ms-input-placeholder {
    opacity: .3
}

#form-section .wpforms-container.custom-form .choices .choices__inner::placeholder,
#form-section .wpforms-container.custom-form input:not([type=checkbox])::placeholder,
#form-section .wpforms-container.custom-form input:not([type=radio])::placeholder,
#form-section .wpforms-container.custom-form input:not([type=submit])::placeholder,
#form-section .wpforms-container.custom-form textarea::placeholder {
    opacity: .3
}

#form-section .wpforms-container.custom-form .choices .choices__inner:focus::-webkit-input-placeholder,
#form-section .wpforms-container.custom-form input:not([type=checkbox]):focus::-webkit-input-placeholder,
#form-section .wpforms-container.custom-form input:not([type=radio]):focus::-webkit-input-placeholder,
#form-section .wpforms-container.custom-form input:not([type=submit]):focus::-webkit-input-placeholder,
#form-section .wpforms-container.custom-form textarea:focus::-webkit-input-placeholder {
    opacity: 0
}

#form-section .wpforms-container.custom-form .choices .choices__inner:focus::-moz-placeholder,
#form-section .wpforms-container.custom-form input:not([type=checkbox]):focus::-moz-placeholder,
#form-section .wpforms-container.custom-form input:not([type=radio]):focus::-moz-placeholder,
#form-section .wpforms-container.custom-form input:not([type=submit]):focus::-moz-placeholder,
#form-section .wpforms-container.custom-form textarea:focus::-moz-placeholder {
    opacity: 0
}

#form-section .wpforms-container.custom-form .choices .choices__inner:focus:-ms-input-placeholder,
#form-section .wpforms-container.custom-form input:not([type=checkbox]):focus:-ms-input-placeholder,
#form-section .wpforms-container.custom-form input:not([type=radio]):focus:-ms-input-placeholder,
#form-section .wpforms-container.custom-form input:not([type=submit]):focus:-ms-input-placeholder,
#form-section .wpforms-container.custom-form textarea:focus:-ms-input-placeholder {
    opacity: 0
}

#form-section .wpforms-container.custom-form .choices .choices__inner:focus::-ms-input-placeholder,
#form-section .wpforms-container.custom-form input:not([type=checkbox]):focus::-ms-input-placeholder,
#form-section .wpforms-container.custom-form input:not([type=radio]):focus::-ms-input-placeholder,
#form-section .wpforms-container.custom-form input:not([type=submit]):focus::-ms-input-placeholder,
#form-section .wpforms-container.custom-form textarea:focus::-ms-input-placeholder {
    opacity: 0
}

#form-section .wpforms-container.custom-form .choices .choices__inner:focus::placeholder,
#form-section .wpforms-container.custom-form input:not([type=checkbox]):focus::placeholder,
#form-section .wpforms-container.custom-form input:not([type=radio]):focus::placeholder,
#form-section .wpforms-container.custom-form input:not([type=submit]):focus::placeholder,
#form-section .wpforms-container.custom-form textarea:focus::placeholder {
    opacity: 0
}

#form-section .wpforms-container.custom-form .choices {
    width: 100%;
    max-width: 100%
}

#form-section .wpforms-container.custom-form .choices__list--single {
    padding: 0
}

#form-section .wpforms-container.custom-form .choices__list--dropdown {
    border: none;
    -webkit-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, .3);
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, .3);
    border-radius: 0 0 25px 25px
}

#form-section .wpforms-container.custom-form .choices__list--dropdown .choices__item {
    padding-left: 33px
}

#form-section .wpforms-container.custom-form .choices.is-open .choices__inner {
    border-radius: 25px 25px 0 0
}

#form-section .wpforms-container.custom-form .choices.is-open.is-flipped .choices__inner {
    border-radius: 0 0 25px 25px
}

#form-section .wpforms-container.custom-form .choices.is-open.is-flipped .choices__list--dropdown {
    -webkit-box-shadow: 0 -3px 3px 0 rgba(0, 0, 0, .3);
    box-shadow: 0 -3px 3px 0 rgba(0, 0, 0, .3);
    border-radius: 25px 25px 0 0
}

#form-section .wpforms-container.custom-form input:not([type=checkbox]),
#form-section .wpforms-container.custom-form input:not([type=radio]),
#form-section .wpforms-container.custom-form input:not([type=submit]) {
    height: auto
}

#form-section .wpforms-container.custom-form .choices .choices__inner,
#form-section .wpforms-container.custom-form input:not([type=checkbox]),
#form-section .wpforms-container.custom-form input:not([type=radio]),
#form-section .wpforms-container.custom-form input:not([type=submit]) {
    border-radius: 58px
}


#form-section .wpforms-container.custom-form textarea {
    border-radius: 25px;
    height: 195px;
    resize: none
}

#form-section .wpforms-container.custom-form .wpforms-field-checkbox label {
    font-size: .938rem;
    line-height: 1.875rem;
    font-weight: 500;
    position: relative;
    display: block;
    padding-left: 30px;
    cursor: pointer
}

#form-section .wpforms-container.custom-form .wpforms-field-checkbox label::before {
    content: "";
    display: block;
    min-width: 11px;
    width: 11px;
    height: 11px;
    cursor: pointer;
    border: 3px solid var(--accent);
    border-radius: 4px;
    position: absolute;
    top: 5px;
    background: 0 0;
    left: 0
}

#form-section .wpforms-container.custom-form .wpforms-field-checkbox input[type=checkbox] {
    display: none
}

#form-section .wpforms-container.custom-form .wpforms-field-checkbox input[type=checkbox]:checked + label::before {
    -webkit-box-shadow: inset 0 0 0 2px #fff;
    box-shadow: inset 0 0 0 2px #fff;
    background: var(--accent)
}

#form-section .wpforms-container.custom-form .wpforms-submit-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 60px
}

#form-section .wpforms-container.custom-form .wpforms-form .wpforms-page-button,
#form-section .wpforms-container.custom-form .wpforms-form button[type=submit],
#form-section .wpforms-container.custom-form .wpforms-form input[type=submit] {
    border-radius: 25px;
    background: var(--accent);
    color: var(--light);
    padding: 18px 60px;
    font-size: 1.5rem;
    line-height: 1.5rem;
    min-width: 235px;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    border: none;
    cursor: pointer
}

#form-section .wpforms-container.custom-form .wpforms-field {
    padding: 0;
    width: 100%
}

#form-section .wpforms-container.custom-form .wpforms-field > .wpforms-field-row > .wpforms-field-row-block,
#form-section .wpforms-container.custom-form .wpforms-field > input:not([type=checkbox]),
#form-section .wpforms-container.custom-form .wpforms-field > input:not([type=radio]),
#form-section .wpforms-container.custom-form .wpforms-field > input:not([type=submit]) {
    margin-bottom: 22px
}

#form-section .wpforms-container.custom-form .wpforms-field > textarea {
    margin-bottom: 55px
}

#form-section .wpforms-container.custom-form .wpforms-field > .choices {
    margin-bottom: 56px
}

#form-section .wpforms-container.custom-form .wpforms-field > .choices::after {
    display: block !important;
    border-color: #bbbbc2 transparent transparent transparent
}

#form-section .wpforms-container.custom-form .wpforms-field-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

#form-section .wpforms-container.custom-form .wpforms-field-row::after,
#form-section .wpforms-container.custom-form .wpforms-field-row::before {
    display: none
}

#form-section .wpforms-container.custom-form .wpforms-field-row-block {
    min-width: 250px;
    float: none;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    float: none
}

#form-section .wpforms-container.custom-form .wpforms-field-row-block::after,
#form-section .wpforms-container.custom-form .wpforms-field-row-block::before {
    display: none
}

#form-section .wpforms-container.custom-form input.wpforms-error {
    -webkit-box-shadow: inset 0 0 0 2px #f33;
    box-shadow: inset 0 0 0 2px #f33
}

#form-section .wpforms-container.custom-form label.wpforms-error {
    padding-left: 33px;
    margin-top: 5px;
    text-shadow: 0 0 4px #f33;
    color: var(--light)
}

#form-section .wpforms-container.custom-form ul,
#form-section .wpforms-container.custom-form ul li {
    list-style: none;
    background: 0 0;
    border: 0;
    margin: 0;
    padding: 0
}

#form-section .wpforms-container.custom-form .d-inline-form {
    display: inline-block;
    width: 100%
}

#form-section .wpforms-container.custom-form .d-inline-form {
    margin-bottom: 22px;
}

#form-section .wpforms-container.custom-form .d-inline-form input {
    margin-bottom: 0 !important
}

#form-section .wpforms-container.custom-form .wpforms-field-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}


#form-section-2 .wpforms-container input:not([type=checkbox]),
#form-section-2 .wpforms-container input:not([type=radio]),
#form-section-2 .wpforms-container input:not([type=submit]),
#form-section-2 .wpforms-container textarea {
    width: 100%
}

#form-section-2 .wpforms-container .choices .choices__inner,
#form-section-2 .wpforms-container input:not([type=checkbox]),
#form-section-2 .wpforms-container input:not([type=radio]),
#form-section-2 .wpforms-container input:not([type=submit]),
#form-section-2 .wpforms-container select,
#form-section-2 .wpforms-container textarea {
    padding: 15px 33px;
    background-color: var(--light);
    border: none;
    -webkit-box-shadow: 0 0 35px rgba(71, 79, 181, .05);
    box-shadow: 0 0 35px rgba(71, 79, 181, .05);
    outline: 0;
    font-size: .938rem;
    line-height: 1.875rem;
    color: var(--dark);
    font-weight: 500;
    font-family: Montserrat, sans-serif
}

#form-section-2 .wpforms-container select {
    margin: 10px 0px;
    height: 60px;
}

#form-section-2 .wpforms-container .choices .choices__inner::-webkit-input-placeholder,
#form-section-2 .wpforms-container input:not([type=checkbox])::-webkit-input-placeholder,
#form-section-2 .wpforms-container input:not([type=radio])::-webkit-input-placeholder,
#form-section-2 .wpforms-container input:not([type=submit])::-webkit-input-placeholder,
#form-section-2 .wpforms-container textarea::-webkit-input-placeholder {
    opacity: .3
}

#form-section-2 .wpforms-container .choices .choices__inner::-moz-placeholder,
#form-section-2 .wpforms-container input:not([type=checkbox])::-moz-placeholder,
#form-section-2 .wpforms-container input:not([type=radio])::-moz-placeholder,
#form-section-2 .wpforms-container input:not([type=submit])::-moz-placeholder,
#form-section-2 .wpforms-container textarea::-moz-placeholder {
    opacity: .3
}

#form-section-2 .wpforms-container .choices .choices__inner:-ms-input-placeholder,
#form-section-2 .wpforms-container input:not([type=checkbox]):-ms-input-placeholder,
#form-section-2 .wpforms-container input:not([type=radio]):-ms-input-placeholder,
#form-section-2 .wpforms-container input:not([type=submit]):-ms-input-placeholder,
#form-section-2 .wpforms-container textarea:-ms-input-placeholder {
    opacity: .3
}

#form-section-2 .wpforms-container .choices .choices__inner::-ms-input-placeholder,
#form-section-2 .wpforms-container input:not([type=checkbox])::-ms-input-placeholder,
#form-section-2 .wpforms-container input:not([type=radio])::-ms-input-placeholder,
#form-section-2 .wpforms-container input:not([type=submit])::-ms-input-placeholder,
#form-section-2 .wpforms-container textarea::-ms-input-placeholder {
    opacity: .3
}

#form-section-2 .wpforms-container .choices .choices__inner::placeholder,
#form-section-2 .wpforms-container input:not([type=checkbox])::placeholder,
#form-section-2 .wpforms-container input:not([type=radio])::placeholder,
#form-section-2 .wpforms-container input:not([type=submit])::placeholder,
#form-section-2 .wpforms-container textarea::placeholder {
    opacity: .3
}

#form-section-2 .wpforms-container .choices .choices__inner:focus::-webkit-input-placeholder,
#form-section-2 .wpforms-container input:not([type=checkbox]):focus::-webkit-input-placeholder,
#form-section-2 .wpforms-container input:not([type=radio]):focus::-webkit-input-placeholder,
#form-section-2 .wpforms-container input:not([type=submit]):focus::-webkit-input-placeholder,
#form-section-2 .wpforms-container textarea:focus::-webkit-input-placeholder {
    opacity: 0
}

#form-section-2 .wpforms-container .choices .choices__inner:focus::-moz-placeholder,
#form-section-2 .wpforms-container input:not([type=checkbox]):focus::-moz-placeholder,
#form-section-2 .wpforms-container input:not([type=radio]):focus::-moz-placeholder,
#form-section-2 .wpforms-container input:not([type=submit]):focus::-moz-placeholder,
#form-section-2 .wpforms-container textarea:focus::-moz-placeholder {
    opacity: 0
}

#form-section-2 .wpforms-container .choices .choices__inner:focus:-ms-input-placeholder,
#form-section-2 .wpforms-container input:not([type=checkbox]):focus:-ms-input-placeholder,
#form-section-2 .wpforms-container input:not([type=radio]):focus:-ms-input-placeholder,
#form-section-2 .wpforms-container input:not([type=submit]):focus:-ms-input-placeholder,
#form-section-2 .wpforms-container textarea:focus:-ms-input-placeholder {
    opacity: 0
}

#form-section-2 .wpforms-container .choices .choices__inner:focus::-ms-input-placeholder,
#form-section-2 .wpforms-container input:not([type=checkbox]):focus::-ms-input-placeholder,
#form-section-2 .wpforms-container input:not([type=radio]):focus::-ms-input-placeholder,
#form-section-2 .wpforms-container input:not([type=submit]):focus::-ms-input-placeholder,
#form-section-2 .wpforms-container textarea:focus::-ms-input-placeholder {
    opacity: 0
}

#form-section-2 .wpforms-container .choices .choices__inner:focus::placeholder,
#form-section-2 .wpforms-container input:not([type=checkbox]):focus::placeholder,
#form-section-2 .wpforms-container input:not([type=radio]):focus::placeholder,
#form-section-2 .wpforms-container input:not([type=submit]):focus::placeholder,
#form-section-2 .wpforms-container textarea:focus::placeholder {
    opacity: 0
}

#form-section-2 .wpforms-container .choices {
    width: 100%;
    max-width: 100%
}

#form-section-2 .wpforms-container .choices__list--single {
    padding: 0
}

#form-section-2 .wpforms-container .choices__list--dropdown {
    border: none;
    -webkit-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, .3);
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, .3);
    border-radius: 0 0 25px 25px
}

#form-section-2 .wpforms-container .choices__list--dropdown .choices__item {
    padding-left: 33px
}

#form-section-2 .wpforms-container .choices.is-open .choices__inner {
    border-radius: 25px 25px 0 0
}

#form-section-2 .wpforms-container .choices.is-open.is-flipped .choices__inner {
    border-radius: 0 0 25px 25px
}

#form-section-2 .wpforms-container .choices.is-open.is-flipped .choices__list--dropdown {
    -webkit-box-shadow: 0 -3px 3px 0 rgba(0, 0, 0, .3);
    box-shadow: 0 -3px 3px 0 rgba(0, 0, 0, .3);
    border-radius: 25px 25px 0 0
}

#form-section-2 .wpforms-container input:not([type=checkbox]),
#form-section-2 .wpforms-container input:not([type=radio]),
#form-section-2 .wpforms-container input:not([type=submit]) {
    height: auto
}

#form-section-2 .wpforms-container .choices .choices__inner,
#form-section-2 .wpforms-container select,
#form-section-2 .wpforms-container input:not([type=checkbox]),
#form-section-2 .wpforms-container input:not([type=radio]),
#form-section-2 .wpforms-container input:not([type=submit]) {
    border-radius: 58px
}


#form-section-2 .wpforms-container textarea {
    border-radius: 25px;
    height: 195px;
    resize: none
}

#form-section-2 .wpforms-container .wpforms-field-checkbox label {
    font-size: .938rem;
    line-height: 1.875rem;
    font-weight: 500;
    position: relative;
    display: block;
    padding-left: 30px;
    cursor: pointer
}

#form-section-2 .wpforms-container .wpforms-field-checkbox label::before {
    content: "";
    display: block;
    min-width: 11px;
    width: 11px;
    height: 11px;
    cursor: pointer;
    border: 3px solid var(--accent);
    border-radius: 4px;
    position: absolute;
    top: 5px;
    background: 0 0;
    left: 0
}

#form-section-2 .wpforms-container .wpforms-field-checkbox input[type=checkbox] {
    display: none
}

#form-section-2 .wpforms-container .wpforms-field-checkbox input[type=checkbox]:checked + label::before {
    -webkit-box-shadow: inset 0 0 0 2px #fff;
    box-shadow: inset 0 0 0 2px #fff;
    background: var(--accent)
}

#form-section-2 .wpforms-container .wpforms-submit-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 60px
}

#form-section-2 .wpforms-container .wpforms-form .wpforms-page-button,
#form-section-2 .wpforms-container .wpforms-form button[type=submit],
#form-section-2 .wpforms-container .wpforms-form input[type=submit] {
    border-radius: 25px;
    background: var(--accent);
    color: var(--light);
    padding: 18px 60px;
    font-size: 1.5rem;
    line-height: 1.5rem;
    min-width: 235px;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    border: none;
    cursor: pointer
}

#form-section-2 .wpforms-container .wpforms-field {
    padding: 0;
    width: 100%
}

#form-section-2 .wpforms-container .wpforms-field > .wpforms-field-row > .wpforms-field-row-block,
#form-section-2 .wpforms-container .wpforms-field > input:not([type=checkbox]),
#form-section-2 .wpforms-container .wpforms-field > input:not([type=radio]),
#form-section-2 .wpforms-container .wpforms-field > select,
#form-section-2 .wpforms-container .wpforms-field > input:not([type=submit]) {
    margin-bottom: 22px
}

#form-section-2 .wpforms-container .wpforms-field.wpforms-field-phone {
    margin-bottom: 22px
}

#form-section-2 .wpforms-container .wpforms-field > textarea {
    margin-bottom: 55px
}

#form-section-2 .wpforms-container .wpforms-field > .choices {
    margin-bottom: 56px
}

#form-section-2 .wpforms-container .wpforms-field > .choices::after {
    display: block !important;
    border-color: #bbbbc2 transparent transparent transparent
}

#form-section-2 .wpforms-container .wpforms-field-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

#form-section-2 .wpforms-container .wpforms-field-row::after,
#form-section-2 .wpforms-container .wpforms-field-row::before {
    display: none
}

#form-section-2 .wpforms-container .wpforms-field-row-block {
    min-width: 250px;
    float: none;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    float: none
}

#form-section-2 .wpforms-container .wpforms-field-row-block::after,
#form-section-2 .wpforms-container .wpforms-field-row-block::before {
    display: none
}

#form-section-2 .wpforms-container input.wpforms-error {
    -webkit-box-shadow: inset 0 0 0 2px #f33;
    box-shadow: inset 0 0 0 2px #f33
}

#form-section-2 .wpforms-container label.wpforms-error {
    padding-left: 33px;
    margin-top: 5px;
    text-shadow: 0 0 4px #f33;
    color: var(--light)
}

#form-section-2 .wpforms-container ul,
#form-section-2 .wpforms-container ul li {
    list-style: none;
    background: 0 0;
    border: 0;
    margin: 0;
    padding: 0
}

#form-section-2 .wpforms-container .d-inline-form {
    display: inline-block;
    width: 100%
}

#form-section-2 .wpforms-container .wpforms-field-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#form-section-2 .wpforms-field {
    display: flex !important;
    justify-content: center !important;
}

#form-section-2 .wpforms-field-medium {
    max-width: 800px;
}


.post {
    background: #1c1d32;
    padding: 50px 0;
    color: #F8FAFF;
}

.post__hero {
    padding-top: 50px;
    padding-bottom: 0
}

.post__wrap {
    max-width: 850px;
    margin-left: auto;
}

.post__wrap-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.post__bottom-wrapper{
    display: flex;
    flex-direction: column-reverse;
}

.post__bottom-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.post__bottom-wrap .resources__content {
    width: 100%;
}

.post__bottom {
    margin: 0 auto;
    max-width: 1170px;;
}

.post__bottom h2 {
    text-transform: uppercase;
    font-family: "Montserrat";
    font-size: 30px;
    margin: 0;
    margin-bottom: 40px;
}

.post__bottom .resources__item {
    border: none;
    display: block;
    max-width: 540px;
    padding: 0 20px;
    margin-bottom: 40px;
}
.post__bottom .resources__video-title span{
    display: block;
}
.post__bottom .resources__video {
    max-width: none;
    margin-bottom: 15px;
    overflow: hidden;
}

.post__bottom .resources__button, .post__bottom p {
    display: none !important;
}

.post__bottom .resources__item-title {
    font-family: "Montserrat";
    font-weight: 400;
    font-size: 14px;
    text-align: left;
}

@media (min-width: 420px) {
    .post__wrap-title {
        font-size: 16px;
    }

    .post__bottom .resources__item-title {
        font-size: 16px;
    }
}

.post__wrap-title .timeline {
    min-width: 110px;
}

.post__wrap-title .title-60 {
    margin: 0;
}

.post__wrap-title_desktop .timeline {
    display: none;
}

.post__wrap-title_desktop {
    border-bottom: 1px solid #DADCEA80;
    padding: 30px 0;
    justify-content: center;
}

.post__wrapper {
    display: flex;
    flex-direction: column-reverse;
}

.post__inner {
    overflow: hidden;
    position: relative
}

.post__img {
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(23, 23, 23, 0)), to(#171717));
    background: linear-gradient(180deg, rgba(23, 23, 23, 0) 0, #171717 100%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

.post__img img {
    -webkit-transition: .3s;
    transition: .3s;
    width: 100%;
    height: 100%;
    max-width: none
}
.exclusive{
    font-weight: 900;
    font-style: italic;
    color: #AEA1F4;
    padding-left: 30px;
    font-size: 18px;
}
.post__inner .exclusive{
    padding: 0;
    display: block;
    text-transform: uppercase;
    color: #8c5cfb;
    font-family: 'Montserrat';
}

.resources__video-title{
    display: flex;
}
.resources__video-title:hover span{
    margin-right: 5px;
    margin-left: 15px;
}
.resources__video-title span{
    display: none;
    transition: .3s;
    margin-right: 20px;
}
.resources__video-title svg{
    width: 18px;
}
.resources__video_bg .icon-watch {
    font-size: 10px;
    width: 100px;
    text-align: center;
    position: absolute;
    display: block;
    z-index: 2;
    top: 50%;
    transform: translate(0, -50%);
    left: 0;
    right: 0;
    margin: 0 auto;
}
.resources__video_bg .icon-watch span{
    display: block;
}
.resources__video_bg svg {
    width: 20px;
    height: 20px;
    margin-bottom: 6px;
}

.post__img::after, .resources__video_bg::after {
    content: "";
    background: linear-gradient(360deg, #8C5CFB 0%, rgba(140, 92, 251, 0) 105.49%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1
}

.post__content {
    width: 100%;
    padding: 20px;
    position: relative;
    z-index: 1
}

.post__data {
    font-size: 16px;
    letter-spacing: 1.2px;
    color: #fff;
    line-height: 1.5;
    font-weight: 300;
    display: block;
    opacity: .8;
}

.post__title {
    text-align: left;
    line-height: 1.3;
    color: #fff;
    font-size: 28px
}

.post__articles {
    font-size: 18px;
    max-width: 830px;
	width: 100%;
    color: #F8FAFF;
    line-height: 1.3;
    font-weight: 300;
}

.post__articles .wp-block-image {
    padding: 30px 0;
}

@media (min-width: 420px) {
    .post__articles .wp-block-image {
        padding: 55px 0;
    }
    .resources__video-title svg {
        width: 25px;
    }

    .resources__video_bg svg {
        width: 30px;
        height: 30px;
        margin-bottom: 7px;
    }
}

.post__articles-img {
    border-radius: 25px;
    overflow: hidden;
    margin: 20px 0
}

.post__articles-img figure {
    position: relative;
    padding-bottom: 66.6666666667%;
    width: 100%;
    height: 100%
}

.post__articles-img picture {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

.post__articles-img img {
    width: 100%;
    height: 100%
}

.post__list {
    display: block;
    list-style: none;
    padding: 0;
}

.post__list li {
    padding: 0 10px;
}

.post__list a {
    -webkit-transition: .3s;
    transition: .3s;
    text-decoration: underline;
    margin-bottom: 10px;
    display: inline-block;
}

.post__list a:hover {
    color: #fff;
    text-decoration: none;
}

.post__socials {
    font-size: 26px;
    font-family: 'Playfair Display';
    border-bottom: 1px solid #DADCEA80;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.post__socials p {
    font-size: 29px;
    font-weight: 700;
}

.post-video__wrap {
    padding-top: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.post-video__wrap .post__img:after, .resources__video_bg::after {
    background: linear-gradient(90deg, #8C5CFB 0%, rgba(140, 92, 251, 0) 105.49%);
}

.post-video__wrap .post__title {
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
    margin: 0 auto 60px;
    font-family: "Montserrat";
}

.post-video__wrap .post__inner {
    padding-bottom: calc(600% / 1050 * 100);
}
.post-video__video iframe{
    max-width: 1100px;
    width: 100%;
    height: 200px;
}
@media (min-width: 420px){
    .post-video__video iframe {
        height: 360px;
    }
}
@media (min-width: 1024px){
    .post-video__video iframe {
        height: 600px;
    }
}
@media (min-width: 1024px){
    .post-video__video iframe {
        height: 600px;
    }
}
@media (min-width: 768px) {
    .resources__video-title svg {
        width: 31px;
    }

    .resources__video_bg svg {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .post__bottom .resources__video {
        margin-bottom: 30px;
    }

    .post__articles {
        padding-bottom: 80px;
    }

    .post__articles .wp-block-image {
        padding: 75px 0;
    }

    .post__bottom .resources__item-title {
        font-size: 18px;
    }

    .post__bottom {
        border: none;
        padding-top: 45px;
    }
    .post__bottom-wrap {
        flex-direction: row;
        align-items: flex-start;
    }

    .post__wrap-title_mobile {
        display: none;
    }

    .post__wrap-title_desktop {
        justify-content: space-between;
        padding: 40px 0;
    }

    .post__wrap-title_desktop .timeline {
        display: block;
    }

    .post__wrapper {
        padding-top: 55px;
        flex-direction: row;
        justify-content: space-between;
    }

    .post__list {
        display: block;
    }

    .post__list a {
        margin-bottom: 20px;
    }

    .post__socials {
        font-size: 18px;
        max-width: 300px;
        width: 100%;
        border: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .post__socials p {
        font-size: 20px;
        margin-bottom: 35px;
    }
}

.accordion {
    width: 100%;
    -webkit-transition: .4s;
    transition: .4s;
    padding-bottom: 100px;
    position: relative;
}

.accordion__container {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.accordion__item {
    width: 100%;
}

.accordion__item:first-child .accordion__title-text {
    border-top: solid #000 2px;
}

.accordion__title-text {
    min-height: 75px;
    padding: 25px 35px 25px 0;
    margin: 0;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    position: relative;
}

.accordion__title-text::after,
.accordion__title-text::before {
    content: " ";
    right: 0;
    -webkit-transition: .3s;
    transition: .3s;
    font-size: 0;
    position: absolute;
    width: 33px;
    height: 0;
    top: calc(50% - 1px);
    border-top: 2px solid #000
}

.accordion__title-text::before {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

.is-open .accordion__title-text::before {
    -webkit-transform: rotate(0);
    transform: rotate(0)
}

.is-open .accordion__title-text::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.accordion__body {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 1s cubic-bezier(.22, .61, .36, 1);
    transition: max-height 1s cubic-bezier(.22, .61, .36, 1);
    border-bottom: 1px solid #000
}

.accordion__content {
    width: calc(100% - 45px)
}

.hero {
    background-color: var(--secondary);
    position: relative;
    min-height: 100vh;
    z-index: 1
}

.hero__bg {
    position: absolute;
    top: 0;
    left: -150px;
    right: 0;
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    min-height: 800px;
    opacity: .5;
    z-index: -1;
}

.hero__container {
    padding-top: 230px;
    padding-bottom: 60px
}

.hero__content {
    margin-left: auto;
    color: var(--light);
    text-align: center
}

.hero__text,
.hero__title {
    text-align: center
}

.hero__title {
    margin-bottom: 30px
}

.hero__text {
    text-shadow: 1px 1px #8a8a8a;
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 1.125rem
}

.hero__wrap-btn {
    display: inline-block;
    margin-bottom: 145px
}

.hero__partners {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 60px
}

.hero__partners .partner__row-1 {
    margin-bottom: 30px
}

.hero__partners .partner__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.hero__partners .partner__title {
    text-align: left;
    margin-bottom: auto;
    font-weight: 600;
    line-height: 1
}

.hero__partners .partner__img {
    margin-top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.hero__caption {
    text-align: left;
    color: var(--light);
    font-size: .875rem;
    font-weight: 600;
    line-height: 1.5em
}

.hero__caption p {
    margin-bottom: 15px
}

.hero__caption p:last-of-type {
    margin-bottom: 0
}

.why-choose {
    color: var(--light);
    background-color: var(--dark);
    padding: 45px 0
}

.why-choose h2 {
    font-family: Montserrat;
}

.why-choose__caption {
    margin-bottom: 45px;
}

.why-choose__caption p {
    font-weight: 400 !important
}


.why-choose__comment {
    display: none;
    padding: 30px;
    margin: 0 auto;
    border-radius: 25px;
    position: relative;
    background-color: var(--secondary)
}

.why-choose__comment p {
    line-height: 1.1em !important;
    color: var(--dark);
    font-weight: 400 !important
}

.why-choose__comment p:first-of-type {
    margin-top: 0
}

.why-choose__comment p:last-of-type {
    margin-bottom: 0
}

.why-choose__comment::before {
    content: "";
    position: absolute;
    top: 1%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-100%);
    transform: translateX(-50%) translateY(-100%);
    width: 0;
    height: 0;
    border-left: 27px solid transparent;
    border-right: 27px solid transparent;
    border-bottom: 30px solid var(--secondary)
}

.reason-believe {
    background-color: var(--dark);
    color: var(--light);
    padding: 30px 0
}

.reason-believe__title {
    margin-bottom: 30px;
    font-family: Montserrat;
}

.reason-believe__wrapper {
    margin-bottom: 60px
}

.reason-believe__item {
    margin-bottom: 30px
}

.reason-believe__grad {
    margin-bottom: 30px;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    background: #a794fa;
    background: -webkit-gradient(linear, left top, right top, from(#a794fa), to(#8c5cfb));
    background: linear-gradient(90deg, #a794fa 0, #8c5cfb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.reason-believe__caption {
    text-align: center;
    font-weight: 600;
    line-height: 1.3
}

.reason-testimonials {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: 10px;
}

.reason-testimonials__item {
    margin-bottom: 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}


.reason-testimonials__bubble {
    margin-bottom: 45px;
    padding: 30px 30px 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    position: relative;
    z-index: 1;
    border-radius: 25px;
    border-bottom-left-radius: 0;
    background-color: #dadcea
}

.reason-testimonials__bubble::after {
    content: "";
    position: absolute;
    bottom: 1%;
    left: 0;
    width: 40px;
    height: 30px;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    background-image: url(../images/icons/corner.png);
    background-repeat: no-repeat
}

.reason-testimonials__stars {
    text-align: center;
    margin-bottom: 30px
}

.reason-testimonials__txt {
    margin: auto;
    text-align: center;
    color: var(--dark);
    font-weight: 500
}

.reason-testimonials__author {
    color: #dadcea;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 1.25rem
}

.hero-about {
    padding-top: 105px;
    padding-bottom: 60px;
    background-color: var(--bg-light);
    color: var(--light)
}

.hero-about__title {
    font-weight: 900;
    margin-bottom: 30px
}

.hero-about__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px
}

.team-about {
    background-color: var(--black);
    color: var(--light);
    padding-top: 90px;
    padding-bottom: 90px
}

.team-about__title {
    margin-bottom: 30px
}

.team-about__item:not(:last-of-type) {
    margin-bottom: 30px
}

.team-about__img {
    max-width: 300px;
    margin: 0 auto 30px
}

.team-about__name {
    margin-bottom: 30px;
    font-weight: 900
}

.team-about__position {
    margin-bottom: 30px;
    font-size: 1.125rem;
    font-weight: 900;
    text-transform: uppercase
}

.team-about p {
    margin: 0 auto;
    max-width: 500px;
    text-align: center;
    font-size: 1.125rem;
    opacity: .5;
    line-height: 1.2
}

.partners-about {
    padding-top: 60px;
    padding-bottom: 30px;
    background-color: var(--bg-light);
    color: var(--light)
}

.partners-about__title {
    margin-bottom: 60px
}

.partners-about__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 45px
}

.partners-about__item img {
    max-width: 270px
}

.we-do {
    padding-top: 105px;
    padding-bottom: 90px;
    background-color: var(--dark);
    color: var(--light)
}

.we-do__top {
    padding-top: 30px !important;
}

.we-do__title {
    margin-bottom: 60px
}

.we-do__item {
    margin-bottom: 45px;
    padding: 45px 0;
    border-bottom: 1px solid rgba(218, 220, 234, .5)
}

.we-do__item:first-of-type {
    border-top: 1px solid rgba(218, 220, 234, .5)
}

.we-do__item:last-of-type {
    margin-bottom: 0
}

.we-do__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.we-do__img svg {
    display: inline-block
}

.we-do__content {
    color: var(--bg-light)
}

.we-do__content-title {
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center
}

.we-do__content p {
    line-height: 1.4;
    color: var(--light);
    opacity: .5
}

.news {
    padding-top: 105px;
    padding-bottom: 90px;
    background-color: var(--dark);
    color: var(--light)
}

.news__title {
    margin-bottom: 60px;
    font-family: Montserrat, sans-serif;
}

.news__item {
    position: relative;
    padding: 16px 22px 28px;
    margin: 0 auto;
    border-radius: 25px;
    max-width: 1008px;
    background-color: var(--light);
    color: var(--black);
    cursor: pointer
}

.news__item:hover .news__item-image img {
    -webkit-transform: scale(1.2) rotate(5deg);
    transform: scale(1.2) rotate(5deg)
}

.news__item:hover .news__item-title {
    text-decoration: underline;
    color: var(--primary)
}

.news__item-image {
    margin-bottom: 31px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 200px;
    border-radius: 15px;
    overflow: hidden
}

.news__item-image img {
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s
}

.news__item-title {
    margin-top: 0;
    display: block;
    margin-bottom: 25px;
    font-family: "Playfair Display", serif;
    font-weight: 900;
    font-size: 1.4rem;
    -webkit-transition: color .25s;
    transition: color .25s
}

.news__item-text {
    margin-bottom: 10px
}

.news__item-bottom {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.news__item-date {
    font-size: 20px;
    line-height: 37px;
    color: #000000;
    font-weight: 400;
    margin-right: 10px
}

.news__item-title::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.news__item-button {
    font-size: 18px;
    font-weight: 500;
    display: block;
    background: #8c5cfb;
    border: 0;
    color: #fff;
    padding: 15px 55px;
    border-radius: 34px;
    cursor: pointer;
    -webkit-transition: .3s;
    transition: .3s;
    text-decoration: none
}

.news__item-button:hover {
    background: #1c1d32
}

.news p {
    line-height: 1.3;
    opacity: .5;
    margin: 0 0 1.5rem;
    color: var(--dark)
}

.news__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media (min-width: 576px) {
    .col-sm-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%
    }

    .col-sm-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%
    }

    .col-sm-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-sm-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%
    }

    .col-sm-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%
    }

    .col-sm-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-sm-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%
    }

    .col-sm-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%
    }

    .col-sm-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-sm-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%
    }

    .col-sm-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%
    }

    .col-sm-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    #footer__form .footer__input input[type="submit"] {
        max-width: 130px
    }

    #footer__form input[type="submit"] {
        padding: 10px;
    }

    #footer__form .footer__input {
        -webkit-box-shadow: 0 0 35px rgba(71, 79, 181, .05);
        box-shadow: 0 0 35px rgba(71, 79, 181, .05)
    }

    #footer__form .footer__input input[type="email"] {
        width: calc(100% - 140px);
    }

    #footer__form .footer__input input[type="email"] {
        -webkit-box-shadow: none;
        box-shadow: none;

        padding: 16px 20px;
        margin-bottom: 0
    }

    .post__data {
        font-size: 20px
    }

    .post__title {
        margin-bottom: 50px;
        font-size: 32px
    }

    .hero__bg {
        left: -70px
    }

    .reason-believe__grad {
        font-size: 4rem
    }

    .reason-believe__caption {
        max-width: 60%;
        margin: 0 auto
    }

    .news__item-image {
        height: 355px
    }

    .we-do__top {
        padding: 60px 0 !important;
    }
}

@media (min-width: 650px) {
    .popup2 .modal-content {
        padding: 45px
    }

    .popup2 .modal-content p {
        font-size: 22px
    }
}

@media (min-width: 768px) {
    .col-md-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%
    }

    .col-md-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%
    }

    .col-md-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-md-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%
    }

    .col-md-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%
    }

    .col-md-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-md-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%
    }

    .col-md-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%
    }

    .col-md-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-md-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%
    }

    .col-md-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%
    }

    .col-md-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .footer {
        padding: 80px 0 40px
    }

    .footer__container {
        padding: 0 20px
    }

    .footer__logo {
        margin-bottom: 53px
    }

    .footer__wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .footer__pages {
        width: 50%
    }

    .footer__item {
        margin-bottom: 20px
    }

    .footer__info {
        font-size: 18px;
        width: 50%;
        max-width: 440px
    }

    .footer__wrap-social {
        margin-bottom: 30px
    }

    .footer__info-contact {
        font-size: 18px
    }

    .footer__info-contact a {
        margin-bottom: 20px
    }

    #form-section .wpforms-container.custom-form .choices {
        width: 48%;
        max-width: 48%
    }

    #form-section .wpforms-container.custom-form .wpforms-field-row-block {
        width: 48%
    }

    #form-section .wpforms-container.custom-form .d-inline-form {
        width: 48%
    }

    .post__content {
        padding: 100px 80px
    }

    .post__title {
        font-size: 40px
    }

    .post__articles {
        font-size: 20px;
    }

    .post__articles-img {
        margin: 30px 0
    }

    .hero__bg {
        left: 0
    }

    .hero__text {
        text-shadow: none
    }

    .hero__partners .partner__row-1 {
        margin-bottom: 0
    }

    .team-about__item:not(:last-of-type) {
        margin-bottom: 0
    }

    .news__item-image {
        height: 260px
    }
}

@media (min-width: 992px) {
    .header__top {
        width: auto;
        display: inline-block
    }

    .nav {
        width: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        justify-self: center
    }

    .nav-menu__wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        opacity: 1;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        pointer-events: all;
        max-height: 100%;
        overflow: visible
    }

    .nav-menu__wrap > li {
        margin-left: 20px
    }

    .nav a {
        margin-bottom: 0
    }

    .nav .sub-menu {
        display: none;
        position: absolute;
        z-index: 2;
        top: 100%;
        right: 0;
        padding: 20px 10px 10px;
        min-width: 150px;
        -webkit-transition: .3s linear;
        transition: .3s linear;
        background: rgba(167, 148, 250, 0.75);
        border-radius: 15px;
    }

    .nav .menu-item-has-children {
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .nav .menu-item-has-children:after {
        content: "";
        display: inline-block;
        width: 12px;
        height: 7px;
        background: url("data:image/svg+xml,%3Csvg width='12' height='6' viewBox='0 0 12 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 6L0.803847 0.75L11.1962 0.750001L6 6Z' fill='white'/%3E%3C/svg%3E%0A");
        background-repeat: no-repeat;
        background-size: 100%;
        margin-left: 5px
    }

    .nav .menu-item .menu-item {
        padding-bottom: 10px
    }

    .nav .menu-item:hover .sub-menu {
        display: block
    }

    .nav__btn {
        display: none
    }

    .col-lg-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%
    }

    .col-lg-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%
    }

    .col-lg-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-lg-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%
    }

    .col-lg-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%
    }

    .col-lg-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-lg-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%
    }

    .col-lg-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%
    }

    .col-lg-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-lg-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%
    }

    .col-lg-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%
    }

    .col-lg-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .mt-0-lg {
        margin-top: 0
    }

    .form-section h2 {
        font-size: 3.125rem
    }

    .footer__wrapper-bottom {
        text-align: left;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .footer__copyright {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0
    }

    .footer__info-contact {
        text-align: right
    }

    .title-60 {
        font-size: 3rem
    }

    .title-50 {
        font-size: 3.125rem
    }

    .post__title {
        margin-bottom: 80px;
        font-size: 48px
    }

    .post__articles-img figure {
        padding-bottom: 50%
    }

    .accordion__title-text {
        font-size: 30px
    }

    .hero__bg {
        opacity: 1
    }

    .hero__content {
        text-align: left
    }

    .hero__text,
    .hero__title {
        text-align: left
    }

    .hero__partners {
        margin-bottom: 90px
    }

    .hero__partners .partner__title {
        font-size: .75rem
    }

    .hero__caption {
        text-align: center
    }

    .why-choose {
        padding-top: 60px;
        padding-bottom: 75px;
        text-align: center
    }

    .why-choose__title {
        margin-bottom: 60px
    }

    .why-choose__caption {
        margin-bottom: 60px
    }

    .why-choose p {
        font-weight: 600;
        line-height: 1;
        font-size: 1.25rem
    }

    .why-choose__comment {
        padding: 45px 90px
    }

    .reason-believe {
        padding: 60px 0 105px
    }

    .reason-believe__title {
        margin-bottom: 75px
    }

    .reason-believe__wrapper {
        margin-bottom: 105px
    }

    .reason-believe__item {
        margin-bottom: 0
    }

    .reason-believe__caption {
        font-size: 1.25rem
    }

    .reason-testimonials__item {
        margin-bottom: 30px
    }

    .hero-about {
        padding-top: 150px;
        padding-bottom: 90px
    }

    .hero-about__title {
        font-size: 3rem
    }

    .team-about {
        padding-top: 150px;
        padding-bottom: 150px
    }

    .team-about__title {
        margin-bottom: 60px
    }

    .team-about__name {
        font-size: 2rem
    }

    .partners-about {
        padding-top: 105px;
        padding-bottom: 135px
    }

    .partners-about__title {
        margin-bottom: 105px
    }

    .partners-about__item {
        margin-bottom: 60px
    }

    .we-do {
        padding-top: 150px;
        padding-bottom: 105px
    }

    .we-do__title {
        margin-bottom: 105px
    }

    .we-do__item {
        margin-bottom: 70px;
        padding: 70px 0
    }

    .we-do__item:last-of-type {
        margin-bottom: 0
    }

    .we-do__content-title {
        margin-bottom: 45px;
        font-size: 2.5rem;
        text-align: left
    }

    .we-do__content p {
        font-size: 1.25rem
    }

    .news {
        padding-top: 150px;
        padding-bottom: 105px
    }

    .news__title {
        margin-bottom: 105px
    }

    .news__item-image {
        height: 355px
    }

    .news__item-title {
        font-size: 1.875rem
    }

    .news p {
        font-size: 1.25rem
    }
}

@media (min-width: 1200px) {
    .col-xl-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%
    }

    .col-xl-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%
    }

    .col-xl-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-xl-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%
    }

    .col-xl-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%
    }

    .col-xl-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-xl-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%
    }

    .col-xl-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%
    }

    .col-xl-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-xl-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%
    }

    .col-xl-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%
    }

    .col-xl-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

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

    .reason-testimonials__author {
        font-size: 1.5rem
    }
}

@media (min-width: 1400px) {
    .title-60 {
        font-size: 3.75rem
    }

    .hero__text {
        font-size: 1.5rem
    }
}

@media (min-width: 1900px) {
    .hero__bg {
        min-height: 920px
    }

    .hero__text {
        margin-bottom: 60px
    }
}

@media (max-width: 992px) {
    .scroll-hidden {
        overflow: hidden
    }

    .header__content {
        padding: 10px 0
    }

    .header__logo {
        width: 150px
    }

    .nav-open {
        position: fixed;
        -webkit-animation: .2s openHeader forwards linear;
        animation: .2s openHeader forwards linear;
        background: #aea1f4
    }

    .nav-open .header__top {
        width: 100%;
        margin-bottom: 30px
    }

    .nav-open .header__bottom {
        bottom: 30px;
        opacity: 1;
        pointer-events: all;
        -webkit-transition: .4s;
        transition: .4s;
        -webkit-transition-delay: .4s;
        transition-delay: .4s
    }

    .nav-open .nav {
        width: 100%
    }

    .nav-open .nav-menu__wrap {
        height: auto;
        opacity: 1;
        pointer-events: all;
        width: 100%;
        z-index: 10;
        max-height: 100vh
    }

    .nav-open .nav .menu-item {
        -webkit-transform: none;
        transform: none
    }

    .nav-open .nav__btn__row {
        margin: 0 !important
    }

    .nav-open .nav__btn__row:nth-child(1) {
        -webkit-transform: translateY(100%) rotate(-45deg);
        transform: translateY(100%) rotate(-45deg)
    }

    .nav-open .nav__btn__row:nth-child(2) {
        opacity: 0;
        width: 0
    }

    .nav-open .nav__btn__row:nth-child(3) {
        -webkit-transform: translateY(-100%) rotate(45deg);
        transform: translateY(-100%) rotate(45deg)
    }
}

.mb-3 {
    margin-bottom: 3rem
}

.our-video-title {
    text-align: left;
    margin-bottom: 40px;
    margin-top: 0
}

.video-titles {
    color: #fff;
}

.video-titles svg {
    width: 31px;
    min-width: 31px;
    display: inline-block;
    margin-right: 19px;
    margin-top: 5px
}

.video-titles .click-title {
    padding: 20px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 23px;
    line-height: 140%;
    opacity: 0.3;
    cursor: pointer;
}

.video-titles .click-title.active {
    opacity: 1
}

.video-titles .click-title:hover {
    opacity: 1.0;
}

.video-titles .click-title .varrow {
    font-size: 25px;
    padding-top: 3px;
}

.video-titles .click-title .vtext {
    padding-left: 8px;
}

@media screen and (max-width: 800px) {
    .video-titles .click-title {
        font-size: 17px;
    }
}

.video-vetrina-wrapper {
    width: 100%;
    height: 100%;
    padding-right: 9vw;
    padding-left: 50px;
    padding-bottom: 200px;
}

.video-vetrina .preview_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.video-vetrina .preview_img .watch_video {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    transform: translate(-50%, -50%);
    color: #fff;
    transition: 0.3s linear;
    font-size: 16px;
    font-weight: 500
}

.video-vetrina .preview_img .watch_video:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-vetrina .preview_img .watch_video svg {
    display: block;
    margin-bottom: 16px
}

.video-vetrina .preview_img:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, #8C5CFB 0%, rgba(140, 92, 251, 0) 100%);
    left: 0;
}

.video-vetrina {
    width: 100%;
    height: 100%;
    display: none;
}

.video-vetrina.active {
    display: block
}

.video-vetrina > div {
    padding: 56.25% 0 0 0;
    position: relative;
}

@media (min-width: 420px) {
    .mail-chimp__wrap {
        margin: 0 30px;
    }

    input.mail-chimp__input, .mc4wp-form-fields > input {
        padding: 16px 30px;
        margin-bottom: 20px;
    }

    button.mail-chimp__input, .mc4wp-form-fields > .button {
        padding: 16px;
    }

    .mail-chimp__content {
        padding: 30px;
        padding-bottom: 45px;
    }
}

.mail-chimp {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 100;
    background: rgba(63, 63, 63, 0.6);
}

.mail-chimp__wrap {
    margin: 0 20px;
    overflow: hidden;
    background: #000000;
    border-radius: 42px;
}

.mail-chimp__wrapper {
    z-index: 101;
    color: #fff;
    align-items: center;
    max-width: 430px;
    margin: auto;
    position: fixed;
    left: 0;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
    font-size: 15px;
}

.mail-chimp__wrapper.succesfully {
    display: none;
}

.mail-chimp__wrapper.open {
    display: block;
}

.mc4wp-form-fields {
    margin-top: 30px;
}

.mc4wp-form-fields > input {
    background: #FFFFFF;
    box-shadow: 0px 0px 35px rgba(71, 79, 181, 0.05);
    border-radius: 58px;
    color: #1C1D32;
    border: 0;
    padding: 10px 30px;
    margin-bottom: 15px;
    font-size: 15px;
}

.mc4wp-form-fields > .button, button.mail-chimp__input {
    background: #8C5CFB;
    border: 1px solid #8C5CFB;
    border-radius: 34px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    color: #fff;
    transition: .3s;
    font-size: 14px;
    font-weight: 500;
}

.mc4wp-form-fields > .button:hover, button.mail-chimp__input:hover {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
}

.mc4wp-form-fields > input, .mail-chimp__input {
    font-family: 'Montserrat';
    display: block;
    width: 100%;
}

.mail-chimp__img {
    font-size: 0;
}

.mail-chimp__img_desktop {
    display: none;
}

.mail-chimp__content {
    padding: 20px;
    padding-bottom: 45px;
}

.mail-chimp__title {
    font-size: 30px;
    margin: 0;
    margin-bottom: 15px;
    text-align: left;
}

.mail-chimp__icon {
    margin-top: -45px;
    text-align: center;
    margin-bottom: 10px;
}

@media (min-width: 420px) {
    .mail-chimp__icon {
        margin-top: -55px;
        margin-bottom: 25px;
    }
    .mail-chimp__title {
        font-size: 40px;
    }
    .mail-chimp__icon > svg {
        width: 52px;
    }
}

@media (min-width: 768px) {
    .mail-chimp__icon {
        margin-top: 0;
    }

    .mail-chimp__title {
        margin-bottom: 25px;
    }

    .mail-chimp__content {
        padding: 45px;
        max-width: 400px;
    }

    .mail-chimp__img_mobile {
        display: none;
    }

    .mail-chimp__img_desktop {
        display: block;
    }

    .mail-chimp__img {
        max-width: 350px;
    }

    .mail-chimp__wrap {
        border-radius: 54px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mail-chimp__wrapper {
        max-width: 750px;
    }
}

.mail-chimp__icon > svg {
    width: 45px;
}

.pagination {
    border-top: 1px solid #DADCEA80;
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
    padding-top: 35px;
    font-size: 20px;
}

.pagination a {
    transition: .3s;
    padding: 0 7px;
}

.pagination a:hover {
    color: #8c5cfb;
}

.pagination .current {
    color: #ffffff80;
}

.forResources {
    display: none;
}

.resources {
    background: #1C1D32;
    color: #fff;
}

.resources__container {
    max-width: 1210px;
}

.resources__container .title-60 {
    font-size: 40px;
}

.resources__content {
    font-size: 12px;
    display: contents;
}

.resources__entered {
    max-width: 800px;
    margin: 0 auto 15px;
    text-align: center;
    font-size: 12px;
}

.resources__excerpt {
    max-height: 43px;
    overflow: hidden;
}

.resources__video {
    position: relative;
    margin: 0 auto;
    max-width: 200px;
    margin-bottom: 15px;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    order: 1;
}

.resources__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 35px 0;
    border-top: 1px solid #DADCEA80;
}

.resources__button {
    cursor: pointer;
    background: #8C5CFB;
    border: 1px solid #8C5CFB;
    border-radius: 34px;
    padding: 6px;
    line-height: 1;
    font-size: 14px;
    min-width: 130px;
    display: inline-block;
    text-align: center;
    transition: .4s;
    color: #fff;
}
.resources__button_desktop{
    order: 2;
}

.resources__button:hover {
    background: transparent;
    color: #8C5CFB;
    border: 1px solid #8C5CFB;
}

.resources__item-title {
    margin-top: 0;
    font-size: 22px;
    font-family: Montserrat, serif;
    margin-bottom: 13px;
}

.resources__sub-title {
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 700;
}

.resources__categor {
    display: block;
    font-size: 18px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.tab {
    font-family: Montserrat, serif;
    font-weight: 700;
    font-size: 18px;
    list-style: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    margin: 0;
    padding-bottom: 25px;
    border-bottom: 1px solid #dadcea80;
}

.tab li {
    margin-bottom: 7px;
}

.tab a {
    display: block;
    outline: none;
    cursor: pointer;
    padding: 8px 16px;
    transition: 0.3s;
    border-radius: 5px;
    border: 1px solid #8C5CFB;
    color: rgba(167, 148, 250, 0.5);
    width: 100%;
    text-align: center;
}

.tab a:hover {
    color: #8C5CFB;
}

.tab a.active {
    position: relative;
    background: #8C5CFB;
    color: #fff;
}

.tabcontent {
    display: none;
    border-top: none;
}

.tabcontent__title {
    font-size: 60px;
    margin: 40px 0;
}

@media (min-width: 420px) {
    .pagination {
        font-size: 25px;
    }
    .resources__excerpt{
        max-height: 55px;
    }

    .resources__entered {
        margin-bottom: 20px;
        padding: 0 20px;
        font-size: 16px;
    }

    .resources__content {
        font-size: 14px;
    }

    .resources__button {
        padding: 10px;
    }

    .resources__video {
        max-width: 300px;
    }
}

@media (min-width: 575px) {
    .resources__video {
        max-width: 420px;
    }
}

@media (min-width: 768px) {
    .resources__entered {
        font-size: 18px;
        margin-bottom: 35px;
    }
    .resources__excerpt{
        max-height: 43px;
    }
    .resources__button {
        padding: 12px;
    }

    .resources__content {
        font-size: 16px;
    }

    .resources__item {
        padding: 45px 0;
    }

    .resources__item-title {
        font-size: 32px;
        margin-bottom: 23px;
    }

    .resources__sub-title {
        margin-bottom: 25px;
        font-size: 18px;
    }

    .tab {
        flex-direction: row;
        font-size: 24px;
    }

    .tab a {
        border: none;
        color: #fff;
        width: auto;
    }

    .tab a.active {
        background: transparent;
        padding-bottom: 20px;
    }

    .tab a.active:before {
        content: "";
        position: absolute;
        width: 100%;
        left: 0;
        right: 0;
        height: 10px;
        background: #8C5CFB;
        bottom: 0;
        border-radius: 15px;
    }
}

@media (min-width: 992px) {
    .post__bottom .resources__item-title {
        font-size: 23px;
    }

    .resources__content {
        font-size: 18px;
        width: calc(100% - 420px);
        display: block;
    }

    .resources__container .title-60 {
        font-size: 60px;
    }

    .tab {
        font-size: 28px;
    }

    .resources__item {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }

    .resources__item-title {
        text-align: left;
        font-size: 37px;
    }

    .resources__video {
        margin: 0;
        margin-right: 40px;
    }
}

.modal-info{
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;

    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    background: rgba(63, 63, 63, 0.6);
}
.modal-info__wrap {
    padding: 30px 20px;
    margin: 0 15px;
    overflow: hidden;
    background: #1C1D32;
    border-radius: 42px;
}

.modal-info__wrap .forResources {
    display: block;
    margin-bottom: 25px;
}
.modal-pdf__wrapper {
    pointer-events: none;
    position: relative;
    display: flex;
    z-index: 101;
    color: #fff;
    align-items: center;
    max-width: 700px;
    margin: auto;
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
    font-size: 15px;
}
.modal-pdf__wrapper .modal-info__wrap{
    pointer-events: auto;
    position: relative;
    padding: 20px;
    margin: 0;
    overflow: auto;
    border-radius: 0;
}
.modal-pdf__wrapper .modal-info__close{
    right: 15px;
    top: 40px;
}
.modal-pdf__wrapper .wp-block-file{
    max-height: 300px;
    overflow: hidden;
}
.modal-pdf__wrapper .button-pdf{
    margin-top: 15px;
    cursor: pointer;
    background: #8C5CFB;
    border: 1px solid #8C5CFB;
    border-radius: 34px;
    padding: 6px;
    line-height: 1;
    font-size: 14px;
    font-width: 600;
    min-width: 130px;
    display: inline-block;
    text-align: center;
    transition: .4s;
    color: #fff;
}
.modal-pdf__wrapper .button-pdf:hover{
    color: #8c5cfb;
    background: transparent;
}
.modal-pdf__wrapper .resources__item-title{
    text-align: center;
    font-size: 26px;
    margin-top: 20px;
}
@media (min-width: 420px) {
    .modal-pdf__wrapper .modal-info__wrap{
        border-radius: 24px;
        padding: 30px;
        margin: 20px;
    }
    .modal-pdf__wrapper .modal-info__close{
        right: 30px;
        top: 45px;
    }
}
.modal-info__wrapper {
    display: none;
    z-index: 101;
    color: #fff;
    align-items: center;
    max-width: 500px;
    margin: auto;
    position: fixed;
    left: 0;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
    font-size: 15px;
}

.modal-info__wrapper.succesfully {
    display: none;
}
.modal-info__wrapper.error{
    display: none;
}
.modal-info__wrapper.error .modal-info__content{
    max-width: none;
}

.modal-info__wrapper.succesfully p{
    font-size: 16px;
    color: #fff;
    width: 100%;
    max-width: none;
    font-family: "Montserrat";
    font-weight: 700;
    opacity: 1;
}

.modal-info__wrapper.open {
    display: block;
}

.modal-info__img {
    max-width: 190px;
    margin: 0 auto 30px;
}

.mc4wp-form-fields {
    margin-top: 30px;
}

.mc4wp-form-fields > input {
    background: #FFFFFF;
    box-shadow: 0px 0px 35px rgba(71, 79, 181, 0.05);
    border-radius: 58px;
    color: #1C1D32;
    border: 0;
    padding: 10px 30px;
    margin-bottom: 15px;
    font-size: 15px;
}

.modal-info__wrapper .mc4wp-form-fields > .button, button.modal-info__input {
    background: #8C5CFB;
    border: 1px solid #8C5CFB;
    border-radius: 34px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    color: #fff;
    transition: .3s;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    margin: 0 auto;
}

.mc4wp-form-fields > .button:hover, button.modal-info__input:hover {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
}

.mc4wp-form-fields > input, .modal-info__input {
    font-family: 'Montserrat';
    display: block;
    width: 100%;
}

.modal-info__content {
    text-align: center;
}
.modal-info__content .mc4wp-form-fields{
    margin-top: 20px;
}
.modal-info__content p {
    margin: 0 auto;
    max-width: 380px;
    font-size: 10px;
    opacity: 0.8;
}

.modal-info__title {
    font-size: 22px;
    margin: 0;
    margin-bottom: 15px;
}
.modal-info__title_small {
    font-size: 15px;
    margin: 0;
    margin-bottom: 15px;
    font-family: 'Montserrat';
}

.modal-info__icon {
    margin-top: -45px;
    text-align: center;
    margin-bottom: 10px;
}

.modal-info__icon > svg {
    width: 45px;
}

.block {
    display: block !important;
}
.flex{
    display: flex !important;
}
.hidden{
    overflow: hidden;
}
.modal-info__button-pdf{
    margin: 0 auto;
    text-align: center;
}
.modal-info__text {
    font-size: 25px;
}

.modal-info__close {
    position: absolute;
    right: 29px;
    top: 13px;
    width: 32px;
    height: 32px;
    opacity: 0.5;
    cursor: pointer;
    font-size: 0;
    background: transparent;
    border: none;
}


.modal-info__close:hover {
    opacity: 1;
}

.modal-info__close:before, .modal-info__close:after {
    position: absolute;
    left: 15px;
    top: 0;
    content: ' ';
    height: 26px;
    width: 1px;
    background-color: #fff;
}

.modal-info__close:before {
    transform: rotate(45deg);
}

.modal-info__close:after {
    transform: rotate(-45deg);
}
/*  embed */
.wp-block-embed__wrapper iframe{
    width: 100% !important;
    max-width: 800px !important;
}

@media (min-width: 420px) {
    .wp-block-embed__wrapper iframe{
        margin-bottom: 30px;
    }
    .modal-info__close{
        right: 55px;
        top: 55px;
    }
    .modal-pdf__wrapper .button-pdf{
        padding: 15px;
    }
    .modal-info__close:before, .modal-info__close:after{
        height: 33px;
    }
    .modal-info__content .mc4wp-form-fields{
        margin-top: 30px;
    }
    .modal-info__wrapper .mc4wp-form-fields > .button, button.modal-info__input{
        width: auto;
        min-width: 300px;
    }
    .modal-info__wrap{
        padding: 50px;
        margin: 0 20px;
    }
    .modal-info__icon {
        margin-top: -55px;
        margin-bottom: 25px;
    }

    .modal-info__icon > svg {
        width: 52px;
    }

    input.modal-info__input, .mc4wp-form-fields > input {
        padding: 16px 30px;
        margin-bottom: 20px;
    }

    button.modal-info__input, .mc4wp-form-fields > .button {
        padding: 16px;
        margin: 0;
    }

    .modal-info__content , .modal-info__wrapper.error .mc4wp-form-fields {
        max-width: 500px;
        margin: 0 auto;
    }
    .modal-info__title {
        font-size: 30px;
    }
    .modal-info__title_small {
        font-size: 18px;
        margin-bottom: 24px;
    }
}

@media (min-width: 768px) {
    .wp-block-embed__wrapper iframe{
        margin: 30px 0;
    }
    .modal-pdf__wrapper .modal-info__wrap{
        min-width: 500px;
    }
    .modal-info__wrapper.succesfully p{
        font-size: 23px;
    }
    .modal-info__close:before, .modal-info__close:after {
        background-color: #fff;
    }
    .modal-info__img{
        margin: 0 auto 45px;
    }
    .modal-info__icon {
        margin-top: 0;
        margin-bottom: 45px;
    }

    .modal-info__title {
        margin-bottom: 35px;
        font-size: 40px;
    }
    .modal-info__title_small {
        font-size: 25px;
    }

    .modal-info__wrap {
        margin: 0 30px;
        border-radius: 54px;
        padding-bottom: 60px;
    }

    .modal-info__wrapper {
        max-width: 750px;
    }
}
@media (min-width: 992px){
    .wp-block-embed__wrapper iframe{
        height: 450px;
    }
}
