@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Noto+Sans+JP:wght@300;400;500;700;900&family=Oswald:wght@200;300;400;500;600;700&family=Public+Sans:wght@300;400;500;600;700;800;900&family=Roboto:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&display=swap');

html {
    min-height: 100%;
    position: relative;
}

body {
    /* background-color: #dfeee9; */
    /* margin-bottom: 100px; */
    /* font-family: "Zen Maru Gothic", serif; */
    font-family: "Noto Sans JP", serif;
    font-weight: 400;
    font-style: normal;
}

h1 {
    color: #142938;
    font: italic;
}

h2 {
    color: #142938;
    font: italic;
}

h2.main_style{
    color: #142938;
    font : italic;
    font-weight:bold;
    font-size:1.5rem;
}
h3.main_style{
    color: #142938;
    font: italic;
    font-weight: bold;
    font-size:1rem;
}

input.btn_main_style {
    width: 120px;
    height: 60px;
    margin: 5px;
    padding: 1rem 1rem;
    font-weight: bold;
    font-size: 16px;
    background: #142938;
    color: #FFFFFF;
    outline: none;
    border: none;
    border-radius: 10px;
}

input.btn_main_style:hover {
    background: #243948;
    color: #FFFFFF;
}

input.btn_main_style:disabled {
    background: #616E7D;
    color: #FFFFFF;
}

button.btn_main_style {
    width: 120px;
    height: 60px;
    margin: auto;
    padding: 1rem 1rem;
    font-weight: bold;
    font-size: 16px;
    background: #142938;
    color: #FFFFFF;
    outline: none;
    border: none;
    border-radius: 10px;
}

button.btn_main_style:hover {
    background: #243948;
    color: #FFFFFF;
}

button.btn_main_style:disabled {
    background: #616E7D;
    color: #FFFFFF;
}







.maintenance {
    border: 2px solid #666;
    padding: 64px 32px;
    box-sizing: border-box;
    background: #fff;
    text-align: center;
}

.maintenance-message {
    font-size: 22px;
    margin-bottom: 24px;
    font-weight: bold;
}

.maintenance-date {
    color: #fff;
    padding: 8px;
    background: #cc0000;
    width: 90%;
    margin: 0 auto 16px;
}


p.script_view {
    font-size: 22px;
    color: black;
}

span.phoneme_orange {
    color: #ff4623;
}

span.phoneme_bg_omission {
    background-color: #5cc3ff;
}

span.phoneme_bg_insertion {
    background-color: #feae00;
}

span.phoneme_bg_mispronunciation {
    background-color: #ed220d;
}

/* 吹き出し本体 - 枠線付きの吹き出し */
.balloon2 {
    position: relative;
    padding: 20px;
    width: 70%;
    background-color: #ffffff;
    border: 2px solid #333333;
    border-radius: 10px;
    /* 角丸を指定 */
    margin-left: 120px;
    /* 左に余白を設ける */

}

/* 画像 - 絶対配置で左上に配置 */
.balloon2 .icon {
    position: absolute;
    left: -120px;
    top: 0;
}

.balloon2 .icon img {
    width: 100px;
    height: 100px;
}

/* 三角アイコン - 枠線付きの吹き出し */
.balloon2::before {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: -15px;
    top: 20px;
    border-right: 15px solid #333333;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.balloon2::after {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: -12px;
    top: 20px;
    border-right: 15px solid #ffffff;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.word_explanation_table {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    background-color: white;
    border-width: 10px;
    border-color: black;
}

.word_explanation_table tr td:first-child {
    background-color: #E8F5FC;
    font-size: 20px;
    font-family: "arial";
}

@media (min-width:1024px) {
    .word_explanation_table {
        width: 60%;
    }
}

@media (max-width:1024px) {
    .word_explanation_table {
        width: 100%;
    }

}


/***************************************/
/* Cardの設定*/
/***************************************/
.card-title {
    font-size: 20px;
    font-weight: bold;
}

.card-task-detail {
    color: gray;
}

.card-image {
    max-width: 100%;
    display: block;
}

/*  CardのHeader*/
.task_card_header_red {
    background-color: #FF7468;
}

.task_card_header_blue {
    background-color: #709EDA;
}

.task_card_header_green {
    background-color: #70D649;
}

.task_card_header_lightgreen {
    background-color: #3baf26;
}

.task_card_header_gray {
    background-color: gray;
    ;
}

.task_card_header_lightgray {
    background-color: #e6e9ee;
    ;

}

.task_card_footer_gray {
    background-color: lightgray;
}

.custum-card-control {
    border-radius: 10px;
}


.card-item-title {
    font-weight: bold;
    background-color: #dfeee9;
    color: black;
    text-align: center;
    width: 80px;
}

/*  入力フォーム */
.rounded-form-control {
    border-radius: 10px;
    /* 丸みの半径を設定 */
}

.script-textarea {
    height: 200px;
    overflow-wrap: break-word;
}

/* スコア表示 */

.score-textarea {
    border: 1px solid black;
    border-radius: 10px;
    padding: 5px;
    display: inline-block;
    width: 140px;
    font-size: 20px;
    background-color: white;
    margin-bottom: 10px;
}

.score-point {
    font-size: 35px;
}

.score-textarea-card {
    padding: 5px;
    border-radius: 10px;
    display: inline-block;
    width: 80px;
    font-size: 14px;
    background-color: lightblue;
    margin-bottom: 10px;
}

.score-point-card {
    font-size: 25px;
}

/* Toasts */
.toast {
    z-index: 1060;
    /* 他の要素よりも上に表示させる */
}

/* Form タイトル */
.content_title {
    background: linear-gradient(to bottom right, rgba(49, 187, 145, 0.8), rgba(37, 140, 109, 0.8) 50%, rgba(37, 120, 140, 0.8));
    text-align: center;
    color: white;
}

.content_title_text {
    color: white;
}

.input-form-control {
    background-color: #fdd;
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
}

.input_form_label {
    color: bkack;
    font-weight: bold;
}

.input_form_label_require {
    color: bkack;
    font-weight: bold;
}

.input_form_label_require::after {
    content: '必須';
    background-color: red;
    color: white;
    border-radius: 3px;
}

.input_form_label_optional {
    color: bkack;
    font-weight: bold;
}

.input_form_label_optional::after {
    content: '任意';
    background-color: green;
    color: white;
    border-radius: 3px;
}

.input_form_error {
    color: red;
}

.eiken_anser_correct {
    color: red;
    font-weight: bold;
    font-size: large;
}


/* -------------------------uneoka code start -------------------------- */
.toggle-slider {
    transition: .4s;
}

.toggle-slider::before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    right: 18px;
    top: 2px;
    transition: .4s;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
}

input:checked+.toggle-slider {
    background: #4fd19c;
}

input:checked+.toggle-slider:before {
    transform: translateX(16px);
}

.hidden {
    display: none;
}

.selected_hidden {
    display: none !important;
}

.btn-gray {
    display: inline-block;
    padding: 4px 12px;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 20px;
    color: #333333;
    text-align: center;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
    vertical-align: middle;
    cursor: pointer;
    background-color: #f5f5f5;
    background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
    background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
    background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
    background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
    background-repeat: repeat-x;
    border: 1px solid #cccccc;
    border-color: #e6e6e6 #e6e6e6 #bfbfbf;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    border-bottom-color: #b3b3b3;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-gray:hover,
.btn-gray:focus {
    color: #333333;
    text-decoration: none;
    background-position: 0 -15px;
    -webkit-transition: background-position 0.1s linear;
    -moz-transition: background-position 0.1s linear;
    -o-transition: background-position 0.1s linear;
    transition: background-position 0.1s linear;
}

.submitBtn {
    transition: 0.2s all ease-in;
    background: #1E6EBB !important;
    color: #FFF !important;
    cursor: pointer;
}

.submitBtn:disabled {
    background: #bbb !important;
    cursor: auto;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.eiken_tab {
    background: #e4e4e4 !important;
    border: unset;
}

.eiken_tab .nav-link {
    width: 86px !important;
    color: #555 !important;
    border-radius: 4px !important;
    border: unset !important;
    transition: all 0.2s ease-in;
}

.eiken_tab .nav-link.active {
    background: #FFF !important;
    color: #222 !important;
}

.answer-button {
    transition: 0.2s background ease-in, 0.2s color ease-in;
    cursor: pointer;
    height: auto;
    text-wrap: wrap;
    background: white!important;
    border-color: #e4e4e4 !important;
}

.answer-button:hover {
    background: #CCE7F1!important;
}

.answer-button.active {
    background: #CCE7F1!important;
    box-shadow: 4px 4px 4px 0px #6161612e;
    border-color: transparent !important;
}

.answer-button:focus-visible {
    border-color: #e4e4e4 !important;
    outline: unset;
}

.left-sidebar {
    width: 16rem;
    position: fixed;
    top: 0;
    z-index: 1000;
    min-height: 100vh;
    transition: all 0.4s ease-in;
    z-index: 1002;
}

@media (max-width:1024px) {
    .left-sidebar {
        transform: translateX(-100%);
    }

    .left-sidebar.active {
        width: 100%;
        transform: translateX(0);
    }
}

.sidebar-nav-item {
    transition: all 0.3s ease-in;
    border-radius: 0.4rem !important;
    color: #b4b5bc;
}

.sidebar-nav-item.active {
    background:#00BFFF !important;
    color: white;
}

.sidebar-nav-item:hover {
    color: #b4b5bc;
}

.top-header {
    
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding-left: 16rem !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.header-hidden {
    transform: translateY(-100%);
}

.profile-menu {
    opacity: 0;
    transition: all 0.2s ease-in;
    z-index: 1002;
}
.word_explanation_table {
    border-width: 1px !important;
}
@media (max-width:1024px) {
    .profile-menu {
        right: 0.4rem;
    }
    .top-navbar {
        justify-content: space-evenly ;
    }
    .top-header {
        padding-left: 0 !important;
    }
}

.profile-wrapper.has-submenu .profile-menu {
    display: inline;
    opacity: 1;
}

.header-main-content {
    width: calc(100% - 16rem) !important;
    margin-left: auto;
}

@media (max-width:1024px) {
    .header-main-content {
        width: 100% !important;
    }
}

.btn-notification .number,
.btn-notification .number-bg {
    top: -0.6rem !important;
    right: -0.6rem !important;
}

.main-container {
    width: calc(100% - 16rem) !important;
    max-width: calc(100% - 16rem) !important;
    margin-left: auto;
    margin-right: 0;
    padding: 70px 0 0 0 !important;
    flex-direction: column;
}

@media (max-width:1024px) {
    .main-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 70px 0 0 0 !important;
    }
}

footer {
    display: block;
    width: calc(100% - 16rem) !important;
    max-width: calc(100% - 16rem) !important;
    margin-left: auto;
    background: #AAAAAA;
    text-align: center;
    padding: 0.6rem 0;
}

@media (max-width:1024px) {
    footer {
        width: 100% !important;
        max-width: 100% !important;
    }
}

.main-content {
    max-width: 100%;
    min-width: 100%;
    min-height: calc(100vh - 80px - 52.8px - 43.2px);
}

@media (max-width:1024px) {
    .main-content {
        width: 100%;
        min-width: 100%;
        min-height: calc(100vh - 80px - 45.6px - 43.2px);
    }
}


/* .top-navbar::-webkit-scrollbar {
    display: none;
} */

/* @media (max-width:1279px) {
    .top-navbar {
        display: none !important;
    }
} */


.top-navbar-item:hover {
    background: #E8E8E8 !important;
    transition: all 0.2s ease-in;
}

.top-navbar-item.active {
    background: #E8E8E8 !important;
}

.header-border-bottom {
    background: #e5e7eb !important;
    width: calc(100% - 16rem - 1.6rem * 2) !important;
    height: 1px;
    margin: 0 1.6rem 0 17.6rem !important;
}

@media (min-width:1280px) {
    .header-border-bottom {
        display: none;
    }
}

@media (max-width:1024px) {
    .header-border-bottom {
        width: 100% !important;
        margin: 0 !important;
    }
}

@media (max-width:1024px) {
    .study-classification .classification-item .item-list {
        column-gap: 0.8rem !important;
    }

    .study-classification .classification-item .item-list .btn-item {
        width: calc(100% / 3 - 0.8rem * 2 / 3) !important;
    }
}

@media (max-width:1024px) {
    .toggle-button {
        display: none !important;
    }
}

.mobile-nav-toggle {
    position: fixed;
    right: 1.4rem;
    top: 62px;
    width: 28px;
    height: 22px;
    padding: 0;
    background: none;
    display: none;
    border: none;
    outline: none;
    cursor: pointer;
    z-index: 1004;
    margin: 0;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

@media only screen and (max-width: 1024px) {
    .mobile-nav-toggle {
        display: inline-block;
        top: 1.5rem;
    }
}

.mobile-nav-toggle .toggle-icon span {
    display: inline-block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 10px;
    background: #494949bf;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    -webkit-transform-origin: center center;
    transform-origin: center center;
}

@media only screen and (max-width: 1024px) {
    .mobile-nav-toggle .toggle-icon span {
        background: #303030;
    }
}

.mobile-nav-toggle .toggle-icon span:nth-child(1) {
    top: 0;
}

.mobile-nav-toggle .toggle-icon span:nth-child(2) {
    top: 10px;
}

.mobile-nav-toggle .toggle-icon span:nth-child(3) {
    bottom: 0;
}

.mobile-nav-toggle.toggle-active .toggle-icon span {
    background-color: #fff;
}

.mobile-nav-toggle.toggle-active .toggle-icon span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(45deg);
    transform: translateY(10px) rotate(45deg);
}
 
.mobile-nav-toggle.toggle-active .toggle-icon span:nth-child(2) {
    opacity: 0;
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
    visibility: hidden;
}

.mobile-nav-toggle.toggle-active .toggle-icon span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
}

.top-page {
    display: block;
}


.slick-prev:before {
    display: block;
    content: '' !important;
    width: 100%;
    height: 100%;
    background-image: url(../images/slider-prev-icon.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.slick-next:before {
    display: block;
    content: '' !important;
    width: 100%;
    height: 100%;
    background-image: url(../images/slider-next-icon.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.slick-prev,
.slick-next {
    width: 1.6rem !important;
    height: auto !important;
    aspect-ratio: 3 / 4 !important;
    z-index: 1 !important;
}

@media only screen and (max-width: 1024px) {

    .slick-prev,
    .slick-next {
        width: 1.2rem !important;
    }
}

.slick-prev {
    left: 4.8rem !important;
}

.slick-next {
    right: 4.8rem !important;
}

@media only screen and (max-width: 1024px) {
    .slick-prev {
        left: 1.2rem !important;
    }

    .slick-next {
        right: 1.2rem !important;
    }
}

/* custom select */
body {
    background: #ededed;
    font-family: 'Open Sans', sans-serif;
}

.center {
    position: absolute;
    display: inline-block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/** Custom Select **/
.custom-select-wrapper {
    position: relative;
    display: inline-block;
    user-select: none;
}

.custom-select-wrapper select {
    display: none;
}

.custom-select {
    position: relative;
    display: inline-block;
}

.custom-select-trigger {
    position: relative;
    display: block;
    width: 150px;
    padding: 0 32px 0 16px;
    font-size: 18px;
    font-weight: 300;
    color: #000;
    line-height: 40px;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    border:  1px solid #636363;
}

.custom-select-trigger:after {
    position: absolute;
    display: block;
    content: '';
    width: 10px;
    height: 10px;
    top: 50%;
    right: 20px;
    margin-top: -3px;
    border-bottom: 1px solid #636363;
    border-right: 1px solid #636363;
    transform: rotate(45deg) translateY(-50%);
    transition: all .4s ease-in-out;
    transform-origin: 50% 0;
}

.custom-select.opened .custom-select-trigger:after {
    margin-top: 3px;
    transform: rotate(-135deg) translateY(-50%);
}

.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    min-width: 100%;
    border: 1px solid #e1e1e1;
    border-radius: 3px;
    box-sizing: border-box;
    /* box-shadow: 0 2px 1px rgba(0, 0, 0, .07); */
    background: #fff;
    transition: all .4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-15px);
}

.custom-select.opened .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

.custom-options:before {
    position: absolute;
    display: block;
    content: '';
    bottom: 100%;
    right: 25px;
    width: 7px;
    height: 7px;
    margin-bottom: -4px;
    border-top: 1px solid #b5b5b5;
    border-left: 1px solid #b5b5b5;
    background: #fff;
    transform: rotate(45deg);
    transition: all .4s ease-in-out;
}

.option-hover:before {
    background: #f9f9f9;
}

.custom-option {
    position: relative;
    display: block;
    margin: 0 6px;
    padding: 0 4px;
    border-bottom: 1px solid #e1e1e1;
    font-size: 18px;
    color: #333;
    line-height: 36px;
    cursor: pointer;
    transition: all .4s ease-in-out;
}

.custom-option:first-of-type {
    border-radius: 2px 2px 0 0;
}

.custom-option:last-of-type {
    border-bottom: unset;
    border-radius: 0 0 2px 2px;
}

.custom-option:hover,
.custom-option.selection {
    background: #f9f9f9;
}

.underline-text {
    position: relative;
    width: 100%;
}

.underline-text:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #BBBBBB;
}

.underline-text:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20%;
    height: 3px;
    background: #00BFFF;
    z-index: 1;
    display: block;
}

/* Add padding to the main container to account for fixed header */
.main-container {
    padding-top: 5rem;
}

.top-navbar {
    position: sticky !important;
    top: 70px !important;
    background: #e5e7eb !important;
    overflow-x: auto;
    overflow-y: clip;
    z-index: 990;
    transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Add this new rule for when header is hidden */
.header-hidden + .main-container .top-navbar {
    top: 0px !important;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    border: 2px solid #dddde5;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 2;
    position: relative;
}
    
    input[type=range]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    border: 2px solid #dddde5;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 2;
    position: relative;
}

.swiper {
    height: auto;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}
  
 

.swiper-slide {
    box-sizing: border-box;
    background: white;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);    
    
}

.practice-image {
    width: 100%;
    height: auto;
    max-height: 160px;
    object-fit: cover;
    border-radius: 8px;
}

.practice-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    text-align: center;
}

.practice-desc {
    font-size: 14px;
    color: #555;
    text-align: center;
}

.swiper-button-prev,
.swiper-button-next {
    color: white!important;
    background: rgba(0, 0, 0, 0.5)!important;
    border-radius: 50%!important;
    width: 36px!important;
    height: 36px!important;
    transform: translateX(0)!important;
    margin: 0!important;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 16px!important;
    font-weight: bold!important;
    color: white!important;
}
@media (max-width: 480px) {
    .swiper-container-wrapper {
        padding: 8px 0;
    }
    .swiper-button-next, .swiper-button-prev {
        display: none!important;
    }
    .swiper-slide {
        padding: 8px;
    }
    .practice-title {
      font-size: 14px;
    }
    .practice-desc {
      font-size: 12px;
    }
    .swiper-slide {
        width: calc(100% / 1.5) !important;
    }
}

@media (min-width: 640px) {
    .swiper-slide {
        width: calc((100% - 1rem) / 2)!important;
    }
}

@media (min-width: 768px) {
    .swiper-slide {
        width: calc((100% - 1.5rem) / 2.5)!important;
    }
}

@media (min-width: 1024px) {
    .swiper-slide {
        width: calc((100% - 2.5rem) / 3.5)!important;
    }
}
/* -------------------------uneoka code end -------------------------- */

/* Add this style for the parent container */
.flex.flex-col.gap-10.relative.shadow-lg.p-2 {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    overflow: hidden;  /* Prevent content from overflowing */
}
.spin-slow {
animation: spin-slow 1.5s linear infinite;
}
.spin-reverse {
animation: spin-slow 2s linear infinite reverse;
}
.spin-complete{
    animation: spin-complete 0.1s linear forwards;
}
@keyframes spin-slow {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
}
@keyframes spin-reverse {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
}
@keyframes spin-complete {
    0% {
      transform: rotate(90deg);
      scale: 0.5;
    }
    100% {
      transform: rotate(0deg);
      scale: 1;
    }
}

/* Initial state: hidden and shifted left */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

/* When in view: visible and in place */
.reveal-left.in-view {
  opacity: 1;
  transform: translateX(0);
}


.swiper-slide {
    opacity: 0 !important;
    transform: scale(0.8) !important;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.swiper-slide-active,
.swiper-slide-next,
.swiper-slide-prev {
    opacity: 1!important;
    transform: scale(1)!important;
}

@media (min-width: 768px) {
    .swiper-slide-next + .swiper-slide {
        opacity: 1!important;
        transform: scale(1)!important;
    }
}

@media (min-width: 1024px) {
    .swiper-slide-next + .swiper-slide + .swiper-slide {
        opacity: 1!important;
        transform: scale(1)!important;
    }
}
button.btn_main_style_sm {
    width: 100px;
    height: 50px;
    margin: auto;
    padding: 10px 10px;
    font-weight: bold;
    font-size: 12px;
    background: #142938;
    color: #FFFFFF;
    outline: none;
    border: none;
    border-radius: 10px;
}
@media (min-width: 465px) {
    button.btn_main_style_sm {
        width: 150px!important;
        height: 50px;
        margin: auto;
        padding: 10px 10px;
        font-weight: bold;
        font-size: 12px;
        background: #142938;
        color: #FFFFFF;
        outline: none;
        border: none;
        border-radius: 10px;
    }
}