* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.scroll-off {
    overflow: hidden;
}

.header {
    width: 100%;
    position: fixed;
    background-color: #FFFFFF99;
    backdrop-filter: blur(16px);
    transition: width 0.4s ease-in-out;
    z-index: 1000;
}

.shift {
    width: 100%;
}

.header-open {
    width: 283px;
    display: flex;
    flex-direction: column;
    height: 63px;
    z-index: 1000;
}

.header__wraper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 0;
    max-height: 62px;
    gap: 20px;
    transition: all 0.4s ease-in-out;
}

.header__wraper-open {
    padding: 16px 0;
    gap: 22px;
}

@media screen and (max-width: 393px) {
    .header__wraper {
        gap: 6px;
    }
}

@media screen and (min-width: 1194px) {
    .header__wraper {
        padding: 28px 0;
        max-height: 128px;
    }
}

@media screen and (min-width: 1920px) {
    .header__wraper {
        padding: 28px 0;
    }
}

.header__nav {
    display: none;
}

@media screen and (min-width: 1194px) {
    .header__nav {
        display: flex;
    }
}

.container {
    padding: 0 16px;
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
    transition: all 0.4s ease-in-out;
}

@media screen and (min-width: 1194px) {
    .container {
        padding: 0 16px;
        max-width: 1500px;
    }
}

@media screen and (min-width: 1920px) {
    .container {
        padding: 0 143px;
        max-width: 2100px;
    }
}

.container-open {
    padding: 0 32px;
    
}

.header__nav-list {
    list-style-type: none;
    display: flex;
    gap: 6px;
}

@media screen and (min-width: 1920px) {
    .header__nav-list {
        gap: 16px;
    }
}

.header__menu {
    width: 42px;
    height: 24px;
    background-image: url(images/btn-menu__mobile.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 16px 13px;
    border-radius: 16px;
    border: none;
    background-color: #ffffff00;
    flex-shrink: 0;

    transition: all 0.4s ease-in-out;
}

.header__menu-open {
    background-image: url(images/btn__close-mobile.webp);
    background-color: #5CC2FF;
}

@media screen and (min-width: 1194px) {
    .header__menu {
        display: none;
    }
}

.header__logo-link {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
}

.header__logo {
    width: 156px;
    display: flex;
}

@media screen and (max-width: 393px) {
    .header__logo {
        width: 120px;
    }
}

@media screen and (min-width: 1194px) {
    .header__logo {
        width: 200px;
    }
}

@media screen and (min-width: 1920px) {
    .header__logo {
        width: 247px;
    }
}

.header__application {
    text-decoration: none;
    max-width: 136px;
    padding: 6px;
    white-space: nowrap;
    border: none;
    border-radius: 28px;
    background: linear-gradient(to right, #5CC2FF 50%, #CEE9F9 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    display: flex;
    gap: 4px;
    align-items: center;
    min-width: 134px;

    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #2D2D2D;
    cursor: pointer;

    opacity: 1;
    transform: scaleX(1);
    transform-origin: left center; 
    transition: all 0.2s ease;
    overflow: hidden;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
}

.header__application:hover {
  background-position: left bottom;
  .header__application-icon {
    transform: rotate(45deg);
  }
}

.header__application:active {
    background-color: #5CC2FF;
}

.header__aplication-open {
    opacity: 0;
    transform: scaleX(0); 
    transform-origin: right center;
    max-width: 0;
    padding: 0;
    margin: 0;
}


@media screen and (min-width: 1194px) {
    .header__application {
        padding: 8px;
        max-width: 201px;
        font-size: 14px;
        gap: 16px;
        padding-left: 16px ;
    }
}

@media screen and (min-width: 1920px) {
    .header__application {
        padding: 8px;
        max-width: 249px;
        font-size: 18px;
        padding-left: 16px ;
    }
}


.header__application-icon {
    background-color: #FFFFFF;
    width: 24px;
    height: 24px;
    background-image: url(images/icon_btn-2.webp);
    background-size: 16px;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 32px;
    transition: all 0.2s ease-in-out;
}

@media screen and (min-width: 1220px) {
    .header__application-icon {
        width: 48px;
        height: 48px;
        background-size: 24px;
    }
}

@media screen and (min-width: 1920px) {
    .header__application-icon {
        width: 56px;
        height: 56px;
    }
}

.header__nav-btn {
    border: none;
    border-radius: 28px;
    padding: 8px;
    padding-left: 16px;
    background-color: #F6F6F6;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;

    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #2D2D2D;
    letter-spacing: -2%;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent; 
    text-wrap: nowrap;
}

.header__nav-btn:hover {
    .header__nav-icon {
    background-color: #CEE9F9;
    }
}

.header__nav-btn:active {
    .header__nav-icon {
        background-color: #5CC2FF;
        background-image: url(images/icon_btn_active.webp);
    }
}

@media screen and (min-width: 1920px) {
    .header__nav-btn {
        padding: 6px;
        padding-left: 16px;
        gap: 16px;
        border-radius: 15px;

        font-family: "Work Sans", sans-serif;
        font-weight: 400;
        font-size: 16px;
        color: #2D2D2D;
        letter-spacing: 0%;
    }
}

.header__nav-icon {
    width: 42px;
    height: 30px;
    background-color: #FFFFFF;
    border-radius: 16px;
    background-image: url(images/icon_btn.webp);
    background-position: center center;
    background-size: 18px;
    background-repeat: no-repeat;
    transition: all 0.2s ease-in-out;
}


@media screen and (min-width: 1920px) {
    .header__nav-icon {
        width: 56px;
        height: 46px;
        background-size: 24px;
    }
}

.header__timing {
    display: flex;
    gap: 6px;
    white-space: nowrap;
}

@media screen and (max-width: 1193px) {
    .header__timing {
        display: none;
    }
}

@media screen and (min-width: 1920px) {
    .header__timing {
        gap: 16px;
    }
}

.header__timing--mobile {
    font-family: "Work Sans", sans-serif;
    font-weight: 300;
    font-size: 11px;
    color: #2D2D2D;
}

@media screen and (min-width: 1920px) {
    .header__timing--mobile {
        display: none;
    }
}

.header__timing--bold {
    font-family: "Work Sans", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #2D2D2D;
    letter-spacing: -2%;
}

@media screen and (min-width: 1920px) {
    .header__timing--bold {
        font-family: "Work Sans", sans-serif;
        font-weight: 600;
        font-size: 18px;
        color: #2D2D2D;
        letter-spacing: 0%;
    }
}

.header__timing--desktop {
    font-family: "Work Sans", sans-serif;
    font-weight: 300;
    font-size: 12px;
    color: #2D2D2D;
    font-style: light;
}

@media screen and (max-width: 1919px) { 
    .header__timing--desktop {
        display: none;
    }
}

.header__mobile__menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 283px;
    width: 100%;
    position: fixed;
    left: 0;
    top: 59px;
    height: 100dvh;
    background-color: #FFFFFF99;
    backdrop-filter: blur(16px);
    overflow: hidden;
    transform: translateX(-100%);
    transition: all 0.4s ease-in-out;
    z-index: 999;
    box-shadow: 5px 0px 10px 2px #00000026;
}

.header__mobile__menu-open {
    transform: translateX(0);
}


.mobile__menu__nav--btn {
    border: none;
    background-color: #F6F6F6;
    border-radius: 28px;
    padding: 8px;
    padding-left: 16px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease-in-out;

    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #2D2D2D; 
}

.mobile__menu__nav--btn:active {
    background-color: #CEE9F9;
}

.mobile__menu__nav--item {
    width: 100%;
}

.mobile__menu__nav--icon {
    width: 42px;
    height: 30px;
    background-image: url(images/icon_btn.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 18px;
    border-radius: 16px;
    background-color: #FFFFFF;
}

.mobile__menu__nav--list {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.mobile__menu--content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-top: 30px;
    padding-bottom: 80px;
}

.mobile__menu--adress {
    display: flex;
    flex-direction: column;
    gap: 6px;

    font-family: "Work Sans", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #2D2D2D; 
}

.mobile__menu--branches-text {
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #2D2D2D;    
}

.mobile__menu--application {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mobile__menu--times-text {
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #2D2D2D; 
}

.mobile__menu--times-text-bold {
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #2D2D2D; 
}

.mobile__menu--number-text {
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: #2D2D2D; 
    display: flex;
    flex-direction: column;

    text-decoration: none;

}

a:visited {
    color: #2D2D2D; ;
}

.mobile__menu__btn {
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #2D2D2D; 
    padding: 16px 45px;
    border: none;
    border-radius: 28px;
    background: linear-gradient(to right, #5CC2FF 50%, #CEE9F9 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.mobile__menu__btn:hover {
    background-position: left bottom;
    .mobile__menu--icon {
        transform: rotate(45deg);
    }
}

.mobile__menu--icon {
    width: 24px;
    height: 24px;
    border-radius: 32px;
    background-image: url(images/icon_btn-2.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 16px;
    background-color: #FFFFFF;
    transition: all 0.2s ease-in-out;
}

.container__mobile-menu {
    padding: 0 16px;
    margin: auto auto;
    width: 100%;
    height: 100%;
}

.main {
    display: flex;
    margin: 0 auto;
    
    position: relative;
    overflow:hidden;
    z-index: 1;

    background-image: url(images/bg-1.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.main__content {
    display: flex;
    flex-direction: column;
}

@media screen and (min-width: 1194px) {
    .main__content {
        flex-direction: column;
    }
}


.main__widget-1 {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    z-index: 2;
    margin-right: auto;
    max-width: 361px;
    width: 100%;
}

@media screen and (min-width: 1194px) {
    .main__widget-1--item-1 {
        text-align: end;
    }
}

@media screen and (min-width: 1194px) {
    .main__widget-1 {
        max-width: 500px;
        width: 100%;
        align-items: end;
        margin-left: 137px;
    }
}

@media screen and (min-width: 1920px) {
    .main__widget-1 {
        margin-left: 299px;
    }
}

.widget-1-text-1 {
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: #2D2D2D;
    letter-spacing: -0.5px;
    line-height: 100%;
}

@media screen and (min-width: 1194px) {
    .widget-1-text-1 {
        font-size: 28px;
    }
}

@media screen and (min-width: 1920px) {
    .widget-1-text-1 {
        font-size: 36px;
    }
}

.widget-1-text-1-bold {
    font-family: "Work Sans", sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: #2D2D2D;
    letter-spacing: -0.5px;
    line-height: 100%;
}

@media screen and (min-width: 1194px) {
    .widget-1-text-1-bold {
        font-size: 28px;
    }
}

@media screen and (min-width: 1920px) {
    .widget-1-text-1-bold {
        font-size: 36px;
    }
}

.widget-1-text-2 {
    padding: 16px;
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #747474;
    letter-spacing: -0.5px;
    line-height: 100%;
}

@media screen and (min-width: 1194px) {
    .widget-1-text-2 {
        font-size: 20px;
        text-align: end;
        letter-spacing: 0px;
    }
}

@media screen and (min-width: 1920px) {
    .widget-1-text-2 {
        font-size: 24px;
    }
}

.main__widget-1--item-2 {
    background-color: #F6F6F6;
    border-radius: 16px;
    max-width: 220px;
}

@media screen and (min-width: 1194px) {
    .main__widget-1--item-2 {
        max-width: 280px;
    }
}

@media screen and (min-width: 1920px) {
    .main__widget-1--item-2 {
        max-width: 332px;
    }
}

.main__widget-1--item-3 {
    width: 56px;
    height: 56px;
    background-image: url(images/icon-enter.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 24px;
}

.main__item-1 {
    display: flex;
    flex-direction: column;
    padding-top: 90px;
}

@media screen and (min-width: 1194px) {
    .main__item-1 {
        flex-direction: row;
        align-items: start;
        padding-top: 206px;
    }
}

@media screen and (min-width: 1920px) {
    .main__item-1 {
        padding-top: 219px;
    }
}

.main__widget-2--item-1 {
    padding: 12px 28px;
    background-color: #99FFD3;
    border-radius: 16px 16px 0 0 ;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    z-index: 3;
}

.widget-2__experience {
    display: flex;
    gap: 8px;
}

.widget-2__experience--text-1 {
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #747474;
    line-height: 100%;
}

@media screen and (min-width: 1920px) {
    .widget-2__experience--text-1 {
        font-size: 17px;
    }
}

.main__widget-2--item-2 {
    padding: 16px 28px;
    background-color: #FFFFFF;
    border-radius: 0 0 16px 0;
    position: relative;
    overflow: hidden;
    z-index: 3;
} 

.main__widget-2 { 
    margin: 0 -16px;
    margin-top: 94px;
    position: relative;
    z-index: 3;
    box-shadow: 0px 8px 16px 0px #00000026;
    border-radius: 16px 16px 16px 0;
}

@media screen and (min-width: 1194px) {
    .main__widget-2 {
        margin: 0;
        max-width: 300px;
    }
}

@media screen and (min-width: 1920px) {
    .main__widget-2 {
        margin: 0;
        max-width: 415px;
    }
}

.main__widget-2__container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.widget-2--item-2--text {
    font-family: "Work Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #2D2D2D;
    line-height: 100%;
    letter-spacing: -0.5px;
}

@media screen and (min-width: 1920px) {
    .widget-2--item-2--text {
        font-size: 18px;
    }
}

.widget-2--item-2--comma {
    width: 15px;
    height: 11px;
    background-image: url(images/zapatie.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.widget-2__experience--text-2 {
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #2D2D2D;
    line-height: 100%;
    letter-spacing: -1px;
}

@media screen and (min-width: 1920px) {
    .widget-2__experience--text-2 {
        font-size: 17px;
    }
}

.widget-2__profession-text {
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #2D2D2D;
    line-height: 100%;
    color: #22833F;
}

@media screen and (min-width: 1920px) {
    .widget-2__profession-text {
        font-size: 17px;
    }
}

.widget-2--lastname {
    font-family: "Work Sans", sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #2D2D2D;
    letter-spacing: -0.5px;
    line-height: 100%;
}

@media screen and (min-width: 1920px) {
    .widget-2--lastname {
        font-size: 24px;
    }
}

.widget-2--first-middlename {
    font-family: "Work Sans", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #2D2D2D;
    line-height: 100%;
}

@media screen and (min-width: 1920px) {
    .widget-2--first-middlename {
        font-size: 18px;
    }
}

.main__widget-3 {
    padding: 16px 14px;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: 28px;
    position: relative;
    z-index: 4;
    align-items: center;
    width: 100%;
    margin-right: auto;
    box-shadow: 0px 8px 16px 0px #48262626;

}

@media screen and (min-width: 1194px) {
    .main__widget-3 {
        max-width: 442px;
    }
}

@media screen and (min-width: 1920px) {
    .main__widget-3 {
        max-width: 619px;
    }
}


.main__widget-3__implant-icon {
    background-image: url(images/tooth_icon1.webp);
    width: 36px;
    height: 36px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

@media screen and (min-width: 1194px) {
    .main__widget-3__implant-icon {
        width: 48px;
        height: 48px;
    }
}


.main__widget-3__implant {
    display: flex;
    align-items: center;
    gap: 6px;
}

@media screen and (min-width: 1920px) {
    .main__widget-3__implant {
        gap: 16px;
    }
}

.main__widget-3__implant__container {
    padding: 5px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

@media screen and (min-width: 1920px) {
    .main__widget-3__implant__container {
        gap: 16px;
    }
}

.main__widget-3__implant-text-1 {
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #2D2D2D;
    line-height: 100%;
}

@media screen and (min-width: 1194px) {
    .main__widget-3__implant-text-1 {
        font-size: 18px;
    }
}

@media screen and (min-width: 1920px) {
    .main__widget-3__implant-text-1 {
        font-size: 24px;
    }
}

.main__widget-3__implant-text-1--bold {
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #2D2D2D;
    line-height: 100%;
    letter-spacing: -0.5px;
}

@media screen and (min-width: 1194px) {
    .main__widget-3__implant-text-1--bold {
        font-size: 24px;
    }
}

@media screen and (min-width: 1920px) {
    .main__widget-3__implant-text-1--bold {
        font-size: 36px;
    }
}

.main__widget-3__implant-text-2 {
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #747474;
    line-height: 100%;
    letter-spacing: -0.5px;
}

@media screen and (min-width: 1194px) {
    .main__widget-3__implant-text-2 {
        font-size: 18px;
    }
}

@media screen and (min-width: 1920px) {
    .main__widget-3__implant-text-2 {
        font-size: 24px;
    }
}

.main__widget-3__implant-text-2--bold {
    font-family: "Work Sans", sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #747474;
    line-height: 100%;
    letter-spacing: -0.5px;
}

@media screen and (min-width: 1194px) {
    .main__widget-3__implant-text-2--bold {
        font-size: 18px;
    }
}

@media screen and (min-width: 1920px) {
    .main__widget-3__implant-text-2--bold {
        font-size: 24px;
    }
}

.main__widget-3--btn {
    padding: 10px 0;
    gap: 16px;
    width: 100%;
    background: linear-gradient(to right, #5CC2FF 50%, #CEE9F9 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    border: none;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
    transition: all 0.2s ease;
    cursor: pointer;
    
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #2D2D2D;
    line-height: 18px;
    letter-spacing: -2%;

    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
}

.main__widget-3--btn:hover {
    background-position: left bottom;
    .main__widget-3--btn-icon {
        transform: rotate(45deg);
    }
}


.main__widget-3--btn:active {
    background-color: #5CC2FF;
    
}

@media screen and (min-width: 1194px) {
    .main__widget-3--btn {
        font-size: 24px;
        padding: 8px 65px;
        padding-left: 80px;
        gap: 16px;
    }
}


@media screen and (min-width: 1920px) {

    .main__widget-3--btn {
        font-size: 24px;
        padding: 29px 153px;
        padding-left: 169px;
        gap: 16px;
    }
}

.main__widget-3--btn-icon {
    background-image: url(images/icon_btn-2.webp);
    width: 48px;
    height: 48px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 24px;
    background-color: #FFFFFF;
    border-radius: 32px;
    position: relative;
    z-index: 6;
    transition: all 0.2s ease-in-out;
}

@media screen and (min-width: 1194px) {
    .main__widget-3--btn-icon {
        width: 56px;
        height: 56px;
        background-size: 24px;
    }
}

.main__item-2 {
    padding-top: 260px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
}

@media screen and (min-width: 1194px) {
    .main__item-2 {
        padding-top: 43px;
        padding-bottom: 88px;
    }
}

@media screen and (min-width: 1920px) {
    .main__item-2 {
        padding-top: 123px;
        padding-bottom: 65px;
    }
}

.skull_animated {
    display: flex;
    flex-direction: column;
    width: 438px;
    height: 393px;
    position: absolute;
    bottom: 0;
    z-index: 3;
    left: -25px;
    top: -48px;
}

@media screen and (min-width: 1194px) {
    .skull_animated {
        width: 453px;
        height: 405px;
        top: -300px;
        left: -36px;
    }
}

@media screen and (min-width: 1920px) {
    .skull_animated {
        width: 453px;
        height: 405px;
        top: -300px;
        left: 30px;
    }
}

.qwer {
    background-color: #2fd0db17;
    height: 500px;
    width: 100%;
}

.skull_img {
    position: absolute;
    width: 100%;
    z-index: 2;
    transform: translateY(-500%);
}

@keyframes healthBlock_animation {

    60% { opacity: 1; transform: translateY(0);}
    100% { transform: rotate(-3deg); }
}

@keyframes comfortBlock_animation {

    60% { opacity: 1; transform: translateY(0);}
    100% { transform: rotate(2deg); }
}

@keyframes skull_down {
    to { transform: translateY(100px); }
}

@keyframes skull_up {
    0% {transform: translateY(0);}
    40% {transform: translateY(-20px);}
    60% {transform: translateY(0);}
    100% {transform: translateY(-1500%);}
}

@keyframes quizBlock1_animation {

    60% { opacity: 1; transform: translateY(0);}
    100% { transform: rotate(-3deg); }
}

@keyframes quizBlock2_animation {

    60% { opacity: 1; transform: translateY(0);}
    100% { transform: rotate(2deg); }
}

@keyframes quizBlock3_animation {

    to { opacity: 1; transform: translateY(0); }
}

.shift_img-1 {
    position: absolute;
    width: 58px;
    height: 58px;
    left: 58px;
    bottom: 160px;
    left: 120px;
    z-index: 1;
    transform: translateY(-1500%);
}

@keyframes shift-down {
    40% {transform: translateY(0);}
    60% {transform: translateY(-5px);}
    80% {transform: translateY(3px);}
    100% {transform: translateY(0);}
}

@keyframes shift-jump {
    0%, 90% {transform: translateY(0);}
    93% {transform: translateY(10px);}
    95% {transform: translateY(0);}
    97% {transform: translateY(-5px);}
    100% {transform: translateY(0);}
}

.shift_img-2 {
    position: absolute;
    width: 58px;
    height: 58px;
    left: 84px;
    top: 81px;
    transform: translateY(-1500%);
}

.shift_img-3 {
    position: absolute;
    width: 58px;
    left: 193px;
    top: 73px;
    transform: translateY(-1500%);
}

.shift_img-4 {
    position: absolute;
    width: 58px;
    height: 58px;
    right: 55px;
    top: 143px;
    transform: translateY(-1500%);
}

.main__doctor__icon {
    background-image: url(images/nizami1.webp);
    width: 414px;
    height: 518px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -367px;
    right: -120px;
    position: absolute;
    z-index: 2;
}

@media screen and (max-width: 392px) {
    .main__doctor__icon {
        width: 350px;
        height: 450px;
        top: -360px;
    }
}

@media screen and (min-width: 1194px) {
    .main__doctor__icon {
        width: 513px;
        height: 641px;
        top: -32px;
        right: 143px;
    }
}

@media screen and (min-width: 1920px) {
    .main__doctor__icon {
        width: 688px;
        height: 861px;
        top: -80px;
        right: 170px;
    }
}

.aboutUs {
    background-color: #CEE9F9;
}

.aboutUs__content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin: 0 auto;
    padding: 30px 0;
    transition: all 0.3s ease-in-out;
}

@media screen and (min-width: 1194px) {
    .aboutUs__content {
        max-width: 1162px;
    }
}

@media screen and (min-width: 1920px) {
    .aboutUs__content {
        max-width: 1634px;
    }
}

.aboutUs__sertificate {
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    padding-bottom: 150px;
}

@media screen and (min-width: 1194px) {
    .aboutUs__sertificate {
        flex-direction: row;
        padding-bottom: 360px;
        max-width: 775px;
        margin: 0 auto;
    }
}

.aboutUs__sertificate--star {
    width: 361px;
    position: absolute;
}

@media screen and (min-width: 1194px) {
    .aboutUs__sertificate--star {
        width: 450px;
        top: 100px;
        right: 60px;
    }
}

.aboutUs__sertificate--paper {
    width: 300px;
    position: absolute;
    bottom: 0px;
    z-index: 100;
}

@media screen and (min-width: 1194px) {
    .aboutUs__sertificate--paper {
        width: 340px;
        top: -80px;
        left: 60px;
    }
}

.aboutUs__widget-1 {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 0px 12px;
}

@media screen and (min-width:1194px) {
    .aboutUs__widget-1 {
        flex-direction: row;
    }
}

.aboutUs__widget-1--item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.aboutUs__widget-1--prothesis {
    width: 200px;
    height: 80px;
    background-image: url(images/aboutUs_widget-1--prothesis.webp);
    background-position: center -38px;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 16px;
    background-color: #FFFFFF;
    min-width: 200px;
}

@media screen and (min-width: 1920px) {
    .aboutUs__widget-1--prothesis {
        width: 257px;
        height: 98px;
        background-position: center -27px;
    }
}

.aboutUs__widget-1--syringe {
    width: 200px;
    height: 80px;
    background-image: url(images/aboutUs_widget-1--syringe.webp);
    background-position: center -15px;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 16px;
    background-color: #FFFFFF;
    min-width: 200px;
}

@media screen and (min-width: 1920px) {
    .aboutUs__widget-1--syringe {
        width: 257px;
        height: 98px;
        background-position: center -20px;
    }
}

.aboutUs__widget-1--text {
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #2D2D2D;
    line-height: 100%;
    letter-spacing: -0.5px;
}

@media screen and (min-width: 1920px) {
    .aboutUs__widget-1--text {
        font-size: 16px;
    }
}

.aboutUs__widget-1--text-bold {
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #2D2D2D;
    line-height: 100%;
    letter-spacing: -0.5px;
}

@media screen and (min-width: 1920px) {
    .aboutUs__widget-1--text-bold {
        font-size: 16px;
    }
}

.aboutUs__widget-1--btn {
    background: linear-gradient(to right, #00a2ff 50%, #5CC2FF 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    border: none;
    gap: 16px;
    border-radius: 28px;
    padding: 16px 0;
    justify-content: center;
    display: flex;
    align-items: center;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;

    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #2D2D2D;
    transition: all 0.2s ease;
}

.aboutUs__widget-1--btn:hover {
    background-position: left bottom;
    .aboutUs__widget-1--btn-icon {
        transform: rotate(45deg);
    }
}

@media screen and (min-width: 1194px) {
    .aboutUs__widget-1--btn {
        max-width: 291px;
        width: 100%;
    }
}

@media screen and (min-width: 1920px) {
    .aboutUs__widget-1--btn {
        max-width: 602px;
        width: 100%;
        font-size: 24px;
    }
}

.aboutUs__widget-1--btn-icon {
    width: 48px;
    height: 48px;
    background-image: url(images/icon_btn-2.webp);
    background-color: #FFF;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 24px;
    border-radius: 32px;
    transition: all 0.2s ease-in-out;
}

@media screen and (min-width: 1920px) {
    .aboutUs__widget-1--btn-icon {
        width: 56px;
        height: 56px;
    }
}

.aboutUs__widget-2 {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.aboutUs__widget-2--item-1--text {
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: #2D2D2D;
    letter-spacing: -0.5px;
    line-height: 140%;
    text-align: center;
}

@media screen and (min-width: 1194px) {
    .aboutUs__widget-2--item-1--text {
        font-size: 28px;
    }
}

@media screen and (min-width: 1920px) {
    .aboutUs__widget-2--item-1--text {
        font-size: 36px;
    }
}


.aboutUs__widget-2--item-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

@media screen and (min-width: 1194px) {
    .aboutUs__widget-2--item-2 {
        flex-direction: row;
        justify-content: center;
        gap: 16px;
    }
}

.aboutUs__widget-2--item-2-btn-1 {
    background-color: #FFF;
    border: none;
    padding: 12px 16px;
    border-radius: 16px;
    gap: 10px;
    display: flex;
    opacity: 0;
    align-items: center;

    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: #2D2D2D;
    letter-spacing: -0.5px;
    line-height: 100%;
    text-align: center;
    transform: rotate(6deg) translateY(1000%);
}

@media screen and (min-width: 1194px) {
    .aboutUs__widget-2--item-2-btn-1 {
        font-size: 28px;
    }
}

@media screen and (min-width: 1920px) {
    .aboutUs__widget-2--item-2-btn-1 {
        font-size: 36px;
    }
}

.aboutUs__widget-2--item-2-btn-2 {
    background-color: #FFF;
    border: none;
    padding: 12px 16px;
    border-radius: 16px;
    gap: 10px;
    display: flex;
    opacity: 0;
    align-items: center;

    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: #2D2D2D;
    letter-spacing: -0.5px;
    line-height: 100%;
    text-align: center;
    transform: rotate(-4deg) translateY(1000%);
}

@media screen and (min-width: 1194px) {
    .aboutUs__widget-2--item-2-btn-2 {
        font-size: 28px;
    }
}

@media screen and (min-width: 1920px) {
    .aboutUs__widget-2--item-2-btn-2 {
        font-size: 36px;
    }
}

.aboutUs__widget-2--item-2-heart {
    width: 30px;
    height: 30px;
    background-image: url(images/heart.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.aboutUs__widget-2--item-2-chair {
    width: 30px;
    height: 30px;
    background-image: url(images/chair.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.aboutUs__widget-3 {
    display: flex;
    flex-direction: column;
    padding: 0 30px;
    gap: 20px;
}

@media screen and (min-width: 1194px) {
    .aboutUs__widget-3 {
        padding: 0 111px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

.aboutUs__widget-3--item {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

@media screen and (min-width: 1194px) {
    .aboutUs__widget-3--item {
        max-width: 300px;
    }
}

@media screen and (min-width: 1920px) {
    .aboutUs__widget-3--item {
        max-width: 320px;
    }
}

.aboutUs__widget-3--people {
    background-color: #FFF;
    background-image: url(images/people.webp);
    border-radius: 16px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 45px;
    width: 90px;
    height: 100px;
}

.aboutUs__widget-3--visability {
    background-color: #FFF;
    background-image: url(images/visability.webp);
    border-radius: 16px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 45px;
    width: 90px;
    height: 100px;
}

.aboutUs__widget-3--verified {
    background-color: #FFF;
    background-image: url(images/verified.webp);
    border-radius: 16px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 45px;
    width: 90px;
    height: 100px;
}

.aboutUs__widget-3--airline_seat {
    background-color: #FFF;
    background-image: url(images/airline_seat.webp);
    border-radius: 16px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 45px;
    width: 90px;
    height: 100px;
}

.aboutUs__widget-3--case {
    background-color: #FFF;
    background-image: url(images/case.webp);
    border-radius: 16px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 45px;
    width: 90px;
    height: 100px;
}

.aboutUs__widget-3--card {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.aboutUs__widget-3-header {
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #080C09;
    letter-spacing: -1%;
    line-height: 130%;
    text-align: center;
}

.aboutUs__widget-3-text {
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #2D2D2D99;
    line-height: 150%;
    text-align: center;
}

.aboutUs__widget-3-text-underline {
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #2D2D2D99;
    line-height: 150%;
    text-align: center;
    text-decoration: underline;
}

.ourWorks__content {
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 0 auto;
    max-width: 360px;
    overflow: hidden;
    position: relative;
}

@media screen and (min-width: 1194px) {
    .ourWorks__content {
        max-width: 1162px;
        padding: 60px 0;
    }
}

.ourWorks__header {
    font-family: "Work Sans", sans-serif;
    font-weight: 500;
    font-size: 26px;
    line-height: 100%;
    letter-spacing: -0.5%;
    text-align: center;
    color: #2D2D2D;
}

@media screen and (min-width: 1920px) {
    .ourWorks__header {
        font-size: 36px;
    }
}

.case__counter {
    padding: 15px 15px;
    white-space: nowrap;
    display: flex;
    gap: 4px;

    transition: all 0.5s ease-in-out;
}

.case__counter-btn {
    background-color: #F6F6F6;
    border: none;
    border-radius: 28px;
    padding: 8px 16px;

    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -2%;
    color: #2D2D2D;

    transition: all 0.5s ease-in-out;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent; 
    cursor: pointer;
}

.case__counter-btn_active {
    background-color: #5CC2FF;
    color: #FFFFFF;
}

.case__items {
    display: flex;
    white-space: nowrap;
    transition: all 0.5s ease-in-out;
}

.case__items--item {
    display: flex;
    gap: 16px;
    padding: 15px;
}

.case__images--img-1 {
    width: 157px;
    height: 254px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    position: relative;
    backdrop-filter: blur(30px);
    overflow: hidden;
}

.case__image--blur {
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(20px);
    transition: opacity 0.3s ease-in-out;
    align-items: center;
    justify-content: center;
}

.case__image--blur::after {
    content: "";
    width: 24px;
    height: 24px;
    mask-image: url(images/visibility_off.svg);
    background-color: #fff;
}

.case__image--blur:hover {
    opacity: 0;
}

@media screen and (min-width: 1194px) {
    .case__images--img-1 {
        width: 337px;
        height: 264px;
    }
}

.case__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case__images--img-2 {
    width: 157px;
    height: 254px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

@media screen and (min-width: 1194px) {
    .case__images--img-2 {
        width: 337px;
        height: 264px;
    }
}

.case__image-before {
    display: flex;
    padding: 8px 36px;
    background-color: #FFF;
    border-radius: 15px;
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 2;

    font-family: "Work Sans", sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #2D2D2D;
}

.case__image-after {
    display: flex;
    padding: 8px 36px;
    background-color: #FFF;
    border-radius: 15px;
    position: absolute;
    bottom: 10px;
    right: 10px;

    font-family: "Work Sans", sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #2D2D2D;
}

.case__description__items {
    display: flex;
    transition: all 0.5s ease-in-out;
}

@media screen and (min-width: 1194px) {
    .case__description__items {
        max-width: 426px;
    }
}

.case__disctiption--item {
    padding: 15px;
    display: flex;
    flex-direction: column;
    min-width: 361px;   
    gap: 16px;
}

@media screen and (min-width: 1194px) {
    .case__disctiption--item {
        min-width: 426px;
    }
}

.case__description--header {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.case__description--head-text {
    font-family: "Work Sans", sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #2D2D2D;
}

.case__description--problem-text {
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color:#747474;
}

.case__description--decision {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.case__description--decision-text {
    font-family: "Work Sans", sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #2D2D2D;
}

.case__description--decision-text-strong {
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #2D2D2D;
}

.case__description--decision-text-strong_blue {
    font-family: "Work Sans", sans-serif;
    font-weight: 900;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #5CC2FF;
}

.case__descriprion--result {
    padding: 20px 15px;
    background-color: #5CC2FF;
    border-radius: 15px;
}

.case__description--result-text {
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFF;
}

@media screen and (min-width: 1194px) {
    .case__description--result-text {
        font-size: 18px;
    }
}

.case__description--result-text_bold {
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFF;
}

@media screen and (min-width: 1194px) {
    .case__description--result-text_bold {
        font-size: 18px;
        
    }
}

.case__scroller {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.case__scroller-btn_back {
    padding: 8px;
    border: none;
    background-color: #F6F6F699;
    border-radius: 28px;
    transform: rotate(180deg);
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent; 
    cursor: pointer;
}

.case__scroller-btn_back:hover {
    .case__scroller-btn-icon {
        background-color: #CEE9F9;
    }
}

.case__scroller-btn_back:active {
    .case__scroller-btn-icon {
        background-color: #5CC2FF;
        background-image: url(images/icon_btn_active.webp);
    }
}

.case__scroller-btn_next {
    padding: 8px;
    padding-left: 16px;
    display: flex;
    gap: 6px;
    border: none;
    align-items: center;
    background-color: #F6F6F699;
    border-radius: 28px;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent; 
    cursor: pointer;

    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -2%;
    vertical-align: middle;
    color: #2D2D2D;
}

.case__scroller-btn_next:hover {
    .case__scroller-btn-icon {
        background-color: #CEE9F9;
    }
}

.case__scroller-btn_next:active {
    .case__scroller-btn-icon {
        background-color: #5CC2FF;
        background-image: url(images/icon_btn_active.webp);
    }
}

.case__scroller-btn-icon {
    width: 42px;
    height: 30px;
    background-color: #FFF;
    background-image: url(images/icon_btn.webp);
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 16px;
    background-size: 18px;
    transition: all 0.5s ease-in-out;
}

.case__slider-back_btn {
    width: 150px;
    height: 650px;
    background-color: #22833f00;
    border: solid 2px black; 
    position: absolute;
    left: 0;
    top: 168px;
    z-index: 999;
    cursor: pointer;
    opacity: 0;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;

    display: none;
}

@media screen and (min-width: 1194px) {
    .case__slider-back_btn {
        height: 280px;
        width: 400px;
    }
}

.case__slider-next_btn {
    display: none;
    width: 150px;
    height: 650px;
    background-color: #22833f00;
    border: solid 2px black;
    margin-left: auto;
    position: absolute;
    right: 0;
    cursor: pointer;
    top: 168px;
    z-index: 999;
    opacity: 0;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent; 
}

@media screen and (min-width: 1194px) {
    .case__slider-next_btn {
        height: 280px;
        width: 400px;
    }
}

@media screen and (min-width: 1194px) {
    .case__container {
        display: flex;
        flex-direction: row;
        gap: 16px;
    }
}

@media screen and (min-width: 1194px) {
    .case__container--item-1 {
        overflow: hidden;
        max-width: 720px;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
}

@media screen and (min-width: 1194px) {
    .case__container--item-2 {
        overflow: hidden;
    }
}

.diplomas {
    background-color: #E8E9EB;
}

.diplomas__content {
    padding-top: 60px;
    padding-bottom: 338px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;

    transition: all 0.5s ease-in-out;
}

@media screen and (min-width: 1194px) {
    .diplomas__content {
        padding-bottom: 120px;
        max-width: 1178px;
    }
}

.diplomas__header {
    text-align: center;
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 26px;
    line-height: 100%;
    letter-spacing: -0.5%;
}

@media screen and (min-width: 1194px) {
    .diplomas__header {
        font-size: 36px;
    }
}

.diplomas__container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 455px;
}

@media screen and (min-width: 1194px) {
    .diplomas__container {
        padding-top: 236px;
        max-width: 790px;
    }
}

.diplomas__container--items {
    display: flex;
    overflow: scroll;
    scrollbar-width: none;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
}

.diplomas__container--item {
    padding: 0 10px;
}

.diplom {
    height: 211px;
    border-radius: 8px;
}

@media screen and (min-width: 1194px) {
    .diplom {
        height: 265px;
    }
}

.diplomas__nav {
    display: flex;
    gap: 16px;
    z-index: 4;
}

.diplomas__nav__container {
    display: flex;
    gap: 16px;
    margin: 0 auto;
}

.diplomas__nav-btn_back {
    padding: 8px;
    border: none;
    background-color: #F6F6F699;
    border-radius: 28px;
    transform: rotate(180deg);
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent; 
    cursor: pointer;
}

.diplomas__nav-btn_back:hover {
    .case__scroller-btn-icon {
        background-color: #CEE9F9;
    }
}

.diplomas__nav-btn_back:active {
    .case__scroller-btn-icon {
        background-color: #5CC2FF;
        background-image: url(images/icon_btn_active.webp);
    }
}

.diplomas__nav-btn_next {
    padding: 8px;
    padding-left: 16px;
    display: flex;
    gap: 6px;
    border: none;
    align-items: center;
    background-color: #F6F6F699;
    border-radius: 28px;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent; 
    cursor: pointer;

    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -2%;
    vertical-align: middle;
    color: #2D2D2D;
}

.diplomas__nav-btn_next:hover {
    .case__scroller-btn-icon {
        background-color: #CEE9F9;
    }
}

.diplomas__nav-btn_next:active {
    .case__scroller-btn-icon {
        background-color: #5CC2FF;
        background-image: url(images/icon_btn_active.webp);
    }
}

.diplomas__widget {
    background-color: #99FFD3;
    padding: 12px 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 278px;
    border-radius: 16px;
    box-shadow: 0px 8px 16px 0px #00000026;
}

@media screen and (min-width: 1194px) {
    .diplomas__widget {
        max-width: 300px;
    }
}

.diplomas__widget__container {
    max-width: 465px;
    width: 100%;
    position: relative;
    z-index: 2;
}

@media screen and (min-width: 1194px) {
    .diplomas__widget__container {
        position: absolute;
        right: -15px;
        top: 169px;
        max-width: 575px;
    }
}

.diplomas__nizami {
    position: absolute;
    width: 288px;
    height: 419px;
    background-image: url(images/nizami1.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 3;
    right: -20px;
    top: 0px;
}

@media screen and (min-width: 1194px) {
    .diplomas__nizami {
        width: 575px;
        height: 641px;
        top: -70px;
        right: -70px;
    }
}

.questions {
    background-color: #E8E9EB;
}

.questions__content {
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media screen and (min-width: 1194px) {
    .questions__content {
        padding: 60px 0;
    }
}

.questions__header {
    text-align: center;
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 26px;
    line-height: 100%;
    letter-spacing: -0.5px;
    vertical-align: middle;
}

@media screen and (min-width: 1194px) {
    .questions__header {
        font-size: 36px;
    }
}

.questions__container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media screen and (min-width: 1194px) {
    .questions__container {
        max-width: 868px;
        margin: 0 auto;
    }
}

.questions__container--item {
    padding: 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    border-radius: 28px;
    justify-items: center;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.questions__container--item_active {
    box-shadow: 0px 8px 16px 0px #00000026;
}

.question-number {
    margin-right: 5px;
}

.question--item-1 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.questions__container--text {
    display: flex;
    gap: 5px;
}

.question-item-1--text {
    font-family: "Work Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -2%;
    vertical-align: middle;
    color: #2D2D2D;
}

@media screen and (min-width: 1194px) {
    .question-item-1--text {
        font-size: 18px;
    }
}

.question--item-2 {
    display: flex;
    flex-direction: column;
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    vertical-align: middle;
    color: #2D2D2D99;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.question--item-2 ul {
    list-style-position: inside;
}

@media screen and (min-width: 1194px) {
    .question--item-2 {
        font-size: 20px;
    }
}

.question--item-2_visible {
    opacity: 1;
    max-height: 500px;
    margin-top: 20px;
}

.question--btn {
    background-color: #FFFFFF;
    border: 1px #CEE9F9 solid;
    border-radius: 16px;
    background-image: url(images/arrow_down.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 24px;
    max-width: 56px;
    width: 100%;
    height: 44px;
    margin: auto 0;
    margin-left: auto;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent; 
}

.question--btn_active {
    background-color: #5CC2FF;
    background-image: url(images/arrow_up.webp);
    background-position: center center;
}

.reviews {
    background-image: url(images/bg-1.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.reviews__content {
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media screen and (min-width: 1194px) {
    .reviews__content {
        max-width: 1162px;
        padding: 60px 0;
        margin: 0 auto;
    }
}

@media screen and (min-width: 1920px) {
    .reviews__content {
        max-width: 1640px;
        margin: 0 auto;
    }
}

.rewiews__evaluations {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media screen and (min-width: 1194px) {
    .rewiews__evaluations {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

.rewiews__evalutions--item {
    display: flex;
    justify-content: space-between;
    background-color: #FFFFFF;
    border-radius: 16px;
}

@media screen and (min-width: 1194px) {
    .rewiews__evalutions--item {
        justify-content: flex-start;
    }
}

.rewiews--logo {
    display: flex;
    align-items: center;
    padding: 0 16px;
}

.rewiews--logo-pro_doctorov {
    height: 48px;
}

.rewiews--logo-32top {
    height: 22px;
    margin: 12px 0;
}

.rewiews--logo-flamp {
    height: 32px;
    margin: 7px 0;
    border-radius: 6px;
}

.rewiews--logo-gmaps {
    height: 34px;
    margin: 6px 0;
}

.rewiews--logo-yandex,
.rewiews--logo-2gis {
    height: 32px;
    margin: 7px 0;
}

.rewiews--evalution {
    display: flex;
    gap: 4px;
    align-items: center;
}

.rewiews--evalution-star {
    height: 24px;
}

.rewiews--evalution-text {
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    vertical-align: middle;
    margin-right: 16px;
}

.reviews__header {
    text-align: center;
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 26px;
    line-height: 100%;
    letter-spacing: -0.5%;
}

@media screen and (min-width: 1194px) {
    .reviews__header {
        font-size: 36px;
    }
}

.rewiews__items {
    display: flex;
    overflow: scroll;
    gap: 30px;
    scrollbar-width: none;
    max-width: 361px;
    margin: 0 auto;
}

@media screen and (min-width: 1194px) {
    .rewiews__items {
        max-width: 1143px;
    }
}

@media screen and (min-width: 1920px) {
    .rewiews__items {
        max-width: 1534px;
    }
}

.rewiews__item {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 15px;
    background-color: #FFFFFF;
    border-radius: 20px;
    min-width: 361px;
}

.rewiews__item--head {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rewiews__item--name {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rewiews--icon {
    height: 22px;
}

.rewiews--name-text {
    font-family: "Work Sans", sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -0.5%;
    vertical-align: middle;
    color: #464646;
}

.rewiews__item--data {
    display: flex;
    flex-direction: column;
}

.rewiews--data {
    font-family: "Work Sans", sans-serif;
    font-weight: 600;
    font-size: 13px;
    line-height: 32px;
    letter-spacing: -4%;
    vertical-align: middle;
    color: #D7D7D7;
}

.rewiews--data-evalution {
    display: flex;
    gap: 8px;
    align-items: center;
}

.rewiews--data-star {
    height: 24px;
}

.rewiews--data-text {
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
    font-size: 20px;
    vertical-align: middle;
}

.rewiews__item-text {
    font-family: "Work Sans";
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0px;
    vertical-align: middle;
    color: #747474;
}

.rewiews__item-btn {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    padding-left: 16px;
    background-color: #F6F6F699;
    border-radius: 28px;
    border: none;

    font-family: "Work Sans";
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: -2%;
    vertical-align: middle;
    color: #2D2D2D;
}

.rewiews--btn-icon {
    width: 42px;
    height: 30px;
    background-image: url(images/icon_btn.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 24px;
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 6px 12px;
}

.rewiews__nav {
    display: flex;
    gap: 16px;
    z-index: 2;
}

.rewiews__nav__container {
    display: flex;
    gap: 16px;
    margin: 0 auto;
}

.rewiews__nav-btn_back {
    padding: 8px;
    border: none;
    background-color: #F6F6F699;
    border-radius: 28px;
    transform: rotate(180deg);
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent; 
    cursor: pointer;
}

.rewiews__nav-btn_back:hover {
    .case__scroller-btn-icon {
        background-color: #CEE9F9;
    }
}

.rewiews__nav-btn_back:active {
    .case__scroller-btn-icon {
        background-color: #5CC2FF;
        background-image: url(images/icon_btn_active.webp);
    }
}

.rewiews__nav-btn_next {
    padding: 8px;
    padding-left: 16px;
    display: flex;
    gap: 6px;
    border: none;
    align-items: center;
    background-color: #F6F6F699;
    border-radius: 28px;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent; 
    cursor: pointer;

    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -2%;
    vertical-align: middle;
    color: #2D2D2D;
}

.rewiews__nav-btn_next:hover {
    .case__scroller-btn-icon {
        background-color: #CEE9F9;
    }
}

.rewiews__nav-btn_next:active {
    .case__scroller-btn-icon {
        background-color: #5CC2FF;
        background-image: url(images/icon_btn_active.webp);
    }
}

.map--item {
    overflow: hidden;
}

@media screen and (min-width: 1194px) {
    .map--item {
        display: none;
    }
}

.map--item-desktop {
    display: none;
    width: 100%;
}

@media screen and (min-width: 1194px) {
    .map--item-desktop {
        display: block;
    }
}


.map__content {
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 42px;
    margin: 0 auto;
}

@media screen and (min-width: 1194px) {
    .map__content {
        flex-direction: row;
        padding: 30px 20px;
        max-width: 1160px;
    }
}

.map__application {
    padding: 30px 16px;
    background-color: #FFFFFFCC;
    box-shadow: 0 4px 15px #00000040;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 36px;
    /* align-items: center; */
    position: relative;
}

.map__title {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.map__title--text-1 {
    font-family: "Work Sans", sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: -0.5px;
    text-align: center;
    vertical-align: middle;
    color: #2D2D2D;
}

.map__title--text-2 {
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: -0.5px;
    text-align: center;
    vertical-align: middle;
    color: #2D2D2D;
}

.map__item-2 {
    display: flex;
    justify-content: space-between;
}

.map__adress {
    text-wrap: nowrap;
}

.map__adress-count {
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.map__adress-adresses {
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.map__times--tiem {
    display: flex;
    flex-direction: column;
}

.map__time {
    display: flex;
    flex-direction: column;
}

.map__days {
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.map__times {
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.map__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.map__info--name {
    display: flex;
    flex-direction: column;
}

.map__info--phone {
    display: flex;
    flex-direction: column;
}

.map__info--name-text {
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0%;
    vertical-align: middle;
}

#map__info--name-input {
    
    background-color: #CEE9F926;
    border-radius: 16px;
    border: 2px solid #CEE9F9;
    padding: 16px;
    padding-left: 24px;
    font-family: "Work Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.5px;
    vertical-align: middle;
    color: #2D2D2D;
    transition: all 0.2s ease;
}

@media screen and (min-width: 1194px) {
    
    #map__info--name-input {
            font-size: 20px;
            padding: 24px;
            border-radius: 28px;
        }
}


#map__info--name-input:focus {
    color: #2D2D2D;
    font-weight: 700;
    outline: none;
}

#map__info--name-input-2 {
    background-color: #F6F6F6;
    border-radius: 16px;
    border: 2px solid #F6F6F6;
    padding: 16px;
    transition: all 0.2s ease-in-out;
    
    font-family: "Work Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.5px;
    vertical-align: middle;
    color: #747474;
}

#map__info--name-input-2:focus {
    color: #2D2D2D;
    font-weight: 700;
    outline: none;
}

.map__info--phone-text {
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0%;
    vertical-align: middle;
    transition: all 0.2s ease-in-out;
}

#map__info--phone-input {
    background-color: #F6F6F6;
    border-radius: 16px;
    border: 2px solid #F6F6F6;
    padding: 16px;
    transition: all 0.2s ease-in-out;

    font-family: "Work Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.5px;
    vertical-align: middle;
    color: #747474;
}

.invalidInput {
    border: 2px red solid;
}

#map__info--phone-input:focus {
    color: #2D2D2D;
    font-weight: 700;
    outline: none;
}

.map__consent {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.map__consent--btn {
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #CEE9F9;
    background: linear-gradient(to right, #5CC2FF 50%, #CEE9F9 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    border: none;
    border-radius: 28px;
    gap: 8px;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
    transition: all 0.2s ease;
    cursor: pointer;

    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.map__consent--btn:hover {
    background-position: left bottom;
    .map__btn-icon {
        transform: rotate(45deg);
    }
}

.map__btn-icon {
    width: 24px;
    height: 24px;
    background-color: #FFFFFF;
    background-image: url(images/icon_btn-2.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 16px;
    border-radius: 32px;
    transition: all 0.2s ease-in-out;
}

.map__consent--item {
    display: flex;
    gap: 15px;
}

.map__consent--text {
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #2D2D2D;
}

.footer {
    background-color: #5CC2FF;
    padding: 30px 0;
}

.footer__content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
}

@media screen and (min-width: 1920px) {
    .footer__content {
        max-width: 1662px;
        margin: 0 auto;
        gap: 80px;
    }
}

.footer__logo {
    width: 200px;
    height: 46px;
}

@media screen and (min-width: 1920px) {
    .footer__logo {
        width: 250px;
        height: 60px;
    }
}

.footer__application {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
} 

@media screen and (min-width: 1194px) {
    .footer__application {
        flex-direction: row;
        justify-content: space-between;
        gap: 10px;
        width: 100%;
    }
}

.footer__aplication--time {
    display: flex;
    gap: 6px;
}

.footer__nav-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style-type: none;
    align-items: center;
}

@media screen and (min-width: 1194px) {
    .footer__nav-list {
        flex-direction: row;
    }
}

@media screen and (min-width: 1920px) {
    .footer__nav-list {
        gap: 30px;
    }
}

.footer__nav-btn {
    background-color:  #5CC2FF;
    border: none;
    color: #FFFFFF;

    font-family: "Work Sans", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -2%;
    vertical-align: middle;
    cursor: pointer;
}

@media screen and (min-width: 1920px) {
    .footer__nav-btn {
        font-size: 18px;
        font-weight: 600;
        letter-spacing: 0%;
    }
}

.footer__nav-item {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
}

.footer--time-day {
    font-family: "Work Sans", sans-serif;
    font-weight: 300;
    font-size: 11px;
    line-height: 18px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #FFFFFF;
}

@media screen and (min-width: 1920px) {
    .footer--time-day {
        font-size: 14px;
    }
}

.footer--time-number {
    font-family: "Work Sans", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #FFFFFF;
}

@media screen and (min-width: 1920px) {
    .footer--time-number {
        font-size: 14px;
    }
}

.footer__application-btn {
    background: linear-gradient(to right, #96d8ff 50%, #CEE9F9 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    padding: 10px 88px;
    padding-left: 96px;
    display: flex;
    justify-content: center;
    gap: 16px;
    align-items: center;
    border-radius: 28px;
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
    transition: all 0.2s ease;

    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0%;
    vertical-align: middle;

    text-decoration: none;
    color: #2D2D2D;
}

.footer__application-btn:hover {
    background-position: left bottom;
    .footer__aplication--btn-icon {
        transform: rotate(45deg);
    }
}

@media screen and (min-width: 1920px) {
    .footer__application-btn {
        font-size: 16px;
    }
}

.footer__aplication--btn-icon {
    background-image: url(images/icon_btn-2.webp);
    background-color: #FFFFFF;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 24px;
    width: 48px;
    height: 48px;
    border-radius: 32px;
    transition: all 0.2s ease-in-out;
}

.footer__license {
    font-size: 16px;
    color: #fff;
    font-family: "Roboto", sans-serif;

}

.footer__warning-text {
    color: #FFFFFF99;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}

@media screen and (min-width: 1194px) {
    .footer__warning-text {
        font-size: 24px;
    }
}

@media screen and (min-width: 1920px) {
    .footer__warning-text {
        font-size: 26px;
    }
}

.diplomas__open {
    width: 100dvw;
    height: 100dvh;
    background-color:#FFFFFFCC;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.diplomas__close {
    display: none;
}

.diplomas__open__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.diplomas__open__container {
    border-radius: 28px;
    background-color: #FFFFFF;
    box-shadow: 0px 16px 32px 0px #00000029;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.diplomas__open--btn {
    width: 48px;
    height: 48px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 24px;
    background-color: #FFFFFF;
    background-image: url(images/close_btn.webp);
    border: none;
    border-radius: 16px;
    display: flex;
    margin-left: auto;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
}

@media screen and (max-width: 500px) {
    .diplomas__open--btn {
        width: 30px;
        height: 30px;
        background-size: 20px;
        border-radius: 8px;
    }
}

.diplomas__open--btn:hover {
    transform: rotate(90deg);
    background-color: rgba(255, 82, 82, 0.459);
}

.diplomas__open--diplom {
    max-height: 70dvh;
    max-width: 80dvw;
    border-radius: 22px;
}

.diplomas__open__nav {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.diplomas__open__nav-btn_back {
    padding: 8px;
    border: none;
    background-color: #F6F6F699;
    border-radius: 28px;
    transform: rotate(180deg);
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent; 
    cursor: pointer;
}

.diplomas__open__nav-btn_back:hover {
    .case__scroller-btn-icon {
        background-color: #CEE9F9;
    }
}

.diplomas__open__nav-btn_back:active {
    .case__scroller-btn-icon {
        background-color: #5CC2FF;
        background-image: url(images/icon_btn_active.webp);
    }
}

.diplomas__open__nav-btn_next {
    padding: 8px;
    padding-left: 16px;
    display: flex;
    gap: 6px;
    border: none;
    align-items: center;
    background-color: #F6F6F699;
    border-radius: 28px;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent; 
    cursor: pointer;
}

.diplomas__open__nav-btn_next:hover {
    .case__scroller-btn-icon {
        background-color: #CEE9F9;
    }
}

.diplomas__open__nav-btn_next:active {
    .case__scroller-btn-icon {
        background-color: #5CC2FF;
        background-image: url(images/icon_btn_active.webp);
    }
}

.diplomas__open--item {
    transition: all 0.3s ease-in-out;
}

.map__checkbox {
    display: flex;
    align-items: center;
}

.map__checkbox--input {
    opacity: 0;
    z-index: 2;
    cursor: pointer;
    width: 36px;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent; 
}

.map__checkbox--slider {
    position: absolute;
    width: 36px;
    height: 20px;
    background: white;
    border: 1px solid #4b4b4b99;
    border-radius: 34px;
    transition: all 0.3s ease;
    z-index: 1;
}

.map__checkbox--slider::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    background: #4b4b4b99;
    border-radius: 50%;
    top: 1px;
    left: 1px;
    transition: all 0.3s ease;
}

.map__checkbox--input:checked + .map__checkbox--slider {
    background: #5CC2FF;
    border-color: #5CC2FF;
}

.map__checkbox--input:checked + .map__checkbox--slider::before {
    transform: translateX(16px);
    background: white;
}

.quiz {
    background-color: #5CC2FF;
}

.quiz__content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 32px 0;
    position: relative;
    align-items: center;
}

@media screen and (min-width: 1194px) {
    .quiz__content {
        padding: 60px 0;
    }
}

.popup__warning {
    border-radius: 16px;
    background-color: #FFFFFF;
    display: flex;
    gap: 10px;
    padding: 12px 16px;
    z-index: 5;
    position: absolute;
    align-items: center;
    box-shadow: 0px 4px 16px 0px #00000040;
    margin: 0 auto;
    bottom: 255px;
    z-index: -1;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    justify-content: center;
    

    font-family: "Work Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.5px;
    text-align: center;
    vertical-align: middle;
    color: #2D2D2D;
}

@media screen and (min-width: 1194px) {
    .popup__warning {
        font-size: 20px;
    }
}

.loading {
    display: none !important;
}

.popup__warning_active {
    transform: translateY(-50px);
    opacity: 1;
    z-index: 1;
}

.warning_icon {
    width: 20px;
    height: 20px;
    background-image: url(images/warning.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.quiz__widgets {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 5px;
    padding-bottom: 50px;
    position: relative;
}

@media screen and (min-width: 1194px) {
    .quiz__widgets {
        padding-bottom: 68px;
    }
}

.quiz--widget-1 {
    padding: 8px 12px;
    background-color: #FFFFFF;
    border-radius: 16px;
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: rotate(4deg) translateY(1000%);

    font-family: "Work Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.5px;
    color: #2D2D2D;
}

@media screen and (min-width: 1194px) {
    .quiz--widget-1 {
        font-size: 28px;
    }
}

.quiz--widget-1-icon {
    width: 28px;
    height: 28px;
    background-image: url(images/money.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

@media screen and (min-width: 1194px) {
    .quiz--widget-1-icon {
        width: 37px;
        height: 37px;
    }
}

.quiz--widget-2 {
    padding: 8px 12px;
    background-color: #FFFFFF;
    border-radius: 16px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 8px 15px 0px #00000029;
    opacity: 0;
    transform: rotate(-4deg) translateY(1000%);
    z-index: 2;

    font-family: "Work Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.5px;
    color: #2D2D2D;
}

@media screen and (min-width: 1194px) {
    .quiz--widget-2 {
        font-size: 28px;
    }
}

.quiz--widget-2-icon {
    width: 28px;
    height: 28px;
    background-image: url(images/chair.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

@media screen and (min-width: 1194px) {
    .quiz--widget-2-icon {
        width: 37px;
        height: 37px;
    }
}

.quiz--widget-3 {
    padding: 12px 16px;
    background-color: #FFFF38;
    border-radius: 16px;
    display: flex;
    gap: 10px;
    justify-content: center;
    position: absolute;
    opacity: 0;
    transform: translateY(1000%);
    bottom: 0;
    align-items: center;
}

.quiz--widget-3-icon {
    width: 37px;
    height: 37px;
    background-image: url(images/gift.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

@media screen and (min-width: 1194px) {
    .quiz--widget-3-icon {
        width: 37px;
        height: 37px;
    }
}

.quiz--widget-3_text {
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: -4%;
    vertical-align: middle;
    color: #8B7603;
}

@media screen and (min-width: 1194px) {
    .quiz--widget-3_text {
        font-size: 24px;
    }
}

.quiz--widget-3-text-bold {
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: -1%;
    vertical-align: middle;
    color: #8B7603;
}

@media screen and (min-width: 1194px) {
    .quiz--widget-3-text-bold {
        font-size: 16px;
    }
}

.quiz__steps {
    display: flex;
    margin: 0 auto;
}

.quiz__steps--item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    background-color: #ffffff00;
    border: none;
    border-radius: 16px;
    justify-content: space-between;
    height: 42px;
    width: 57px;
    position: relative;
    text-wrap: nowrap;
}

.quiz__steps--text {
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 18px;
    position: absolute;

    letter-spacing: 0%;
    vertical-align: middle;
    color: #FFFFFF;
    opacity: 0;
    height: 0;
    transition: all 0.3s ease-in-out;
    transform: translateY(20px);
}

.quiz__steps--text-active {
    opacity: 1;
    transform: translateY(5px);
}

.quiz__steps--btn {
    width: 42px;
    height: 8px;
    background-color: #FFFFFF;
    opacity: 40%;
    border-radius: 16px;
    margin-top: auto;
    transition: all 0.3s ease-in-out;
}

.quiz__steps--btn-active {
    opacity: 1;
}

.quiz__steps--perform {
    background-image: url(images/checkOn.webp);
    background-position: center center;
    background-repeat: no-repeat;
    width: 24px;
    height: 0px;
    opacity: 0;
    background-size: 18px;
    border-radius: 60px;
    background-color: #FFFFFF26;
    transform: translateY(40px);
    transition: all 0.3s ease-in-out;
    position: absolute;
}

.quiz__steps--perform-active {
    height: 24px;
    opacity: 1;
    transform: translateY(0);
}

.quiz__questions {
    display: flex;
    overflow: hidden;
    max-width: 360px;
    margin: 0 auto;
}

@media screen and (min-width: 1194px) {
    .quiz__questions {
        max-width: 1162px;
        gap: 32px;
    }
}

.quiz__question-text {
    padding: 0 16px;

    text-align: center;
    font-family: "Work Sans", sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -0.5px;
    text-align: center;
    vertical-align: middle;
    color: #FFFFFF;
}

@media screen and (min-width: 1194px) {
    .quiz__question-text {
        font-size: 36px;
    }
}

.quiz__question-items {
    display: flex;
    flex-wrap: wrap;
    width: 360px;
    margin: 0 auto;   
}

@media screen and (min-width: 1194px) {
    .quiz__question-items {
        flex-wrap: nowrap;
        width: 1162px;
        gap: 16px;
        justify-content: center;
    }
}

.quiz__question__container {
    max-width: 360px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media screen and (min-width: 1194px) {
    .quiz__question__container {
        max-width: 1162px;
        gap: 32px;
    }
}

.quiz__question--item {
    display: flex;
    gap: 10px;
    padding: 10px 10px;
}

@media screen and (min-width: 1194px) {
    .quiz__question--item {
        padding: 0;
    }
}

.quiz__card {
    width: 160px;
    height: 200px;
    background-color: #FFFFFF;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
}

.quiz__card:hover {
    background-color: #ffffffc9;
}

@media screen and (min-width: 1194px) {
    .quiz__card {
        width: 278px;
        height: 278px;

    }
}

.quiz__card-dontKnow {
    width: 160px;
    height: 200px;
    background-color: #FFFFFFCC;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
}

.quiz__card-dontKnow:hover {
    background-color: #ffffff9c;
}

@media screen and (min-width: 1194px) {
    .quiz__card-dontKnow {
        width: 278px;
        height: 278px;
        
    }
}

.quiz__card-text {
    margin-top: auto;
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: -1%;
    text-align: center;
}

@media screen and (min-width: 1194px) {
    .quiz__card-text {
        font-size: 24px;
    }
}

.quiz__card-img {
    width: 127px;
}

.quiz__card-img--connect {
    max-width: 100px;
    width: 100%;
}

@media screen and (min-width: 1194px) {
    .quiz__card-img {
        width: 200px;
    }   
}


/* From Uiverse.io by risabbir */ 
.checkbox-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-left: auto;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent; 
}

.checkbox {
  display: none;
}

.checkbox-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.checkbox-flip {
  width: 42px;
  height: 30px;
  perspective: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: transform 0.3s ease;
}

.checkbox-front,
.checkbox-back {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  backface-visibility: hidden;
  transition: transform 0.3s ease;
}

.checkbox-front {
  background-color: #FFFFFF;
  border: 2px solid #CEE9F9;
  transform: rotateY(0deg);
}

.checkbox-back {
    background-color: #5CC2FF;
    transform: rotateY(180deg);
    border: 2px solid #5CC2FF;
}

.checkbox-wrapper:hover .checkbox-flip {
  transform: scale(1.1);
  transition: transform 0.4s ease-out;
}

.checkbox:checked + .checkbox-label .checkbox-front {
  transform: rotateY(180deg);
}

.checkbox:checked + .checkbox-label .checkbox-back {
  transform: rotateY(0deg);
}

.checkbox:focus + .checkbox-label .checkbox-flip {
  box-shadow:
    0 0 15px rgba(54, 181, 73, 0.7),
    0 0 20px rgba(0, 193, 212, 0.4);
    transition: box-shadow 0.3s ease;
}

.icon-path {
    stroke: #5CC2FF;
    stroke-width: 2;
    fill: transparent;
}

.icon-path-2 {
    stroke: #FFFFFF;
    stroke-width: 2;
    fill: transparent;
}

.quiz__card--radio-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 30px;
    cursor: pointer;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    perspective: 100px;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent; 
    margin-left: auto;
}

.quiz__card--radio-btn-input {
    position: absolute;
    opacity: 0;
    width: 120px;
    height: 170px;
    top: 0;
    right: 0;
    cursor: pointer;
}

@media screen and (min-width: 1194px) {
    .quiz__card--radio-btn-input {
        width: 250px;
        height: 250px;
    }
}

.quiz__card--radio-btn-icon {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #CEE9F9;
    border-radius: 16px;
    background: #FFFFFF;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.quiz__card--radio-btn-check {
    position: relative;
    width: 16px;
    height: 20px;
    transition: transform 0.2s ease; 
}

.quiz__card--radio-btn-check::before,
.quiz__card--radio-btn-check::after {
    content: '';
    position: absolute;
    background: #5CC2FF;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.quiz__card--radio-btn-check::before {
    width: 3px;
    height: 8px;
    top: 8px;
    left: 3px;
    transform: rotate(-45deg);
}

.quiz__card--radio-btn-check::after {
    width: 3px;
    height: 12px;
    top: 3px;
    right: 3px;
    transform: rotate(45deg);
}

.quiz__card--radio-btn-input:checked + .quiz__card--radio-btn-icon {
    background: #5CC2FF;
    border-color: #5CC2FF;
    transform: rotateY(180deg);
}

.quiz__card--radio-btn-input:checked + .quiz__card--radio-btn-icon .quiz__card--radio-btn-check::before,
.quiz__card--radio-btn-input:checked + .quiz__card--radio-btn-icon .quiz__card--radio-btn-check::after {
    background: #FFFFFF;
}

.quiz__card--radio-btn-input:checked + .quiz__card--radio-btn-icon .quiz__card--radio-btn-check {
    transform: rotateY(180deg); 
}

.quiz__nav {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.quiz__nav--btn_next {
    padding: 8px;
    padding-left: 16px;
    display: flex;
    gap: 10px;
    border: none;
    align-items: center;
    background-color: #F6F6F699;
    border-radius: 28px;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent; 
    cursor: pointer;

    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -2%;
    vertical-align: middle;
    color: #2D2D2D;
}

.quiz__nav--btn_next:hover {
    .case__scroller-btn-icon {
        background-color: #CEE9F9;
    }
}

.quiz__nav--btn_next:active {
    .case__scroller-btn-icon {
        background-color: #5CC2FF;
        background-image: url(images/icon_btn_active.webp);
    }
}

.quiz__nav--btn_back {
    padding: 8px;
    border: none;
    background-color: #F6F6F699;
    border-radius: 28px;
    transform: rotate(180deg);
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent; 
    cursor: pointer;
}

.quiz__nav--btn_back:hover {
    .case__scroller-btn-icon {
        background-color: #CEE9F9;
    }
}

.quiz__nav--btn_back:active {
    .case__scroller-btn-icon {
        background-color: #5CC2FF;
        background-image: url(images/icon_btn_active.webp);
    }
}

.quiz__application {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFFFFFCC;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1000;
    padding: 0 16px;
    transform: translateY(-500px);
    transition: all 0.3s ease;
    opacity: 0;
    height: 0;
}

.quiz__application_active {
    transform: translateY(0);
    height: auto;
    opacity: 1;
}

.quiz__application__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    box-shadow: 0px 16px 32px 0px #00000029;
    background-color: #FFFFFF;
    border-radius: 28px;
    position: relative;
    max-width: 450px;
}

@media screen and (min-width: 1194px) {
    .quiz__application__content {
        max-width: 574px;
    }
}

.quiz__application-btn {
    width: 42px;
    height: 24px;
    border-radius: 16px;
    border: none;
    background-color: #FFFFFF;
    margin-left: auto;
    background-image: url(images/close_btn.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 20px;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.quiz__application-btn:hover {
    background-color: #5CC2FF;
    background-image: url(images/btn__close-mobile.webp);
}

.quiz__application-head_text {
    font-family: "Work Sans", sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -0.5px;
    text-align: center;
    vertical-align: middle;
    color: #2D2D2D;
}

@media screen and (min-width: 1194px) {
    .quiz__application-head_text {
        font-size: 36px;
    }
}

.quiz__application-cuit_text {
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: -0.5px;
    text-align: center;
    vertical-align: middle;
    color: #747474;
}

@media screen and (min-width: 1194px) {
    .quiz__application-cuit_text {
        font-size: 24px;
    }
}

.quiz__application-cuit_text-bold {
    font-weight: 600;
    font-size: 18px;
}

@media screen and (min-width: 1194px) {
    .quiz__application-cuit_text-bold {
        font-size: 24px;
    }
}

.quiz__application-cuit_text-blue {
    font-weight: 600;
    font-size: 18px;
    color: #5CC2FF;
}

@media screen and (min-width: 1194px) {
    .quiz__application-cuit_text-blue {
        font-size: 24px;
    }
}

#quiz__application-input {
    background-color: #CEE9F926;
    border-radius: 16px;
    border: 2px solid #CEE9F9;
    padding: 16px;
    padding-left: 24px;
    font-family: "Work Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.5px;
    vertical-align: middle;
    color: #2D2D2D;
    transition: all 0.2s ease;
}


@media screen and (min-width: 1194px) {
    #quiz__application-input {
        font-size: 20px;
        padding: 24px;
        border-radius: 28px;
    }
}

#quiz__application-input:focus {
    font-weight: 600;
    outline: none;
    border: 2px solid #5CC2FF;
}

.quiz__inputFull-icon {
    width: 42px;
    height: 30px;
    background-color: #5CC2FF;
    border-radius: 16px;
    border: 2px solid #5CC2FF;
    background-image: url(images/checkOn.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 18px;
    position: absolute;
    right: 36px;
    top: 217px;
    transition: all 0.2s ease-in-out;
    opacity: 0;
}

@media screen and (min-width: 1194px) {
    .quiz__inputFull-icon {
        width: 60px;
        height: 40px;
        border-radius: 24px;
        background-image: url(images/checkOn.webp);
        background-size: 26px;
        right: 49px;
        top: 262px;
    }
}

.quiz__inputFull-icon-active {
    transform: rotate(0) translateY(0) translateX(0);
    opacity: 1;
}

.quiz__application-btn_complete {
    padding: 8px;
    padding-left: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    border-radius: 28px;
    background: linear-gradient(to right, #96d8ff 50%, #CEE9F9 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: all 0.2s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);

    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #2D2D2D;
}

.quiz__application-btn_complete:hover {
    background-position: left bottom;
    .quiz__application-btn_complete--icon {
        transform: rotate(45deg);
    }
}

.quiz__application-btn_complete--icon {
    background-image: url(images/icon_btn-2.webp);
    width: 56px;
    height: 56px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 24px;
    background-color: #FFFFFF;
    border-radius: 32px;
    transition: all 0.3s ease-in-out;
}

.complete__application {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #FFFFFFCC;
    z-index: 1001;
    transition: all 0.4s ease;
    padding: 16px;

    transform: translateY(-500px);
    height: 0;
    opacity: 0;
    
}

.complete__application-active {
    height: auto;
    opacity: 1;
    transform: translateY(0);
}

.complete__application--noQuiz {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #FFFFFFCC;
    z-index: 1001;
    transition: all 0.4s ease;
    padding: 16px;

    transform: translateY(-500px);
    height: 0;
    opacity: 0;
    
}

.complete__application--noQuiz-active {
    height: auto;
    opacity: 1;
    transform: translateY(0);
}

.complete__application__container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 10px;

    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -0.5px;
    text-align: center;
    vertical-align: middle;
    color: #747474;
}

@media screen and (max-width: 1195px) {
    .complete__application__container {
        font-size: 18px;
    }
}

.complete__application--btn-ok {
    padding: 27px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 28px;
    background: linear-gradient(to right, #96d8ff 50%, #CEE9F9 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: all 0.2s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);

    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #2D2D2D;
}

.complete__application--btn-ok:hover {
    background-position: left bottom;
}

.complete__application--btn-ok-2 {
    padding: 27px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 28px;
    background: linear-gradient(to right, #96d8ff 50%, #CEE9F9 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: all 0.2s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);

    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #2D2D2D;
}

.complete__application--btn-ok-2:hover {
    background-position: left bottom;
}

.popup__warning-2 {
    border-radius: 16px;
    background-color: #FFFFFF;
    display: flex;
    gap: 10px;
    padding: 12px 16px;
    z-index: 5;
    position: absolute;
    align-items: center;
    box-shadow: 0px 4px 16px 0px #00000040;
    bottom: 255px;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    z-index: -1;
    justify-content: center;
    width: 90%;
    transform: translateY(-50px);

    font-family: "Work Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.5px;
    text-align: center;
    vertical-align: middle;
    color: #2D2D2D;
}

@media screen and (min-width: 1194px) {
    .popup__warning-2 {
        font-size: 20px;
    }
}

.popup__warning-2_active {
    transform: translateY(0);
    opacity: 1;
    z-index: 1;
}

.not-animate {
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.animate-show {
    opacity: 1;
    transform: translateY(0);
}


.socials {
    position: fixed;
    right: -10px;
    top: 150px;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    background-color: rgb(251, 253, 255);
    box-shadow: 0px 5px 17px 3px rgba(0, 0, 0, 0.2);
    z-index: 7;
    padding-right: 18px;
}

.side-call-button {
    display: block;
    position: fixed;
    right: 0;
    padding: 2px 5px;
    padding-bottom: 31px;
    margin-right: -30px;
    border-radius: 10px 10px 0 0;
    rotate: -90deg;
    top: 300px;
    background: linear-gradient(180.34deg, #ba1111 0.3%, #af2d2d 99.7%);
    z-index: 99999;
}

.side-call-button a {
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

@media screen and (min-width: 1280px) {
    .side-call-button {
        display: none;
    }
}

.social {
    padding: 15px;
    padding-bottom: 13px;
	box-sizing: content-box;
    padding-right: 0;
}

.socials a:first-child .social {
    padding-bottom: 0px;
}

.social img {
    min-width: 28px;
    height: 28px;
}