/* Fonts */
@font-face {
    font-family: VelaSans;
    src: url(https://cdn-cabinet.ua.news/assets-front/articles/8/fonts/VelaSans-Regular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: VelaSans;
    src: url(https://cdn-cabinet.ua.news/assets-front/articles/8/fonts/VelaSans-Light.ttf) format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: VelaSans;
    src: url(https://cdn-cabinet.ua.news/assets-front/articles/8/fonts/VelaSans-Medium.ttf) format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: VelaSans;
    src: url(https://cdn-cabinet.ua.news/assets-front/articles/8/fonts/VelaSans-SemiBold.ttf) format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: VelaSans;
    src: url(https://cdn-cabinet.ua.news/assets-front/articles/8/fonts/VelaSans-Bold.ttf) format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: VelaSans;
    src: url(https://cdn-cabinet.ua.news/assets-front/articles/8/fonts/VelaSans-ExtraBold.ttf) format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: VelaSans;
    src: url(https://cdn-cabinet.ua.news/assets-front/articles/8/fonts/VelaSans-ExtraLight.ttf) format("truetype");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables */
:root {
    --grey-sep: #E7E7E7;
    --black: #000;
    --grey: #7C7C7C;
    --red: #D23223;
    --white: #FFF;
    --white-60: #ffffff99;
    --dark-bg: #2B2A29;
    --purple-light: #E9E9E9;
    --dark-text: #1A1A1A;
    --gold: #EAD295;
    --green: #12403C;
    --blue: #233657;
    --beige: #B28463;
    --very-dark-desaturated-blue-20: rgba(26, 26, 26, 0.20);
    --very-dark-desaturated-blue-40: rgba(26, 26, 26, 0.40);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'VelaSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--dark-text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.web{
    display: block;
}
.mob{
    display: none;
}
.bg-white{
    background-color: var(--white);
}
.bg-green{
    background-color: var(--green);
}
.two-column-content{
    display: flex;
}
.two-column-content div{
    width: 50%;
}
.two-column-content div:first-child{
    padding-right: 80px;
}

h2 {
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}

h3 {
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}
p.subhead {
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}
p{
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

/* Container */
.container {
    width: 100%;
    max-width: calc(1272px + 24px);
    margin: 0 auto;
    padding: 0 12px;
}

.container-wide {
    width: 100%;
    max-width: calc(1272px + 24px);
    margin: 0 auto;
    padding: 0 12px;
}

.logo {
    position: relative;
    width: 151px;
    height: 32px;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 510px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    background-color: #12403c;
    background-image: url(https://cdn-cabinet.ua.news/assets-front/articles/8/images/hero-waves.webp);
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 60px 84px 60px;
    margin-top: 128px;
}

header {
    top: 0;
}

.hero-content {
    gap: 30px;
    max-width: 1155px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    margin: 0 auto;
    height: 100%;
}
.hero-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-breadcrumbs .hero-content-type {
    font-weight: 500;
    font-size: clamp(14px, 2vw, 18px);
    line-height: 140%;
    text-transform: uppercase;
    color: var(--white);
}
.hero-breadcrumbs .hero-category {
    font-weight: 500;
    font-size: clamp(14px, 2vw, 18px);
    line-height: 140%;
    text-transform: uppercase;
    color: var(--white-60);
}
.hero-title {
    font-weight: 600;
    font-size: 64px;
    line-height: 120%;
    letter-spacing: 0;
    text-align: left;
    color: var(--gold);
    max-width: 885px;
}
.hero-author-info{
    display: flex;
    gap: 25px;
    margin-top: auto;
}
.hero-author-info img{
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-position: center;
}
.hero-author-info p{
    color: var(--white);
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    max-width: 468px;
    text-align: left;
}
.hero-meta {
    border-top: 1px solid #ffffff33;
    padding-top: 30px;
    width: 640px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}
.hero-meta .hero-meta-info {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: var(--white-60);
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-meta .hero-meta-date {

}
.hero-meta .hero-meta-author {
    color: var(--white);
}
.hero-meta .hero-meta-social {
    margin-top: auto;
    display: flex;
    gap: 24px;
}

/*Intro section*/
.intro-section{
    padding-top: 80px;
    padding-bottom: 80px;
}
.intro-section img{
    width: 230px;
    height: 40px;
    aspect-ratio: 23/4;
    margin: 0 auto 60px;
}
.intro-section .intro-content{
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width:  780px;
    margin: 0 auto;
    color: var(--dark-text);
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}
.intro-section .intro-content p:last-child{
    color: var(--green);
    font-weight: 600;
}

/* Logo Section */
.logo-section {
    padding: 80px 0;
}
.logo-section svg {
    width: 100%;
}

/* Procedures Section */
.procedures-section {
    padding: 80px 0;
    background-color: var(--gold);
    background-image: url(https://cdn-cabinet.ua.news/assets-front/articles/8/images/flower.webp);
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
}
.procedures-content{
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 60%;
    max-width: 720px;
}
.procedures-content h2{
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    margin-bottom: 8px;
}
.procedures-content p{
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}
.procedures-content p:last-child{
    font-size: 24px;
}

/* Procedures Description Section */
.procedures-description-section {
    padding: 80px 0;
    background-color: var(--white);
}
.procedures-description-section p{
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

/* ICOONE Section  */
.icoone-section {
    padding: 80px 0;
    background-color: var(--purple-light);
}
.icoone-section-content{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.icoone-section-content h2{
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    margin-bottom: 8px;
}
.icoone-section-content p{
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    max-width: 720px;
}

/* Wrapping Section */
.wrapping-section {
    padding: 80px 0 191px;
    background-color: var(--blue);
    background-image: url(https://cdn-cabinet.ua.news/assets-front/articles/8/images/flowers.webp);
    background-position: bottom right ;
    background-repeat: no-repeat;
    background-size: contain;
}
.wrapping-content{
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 60%;
    max-width: 720px;
}
.wrapping-content h2{
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    color: var(--white);
}
.wrapping-content p{
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    color: var(--white);
}

/*Procedures List Item Section*/
.procedures-list-item-section{
    padding: 80px 0;
    background-color: var(--white);
}
.procedures-list-item-content{
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.procedures-list-item-content h2{
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}
.procedures-list-item-content p{
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}
.procedures-list-item-content p.bordered{
    border-top: 1px solid rgba(0, 0, 0, 0.20);
    padding-top: 32px;
}
.procedures-list-item-content p:first-of-type{
    font-size: 32px;
}

/*How It Works Section*/
.how-it-works-section{
    padding: 80px 0;
    background-color: var(--gold);
}
.how-it-works-section h2{
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    margin-bottom: 32px;
}
.how-it-works-section .two-column-content div:first-child p{
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 24px;
}
.how-it-works-section .two-column-content div:first-child p:last-child{
    margin-bottom: 0;
}
.how-it-works-section .two-column-content div:last-child p{
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

 /* How many sessions Section */
.how-many-sessions-section{
    padding: 80px 0;
    background-color: var(--white);
}
.how-many-sessions-content{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.how-many-sessions-content h2{
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    margin-bottom: 8px;
}
.how-many-sessions-content p{
    max-width: 720px;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}
.how-many-sessions-content p:last-child{
    max-width: 935px;
    font-size: 32px;
    margin-top: 8px;
}

/*How long Section*/
.how-long-section{
    padding: 80px 0;
    background-color: var(--purple-light);
}
.how-long-content{
    max-width: 720px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.how-long-content h2{
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}
.how-long-content p{
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

/*Conclusion Section*/
.conclusion-section{
    padding: 80px 0;
    background-color: var(--dark-bg);
}
.conclusion-section h2{
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    color: var(--white);
    margin-bottom: 32px;
}
.conclusion-section h2 span{
    color: var(--gold);
}
.conclusion-section p{
    color: rgba(255, 255, 255, 0.40);
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    max-width: 761px;
}

@media (max-width: 991px){
    .web{
        display: none;
    }
    .mob{
        display: block;
    }
    body section{
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .two-column-content{
        flex-direction: column;
        gap: 24px;
    }
    .two-column-content div{
        width: 100%;
    }
    .two-column-content div:first-child{
        padding-right: 0;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 16px;
    }
    p.subhead {
        font-size: 16px;
    }
    p{
        font-size: 16px;
    }

    /* Container */
    .container {
        padding: 0 16px;
    }
    .container-narrow{
        margin: 0 auto;
        padding: 0 16px;
    }

    .container-wide {
        padding: 0 16px;
    }

    /* Hero Section */
    .hero-section{
        padding: 48px 0 32px;
        min-height: 362px;
        margin-top: 0;
        background-image: none
    }
    .hero-content {
        gap: 24px;
    }
    .hero-title {
        font-size: 20px;
        max-width: 100%;
    }
    .hero-author-info{
        gap: 16px;
        align-items: center;
    }
    .hero-author-info img{
        width: 48px;
        height: 48px;
    }
    .hero-author-info p{
        font-size: 14px;
    }
    .hero-meta {
        width: 100%;
        padding-top: 24px;
        flex-direction: column;
        align-items: start;
        gap: 24px;
        margin-top: 0;
    }
    .hero-meta .hero-meta-info {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap:8px;
    }
    .hero-meta .hero-meta-info svg{
        display: none;
    }
    .hero-meta-social-item{
        height: 24px;
    }

    /*Intro section*/
    .intro-section{
        padding-top: 48px;
        padding-bottom: 48px;
    }
    .intro-section img{
        width: 138px;
        height: 24px;
        margin: 0 0 40px;
    }
    .intro-section .intro-content{
        gap: 24px;
        font-size: 16px;
    }

    /* Logo Section */
    .logo-section {
        padding: 48px 0;
    }
    .logo-section.bg-white {
        padding-top: 0;
    }

    /* Procedures Section */
    .procedures-section {
        padding: 48px 0;
        background-image: none;
    }
    .procedures-content{
        width: 100%;
        max-width: 100%;
    }
    .procedures-content h2{
        font-size: 20px;
    }
    .procedures-content p{
        font-size: 16px;
    }
    .procedures-content p:last-child{
        font-size: 16px;
    }

    /* Procedures Description Section */
    .procedures-description-section {
        padding: 48px 0;
    }
    .procedures-description-section p{
        font-size: 16px;
    }

    /* ICOONE Section  */
    .icoone-section {
        padding: 48px 0;
    }
    .icoone-section-content h2{
        font-size: 20px;
        font-weight: 600;
    }
    .icoone-section-content p{
        font-size: 16px;
        max-width: 100%;
    }

    /* Wrapping Section */
    .wrapping-section {
        padding: 48px 0;
        background-image: none;
        margin-bottom: 48px;
    }
    .wrapping-content{
        width: 100%;
        max-width: 100%;
    }
    .wrapping-content h2{
        font-size: 20px;
    }
    .wrapping-content p{
        font-size: 16px;
    }

    /*Procedures List Item Section*/
    .procedures-list-item-section{
        padding:  0 0 48px;
    }
    .procedures-list-item-content{
        gap: 24px;
    }
    .procedures-list-item-content h2{
        font-size: 20px;
    }
    .procedures-list-item-content p{
        font-size: 16px;
    }
    .procedures-list-item-content p.bordered{
        padding-top: 24px;
    }
    .procedures-list-item-content p:first-of-type{
        font-size: 16px;
    }

    /*How It Works Section*/
    .how-it-works-section{
        padding: 48px 0;
    }
    .how-it-works-section h2{
        font-size: 20px;
        margin-bottom: 24px;
    }
    .how-it-works-section .two-column-content div:first-child p{
        font-size: 16px;
    }
    .how-it-works-section .two-column-content div:last-child p{
        font-size: 16px;
    }

    /* How many sessions Section */
    .how-many-sessions-section{
        padding: 48px 0;
    }
    .how-many-sessions-content{
        display: flex;
        flex-direction: column;
    }
    .how-many-sessions-content h2{
        font-size: 20px;
        margin-bottom: 0;
    }
    .how-many-sessions-content p{
        max-width: 100%;
        font-size: 16px;
    }
    .how-many-sessions-content p:last-child{
        max-width: 100%;
        font-size: 16px;
        margin-top: 0;
    }

    /*How long Section*/
    .how-long-section{
        padding: 48px 0;
    }
    .how-long-content{
        max-width: 100%;
        gap: 24px;
    }
    .how-long-content h2{
        font-size: 20px;
    }
    .how-long-content p{
        font-size: 16px;
    }

    /*Conclusion Section*/
    .conclusion-section{
        padding: 48px 0;
    }
    .conclusion-section h2{
        font-size: 20px;
        margin-bottom: 24px;
    }
    .conclusion-section p{
        font-size: 16px;
        max-width: 100%;
    }
}
