body{
    margin: 0;
    padding: 0;
}



.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding-top: 16px;
    padding-bottom: 16px;
    gap: 8px;
    max-width: 1208px;
}


.header_svg:hover{
    cursor: pointer;
}


.header_svg:hover g path {
    fill: #DA3369;
}

.header__menu menu {
    display: flex;
    flex-direction: row;
    gap: 0 10px;
}

.menu__list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.menu__item button {
    text-wrap: nowrap;
    border: 1.2px solid rgba(232, 232, 232, 1);
    background: transparent;
    border-radius: 20px;
    padding: 8px 18px 8px 18px;
}

.menu__item button {
    color: #1B1F21;
    font-family: Nunito, sans-serif;
    font-size: 15px;
    font-weight: 500;
}


.diseno:hover {
    border: none;
    cursor: pointer;
    background: rgba(236, 149, 177, 1);
}
.programacion:hover {
    border: none;
    cursor: pointer;
    background: rgba(164, 204, 254, 1);

}
.gaming:hover {
    border: none;
    cursor: pointer;
    background: rgba(190, 219, 57, 1);

}
.marketing:hover {
    border: none;
    cursor: pointer;
    background: rgba(255, 173, 32, 1);

}
.software:hover {
    border: none;
    cursor: pointer;
    background: rgba(172, 214, 222, 1);

}
.carrera:hover {
    border: none;
    cursor: pointer;
    background: rgba(174, 223, 214, 1);

}


.header__search {
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    gap: 26px;
}

.header__search > div:first-child {
    display: flex;
    align-items: center;
}

.header__search > div:last-child {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__search__logo {
    position: relative;
}

.header__search__logo a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: rgba(190, 219, 57, 1);
    transition: width 0.3s ease;
}

.header__search__logo a:hover::after {
    width: 100%;
}




/*  ПЕРВЫЙ БЛОК */

.first {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 116px 224px;
    margin: 0 auto;
    gap:8px;
    background: url('/background/first_bg.png') no-repeat;
    background-size: cover;
}


.first-info {
    display: flex;
    gap: 40px;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.first-info-image-wrapper {
    position: relative;
    width: 480px;
    height: 560px;
}

.first-info-girl {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    mask-image: url("../mask/notebookgirlmask.png");
    mask-repeat: no-repeat;
}

.first-info-circle {
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 180px;
}

.first-info-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}


.first-info-content__top {
    display: flex;
    gap: 16px;
    flex-direction: row;
}

.first-info-content__top-text a {
    text-decoration: none;
    color: black;
    padding: 8px 18px 8px 18px;
    font-family: Nunito, sans-serif;
    background: #BEDB39;
    border-radius: 20px;
    font-weight: 500;
}

.first-info-content__top-text-other {
    display: flex;
    flex-direction: row;
    text-align: center;
    gap:10px;
}

.first-info-content__top-text-other a {
    text-decoration: none;
    color: #94AC23;
    font-family: Nunito, sans-serif;
    font-size: 15px;
    font-weight: 400;
}

.first-info-content__heading  {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 688px;
}

.first-info-content__heading h3 {
    font-family: "Archivo Black", sans-serif;
    color: #1B1F21;
    margin: 0;
    padding:0;
    font-size: 36px;
    font-weight: 400;
    line-height: 43px;
}

.first-info-content__main {
    max-width: 480px;
}

.first-info-content__main span {
    font-family: Nunito, sans-serif;
    text-align: left;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #757778;
}


.first-info-content__main-other {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    text-align: center;
    width: 248px;
    height: 21px;
    gap: 24px;
}

.first-info-content__main-other div {
    display: flex;
    align-items: center;
    gap: 5px;
}

.first-info-content__main-other img {
    width: 17px;
    height: 21px;
}

.first-info-content__main-other span {
    font-size: 15px;
    line-height: 21px;
    font-family: Nunito, sans-serif;
    font-weight: 400;
    color: #AEAEAE;

}

.first-info-content__bottom{
    display: flex;
    align-items: end;
    width: 232px;
    height: 59px;
    padding-top: 40px;
}

.first-info-content__bottom button {
    font-family: Nunito, sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 222px;
    height: 49px;
    border-radius: 30px;
    background: #BEDB39;
    border: 2px solid #1B1F21;
    box-shadow: 0 0 0 5px #BEDB39;
}

.first-info-content__bottom button:hover {
    color: white;
    background: black;
    box-shadow: none;
}
.first-info-content__bottom button:focus {
    box-shadow: none;
}


.first__strip-marquee {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-top: 160px;
    width: 100vmax;
    height: 120px;
    background: #ACD6DE;
    transform: rotate(-5deg);
}

@media (max-width: 767px) {
    .first__strip-marquee {
        margin-top: 0;
    }
}

.first__strip-marquee-text {
    display: flex;
    flex-direction: row;
    gap:48px;
    white-space: nowrap;
    animation: scroll 15s linear infinite;
}

.first__strip-marquee-text span {
    font-size: 58px;
    font-weight: 400;
    font-family: "Archivo Black", sans-serif;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}



/* ВТОРАЯ СЕКЦИЯ С КОНТЕНТОМ */

.main {
    display: flex;
    position: relative;
    flex-direction: column;
    gap: 136px;
    justify-content: center;
    align-items: center;
}

.main-background {
    position: absolute;
    top: -470px;
    left: 150px;
    width: 100%;
    z-index: -1;
}

.second {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 40px;
}

/* ВТОРАЯ СЕКЦИЯ С КОНТЕНТОМ */
/* ПЕРВЫЙ БЛОК */


.second-info1 {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 584px;
}


.second-info1-image{
    position: relative;
    display: flex;
    width: 584px;
    height: 328px;
}

.second-info1-image__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    mask-image: url("../mask/muslimgirlmask.png");
    mask-repeat: no-repeat;
}

.second-info1-image__circle {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 180px;
    height: 180px;
}
.second-info1-image__circle img{
    width: 180px;
    height: 180px;
}


.second-info1-content {
    display : flex;
    flex-direction: column;
    gap: 14px;
}


.second-info1-content-top{
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.second-info1-content-top-text {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.second-info1-content-top-text__left button{
    font-family: Nunito, sans-serif;
    border: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 18px 8px 18px;
    background: rgba(144, 238, 203, 1);
    border-radius: 20px;
}

.second-info1-content-top-text__right {
    display: flex;
    gap:10px;
}

.second-info1-content-top-text__right button{
    border: none;
    background: transparent;
    font-family: Nunito, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(34, 201, 139, 1);
}


.second-info1-content-top-text__right button:hover{
    cursor: pointer;
}


.second-info1-content-top-middle-text h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 30px;
    font-weight: 400;
    margin: 0;
    padding: 0;
}


.second-info1-content-bottom {
    display: flex;
    max-width: 480px;
    height: 126px;
    flex-direction: column;
    gap: 18px;
}

.second-info1-content-bottom__top span {
    font-family: Nunito, sans-serif;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: rgba(117, 119, 120, 1);
}

.second-info1-content-bottom__bottom {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.second-info1-content-bottom__bottom div{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.second-info1-content-bottom__bottom span{
    font-family: Nunito, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(174, 174, 174, 1);
}


/* ВТОРАЯ СЕКЦИЯ С КОНТЕНТОМ */
/* ВТОРОЙ БЛОК */


.second-info2 {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 584px;
}

.second-info2:hover .second-info2-image__circle {
    transform: rotate(360deg);
    transition: transform 7s ease-in-out;
}


.second-info2-image{
    position: relative;
    display: flex;
    width: 584px;
    height: 328px;
}

.second-info2-image img{
    transform: scale(-1, 1);
}

.second-info2-image__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    mask-image: url("../mask/camerahandmask.png");
    mask-repeat: no-repeat;
}

.second-info2-image__circle {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 180px;
    height: 180px;
}


.second-info2-content {
    display : flex;
    flex-direction: column;
    gap: 14px;
}


.second-info2-content-top{
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.second-info2-content-top-text {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.second-info2-content-top-text__left button{
    font-family: Nunito, sans-serif;
    border: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 18px 8px 18px;
    background: rgba(236, 149, 177, 1);
    border-radius: 20px;
}

.second-info2-content-top-text__right {
    display: flex;
    gap:10px;
}

.second-info2-content-top-text__right button{
    border: none;
    background: transparent;
    font-family: Nunito, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(236, 149, 177, 1);

}
.second-info2-content-top-text__right button:hover{
    cursor: pointer;
}


.second-info2-content-top-middle-text h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 30px;
    line-height: 36px;
    font-weight: 400;
    margin: 0;
    padding: 0;
}


.second-info2-content-bottom {
    display: flex;
    max-width: 480px;
    flex-direction: column;
    gap: 18px;
}

.second-info2-content-bottom__top span {
    font-family: Nunito, sans-serif;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: rgba(117, 119, 120, 1);
}

.second-info2-content-bottom__bottom {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.second-info2-content-bottom__bottom div{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.second-info2-content-bottom__bottom span{
    font-family: Nunito, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(174, 174, 174, 1);
}


/* ТРЕТЬЯ СЕКЦИЯ С КОНТЕНТОМ */

.third {
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    gap: 30px;
}


.third-image{
    position: relative;
    display: flex;
    width: 1208px;
    height: 520px;
}


.third-image__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    mask-image: url("../mask/writegirlmask.png");
    mask-repeat: no-repeat;
}

.third-image__circle {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 180px;
    height: 180px;
}


.third-text {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    gap: 19px;
}


.third-text-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}


.third-text-left-top {
    display: flex;
    gap: 12px;
    flex-direction: column;
    align-items: end;
    justify-content: space-between;
}

.third-text-left-top__top button {
    border: none;
    font-family: Nunito, sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 18px 8px 18px;
    background: rgba(236, 149, 177, 1);
    border-radius: 20px;
}
.third-text-left-top__top button:hover{
    cursor: pointer;
}


.third-text-left-top__bottom {
    gap: 10px;
    display: flex;
    flex-direction: row;
}

.third-text-left-top__bottom button {
    font-family: Nunito, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(218, 51, 105, 1);
    border: none;
    background: transparent;
}
.third-text-left-top__bottom button:hover {
    cursor: pointer;
}


.third-text-left-bottom {
    display: flex;
    flex-direction: column;
    justify-content: right;
    align-items: end;
    gap: 8px;
}

.third-text-left-bottom div{
    display: flex;
    align-items: center;
    gap: 8px;

}

.third-text-left-bottom span{
    font-family: Nunito, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(174, 174, 174, 1);
}


.third-text-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.third-text-right__top h3 {
    font-family: "Archivo Black", sans-serif;
    font-size: 36px;
    max-width: 792px;
    font-weight: 400;
    color: #1B1F21;
    margin: 0;
    padding: 0;
}


.third-text-right__bottom{
    max-width: 688px;
}


.third-text-right__bottom span {
    font-family: Nunito, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(117, 119, 120, 1);
    text-align: start;

}






.fourth {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 40px;
}

/* ЧЕТВЕРТВАЯ СЕКЦИЯ С КОНТЕНТОМ */
/* ПЕРВЫЙ БЛОК */

.fourth-info1 {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 584px;
}


.fourth-info1-image{
    position: relative;
    display: flex;
    width: 584px;
    height: 328px;
}

.fourth-info1-image__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    mask-image: url("../mask/chinaboymask.png");
    mask-repeat: no-repeat;
}

.fourth-info1-image__circle {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 180px;
    height: 180px;
}


.fourth-info1-content {
    display : flex;
    flex-direction: column;
    gap: 14px;
}


.fourth-info1-content-top{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fourth-info1-content-top-text {
    display: flex;
    flex-direction: row;
    gap: 18px;
}

.fourth-info1-content-top-text__left button{
    border: none;
    font-family: Nunito, sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 18px 8px 18px;
    background: rgba(255, 173, 32, 1);
    border-radius: 20px;
}

.fourth-info1-content-top-text__left button:hover {
    cursor: pointer;
}

.fourth-info1-content-top-text__right{
    display: flex;
    gap: 10px;
}


.fourth-info1-content-top-text__right button{
    border: none;
    background: transparent;
    font-family: Nunito, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 173, 32, 1);
}
.fourth-info1-content-top-text__right button:hover {
    cursor: pointer;
}

.fourth-info1-content-top-middle-text h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 30px;
    font-weight: 400;
    color: #1B1F21;
    margin: 0;
    padding: 0;
}


.fourth-info1-content-bottom {
    display: flex;
    width: 480px;
    height: 126px;
    flex-direction: column;
    gap: 18px;
}

.fourth-info1-content-bottom__top span {
    font-family: Nunito, sans-serif;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: rgba(117, 119, 120, 1);

}

.fourth-info1-content-bottom__bottom {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.fourth-info1-content-bottom__bottom div{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.fourth-info1-content-bottom__bottom span{
    font-family: Nunito, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(174, 174, 174, 1);
}


/* ЧЕТВЕРТАЯ СЕКЦИЯ С КОНТЕНТОМ */
/* ВТОРОЙ БЛОК */

.fourth-info2 {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 584px;
}


.fourth-info2-image{
    position: relative;
    display: flex;
    width: 584px;
    height: 328px;
}

.fourth-info2-image__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    mask-image: url("../mask/macbookboymask.png");
    mask-repeat: no-repeat;
}

.fourth-info2-image__circle {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 180px;
    height: 180px;
}


.fourth-info2-content {
    display : flex;
    flex-direction: column;
    gap: 14px;
}


.fourth-info2-content-top{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fourth-info2-content-top-text {
    display: flex;
    flex-direction: row;
    gap: 18px;
}

.fourth-info2-content-top-text__left button{
    border: none;
    font-family: Nunito, sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 18px 8px 18px;
    background: rgba(172, 214, 222, 1);
    border-radius: 20px;
}

.fourth-info2-content-top-text__left button:hover {
    cursor: pointer;
}

.fourth-info2-content-top-text__right{
    display: flex;
    gap: 10px;
}


.fourth-info2-content-top-text__right button{
    border: none;
    background: transparent;
    font-family: Nunito, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(87, 172, 188, 1);

}
.fourth-info2-content-top-text__right button:hover {
    cursor: pointer;
}



.fourth-info2-content-top-middle-text h3 {
    font-family: 'Archivo Black', sans-serif;
    color: #1B1F21;
    font-size: 30px;
    font-weight: 400;
    margin: 0;
    padding: 0;
}


.fourth-info2-content-bottom {
    display: flex;
    width: 480px;
    height: 126px;
    flex-direction: column;
    gap: 18px;
}

.fourth-info2-content-bottom__top span {
    font-family: Nunito, sans-serif;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: rgba(117, 119, 120, 1);

}

.fourth-info2-content-bottom__bottom {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.fourth-info2-content-bottom__bottom div{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.fourth-info2-content-bottom__bottom span{
    font-family: Nunito, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(174, 174, 174, 1);
}


/* БЕГУЩАЯ СТРОКА Webinars */


#webinars-strip{
    position: relative ;
    bottom: -50px;
    right: 0;
    z-index: 10;
}

.webinars-strip-marquee {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    height: 120px;
    background: rgba(255, 173, 32, 1);
    transform: rotate(-2deg);
}

.webinars-strip-marquee-text {
    display: flex;
    gap: 48px;
    white-space: nowrap;
    color: black;
    animation: scroll 15s linear infinite;
}

.webinars-strip-marquee-text span {
    font-size: 58px;
    font-weight: 400;
    font-family: "Archivo Black", sans-serif;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}


/* БЛОК С ВЕБИНАРАМИ */

.webinars {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: #1B1F21;
    padding-top: 200px;
    padding-bottom: 224px;
    overflow: hidden;
}

.webinars-background {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}


#webinars-top-strip {
    display: flex;
    z-index: 10;
}

.webinars-top-strip__strip {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    height: 120px;
    background: rgba(255, 173, 32, 1);
    transform: rotate(-5deg);
}

.webinars-top-strip__text {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: scroll 15s linear infinite;

}

.webinars-top-strip__text span {
    font-size: 58px;
    font-weight: 400;
    font-family: "Archivo Black", sans-serif;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}




.webinars-content {
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-content: center;
    gap: 80px;
}


.webinars-content-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 240px;
    width: 100%;
}


.webinars-content-top__left span{
    font-family: 'Archivo Black', sans-serif;
    font-size: 46px;
    color: white;
}

.webinars-content-top button {
    width: 280px;
    height: 64px;
    border: none;
    border-radius: 40px;
    background: rgba(152, 83, 244, 1);
    color: rgba(252, 250, 249, 1);
    font-family: Nunito, sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding-top: 15px;
    padding-bottom: 15px;
    gap: 8px;
}

.webinars-content-top button:hover {
    background: rgba(218, 51, 105, 1);
    border: none;
    cursor: pointer;
}

.webinars-content-top button:focus {
    background: rgba(152, 83, 244, 1);
    border: 2px solid white;
    cursor: pointer;
}



.webinars-content-bottom {
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: space-between;
}


/* ПЕРВАЯ КАРТОЧКА */

.webinars-content-bottom-first-card {
    display: grid;
    position: relative;
    grid-template-rows: 1fr 1fr 1fr;
    width: 376px;
    border-radius: 32px;
    padding: 32px;
    overflow: hidden;
    background: rgba(87, 172, 188, 1);
}

.cart-backgrounds{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    object-fit: contain;
    height: fit-content;
}

.webinars-content-bottom-first-card-top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}


.webinars-content-bottom-first-card-top-text {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: stretch;
}

.webinars-content-bottom-first-card-top-text__top{
    display: flex;
    align-items: center;
}

.webinars-content-bottom-first-card-top-text__bottom {
    display: flex;
    flex-direction: column;
    padding-top: 6px;
    gap: 4px;
}

.webinars-content-bottom-first-card-top-text__bottom div:first-child span {
    font-family: "Archivo Black", sans-serif;
    font-size: 26px;
    font-weight: 400;
    color: white;
}

.webinars-content-bottom-first-card-top-text__bottom div:last-child span {
    font-family: Nunito, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: white;
}


.webinars-content-bottom-first-card-top__text span {
    font-family: 'Archivo Black', sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 36px;
    color: white;
}


.webinars-content-bottom-first-card-bottom {
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap:12px;
}

.webinars-content-bottom-first-card-bottom span {
    font-family: Nunito, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(252, 250, 249, 1);
}



.webinars-content-bottom-first-card-bottom-top {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.webinars-content-bottom-first-card-bottom-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.webinars-content-bottom-first-card-bottom-bottom-left {
    display: flex;
    flex-direction: row;
    gap: 8px;
}


.webinars-content-bottom-first-card-bottom-bottom-right {
    display: flex;
    flex-direction: row;
    gap: 8px;
}



/* ВТОРАЯ КАРТОЧКА */

.webinars-content-bottom-second-card {
    display: grid;
    overflow: hidden;
    position: relative;
    grid-template-rows: 1fr 1fr 1fr;
    width: 376px;
    height: 432px;
    border-radius: 32px;
    padding: 32px;
    background: rgba(254, 109, 68, 1);
}

.cart-backgrounds2{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    object-fit: contain;
    height: fit-content;
}

.webinars-content-bottom-second-card-top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}


.webinars-content-bottom-second-card-top-text {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: stretch;
}

.webinars-content-bottom-second-card-top-text__top{
    display: flex;
    align-items: center;
}


.webinars-content-bottom-second-card-top-text__bottom {
    display: flex;
    flex-direction: column;
    padding-top: 6px;
    gap: 4px;
}

.webinars-content-bottom-second-card-top-text__bottom div:first-child span {
    font-family: "Archivo Black", sans-serif;
    font-size: 26px;
    font-weight: 400;
    color: white;
}

.webinars-content-bottom-second-card-top-text__bottom div:last-child span {
    font-family: Nunito, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: white;
}


.webinars-content-bottom-second-card-top__text span {
    font-family: 'Archivo Black', sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 36px;
    color: white;
}


.webinars-content-bottom-second-card-bottom {
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap:12px;
}

.webinars-content-bottom-second-card-bottom span {
    font-family: Nunito, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(252, 250, 249, 1);
}


.webinars-content-bottom-second-card-bottom-top {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.webinars-content-bottom-second-card-bottom-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
}

.webinars-content-bottom-second-card-bottom-bottom-left {
    display: flex;
    flex-direction: row;
    text-wrap: wrap;
    gap: 8px;
}


.webinars-content-bottom-second-card-bottom-bottom-right {
    display: flex;
    flex-direction: row;
    gap: 8px;
}


/* ТРЕТЬЯ КАРТОЧКА */


.webinars-content-bottom-third-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    width: 376px;
    height: 432px;
    border-radius: 32px;
    padding: 32px;
    background: rgba(239, 151, 0, 1);
}

.cart-backgrounds3{
    position: absolute;
    left: 0;
    top: 10px;
    width: 65%;
    object-fit: contain;
    height: fit-content;
}

.webinars-content-bottom-third-card-top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}


.webinars-content-bottom-third-card-top-text {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: start;
    justify-content: stretch;
}

.webinars-content-bottom-third-card-top-text__top{
    display: flex;
    align-items: center;
}


.webinars-content-bottom-third-card-top-text__bottom {
    display: flex;
    flex-direction: column;
    padding-top: 6px;
    gap: 4px;
}

.webinars-content-bottom-third-card-top-text__bottom div:first-child span {
    font-family: "Archivo Black", sans-serif;
    font-size: 26px;
    font-weight: 400;
    color: white;
}

.webinars-content-bottom-third-card-top-text__bottom div:last-child span {
    font-family: Nunito, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: white;
}


.webinars-content-bottom-third-card-top__text span {
    font-family: 'Archivo Black', sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 36px;
    color: white;
}


.webinars-content-bottom-third-card-bottom {
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap:12px;
}

.webinars-content-bottom-third-card-bottom span {
    font-family: Nunito, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(252, 250, 249, 1);
}


.webinars-content-bottom-third-card-bottom-top {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.webinars-content-bottom-third-card-bottom-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.webinars-content-bottom-third-card-bottom-bottom-left {
    display: flex;
    flex-direction: row;
    gap: 8px;
}


.webinars-content-bottom-third-card-bottom-bottom-right {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.webinars-content-bottom-button{
    display: none
}


#subscribe-strip{
    position: relative ;
    bottom: 70px;
    right: 0;
    z-index: 10;
}


.subscribe-strip-marquee {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100vmax;
    height: 120px;
    background: rgba(254, 109, 68, 1);
    transform: rotate(2deg);
}

.subscribe-strip-marquee-text {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    color: black;
    animation: scroll 15s linear infinite;
}

.subscribe-strip-marquee-text span {
    font-size: 58px;
    font-weight: 400;
    font-family: "Archivo Black", sans-serif;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}





/* СУБСКРАЙБ БЛОК */

.subscribe {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 867px;
    justify-content: center;
    align-items: center;
}


.subscribe-content {
    display: flex;
    flex-direction: row;
    position: relative;
    gap: 8px;
    justify-content: space-around;
    align-items: center;
    background: rgba(87, 172, 188, 1);
    mask-image: url('../mask/Banner-shape.png');
    mask-size: contain;
    mask-position: center;
    mask-repeat: no-repeat;
    padding: 64px 480px 64px 104px;
}


.subscribe-text {
    position: relative;
    z-index: 10;
    width: 624px;
    height: 390px;
    display: flex;
    flex-direction: column;
    gap: 88px;
}

.subscribe-banner {
    position: absolute;
    width: calc(95% + 480px);
    height: calc(95% + 64px);
    background-image: url('../mask/illustration.png');
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
}



.subscribe-text-top {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.subscribe-text-top__top h3 {
    font-family: "Archivo Black", sans-serif;
    margin: 0;
    padding: 0;
    font-size: 36px;
    font-weight: 400;
    color: white;
}

.subscribe-text-top__bottom span {
    font-family: Nunito, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(252, 250, 249, 1);
}


.subscribe-text-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
}


/* input проверка email */

.input-container {
    position: relative;
}


#email {
    position: relative;
    padding: 10px 24px 10px 24px;
    border-radius: 88px;
    z-index: 10;
    background-color: transparent;
    color:white;
    outline: none;
}

.email {
    opacity: 50%;
    border: 2px solid white;
    font-size: 18px;
    font-family: Nunito, sans-serif;
}

.email:hover {
    opacity: 100%;
}

.email:focus {
    opacity: 100%;
    border: 2px solid black;
}

.email-error {
    opacity: 100%;
    border: 2px solid #FFAD20;
    font-size: 18px;
    font-family: Nunito, sans-serif;
}

.email-success {
    opacity: 100%;
    border: 2px solid #BEDB39;
    font-size: 18px;
    font-family: Nunito, sans-serif;
}

#error-input {
    display: none;
    position: absolute;
    right: 10px;
    top: 60%;
    transform: translateY(-50%);
    font-size: 18px;
    pointer-events: none;
}

#success-input {
    display: none;
    position: absolute;
    right: 10px;
    top: 60%;
    transform: translateY(-50%);
    font-size: 18px;
    pointer-events: none;
}

/* успешная отправка email */

#subscribe-success{
    display: none;
    position: relative;
    margin-top: auto;
}

.fantastic-input {
    background: white;
    width: 576px;
    padding: 10px 24px 10px 24px;
    border-radius: 88px;
    font-family: Nunito, sans-serif;
    color: #57ACBC;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.subscribe-success-icon {
    position: absolute;
    top: -50px;
    right: 100px;
}



.subscribe-text-bottom__top input::placeholder {
    color: white;
}


.subscribe-submit-button {
    font-family: Nunito, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: white;
    width: 280px;
    border: none;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 40px;
    background: rgba(254, 109, 68, 1);
}

.subscribe-submit-button:focus {
    border: 1px solid black;
    background: rgba(254, 109, 68, 1);
}

.subscribe-submit-button:hover,
.subscribe-submit-button:active {
    background: #1B1F21;
}



.subscribe-text-bottom__bottom {
    display: flex;
    z-index: 1;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}


#checkbox {
    accent-color: red;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid white;
}



label[for='checkbox'] {
    font-family: Nunito, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: white;
}

.subscribe-strip2-marquee {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100vmax;
    height: 120px;
    background: rgba(218, 51, 105, 1);
}

.subscribe-strip2-marquee-text {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    color: rgba(242, 242, 242, 1);
    animation: scroll 15s linear infinite;
}

.subscribe-strip2-marquee-text span {
    font-size: 58px;
    font-weight: 400;
    font-family: "Archivo Black", sans-serif;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}




/* FOOTER */

footer {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    background-color: rgba(27, 31, 33, 1);
    padding: 64px 116px 0 116px;
    gap: 8px;
}

.footer-content{
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(7, 1fr);
    width: 1208px;
}

.footer-content-top-left-top{
    grid-row: 1/2;
    grid-column: 1/4;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap:48px;
}

#logo_ebac{
    width: 224px;
    height: 82px;
}

#achive {
    width: 80px;
    height: 80px;
}

.footer-content-top-left-bottom {
    grid-row: 2/4;
    grid-column: 1/4;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 8px;
    justify-content: end;
}

.footer-content-top-right{
    grid-row: 1/6;
    grid-column: 6/11;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-items: start;
    gap:64px
}

.footer-content-bottom-top-left{
    grid-row: 5/5;
    grid-column: 1/7;
    gap:40px;
    display: flex;
    flex-direction: row;
}
.footer-content-bottom-top-right{
    grid-row: 5/5;
    grid-column: 9/11;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap:24px;
}
.footer-content-bottom-top-right img{
    width: 32px;
    height: 32px;
}

.footer-content-bottom-bottom{
    grid-row: 6/7;
    grid-column: 1/8;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.separator{
    grid-row: 6/6;
    grid-column: 1/11;
}


.footer-content-top-right h3 {
    margin-bottom: 32px;
    padding:0;
    font-family: Nunito, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: rgba(117, 119, 120, 1);
}

.footer-content-bottom-top-left h3{
    font-family: Nunito, sans-serif;
    color: rgba(174, 174, 174, 1);
    font-size: 13px;
    font-weight: 500;
    margin: 0;
}


.footer-content-top-left-bottom input {
    width: 280px;
    box-sizing: border-box;
    border-radius: 88px;
    border: 1.5px solid white;
    background-color: transparent;
    padding: 10px 24px 10px 24px;
    margin: 0;
    font-family: Nunito, sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: white;
}

.footer-content-top-left-bottom input:focus {
    outline: none;
}

.footer-content-top-left-bottom input::placeholder {
    color: white;
    font-family: Nunito, sans-serif;
    font-size: 18px;
    font-weight: 500;
}

.footer-content-top-left-bottom button {
    width: 280px;
    border-radius: 40px;
    background: rgba(152, 83, 244, 1);
    border: none;
    padding: 10px 0 10px 0;
    color: white;
    font-family: Nunito, sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.footer-content-top-left-bottom button:hover {
    background: rgba(218, 51, 105, 1);
}
.footer-content-top-left-bottom button:focus {
    background: rgba(152, 83, 244, 1);
    border: 2px solid white;
}


.footer-content-top-right div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 32px;
}

.footer-content-top-right div h3 {
    margin: 0;
    padding: 0;
}

.footer-content-top-right div ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-content-top-right li {
    margin-bottom: 10px;
    font-family: Nunito, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(252, 250, 249, 1);
}

.footer-content-top-right a {
    color: white;
    text-decoration: none;
    position: relative;
}

.footer-content-bottom-top-left a{
    color: white;
    text-decoration: none;
    position: relative;
}

.footer-content-bottom-top-left a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

.footer-content-bottom-top-left a:hover::after {
    width: 100%;
}

.footer-content-bottom-top-left div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 6px;
}

.footer-content-bottom-top-left div ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-content-bottom-top-left li {
    margin: 0;
    padding: 0;
    color: white;
    font-family: Nunito, sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-align: left;

}

.footer-content-bottom-bottom {
    display: flex;
    flex-direction: row;
    justify-items: end;
}

.footer-content-bottom-bottom div span {
    font-family: Nunito, sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(174, 174, 174, 1);
}

.separator {
    height: 1px;
    background-color: rgba(67, 67, 67, 1);
    margin: 0;
}




.footer-content-top-right a {
    color: white;
    text-decoration: none;
    position: relative;
}

.footer-content-top-right a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

.footer-content-top-right a:hover::after {
    width: 100%;
}

.arrow{
    display: none;
}





/* Мобильная верстка */

/* HEADER */
@media (max-width: 1279px) {

    .header {
        display: grid;
        grid-template-rows: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
        padding: 16px 32px 16px 32px;
        gap: 24px;
    }

    #header__logo{
        grid-column: 1/1;
        grid-row: 1/1;
    }

    .header__search {
        grid-column: 2/2;
        grid-row: 1/1;
    }

    .header__menu{
        grid-column: 1/3;
        grid-row: 2/2;
        justify-self: center;
    }
}

@media (max-width: 768px) {

    .header {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        padding: 12px 8px 12px 8px;
        gap: 16px;
    }

    #header__logo {
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
    }

    .header__search {
        grid-column: 1;
        grid-row: 1;
        justify-self: end;
    }

    .header__menu {
        grid-column: 1/3;
        grid-row: 2;
    }
}



/* ПЕРВЫЙ БЛОК */
@media (max-width: 1279px) and (min-width: 767px) {

    .first {
        padding: 0 32px 160px 32px;
        gap:48px;
    }


    .first-info {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        justify-items: center;
        gap: 24px;
    }

    .first-info-image-wrapper{
        grid-column: 1/3;
        grid-row: 1/1;
    }

    .first-info-content {
        grid-column: 1/3;
        grid-row: 2/2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 704px;
    }

    .first-info-image-wrapper {
        position: relative;
        width: 704px;
        height: 320px;
    }

    .first-info-girl{
        object-position: center;
        mask-image: url("../mask/notebookgirlmask1280.png");
    }

    .first-info-circle {
        width: 120px;
        height: 120px;
    }

    .first-info-circle img {
        width: 120px;
        height: 120px;
    }


    .first-info-content__top {
        grid-column: 1/1;
        grid-row: 1/1;
        flex-direction: column;
        align-items: end;
        gap: 16px;
    }

    .first-info-content__heading {
        grid-column: 2/2;
        justify-self: center;
        align-self: center;
        width: 461px;
        height: 93px;
    }
    .first-info-content__heading h3 {
        font-size: 26px;
        text-wrap: wrap;
    }

    .first-info-content__main{
        grid-column: 2/2;
        width: 461px;
    }

    .first-info-content__main-other{
        grid-column: 1/1;
        grid-row: 2/2;
        width: 100%;
        align-items: end;
        flex-direction: column;
        gap: 8px;
    }


    .first-info-content__bottom {
        grid-column: 1/3;
        padding-top:48px;
        grid-row: 3/3;
        justify-self: center;
        align-self: center;
    }




    .first__strip-marquee {
        margin-top: 50px;
        height: 80px;
    }


    .first__strip-marquee-text span {
        font-size: 30px;
    }

}




@media (max-width: 767px) {

    .first {
        padding: 24px 8px 160px 8px;
        gap: 56px
    }

    .first-info {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .first-info-content {
        width: 304px;
        align-items: start;
        justify-content: start;

    }

    .first-info-image-wrapper {
        position: relative;
        width: 304px;
        height: 352px;
    }

    .first-info-girl{
        object-position: center;
        mask-image: url("../mask/notebookgirlmask768.png");
    }

    .first-info-circle {
        width: 104px;
        height: 104px;
    }

    .first-info-circle img {
        width: 104px;
        height: 104px;
    }

    .first-info-content__top{
        width: 304px;
    }

    .first-info-content__heading {
        max-width:304px;
        max-height:155px;
    }

    .first-info-content__heading h3{
        font-size: 26px;
        line-height: 31px;
    }

    .first-info-content__top-text-other {
        justify-items: start;
        width: 100%;
    }

    .first-info-content__bottom {
        width: 304px;
        display: flex;
        justify-content: center;
    }
}



/* ВТОРАЯ СЕКЦИЯ С КОНТЕНТОМ */


/* second-info1 1280px */
@media (max-width: 1279px) and (min-width: 767px) {
    .main {
        gap: 104px;
        padding: 10px 32px 160px 32px;
    }

    .second-info1 {
        display: flex;
        flex-direction: column;
        gap: 24px;
        max-width: 340px;
    }


    .second-info1-image {
        width: 340px;
        height: 224px;
    }

    .second-info1-image__image{
        mask-image: url("../mask/muslimgirl768.png");
    }


    .second-info1-image__circle {
        position: absolute;
        top: 10px;
        right: 10px;
        left: auto;
        width: 104px;
        height: 104px;
    }
    .second-info1-image__circle img{
        width: 104px;
        height: 104px;
    }

    .second-info1-content-top-middle-text h3 {
        font-size: 26px;
    }
}

/* second-info2 1280px */

@media (max-width: 1279px) and (min-width: 767px) {

    .second-info2 {
        display: flex;
        flex-direction: column;
        gap: 24px;
        max-width: 340px;
    }


    .second-info2-image {
        width: 340px;
        height: 224px;
    }

    .second-info2-image__image {
        mask-image: url("../mask/camerahand768.png");
    }

    .second-info2-image__circle {
        position: absolute;
        top: 10px;
        right: 10px;
        left: auto;
        width: 104px;
        height: 104px;
    }
    .second-info2-image__circle img{
        width: 104px;
        height: 104px;
    }

    .second-info2-content-top-middle-text h3 {
        font-size: 26px;
    }
}


/* second-info1 320px */
@media (max-width: 767px) {

    .main {
        gap:104px;
        padding: 120px 8px 120px;
    }

    .second {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .second-info1 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-items: center;
        gap: 18px;
        max-width: 304px;
    }
    .second-info1-image{
        position: relative;
        display: flex;
        width: 304px;
        height: 352px;
    }

    .second-info1-image__circle {
        position: absolute;
        top: 0;
        left: 0;
        width: 120px;
        height: 120px;
    }
    .second-info1-image__circle img{
        width: 120px;
        height: 120px;
    }

    .second-info1-image__image {
        width: 100%;
        height: 100%;
        mask-image: url("../mask/muslimgirl320.png");
    }

    .second-info1-content-top-middle-text h3 {
        max-width: 304px;
        font-size: 24px;
    }

    .second-info1-content-bottom__top span {
        max-width: 304px;
    }
}

/* second-info2 320px */

@media (max-width: 767px) {


    .second-info2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-items: center;
        gap: 18px;
        max-width: 304px;
    }
    .second-info2-image{
        position: relative;
        display: flex;
        width: 304px;
        height: 352px;
    }

    .second-info2-image__circle {
        position: absolute;
        top: 0;
        right: 0;
        width: 120px;
        height: 120px;
    }
    .second-info2-image__circle img{
        width: 120px;
        height: 120px;
    }

    .second-info2-image__image {
        width: 100%;
        height: 100%;
        object-position: right;
        mask-image: url("../mask/camerahand320mask.png");
    }

    .second-info2-content-top-middle-text h3 {
        max-width: 304px;
        font-size: 24px;
    }

    .second-info2-content-bottom__top span {
        max-width: 304px;
    }
}




/* third 1280px */

@media (max-width: 1279px) and (min-width: 767px) {

    .third{
        gap:24px;
    }

    .third-image{
        width: 704px;
        height: 320px;
    }


    .third-image__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        mask-image: url("../mask/writegirl768.png");
        mask-repeat: no-repeat;
    }

    .third-image__circle {
        width: 120px;
        height: 120px;
        top: 10px;
        right: 10px;
    }

    .third-image__circle img {
        width: 120px;
        height: 120px;
    }

    .third-text {
        display: grid;
        max-width: 704px;
        grid-template-columns: 1fr 2fr;
        align-items: start;
        gap: 24px;
    }

    .third-text-right__top h3 {
        font-size: 26px;
    }

    .third-text-right {
        width: 100%;
    }
}

/* third 320px */

@media (max-width: 767px) {

    .third-image{
        position: relative;
        display: flex;
        width: 304px;
        height: 352px;
    }

    .third-image__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        mask-image: url("../mask/writegirl320.png");
        mask-repeat: no-repeat;
    }
    .third-image__circle {
        position: absolute;
        top: 10px;
        right: auto;
        left: 0;
        width: 120px;
        height: 120px;
    }
    .third-image__circle img {
        width: 120px;
        height: 120px;
    }


    .third-text{
        display: grid;
        justify-items: center;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, max-content);
        max-width: 304px;
        gap:16px;
    }

    .third-text-right {
        grid-row: 2/2;
    }

    .third-text-left-top {
        grid-row: 1/1;
        height: max-content;
        justify-content: start;
        align-items: center;
        flex-direction: row;
    }

    .third-text-left-bottom{
        flex-direction: row;
        justify-content: center;
    }

    .third-text-right__top h3 {
        font-size: 24px;
    }

}

/* fourth 1280 */

/* fourth-info1 1280 */
@media (max-width: 1279px) and (min-width: 767px) {

    .fourth {
        gap:24px;
    }
    .fourth-info1{
        gap: 24px;
        max-width: 340px;
    }

    .fourth-info1-image{
        position: relative;
        display: flex;
        width: 340px;
        height: 224px;
    }

    .fourth-info1-image__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: bottom;
        mask-image: url("../mask/chinaboy768.png");
        mask-repeat: no-repeat;
    }

    .fourth-info1-image__circle {
        position: absolute;
        top: 10px;
        right: 10px;
        left: auto;
        width: 144px;
        height: 88px;
    }

    .fourth-info1-image__circle img {
        width: 144px;
        height: 88px;
        transform: rotate(15deg);
    }

    .fourth-info1-content{
        max-width: 340px;
    }


    .fourth-info1-content-top-text{
        gap:16px;
    }

    .fourth-info1-content-top-middle-text h3{
        font-size: 24px;
    }

    .fourth-info1-content-bottom{
        max-width: 340px;
    }
}


/* fourth-info2 1280 */
@media (max-width: 1279px) and (min-width: 767px) {
    .fourth-info2{
        gap: 24px;
        max-width: 340px;
    }

    .fourth-info2-image{
        position: relative;
        display: flex;
        width: 340px;
        height: 224px;
    }

    .fourth-info2-image__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: bottom;
        mask-image: url("../mask/mackbookboy768.png");
        mask-repeat: no-repeat;
    }

    .fourth-info2-image__circle {
        position: absolute;
        top: 10px;
        right: 0;
        left: auto;
        width: 104px;
        height: 104px;
    }

    .fourth-info2-image__circle img {
        width: 104px;
        height: 104px;
    }

    .fourth-info2-content{
        max-width: 340px;
    }


    .fourth-info2-content-top-text{
        gap:16px;
    }

    .fourth-info2-content-top-middle-text h3{
        font-size: 24px;
    }

    .fourth-info2-content-bottom{
        max-width: 340px;
    }
}


/* fourth-info1 320 */
@media (max-width: 767px) {

    .fourth {
        gap: 24px;
        flex-direction: column;
        align-items: center;
    }

    .fourth-info1 {
        gap: 24px;
        max-width: 304px;
    }

    .fourth-info1-image {
        position: relative;
        display: flex;
        width: 304px;
        height: 352px;
    }

    .fourth-info1-image__image {
        mask-image: url("../mask/chinaboy320.png");
    }

    .fourth-info1-image__circle {
        position: absolute;
        top: 10px;
        right: 10px;
        left: auto;
        width: 160px;
        height: 98px;
    }

    .fourth-info1-image__circle img {
        width: 160px;
        height: 98px;
        transform: rotate(15deg);
    }

    .fourth-info1-content {
        max-width: 304px;
    }

    .fourth-info1-content-top-text {
        gap: 16px;
    }

    .fourth-info1-content-top-middle-text h3 {
        font-size: 24px;
    }

    .fourth-info1-content-bottom {
        max-width: 304px;
    }
}

/* fourth-info2 320 */

@media (max-width: 767px) {


    .fourth-info2 {
        gap: 24px;
        max-width: 304px;
    }

    .fourth-info2-image {
        position: relative;
        display: flex;
        width: 304px;
        height: 352px;
    }

    .fourth-info2-image__image {
        mask-image: url("../mask/mackbookboy320.png");
    }

    .fourth-info2-image__circle {
        position: absolute;
        top: 0;
        left: 0;
        width: 120px;
        height: 120px;
    }

    .fourth-info2-image__circle img {
        width: 120px;
        height: 120px;
        transform: rotate(15deg);
    }

    .fourth-info2-content {
        max-width: 304px;
    }

    .fourth-info2-content-top-text {
        gap: 16px;
    }

    .fourth-info2-content-top-middle-text h3 {
        font-size: 24px;
    }

    .fourth-info2-content-bottom {
        max-width: 304px;
    }
}


/* webinars 1280px */

@media (max-width: 1279px) and (min-width: 767px) {

    .webinars{
        padding-top: 100px;
    }

    .webinars-background{
        width: max-content;
        top: 160px;
        transform: rotate(-110deg);
    }

    .webinars-content {
        align-items: center;
    }

    .webinars-content-top {
        width: 704px;
        justify-content: space-between;
        align-items: center;
        gap:0
    }

    .webinars-content-top__left span{
        font-size: 28px;
    }

    .webinars-content-top button {
        width:280px;
        height: 64px;
    }


    .webinars-content-bottom {
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .webinars-content-bottom-first-card{
        width: 340px;
        padding: 16px;
    }
    .webinars-content-bottom-second-card{
        width: 340px;
        padding: 16px;
    }

    .webinars-content-bottom-third-card{
        width: 704px;
        height: 272px;
        padding: 24px;
    }
    .webinars-content-bottom-first-card-top__text span {
        font-size: 24px;
    }
    .webinars-content-bottom-second-card-top__text span {
        font-size: 24px;
    }
    .webinars-content-bottom-third-card-top__text span {
        font-size: 24px;
    }

}

/* webinars 320px */
@media (max-width: 767px) {

    .webinars{
        padding-top: 150px;
    }

    .webinars-background{
        display: none;
    }

    .webinars-content {
        gap: 40px;
    }

    .webinars-content-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        justify-content: space-between;
    }

    .webinars-content-top {
        justify-content: center;
    }

    .webinars-content-top button {
        display: none;
    }
    .webinars-content-top__left span{
        font-size: 28px;
    }

    .webinars-content-bottom-first-card{
        width: 304px;
        justify-content: center;
        align-items: center;
        padding: 5px;
        gap: 32px;
    }
    .webinars-content-bottom-second-card{
        width: 304px;
        justify-content: center;
        align-items: center;
        padding: 5px;
        gap: 32px;
    }

    .webinars-content-bottom-third-card{
        width: 304px;
        justify-content: center;
        align-items: center;
        padding: 5px;
        gap: 32px;
    }

    .bottom-button{
        display: flex;
        justify-content: center;
        margin-top: 24px;
    }
    .webinars-content-bottom-button{
        display: block;
        text-align: center;
        width: 280px;
        height: 64px;
        border: none;
        border-radius: 40px;
        background: rgba(152, 83, 244, 1);
        color: rgba(252, 250, 249, 1);
        font-family: Nunito, sans-serif;
        font-size: 18px;
        font-weight: 700;
        padding-top: 15px;
        padding-bottom: 15px;
        gap: 8px;
    }

}


/* subscribe 1280px */
@media (max-width: 1279px) and (min-width: 767px) {

    .subscribe-content {
        width: 557px;
        height: 498px;
        padding: 0 0 0 0;
        margin-right: 170px;
        display: flex;
        flex-direction: row;
        position: relative;
        border-radius: 64px;
        gap: 8px;
        justify-content: start;
        align-items: center;
        background: rgba(87, 172, 188, 1);
        mask-image: none;
    }
    .subscribe-banner {
        position: absolute;
        margin-right: 100px;
        width: calc(95% + 200px);
        height: calc(95% + 30px);
        background-image: url('../image/subscribebanne1280.png');
        background-size: contain;
        background-position: right;
        background-repeat: no-repeat;
    }

    .subscribe-text{
        padding-left: 40px;
        width: 368px;
        gap:64px;
    }

    .subscribe-text-top__top h3 {
        font-size: 26px;
    }

    .subscribe-text-bottom{
    }

    .subscribe-text-bottom__top {
        display: flex;
        flex-direction: column;
        width: 280px;
        gap: 16px;
    }

    #email{
        text-align: center;
        width: 275px;
        padding: 10px 0 10px 0;
    }

    label[for='checkbox'] {
        font-family: Nunito, sans-serif;
        font-size: 13px;
        font-weight: 400;
        color: white;
    }

    .fantastic-input {
        display: flex;
        align-items: center;
        width: 280px;
        height: 114px;
        border-radius: 24px;
    }
    .subscribe-success-icon {
        top: -40px;
        right: 0;
        width: 104px;
        height: 104px;
    }

}

/* subscribe 320px */

@media (max-width: 767px) {

    .subscribe {
        height: 100%;
    }

    .subscribe-content {
        display: flex;
        flex-direction: column;
        position: relative;
        width: 304px;
        height: 1132px;
        gap: 8px;
        justify-content: start;
        align-items: center;
        justify-items: start;
        background: rgba(87, 172, 188, 1);
        mask-image: url('../mask/BannerMask320.png');
        mask-size: contain;
        mask-position: center;
        mask-repeat: no-repeat;
        padding: 0;
    }

    .subscribe-text {
        position: relative;
        margin-top: 100px;
        z-index: 10;
        width: 256px;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 88px;
    }

    .subscribe-banner {
        position: absolute;
        bottom: 0;
        width: 304px;
        height: 400px;
        padding: 0 0 100px 0;
        background-image: url('../mask/banner-shappe320.png');
        background-size: contain;
        background-position: bottom;
        background-repeat: no-repeat;
    }

    .subscribe-banner-email{
        position: absolute;
        top: 230px;
        left: 50px;
        width: 229px;
        height: 173px;
        background-image:url('../image/letter.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    .subscribe-banner-email2{
        position: absolute;
        top: 140px;
        left: 100px;
        width: 98px;
        height: 83px;
        background-image:url('../image/letter2.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .subscribe-text-top__top h3 {
        font-size: 26px;
    }

    .subscribe-text-bottom__top {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .subscribe-text-bottom__bottom{
        align-items: start;
    }

    #email{
        text-align: center;
        width: 252px;
        padding: 10px 0 10px 0;
    }
    .subscribe-submit-button{
        width: 256px;
    }

    label[for='checkbox'] {
        font-size: 13px;
    }

    .fantastic-input {
        display: flex;
        align-items: center;
        justify-items: start;
        width: 240px;
        padding: 10px 16px 10px 16px;
        height: 114px;
        border-radius: 24px;
    }

    .fantastic-input span{
        width: 176px;
    }
    .subscribe-success-icon {
        top: -30px;
        right: -20px;
        width: 104px;
        height: 104px;
    }
}


/* Footer 768 px */

@media (max-width: 1279px) {
    footer {
        display: flex;
        flex-direction: row;
        align-content: center;
        justify-content: center;
        background-color: rgba(27, 31, 33, 1);
        padding: 64px 32px 72px 32px;
        gap: 8px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(10, 1fr);
        grid-template-rows: repeat(8, 1fr);
        width: 704px;
    }

    .footer-content-top-left-top {
        grid-row: 1/2;
        grid-column: 1/5;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 48px;
    }

    #logo_ebac {
        width: 173px;
        height: 64px;
    }

    #achive {
        width: 64px;
        height: 64px;
    }

    .footer-content-top-left-bottom {
        grid-row: 1/2;
        grid-column: 7/11;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 8px;
        justify-content: end;
    }

    .footer-content-top-right {
        grid-row: 3/6;
        padding-top: 60px;
        grid-column: 1/11;
        display: flex;
        flex-direction: row;
        align-content: center;
        justify-content: center;
        gap: 64px
    }

    .footer-content-bottom-top-left {
        grid-row: 7/7;
        grid-column: 1/11;
        gap: 40px;
        display: flex;
        flex-direction: row;
    }

    .footer-content-bottom-top-right {
        grid-row: 2/3;
        grid-column: 1/5;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: start;
        gap: 24px;
    }

    .footer-content-bottom-top-right img {
        width: 32px;
        height: 32px;
    }
    .footer-content-bottom-top-right:hover{
        cursor: pointer;
    }

    .footer-content-bottom-bottom {
        grid-row: 8/8;
        grid-column: 1/11;
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .separator {
        grid-row: 8/8;
        grid-column: 1/11;
    }


    .footer-content-top-right h3 {
        margin-bottom: 32px;
        padding: 0;
    }

    .footer-content-bottom-top-left h3 {
        font-size: 13px;
    }


    .footer-content-top-left-bottom input {
        width: 280px;
    }

    .footer-content-top-left-bottom input:focus {
        outline: none;
    }

    .footer-content-top-left-bottom input::placeholder {
        color: white;
        font-family: Nunito, sans-serif;
        font-size: 18px;
        font-weight: 500;
    }


    .footer-content-top-right div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        gap: 24px;
    }

    .footer-content-top-right a {
        color: white;
        text-decoration: none;
        position: relative;
    }

    .footer-content-bottom-top-left a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 0;
        height: 2px;
        background-color: white;
        transition: width 0.3s ease;
    }

    .footer-content-bottom-top-left a:hover::after {
        width: 100%;
    }

    .footer-content-bottom-top-left div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        gap: 6px;
    }

    .footer-content-bottom-top-left div ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

    .footer-content-bottom-bottom {
        display: flex;
        flex-direction: row;
        justify-items: end;
    }

    .arrow{
        display: none;
    }
}


@media (max-width: 767px){
    footer {
        display: flex;
        flex-direction: row;
        align-content: center;
        justify-content: center;
        background-color: rgba(27, 31, 33, 1);
    }
    .arrow{
        display: block;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, min-content);
        width: 304px;
        gap:40px;
    }

    .footer-content-top-left-top {
        grid-row: 1/1;
        grid-column: 1;
    }

    #logo_ebac {
        width: 173px;
        height: 64px;
    }

    #achive {
        width: 64px;
        height: 64px;
    }

    .footer-content-top-left-bottom {
        grid-row: 8;
        grid-column: 1;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 8px;
        justify-content: end;
    }

    .footer-content-top-right {
        grid-row: 3/3;
        grid-column: 1;
        display: flex;
        padding: 0;
        gap:16px;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    .footer-content-bottom-top-left {
        grid-row: 5/7;
        grid-column: 1;
        gap: 40px;
        display: flex;
        flex-direction: column;
    }

    .footer-content-bottom-top-right {
        grid-row: 2;
        grid-column: 1;
        display: flex;
        width: 304px;
        flex-direction: row;
        align-items:center;
        justify-content: space-between;
        gap: 24px;
    }

    .footer-content-bottom-top-right img {
        width: 48px;
        height: 48px;
    }

    .footer-content-bottom-bottom {
        grid-row: 10/10;
        grid-column: 1;
        display: flex;
    }

    .footer-content-bottom-bottom div {
        display: flex;
        flex-direction: column;
        gap:16px;
    }

    .dot {
        display: none;
    }


    .separator {
        display: none;
        grid-row: 8/8;
        grid-column: 1;
    }

    .dropdown-content li {
        margin-bottom: 16px;
    }

    .dropdown-content li:last-child {
        margin-bottom: 0;
    }


    .dropdown-toggle{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 304px;
    };

    .footer-content-top-right ul {
        display: none;
    }

    .dropdown-content {
        display: none;
    }

    .footer-content-top-right h3 .arrow {
        transition: transform 0.3s ease;
    }

    .footer-content-top-right h3.active .arrow {
        transform: rotate(180deg);
    }

    .footer-content-top-right ul.dropdown-content {
        padding: 0;
        list-style: none;
        margin-bottom: 16px;
    }
}
