*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #0f1729;
    background-color: #fff;
    position: relative;
    top: 73.6px;
}


/*HOME PAGE*/
header{
    backdrop-filter: blur(16px);
    border-bottom: 1px solid hsl(220 13% 91%);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
    --tw-backdrop-blur: blur(16px);
    background: hsl(0deg 0% 100% / 50%);
}
.header_wrap{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}
.brand{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.brand .logo{
    width: 32px;
    height: 32px;
    background: #ff5e1f;
    border-radius: 8px;
}
.brand_text{
    font-size: 1.25rem;
    font-weight: 700;
}
@media (hover: hover){
    .menu-item-has-children:hover{
        background: hsl(84 81% 44%);
    }
    .menu-item-has-children:hover a{
        color: #fff;
    }
    .menu-item-has-children:hover .menu-item-has-children_arrow{
        transform: rotate(180deg);
        color: #FFFFFF;
    }
    .menu-item-has-children:hover .sub-menu {
        display: flex;
        flex-direction: column;
        gap: .75rem;
        width: 100%;
    }
    .sub-menu li:hover{
        background: hsl(84 81% 44%);
    }
    .sub-menu li:hover a div.nav_course_title{
        color: #fff;
    }
}
.menu-item-has-children {
    position: relative;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0.5rem;
}

.menu-item-has-children::after {
	content: " ";
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='dropdown_arrow' data-lov-id='src/components/ui/navigation-menu.tsx:57:4' data-lov-name='ChevronDown' data-component-path='src/components/ui/navigation-menu.tsx' data-component-line='57' data-component-file='navigation-menu.tsx' data-component-name='ChevronDown' data-component-content='%257B%2522className%2522%253A%2522relative%2520top-%255B1px%255D%2520ml-1%2520h-3%2520w-3%2520transition%2520duration-200%2520group-data-%255Bstate%253Dopen%255D%253Arotate-180%2522%257D' aria-hidden='true'%3E%3Cpath d='m6 9 6 6 6-6'%3E%3C/path%3E%3C/svg%3E");
	width: 24px;
	height: 24px;
	background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
}

.menu-item-has-children svg{
    animation-duration: .2s;
    transition-duration: .2s;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    width: .75rem;
    height: .75rem;
    margin-left: .25rem;
    top: 1px;
    position: relative;
    display: block;
    vertical-align: middle;
}
.sub-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 400px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    padding: 1.5rem;
    z-index: 1;
    border: 1px solid hsl(220 13% 91%);
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    border-radius: 8px;
    top: 56px;
    left: -10px;
    --radix-navigation-menu-viewport-width: 400px;
    --radix-navigation-menu-viewport-height: 402px;
    --tw-enter-scale: .9;
    --tw-space-x-reverse: 0;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: top center;
}
.sub-menu::before {
  content: '';
  position: absolute;
  top: -10px; /* Negative value to extend upwards and cover the gap */
  left: 0;
  width: 100%;
  height: 10px; /* Height of the gap to bridge */
  background: transparent;
}
.menu-item-has-children_arrow{
    width: 12px;
    height: 12px;
    transition: transform 0.2s ease;
}
.sub-menu li{
    width: 100%;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
    border-radius: 6px;
    padding: .75rem;
    outline: 2px solid transparent;
    outline-offset: 2px;
}
.sub-menu li a{
    text-decoration-line: none;
    line-height: 1;
    width: 100%;
}
.sub-menu li a div.nav_course_title{
    color: #0f1729;
}

.sub-menu li a div.nav_course_title{
    line-height: 1;
    font-weight: 500;
    font-size: .875rem;
} 
.sub-menu li a div.nav_course_desription{
    margin-top: 4px;
    color: hsl(222 20% 40%);
    line-height: 1.375;
    font-size: .875rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
nav ul{
    list-style-type: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
}
nav ul li a{
    text-decoration: none;
    color: #0f1729;
    font-weight: 400;
    transition: color 0.3s ease;
}
nav ul li a:hover{
    color: #ff5e1f;
}
.toggle_menu{
    display: none;
    width: 28px;
    height: 28px;
    border: none;
    left: 0;
    margin-right: 10px;
    top: 0;
    z-index: 100;
    padding: 0;
    cursor: pointer;
    border-radius: 50%;
    position: relative;
    animation-delay: 1s;
    background-color: transparent;
}
.toggle_menu:focus {
    outline: 0
}
.toggle_menu.active {
    border: 2px solid #0f1729;
    flex-shrink: 0;
}
.toggle_menu.active .sandwich .sw-topper {
    top: 11px;
    left: 2px;
    width: 18px;
    height: 2px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
    clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%)
}
.toggle_menu.active .sandwich .sw-footer {
    top: 7px;
    left: 4px;
    height: 2px;
    width: 18px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
    clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%)
}
.toggle_menu.active .sandwich .sw-bottom {
    opacity: 0;
    top: 0;
    height: 2px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
    clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%)
}
.toggle_menu span{
    display: block;
}
.sandwich {
    width: 28px;
    height: 24px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 200
}
.sw-topper{
    position: relative;
    top: 0;
    width: 28px;
    height: 4px;
    background: #0f1729;
    border: none;
    -webkit-transition: -webkit-transform .5s, top .2s;
    -webkit-transition: top .2s, -webkit-transform .5s;
    transition: top .2s, -webkit-transform .5s;
    -o-transition: transform .5s, top .2s;
    transition: transform .5s, top .2s;
    transition: transform .5s, top .2s, -webkit-transform .5s;
    display: block;
    border-radius: 3px;
}
.sw-bottom{
    position: relative;
    width: 28px;
    height: 4px;
    left: 0;
    top: 6px;
    background: #0f1729;
    border: none;
    -webkit-transition: -webkit-transform .5s, top .2s;
    -webkit-transition: top .2s, -webkit-transform .5s;
    transition: top .2s, -webkit-transform .5s;
    -o-transition: transform .5s, top .2s;
    transition: transform .5s, top .2s;
    transition: transform .5s, top .2s, -webkit-transform .5s;
    -webkit-transition-delay: .2s, 0;
    -o-transition-delay: .2s, 0;
    transition-delay: .2s, 0;
    border-radius: 3px;
}
.sw-footer{
    position: relative;
    width: 28px;
    height: 4px;
    left: 0;
    top: 12px;
    background: #0f1729;
    border: none;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-transition-delay: .1s;
    -o-transition-delay: .1s;
    transition-delay: .1s;
    border-radius: 3px;
}

#hero{
    background: hsl(220deg 17.65% 96.67%);
}
.hero_cont{
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 1rem;
}
h1{
    font-size: 3.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1;
    text-align: center;
}
h1 span{
    color: #ff5e1f;
}
.hero_cont p{
    font-size: 1.25rem;
    line-height: 1.75rem;
    max-width: 42rem;
    margin-bottom: 2rem;
    text-align: center;
    color: hsl(222 20% 40%);
}
.hero_cards{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
}
.hero_card_cont{
    width: 100%;
    max-width: 432px;
    backdrop-filter: blur(4px);
    padding: 1.5rem;
    background: hsl(0deg 0% 100% / 80%);
    border: 1px solid hsl(220deg 13% 91% / 50%);
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero_card_cont h3{
    color: hsl(222 47% 11%);
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-bottom: 1rem;
}
.card_btn{
    transition: .3s;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-property: all;
    animation-duration: .3s;
    --tw-ring-offset-color: hsl(0 0% 100%);
    --tw-shadow: 0 0 40px hsl(17 100% 56% / .3);
    box-shadow: 0 0 40px rgba(255, 107, 26, .3);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.75rem;
    border: none;
    background: hsl(17 100% 56%);
    text-decoration: none;
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
    height: 3.5rem;
    cursor: pointer;
}
.card_btn:hover, .card_btn:active{
    background: hsl(17deg 100% 56% / 90%);
}
.card_btn.green_btn{
    background: hsl(84 81% 44%);
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.card_btn.green_btn:hover, .card_btn.green_btn:active{
    background: hsl(84deg 81% 44% / 90%);
}
.hero_card_cont p{
    color: hsl(222 20% 40%);
    font-size: .875rem;
    line-height: 1.25rem;
    margin: 0;
}

#about_us{
    padding-top: 4rem;
    padding-bottom: 2rem;
}
.about_cont{
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    border-bottom: 0.1px solid hsl(220 13% 91%);
    border-radius: 8px;
}
h2{
    font-size: 2.25rem;
    line-height: 2.5rem;
    color: hsl(222 47% 11%);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}
.about_cont p{
    color: hsl(222 20% 40%);
    line-height: 1.625;
    font-size: 1.125rem;
    padding: 2rem;
}

#courses{
    padding-top: 2rem;
    padding-bottom: 4rem;
}
.courses_cont{
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 1rem;
    padding-right: 1rem;
}
.courses_cont p{
    color: hsl(222 20% 40%);
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-bottom: 3rem;
    text-align: center;
}
.courses_wrap{
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}
.our_course{
    width: 100%;
    max-width: 1368px;
    padding: 1rem;
    border: 1px solid hsl(220 13% 91%);
    border-radius: .5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
}
.our_course:hover{
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);
    box-shadow: 0 20px 40px -10px rgba(26, 26, 26, 0.15);
}
.our_course .course_title img{
    width: 56px;
    height: 56px;
    padding: .75rem;
    margin-right: 1rem;
}
.course_title{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.course_title h3{
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.75rem;
}
.course_title p{
    margin: 0;
    color: hsl(222 20% 40%);
    font-size: .875rem;
    line-height: 1.25rem;
    text-align: left;
}
.course_info{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.course_info p{
    color: hsl(222 20% 40%);
    font-size: .875rem;
    line-height: 1.25rem;
    margin-bottom: .5rem;
}
.course_info a, .lesson_wrap a{
    text-decoration: none;
    animation-duration: .3s;
    transition-duration: .3s;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    --tw-ring-offset-color: hsl(0 0% 100%);
    font-weight: 500;
    font-size: .875rem;
    line-height: 1.25rem;
    padding: .75rem;
    background: hsl(0 0% 100%);
    border: 1px solid hsl(220 13% 91%);
    border-radius: calc(.5rem - 2px);
    white-space: nowrap;
    cursor: pointer;
    -webkit-appearance: button;
    color: hsl(222 47% 11%);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}
.course_info a:hover, .course_info a:active{
    color: hsl(0 0% 100%);
    background: hsl(84 81% 44%);
}
.lesson_wrap a svg{
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    display: block;
    vertical-align: middle;
}

#audience{
    padding-top: 4rem;
    padding-bottom: 4rem;
    background: hsl(84deg 81% 44% / 20%);
}
.audience_cont{
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.audience_cont p{
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: hsl(222 20% 40%);
    margin-bottom: 3rem;
}
.audience_cards_wrap{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.audience_card{
    width: 100%;
    max-width: 324px;
    animation-duration: .3s;
    transition-duration: .3s;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    backdrop-filter: blur(4px);
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    background: hsl(0deg 0% 100% / 50%);
    border: 1px solid hsl(220 13% 91%);
    border-radius: 0.5rem;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / .05);
    padding: 1.5rem;
    height: 260px;
}
.audience_card:hover{
    --tw-shadow-color: hsl(0 0% 100%);
    --tw-shadow: 0 10px 30px -10px hsl(222 47% 11% / .1);
    --tw-shadow-colored: 0 10px 30px -10px hsl(222 47% 11% / .1);
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 10px 30px -10px hsl(222 47% 11% / .1);
    backdrop-filter: blur(4px);
}
.audience_card h3{
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
    color: hsl(222 47% 11%);
    letter-spacing: -.025em;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.75rem;
    text-align: center;
    padding-bottom: 1rem;
}
.audience_card:hover h3{
    color: #ff5e1f;
}
.audience_card p{
    color: hsl(222 20% 40%);
    font-size: .875rem;
    line-height: 1.25rem;
    text-align: center;
    margin: 0;
}
.audience_card div{
    padding: .75rem;
    background: hsl(17 100% 56%);
    border-radius: 100%;
    width: fit-content;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
}
.audience_card div svg, .audience_card div .svg{
    --tw-text-opacity: 1;
    color: rgb(255 255 255);
    width: 2rem;
    height: 2rem;
    display: block;
    vertical-align: middle;
}

.footer_wrap{
    padding: 2rem 1rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 1400px;
    width: 100%;
}
.footer_cont{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
}
.footer_cont .brand{
    margin-bottom: 1rem;
}
.contacts{
    max-width: 435px;
    width: 100%;
}
.contacts ul{
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.contacts p, .contacts li{
    color: hsl(222 20% 40%);
}
.contacts ul li a{
    text-decoration: none;
    color: hsl(222 20% 40%);
    transition: color 0.3s ease;
}
.contacts ul li a:hover{
    color: #ff5e1f;
}
.contacts h4{
    margin-bottom: 1rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 600;
}
.copyright{
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid hsl(220 13% 91%);
    margin-top: 2rem;
    color: hsl(222 20% 40%);
}

/*COURSE PAGE*/
#Google_Analytics_course{
    border-bottom: 1px solid hsl(220 13% 91%);
}
.Google_Analytics_course_wrap{
    padding: 3rem 1rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 896px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.Google_Analytics_course_wrap h1{
    color: hsl(222 47% 11%);
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 2.5rem;
    margin-bottom: 1rem;
}
.Google_Analytics_course_wrap p{
    color: hsl(222 20% 40%);
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-bottom: 3rem;
    text-align: center;
}
.Google_Analytics_course_wrap .course_description{
    text-align: center;
    margin-bottom: 0;
    line-height: 1.625;
    font-size: 1.125rem;
    max-width: 42rem;
    width: 100%;
}
.course_content{
    width: 100%;
    max-width: 896px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / .05);
    border: 1px solid hsl(220 13% 91%);
    border-radius: 0.5rem;
    padding: 1.5rem;
}
.course_content h3{
    letter-spacing: -.025em;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 1.5rem;
}
.course_video_wrap{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 1px solid hsl(220 13% 91%);
    border-radius: 0.5rem;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
    padding: 1rem;
    background: #FFF;
    cursor: pointer;
    text-decoration: none;
}
.course_video_wrap:hover{
    background: #f7fafc;
}
.play_icon{
    background: hsl(17deg 100% 56% / 10%);
    border-radius: 100%;
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
    flex-shrink: 0;
}
.play_icon svg{
    color: hsl(17 100% 56%);
    width: 1rem;
    height: 1rem;
    display: block;
    vertical-align: middle;
}
.course_video{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.course_video_title{
    color: hsl(222 47% 11%);
    font-weight: 500;
}
.course_video_time{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    color: hsl(222 20% 40%);
    font-size: .875rem;
    line-height: 1.25rem;
}
.course_video_time svg{
    width: .75rem;
    height: .75rem;
    display: block;
    vertical-align: middle;
}
.videos{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}


/*CHECKLISTS PAGE*/
#checklist{
    border-bottom: 1px solid hsl(220 13% 91%);
}
.checklist_container{
    padding: 3rem 0;
    max-width: 1152px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.digital_tools{
    padding: .75rem 1.5rem;
    background: hsl(0 0% 100%);
    border: 0.25rem solid hsl(17deg 100% 56% / 20%);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    color: hsl(17 100% 56%);
    font-weight: 600;
    font-size: .875rem;
    line-height: 1.25rem;
}
.checklist_container h1{
    color: hsl(17 100% 56%);
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 1.5rem;
}
.checklist_container p{
    color: hsl(222 20% 40%);
    font-size: 1.25rem;
    line-height: 1.75rem;
    text-align: center;
    max-width: 42rem;
    margin-bottom: 3rem;
}
.checklists_items_wrap{
    width: 100%;
    padding: 0 1rem;
}
.checklists_items{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.checklists_items .item{
    width: 100%;
    animation-duration: .3s;
    transition-duration: .3s;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    --tw-backdrop-blur: blur(4px);
    --tw-shadow: 0 0 20px hsl(84 81% 44% / .4);
    --tw-shadow-colored: 0 0 20px hsl(84 81% 44% / .4);
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 20px hsl(84 81% 44% / .4);
    border-radius: 0.5rem;
}
.checklists_items .item:hover{
    animation-duration: .3s;
    transition-duration: .3s;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    --tw-shadow: 0 0 40px hsl(17 100% 56% / .3);
    --tw-shadow-colored: 0 0 40px hsl(17 100% 56% / .3);
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 40px hsl(17 100% 56% / .3);
}
.checklists_items .item .checklist_title{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-radius: 0.5rem;
    padding: 1.5rem;
    background: hsl(17deg 100% 56% / 10%);
    border-bottom: 1px solid hsl(17deg 100% 56% / 20%);
    cursor: pointer;
    color: hsl(222 47% 11%);
    letter-spacing: -.025em;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 2rem;
    animation-duration: .3s;
    transition-duration: .3s;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
}
.checklists_items .item .checklist_title:hover{
    background: hsl(17deg 100% 56% / 20%);
}
.checklists_items .item .checklist_title.active .checklist_title_icon svg{
    transform: rotate(180deg);
    webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
}
.checklist_title_icon{
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
    padding: .5rem;
    background: hsl(17deg 100% 56% / 10%);
    border-radius: 100%;
}
.checklist_title_icon svg{
    color: hsl(17 100% 56%);
    width: 1.5rem;
    height: 1.5rem;
    display: block;
    vertical-align: middle;
}
.checklists_items .item .checklist_description{
    display: none;
    padding: 2rem;
}
.checklists_items .item .checklist_description img{
    width: 100%;
    height: auto;
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
}
.checklists_items .item .checklist_description .checklist_content{
    margin-top: 32px;
    width: 100%;
}
.checklists_items .item .checklist_description .checklist_content h3{
    color: hsl(222 47% 11%);
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 1rem;
}
.checklists_items .item .checklist_description .checklist_content ul{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    list-style: none;
}
.checklists_items .item .checklist_description .checklist_content ul li{
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
    padding: .75rem;
    background: hsl(17deg 100% 56% / 5%);
    border: 1px solid hsl(17deg 100% 56% / 10%);
    border-radius: 0.5rem;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    color: hsl(222 47% 11%);
    font-weight: 500;
}
.checklists_items .item .checklist_description .checklist_content ul li:hover{
    border: 1px solid hsl(17deg 100% 56% / 20%);
}
.checklists_items .item .checklist_description .checklist_content ul li svg{
    color: hsl(17 100% 56%);
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-top: .125rem;
    display: block;
    vertical-align: middle;
    margin-right: 12px;
}
.checklists_items .item .checklist_description .checklist_button{
    display: flex;
    justify-content: center;
    align-items: center;
    --tw-backdrop-blur: blur(4px);
    padding: 1.5rem;
    background: hsl(84deg 81% 44% / 10%);
    border: 1px solid hsl(84deg 81% 44% / 20%);
    border-radius: .75rem;
    max-width: 28rem;
    width: 100%;
    margin: 32px auto 0 auto;
}
.checklists_items .item .checklist_description .checklist_button a{
    text-decoration: none;
    animation-duration: .2s;
    transition-duration: .2s;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    --tw-ring-offset-color: hsl(0 0% 100%);
    --tw-shadow: 0 0 40px hsl(17 100% 56% / .3);
    --tw-shadow-colored: 0 0 40px hsl(17 100% 56% / .3);
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 40px hsl(17 100% 56% / .3);
    color: hsl(0 0% 100%);
    font-weight: 600;
    font-size: .875rem;
    line-height: 1.25rem;
    padding: .5rem 1rem;
    background: hsl(17 100% 56%);
    border-radius: 6px;
    white-space: nowrap;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    width: 100%;
    height: 2.5rem;
}
.checklists_items .item .checklist_description .checklist_button a svg{
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}
.checklists_items .item .checklist_description .checklist_button a:hover{
    --tw-shadow: 0 0 20px hsl(84 81% 44% / .4);
    --tw-shadow-colored: 0 0 20px hsl(84 81% 44% / .4);
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 20px hsl(84 81% 44% / .4);
    background: hsl(17deg 100% 56% / 90%);
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
    transform: scaleX(1.05) scaleY(1.05);
}


/*ABOUT PAGE*/
#about{
    background: hsl(84deg 81% 44% / 10%);
    padding: 4rem 1rem 2rem;
}
.about_wrap{
    width: 100%;
    max-width: 896px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}
.about_wrap p{
    color: hsl(222 20% 40%);
    line-height: 1.625;
    font-size: 1.25rem;
    margin-bottom: 3rem;
    text-align: center;
}
.about_wrap h2{
    margin-bottom: 1.5rem;
}
.about_wrap h3{
    font-size: 1.875rem;
    line-height: 2.25rem;
    color: hsl(222 47% 11%);
    font-weight: 700;
    margin-bottom: 2rem;
}
.about_cards_wrap{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}
.about_card{
    --tw-backdrop-blur: blur(4px);
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / .05);
    background: hsl(0deg 0% 100% / 50%);
    border-radius: .5rem;
    padding: 1.5rem;
    width: 100%;
    max-width: 432px;
}
.about_card h4{
    color: hsl(222 47% 11%);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-bottom: 1rem;
}
.about_card p{
    font-size: 16px;
    text-align: left;
    margin: 0;
}

#ready{
    border-bottom: 1px solid hsl(220 13% 91%);
}
.ready_wrap{
    padding: 4rem 1rem;
    width: 100%;
}
.ready_cont{
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / .05);
    background: hsl(17 100% 56%);
    border-radius: .5rem;
    border: 1px solid hsl(220 13% 91%);
    padding: 2rem;
    color: hsl(0 0% 100%);
    width: 100%;
    max-width: 894px;
    margin: 0 auto;
}
.ready_cont h2{
    color: hsl(0 0% 100%);
}
.ready_cont p{
    text-align: center;
    opacity: .9;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    line-height: 1.75rem;
}
.ready_cont div{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
    margin: 0 auto;
}
.ready_cont div a{
    animation-duration: .3s;
    transition-duration: .3s;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    --tw-ring-offset-color: hsl(0 0% 100%);
    color: hsl(17 100% 56%);
    text-decoration: none;
    font-weight: 500;
    font-size: .875rem;
    line-height: 1.25rem;
    padding: 0 2rem;
    background: rgb(255 255 255);
    --tw-bg-opacity: 1;
    border-radius: 6px;
    white-space: nowrap;
    height: 2.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.ready_cont div a:hover, .ready_cont div a:active{
    background: rgb(243 244 246);
}
.ready_cont div a{
    /*color: rgb(255 255 255);*/
}
.ready_cont div a:hover{
    color: hsl(17deg 68% 43.68%);
    background: rgb(255 255 255);
}


/*CONTACTS PAGE*/
#contacts{
    padding: 4rem 1rem;
    border-bottom: 1px solid hsl(220 13% 91%);
}
.contacts_wrap{
    margin: 0 auto;
    width: 100%;
    max-width: 72rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#faq {
    padding: 2rem 1rem 4rem;
	background: hsl(84deg 81% 44% / 10%);
}
.faq_wrap{
    margin: 0 auto;
    width: 100%;
    max-width: 894px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contacts_wrap h1{
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 1rem;
}
.contacts_wrap p{
    color: hsl(222 20% 40%);
    font-size: 1.25rem;
    line-height: 1.75rem;
    max-width: 42rem;
    width: 100%;
    margin: 0 auto 3rem auto;
    text-align: center;
}
.contacts_cont{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    width: 100%;
}
.contacts_info_wrap{
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.contacts_info_container{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.contacts_info_container h2{
    text-align: left;
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 0;
}
.contacts_info_content{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-top: 24px;
}
.contacts_icon{
    padding: .75rem;
    background: hsl(17 100% 56%);
    border-radius: 100%;
    margin-right: 16px;
}
.contacts_icon svg, .contacts_icon .svg{
    width: 1.5rem;
    height: 1.5rem;
    display: block;
    vertical-align: middle;
    --tw-text-opacity: 1;
    color: rgb(255 255 255);
}
.contacts_info h3{
    color: hsl(222 47% 11%);
    font-weight: 600;
    font-size: inherit;
}
.contacts_info p{
    margin: 0;
    font-size: 16px;
    text-align: left;
    line-height: inherit;
}
.faq{
	width: 100%;
    --tw-space-y-reverse: 0;
    --tw-backdrop-blur: blur(4px);
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / .05);
    background: hsl(0deg 0% 100% / 50%);
    border: 1px solid hsl(220 13% 91%);
    border-radius: .5rem;
    padding: 1.5rem;
}
.faq h3{
    /*margin-bottom: 1.5rem;*/
    letter-spacing: -.025em;
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.75rem;
	
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.faq h4{
	font-size: 1.05rem;
    color: hsl(222 47% 11%);
    font-weight: 600;
}
.faq p{
    color: hsl(222 20% 40%);
    font-size: 1rem;
    line-height: 1.25rem;
    text-align: left;
    margin: 0;
}
.q_and_a{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.form_wrap{
    --tw-backdrop-blur: blur(4px);
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / .05);
    background: hsl(0deg 0% 100% / 50%);
    border: 1px solid hsl(220 13% 91%);
    border-radius: .5rem;
    padding: 1.5rem;
    height: fit-content;
}
.form_wrap h3{
    color: hsl(222 47% 11%);
    letter-spacing: -.025em;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 2rem;
}
.form_wrap p{
    margin: 6px 0 0 0;
    font-size: .875rem;
    line-height: 1.25rem;
    text-align: left;
}
form div{
    margin-top: 1.5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
}
form label{
    line-height: 1;
    font-weight: 500;
    font-size: .875rem;
}
form input{
    --tw-space-y-reverse: 0;
    margin: 8px 1px 0 1px;
    font-size: .875rem;
    line-height: 1.25rem;
    --tw-ring-offset-color: hsl(0 0% 100%);
    padding: .5rem .75rem;
    background: hsl(0 0% 100%);
    border: 1px solid hsl(220 13% 91%);
    border-radius: 6px;
    height: 2.5rem;
	width: 100%;
}
.wpcf7-select{
    --tw-space-y-reverse: 0;
    margin-top: 8px;
    --tw-ring-offset-color: hsl(0 0% 100%);
    font-size: .875rem;
    line-height: 1.25rem;
    padding: .5rem .75rem;
    background: hsl(0 0% 100%);
    border: 1px solid hsl(220 13% 91%);
    border-radius: 6px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 2.5rem;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background: url("../images/img.svg");
    /*background-position: center right;*/
    background-position-x: 98%;
    background-position-y: 50%;
    background-repeat: no-repeat;
	width: 100%;
}

.wpcf7-select span{
    pointer-events: none;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.wpcf7-select svg{
    opacity: .5;
    width: 1rem;
    height: 1rem;
    display: block;
    vertical-align: middle;
}
.custom-menu-item-has-children div{
    margin: 0;
}
.custom-menu-item-has-children div:hover{
    background-color: hsl(84 81% 44%);
    color: #FFF;
}
textarea{
    --tw-space-y-reverse: 0;
    --tw-ring-offset-color: hsl(0 0% 100%);
    font-size: .875rem;
    line-height: 1.25rem;
    padding: .5rem .75rem;
    background: hsl(0 0% 100%);
    border: 1px solid hsl(220 13% 91%);
    border-radius: 6px;
    width: 100%;
    min-height: 80px;
    resize: vertical;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 9px 1px 1px 1px;
}
input:focus{
    border: 2px solid #ff5e1f;
    outline: none !important;
    margin: 8px 0 0 0;
}
textarea:focus{
    border: 2px solid #ff5e1f;
    outline: none !important;
    margin: 8px 0 0 0;
}
textarea::placeholder{
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: .875rem;
    line-height: 1.25rem;
}
form .card_btn{
    margin-top: 24px;
    margin-bottom: 0;
    font-size: .875rem;
    line-height: 1.25rem;
    padding: 0 2rem;
    height: 2.75rem;
}


/*LESSON PAGE*/
#lesson{
    padding: 0 1rem;
    border-bottom: 1px solid hsl(220 13% 91%);
}
.lesson_wrap{
    padding: 3rem 0;
    width: 100%;
    max-width: 896px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.lesson_wrap h1{
    color: hsl(222 47% 11%);
    font-size: 1.875rem;
    line-height: 2.25rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}
.lesson_container{
    width: 100%;
    padding: 1.5rem;
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / .05);
    border: 1px solid hsl(220 13% 91%);
    border-radius: .5rem;
    margin-bottom: 2rem;
}
.lesson_container h3{
    letter-spacing: -.025em;
    line-height: 1;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
.lesson_container iframe{
    aspect-ratio: 16 / 9;
    border-radius: .5rem;
    width: 100%;
    height: 100%;
    display: block;
    vertical-align: middle;
}
.lesson_content{
    width: 100%;
    padding: 2rem;
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / .05);
    border: 1px solid hsl(220 13% 91%);
    border-radius: .5rem;
}
.lesson_content p.lesson_description, .lesson_content blockquote{
    font-size: 1.125rem;
    margin-bottom: 2rem;
}
.lesson_content h3{
    color: hsl(222 47% 11%);
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-bottom: 1rem;
}
.lesson_content p{
    line-height: 1.625;
    margin-bottom: 1rem;
    font-size: 16px;
    color: hsl(222 20% 40%);
}
.lesson_content h5{
    color: hsl(222 47% 11%);
    font-weight: 500;
    font-size: .875rem;
    line-height: 1.25rem;
    margin-bottom: .5rem;
}
.lesson_content ul{
    color: hsl(222 20% 40%);
    font-size: .875rem;
    line-height: 1.25rem;
    list-style-type: disc;
    list-style-position: inside;
}
.lesson_content ul li{
    margin-top: 4px;
}
.lesson_content ul li:first-child{
    margin-top: 0;
}
#lesson .lesson_wrap a{
    padding: .5rem 1rem;
}