/* text setting */
h1 {
    font-size: 2.5rem;
    font-weight: bold;
}
.main-title {
    font-size: 4rem;
    letter-spacing: 0.05rem;
    line-height: 1;
    font-weight: unset;
}
.main-title-1 {
    font-size: 3rem;
    line-height: 3.5rem;
    letter-spacing: 0.1rem;
}
.main-subtitle {
    font-size: 2.5rem;
    font-weight: bolder;
    letter-spacing: 0.15rem;
}
.subtitle {
    font-size: 2rem;
    font-weight: bolder;
    letter-spacing: 0.1rem;
}

.subtitle-sm {
    font-size: 1.5rem;
    line-height: 1.8rem;
    font-weight: bolder;
    letter-spacing: 0.06rem;
}
.subtitle-xs {
    font-size: 1.2rem;
    line-height: 1.8rem;
    letter-spacing: 0.06rem;
}
.subtitle-sm-700 {
    font-size: 1.2rem;
    line-height: 1.4rem;
    letter-spacing: 0.06rem;
}
.letter-spacing-02 {
    letter-spacing: 0.2rem;
}
.letter-spacing-1px {
    letter-spacing: 1px;
}
p {
    font-size: 1rem;
}
.p_title {
    font-size: 1.1rem;
    font-weight: bolder;
}
.large-text {
    font-size: 1.5rem;
}
.medium-text {
    font-size: 0.9rem;
}
.small-text {
    font-size: 16px;
}
.msmall-text {
    font-size: 14px;
}

.xsmall-text {
    font-size: 12px;
}

/* custom button */
.btn-main {
    display: inline-block;
    background-color: white;
    color: black;
    font-size: 20px;
    padding: 10px;
    line-height: 1;
    border-radius: 50px;
    /* line-height: normal; */
    text-align: center;
}

.btn-main:hover {
    /* box-shadow: 5px 5px 4px #6f6c6c75; */
    background-color: #c09869;
    color: white;
    transition: all 0.3s;
}

.btn-pink {
    background-color: #c09869;
    border: 1px solid #c09869;
    color: white;
    transition: all 0.3s;
    border-radius: 50px;
    padding: 10px;
    line-height: 1;
}
.btn-pink:hover {
    background: transparent;
    color: #c09869;
    border: 1px solid #c09869;
}

.btn-with-border {
    background-color: white;
    border: 1px solid var(--primary-color-3);
}
.btn-transparent {
    background: transparent;
    border: 1px solid white;
    padding: 15px;
    border-radius: unset;
    color: white;
}
.btn-transparent:hover {
    background-color: white;
    color: black;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

.btn-full-width {
    width: 100%;
    padding: 14px 0;
    text-align: center;
    font-size: 16px;
}
.btn-half-width {
    width: 50%;
    padding: 14px 0;
    text-align: center;
    font-size: 16px;
}
.btn-full-width:hover {
    color: white;
    /* box-shadow: 5px 5px 4px #6f6c6c75; */
    transition: all 0.3s;
}

.btn-close.close {
    opacity: 1;
    background: var(--primary-color-1) !important;
    border-radius: 50%;
    padding: 0px 5px 5px 5px;
    z-index: 99;
    margin: 8px;
    font-size: 1rem;
    line-height: 17px;
    color: white !important;
}
.btn-close.close:focus {
    outline: none !important;
}
.btn-close.close.bg-main-green {
    background: var(--primary-color-1) !important;
    opacity: 1 !important;
}

/* top navbar */
#top-navbar {
    background-image: linear-gradient(
        to top,
        rgb(255 255 255 / 0%),
        rgb(0 0 0 / 10%),
        rgb(0 0 0 / 22%),
        rgb(0 0 0 / 26%)
    );
}
#overlay {
    position: absolute; /* Sit on top of the page content */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
    cursor: pointer; /* Add a pointer on hover */
}
.bg-black {
    background-color: black !important;
    background: black !important;
}
.bg-white {
    background-color: white !important;
    background: white !important;
}
.bg-pink {
    background-color: #c09869 !important;
    background: #c09869 !important;
}
.bg-grey {
    background-color: #d7d8d9 !important;
    background: #d7d8d9 !important;
}
.bg-dark-grey {
    background-color: #161616 !important;
    background: #161616 !important;
}
.bg-none {
    background-color: transparent !important;
    background: transparent !important;
}
#top-navbar.bg-white .nav-link {
    color: #252d27 !important;
}
#top-navbar .nav-link:hover,
#top-navbar .nav-item.active .nav-link {
    color: #c09869 !important;
    font-weight: bolder;
    /* text-shadow: 1px 1px 2px #c5c5c5e3 !important; */
    transition: all 0.3s;
}
#top-navbar .nav-link {
    /* font-family: 'Caviar Dreams'; */
    color: white;
    padding: 0.5rem 1.2rem;
}
.navbar-light .navbar-toggler {
    border: none !important;
}

.navbar-light .navbar-toggler {
    color: white !important;
}
.navbar-light .navbar-toggler:focus {
    outline: none !important;
}
/* Second top bar */
#second-top-navbar {
    top: 86px;
}
#second-bar.collapsed .bookmark {
    width: fit-content;
    padding: 10px 10px;
    float: right;
    border-radius: 10px 0px 0px 10px;
}
#second-bar .bookmark {
    width: 100%;
    float: unset;
    border-radius: unset;
    padding: unset;
}
.bookmark.active {
    background-color: var(--primary-color-2);
}
.bookmark {
    background-color: var(--primary-color-1);
    height: 72px;
    border: 1px solid white;
    border-left: none;
    border-bottom: none;
    cursor: pointer;
}
.bookmark.bookmark.last-bookmark {
    border-right: none;
}
.bookmark.last-bookmark:after {
    height: 0px;
    width: 0px;
    border: none;
}
.bookmark:after {
    background-color: var(--primary-color-1);
    position: absolute;
    content: "";
    right: 0;
    top: 30%;
    width: 15px;
    height: 30px;
    border: 1px solid white;
    border-right: none;
    border-radius: 30px 0 0 30px;
}
.bookmark .bookmark-icon,
.hori-bookmark .bookmark-icon {
    display: none;
}
.active2 .hori-bookmark .bookmark-icon {
    display: block;
}
.bookmark {
    -webkit-animation: zoom-in-zoom-out 3s ease-in-out infinite;
    -webkit-transform-origin: 50% 4px;
    -moz-animation: zoom-in-zoom-out 3s ease-in-out infinite;
    -moz-transform-origin: 50% 4px;
    animation: zoom-in-zoom-out 3s ease-in-out infinite;
    transform-origin: 50% 4px;
}
.bookmark .bookmark-icon {
    /* -webkit-animation: zoom-in-zoom-out 3s ease-in-out infinite;
    -webkit-transform-origin: 50% 4px;
    -moz-animation: zoom-in-zoom-out 3s ease-in-out infinite;
    -moz-transform-origin: 50% 4px;
    animation: zoom-in-zoom-out 3s ease-in-out infinite;
    transform-origin: 50% 4px; */
}
@keyframes mymove {
    0% {
        transform: translate(-10%, -5%);
    }
    /* 25%  { transform: translate(-6%, -5%); }
    50%  { transform: translate(-2%, -5%); }
    75%  { transform: translate(2%, -5%); } */
    100% {
        transform: translate(30%, -5%);
    }
}
.bookmark.active .bookmark-icon {
    display: block;
}
.bookmark.active .bookmark-text {
    display: none;
}
.bookmark-text {
    font-size: 12px;
}
.bookmark-text:hover {
    color: var(--primary-color-2) !important;
}
.bookmark .bookmark-text {
    display: block;
}
/* footer */
#footer {
    /* background: #252d27; */
}

/* #top-navbar .nav-item.active .nav-link {
    color: white !important;
} */
.curve-box {
    cursor: pointer;
}
.curve-box:hover {
    transform: scale(1.1) !important;
    z-index: 99;
    transition: all 0.5s;
}
.curve-box:hover .arrow-right {
    transition: all 0.5s;
    transform: translate(30%, -5%);
    -webkit-animation: mymove 2s;
    -moz-animation: mymove 2s;
    animation: mymove 2s;
}
/* .curve-box {
    width: 295.81px;
    height: 235px;
    cursor: pointer;
}
.curve-box-bg-image.curve-box-1 {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}
.curve-box-bg-image.curve-box-2 {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
} */
.curve-box:hover .curve-box-1,
.curve-box:focus .curve-box-1 {
    display: none;
    transition: all 1s;
}
.curve-box-bg-image,
.curve-box-text {
    display: none;
}
.curve-box-text {
    z-index: 9;
}
.curve-box:hover .curve-box-bg-image,
.curve-box:hover .curve-box-text {
    display: block;
    transition: all 1s;
}
/* .curve-box-1 {
    width: 100%;
    height: 200px;
    left: 0;
    bottom: 0;
    --mask:
    radial-gradient(232.71px at 50% calc(99% - 225.00px),#000 100%,#0000 101%) calc(50% - 150px) 0/300px 100%,
    radial-gradient(167.71px at 50% calc(101% + 148px),#0000 101%,#000 101%) 50% calc(100% - 6px)/300px 100% repeat-x;
    -webkit-mask: var(--mask);
            mask: var(--mask);
}
.curve-box-2 {
    width: 100%;
    height: 200px;
    top: 0;
    left: 0;
    --mask:
    radial-gradient(167.71px at 50% 167px,#000 99%,#0000 66%) calc(50% - 0px) 0px/256px 50% repeat-x,
    radial-gradient(167.71px at 50% -157px,#0000 101%,#000 101%) 50% 20px/270px calc(57% - 82px) repeat-x;
    -webkit-mask: var(--mask);
            mask: var(--mask);
} */

.bg-main-green {
    background-color: var(--primary-color-1);
}
.bg-green {
    background-color: var(--sub-color-1);
}
.bg-green-2 {
    background-color: #252d27;
}
.bg-green-3 {
    background-color: var(--primary-color-3);
}
.bg-main-gold {
    background-color: var(--primary-color-2);
}

/* Elastic Group */

.group-elastic {
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
}

.item-elastic {
    width: 10vw;
    height: 30vw;
    background-position: center;
    background-size: 30vw;
    margin: 1vw;
    border-radius: 1vw;
    display: inline-block;
    cursor: pointer;
}

.slider-single-img {
    border-radius: 10px 10px 0px 0px;
    padding-top: 400px;
}
.slider-single-img.border-radius-xs {
    border-radius: 10px;
}

.modal-content {
    border-radius: 10px;
}
.modal-body.p-5 {
    padding: 1.8rem !important;
}

.slider-nav .slick-slide {
    padding: 0.4rem;
    cursor: pointer;
}

.slick-prev:before,
.slick-next:before {
    color: #4d4b4b;
}
.slick-prev,
.slick-next {
    width: 30px !important;
    height: 30px !important;
}
.slick-slide.slick-active.is-active {
    opacity: 0.5;
}
.slider-nav-img {
    height: 100px !important;
    width: auto;
    box-sizing: border-box;
}
.project-tag {
    width: max-content;
    padding: 5px 15px;
}

.project-image {
    font-size: 14px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}

.project-image:hover {
    font-size: 16px;
    /* background-position: bottom; */
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}
.type-title {
    display: block;
}
.active-elastic .type-title {
    display: none;
}
.active-type-title {
    display: none;
}
.active-elastic .active-type-title {
    display: block;
    font-size: 22px;
}

a.bg-main-green:hover {
    color: white;
    transition: all 0.5s;
}
.form-group label {
    font-size: 0.9rem;
}
textarea {
    resize: none;
}
.styled-checkbox {
    position: absolute;
    opacity: 0;
}
.styled-checkbox + label {
    position: relative;
    cursor: pointer;
    padding-left: 30px;
}
.styled-checkbox + label:before {
    content: "";
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    width: 20px;
    height: 20px;
    background: white;
    border: 1px solid #939598;
    border-radius: 5px;
    position: absolute;
    left: 0;
}
.styled-checkbox:hover + label:before {
    /* background: #5da871; */
}
.styled-checkbox:focus + label:before {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}
.styled-checkbox:checked + label:before {
    background: #5da871;
}
.styled-checkbox:disabled + label {
    color: #b8b8b8;
    cursor: auto;
}
.styled-checkbox:disabled + label:before {
    box-shadow: none;
    background: #ddd;
}
.styled-checkbox:checked + label:after {
    content: "";
    position: absolute;
    left: 5px;
    top: 9px;
    background: white;
    width: 2px;
    height: 2px;
    box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white,
        4px -6px 0 white, 4px -8px 0 white;
    transform: rotate(45deg);
}
.success-img {
    width: 200px;
}
.swal2-title,
.swal2-content {
    color: white !important;
}
.swal2-popup {
    border-radius: 25px !important;
}
.swal2-styled.swal2-confirm {
    background-color: #c09869 !important;
    border: 1px solid #c09869 !important;
    color: white !important;
    transition: all 0.3s !important;
    border-radius: 50px !important;
    padding: 10px !important;
    min-width: 100px;
}
.swal2-styled.swal2-confirm:hover,
.swal2-styled.swal2-confirm:focus {
    background-color: #c09869 !important;
    border: 1px solid #c09869 !important;
    color: white !important;
    transition: all 0.3s !important;
    border-radius: 50px !important;
    outline: none;
    box-shadow: none;
}

.success-container {
    background-image: url(../images/join-us/Register\ Bg-01.svg) !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 4vw 7vw;
    border-radius: 10px;
}

.job_type {
    cursor: pointer;
    color: var(--primary-color-1);
}
.job_type img {
    filter: invert(17%) sepia(59%) saturate(556%) hue-rotate(111deg)
        brightness(92%) contrast(91%);
}
.job_type.selected_job {
    color: var(--primary-color-2);
}
.job_type.selected_job img {
    filter: invert(68%) sepia(63%) saturate(365%) hue-rotate(339deg)
        brightness(86%) contrast(82%);
}

.form-input-custom {
    background: transparent;
    border: unset;
    border-bottom: 1px solid grey;
    border-radius: 0px !important;
}
.form-input-custom:focus {
    background: transparent;
    border: unset;
    border-bottom: 1px solid #c09869;
    outline: none;
    box-shadow: none;
}
/* .study-space {
    margin-bottom: 168px;
} */
@media (max-width: 1580px) {
}
@media (max-width: 1380px) {
    .bookmark-text {
        font-size: 10px;
    }
}
@media (max-width: 1200px) {
    .main-title {
        font-size: 3rem;
        font-weight: unset;
    }
    .main-subtitle {
        font-size: 2.2rem;
        font-weight: unset;
    }
}
@media (max-width: 990px) {
    .stay-bold-with-us {
        min-height: unset !important;
    }
    .navbar-collapse .bookmark.active,
    .active2 {
        display: none;
    }
    .inactive2.bg-main-gold {
        background: var(--primary-color-1);
    }

    .btn-main {
        display: inline-block;
        background-color: white;
        color: black;
        font-size: 20px;
        padding: 10px;
        line-height: 1;
        border-radius: 50px;
        /* line-height: normal; */
        text-align: center;
    }
}
@media (max-width: 768px) {
}
@media (max-width: 767px) {
    .success-img {
        width: 150px;
    }
    .success-container {
        background-image: url(../images/join-us/Register\ Bg-01.svg) !important;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        padding: 12vw 6vw;
        border-radius: 10px;
    }
    .slider-nav-img {
        height: 80px !important;
    }

    .slider-single-img {
        padding-top: 200px !important;
        background-position: top;
    }
    .btn-half-width {
        width: 100%;
    }
    .bg-choco-1-sm {
        background: linear-gradient(
            to bottom,
            #7c4d2d 0%,
            #7c4d2d 10%,
            #af7045 10%,
            #af7045 100%
        ) !important;
    }

    .bg-choco-2-sm {
        background: linear-gradient(
            to bottom,
            #af7045 0%,
            #af7045 10%,
            #cb9567 10%,
            #cb9567 100%
        ) !important;
        /* background-color: #af7045; */
    }
    .bg-choco-3-sm {
        background: linear-gradient(
            to bottom,
            #cb9567 0%,
            #cb9567 10%,
            #cb9567 10%,
            #cb9567 100%
        ) !important;
        /* background-color: #cb9567; */
    }
    .main-title {
        font-size: 2.5rem;
        font-weight: unset;
    }
    .main-subtitle {
        font-size: 2rem;
        font-weight: unset;
    }

    .subtitle-sm {
        font-size: 1.2rem;
        font-weight: unset;
        line-height: 1.5rem;
    }
}
@media (max-width: 520px) {
    .main-title {
        font-size: 2rem;
        font-weight: unset;
    }
    .main-subtitle {
        font-size: 1.8rem;
        font-weight: unset;
    }
}
@media (max-width: 380px) {
    .navbar-brand img {
        height: 40px !important;
    }
}

img.navbar-toggler-icon {
    content: unset;
}

.float {
    animation: pulse-animation 2s infinite;
}

.float {
    bottom: 85px;
    right: 10px;
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float {
    margin-top: 16px;
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
