* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
svg {
    width: 30px;
    height: 30px;
}
header,footer {
    width: 100%;
}
section {
    background-color: rgb(200,218,211);
}
html,body {
    min-height: 100%;
    height: 100%;
    font-family: Ubuntu, sans-serif;
    color: #000000;
}
.top-learning-log {
    flex: 1 0 auto;
}
a {
    color: inherit;
    text-decoration: none;
}
.footer {
    flex: 0 0 auto;
}
.container {
    margin: auto;
    width: 1200px;
    max-width: 100%;
}

.inner-container-log {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
@media only screen and (max-width: 1200px)  {
        .container {
            width: 100%;
            padding: 0 20px;
    }
}
@media only screen and (max-width: 800px)  {
        .container {
            padding: 0 12px;
    }
}.thxSection-log {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(200,218,211);
    padding: 40px;
    position: relative;
    overflow: hidden;
}
.thxSection-log .container {
    max-width: 600px;
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 60px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}
.thxSection-log h2 {
    margin-bottom: 20px;
    font-size: 41px;
    font-family: Ubuntu, sans-serif;
    font-weight: 700;
    color: #000000;
    border-bottom: 2px solid rgb(147,181,179);
    padding-bottom: 10px;
    width: 100%;
}
.thxSection-log p {
    font-size: 16px;
    font-family: Ubuntu, sans-serif;
    font-weight: 300;
    color: #000000;
    line-height: 1.6;
    margin-top: 10px;
}
@media only screen and (max-width: 800px) {
    .thxSection-log {
        padding: 20px;
    }
    
    .thxSection-log .container {
        padding: 30px;
    }
    
    .thxSection-log h2 {
        font-size: 35px;
    }
    
    .thxSection-log p {
        font-size: 23px;
    }
}
.our-mission-log {
    position: relative;
    background: rgb(99,112,126,0.5);
    color: #ffffff;
    padding: 120px 0;
    overflow: hidden;
}

.our-mission-log::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(217deg, rgb(147,181,179,0.5), transparent 70%),
        linear-gradient(127deg, rgb(99,112,126,0.5), transparent 70%);
    z-index: 0;
    opacity: 0.2;
}

.our-mission-log .container {
    position: relative;
    z-index: 2;
}

.our-mission-log .team-profile-log {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.our-mission-log h3 {
    font-size: calc(46px * 1.2);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
    position: relative;
    transform: translateX(-100px);
    opacity: 0;
    animation: slideIn 0.6s ease forwards;
}

@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.our-mission-log h3::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -30px;
    width: 20px;
    height: 3px;
    background: rgb(147,181,179);
    transform: translateY(-50%);
}

.our-mission-log .master-class-log {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    border-left: 3px solid rgb(147,181,179);
    padding-left: 40px;
    transform: translateX(-50px);
    opacity: 0;
    animation: fadeInRight 0.6s ease forwards 0.3s;
}

@keyframes fadeInRight {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.our-mission-log .master-class-log span {
    grid-column: 1 / 3;
    font-size: 22px;
    font-weight: 600;
    color: rgb(147,181,179);
    margin-bottom: 10px;
    display: block;
    position: relative;
}

.our-mission-log .master-class-log p {
    font-size: 13px;
    line-height: 1.8;
    color: #ffffff;
    opacity: 0.9;
    margin: 0;
    padding-right: 20px;
}

.our-mission-log .master-class-log .img-showcase-log {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    transform: scale(1);
    transition: transform 0.4s ease;
}

.our-mission-log .master-class-log .img-showcase-log:hover {
    transform: scale(1.05);
}

.our-mission-log .master-class-log .img-showcase-log::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgb(147,181,179,0.5), transparent);
    opacity: 0.3;
    z-index: 1;
}

.our-mission-log .virtual-track-log {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    border-right: 3px solid rgb(99,112,126);
    padding-right: 40px;
    transform: translateX(50px);
    opacity: 0;
    animation: fadeInLeft 0.6s ease forwards 0.6s;
}

@keyframes fadeInLeft {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.our-mission-log .virtual-track-log p {
    font-size: 13px;
    line-height: 1.8;
    color: #ffffff;
    opacity: 0.9;
    margin: 0;
    grid-column: 2 / 3;
    padding-left: 20px;
}

.our-mission-log .virtual-track-log .study-expert-log {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
    transform: scale(1);
    transition: transform 0.4s ease;
}

.our-mission-log .virtual-track-log .study-expert-log:hover {
    transform: scale(1.05);
}

.our-mission-log .virtual-track-log .study-expert-log::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgb(99,112,126,0.5), transparent);
    opacity: 0.3;
    z-index: 1;
}

.our-mission-log .team-profile-log::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 40%;
    height: 1px;
    background: linear-gradient(to right, rgb(147,181,179), transparent);
}

.our-mission-log .team-profile-log::after {
    content: "";
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 40%;
    height: 1px;
    background: linear-gradient(to left, rgb(99,112,126), transparent);
}

.our-mission-log .container::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px solid rgb(147,181,179,0.5);
    border-radius: 50%;
    left: -100px;
    top: -100px;
    z-index: -1;
    animation: rotate 30s linear infinite;
}

.our-mission-log .container::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgb(99,112,126,0.5);
    border-radius: 50%;
    right: -150px;
    bottom: -150px;
    z-index: -1;
    animation: rotate 40s linear infinite reverse;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.our-mission-log::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

@media screen and (max-width: 992px) {
    .our-mission-log {
        padding: 80px 0;
    }
    
    .our-mission-log h3 {
        font-size: calc(46px * 1.1);
    }
    
    .our-mission-log .team-profile-log {
        gap: 70px;
    }
    
    .our-mission-log .about_us_company,
    .our-mission-log .virtual-track-log {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .our-mission-log .master-class-log p {
        grid-column: 1 / 2;
        padding-right: 0;
    }
    
    .our-mission-log .virtual-track-log p {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        padding-left: 0;
    }
    
    .our-mission-log .virtual-track-log .study-expert-log {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }
    
    .our-mission-log .master-class-log .photo,
    .our-mission-log .virtual-track-log .study-expert-log {
        min-height: 250px;
    }
}

@media screen and (max-width: 768px) {
    .our-mission-log {
        padding: 60px 0;
    }
    
    .our-mission-log h3 {
        font-size: 46px;
    }
    
    .our-mission-log .team-profile-log {
        gap: 50px;
    }
    
    .our-mission-log .about_us_company,
    .our-mission-log .virtual-track-log {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .our-mission-log .master-class-log {
        border-left: 2px solid rgb(147,181,179);
    }
    
    .our-mission-log .virtual-track-log {
        border-right: 2px solid rgb(99,112,126);
    }
    
    .our-mission-log .master-class-log span {
        font-size: calc(22px * 0.9);
    }
    
    .our-mission-log .master-class-log p,
    .our-mission-log .virtual-track-log p {
        font-size: calc(13px * 0.95);
        line-height: 1.7;
    }
    
    .our-mission-log .master-class-log .photo,
    .our-mission-log .virtual-track-log .study-expert-log {
        min-height: 220px;
        clip-path: none;
        border-radius: 10px;
    }
}

@media screen and (max-width: 576px) {
    .our-mission-log {
        padding: 50px 0;
    }
    
    .our-mission-log h3 {
        font-size: calc(46px * 0.8);
    }
    
    .our-mission-log h3::before {
        left: -20px;
        width: 15px;
    }
    
    .our-mission-log .team-profile-log {
        gap: 40px;
    }
    
    .our-mission-log .about_us_company,
    .our-mission-log .virtual-track-log {
        gap: 20px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .our-mission-log .master-class-log .photo,
    .our-mission-log .virtual-track-log .study-expert-log {
        min-height: 180px;
    }
    
    .our-mission-log .container::before,
    .our-mission-log .container::after {
        display: none;
    }
}.title-page-log .study-express-log {
    background-size: cover;
    background-position: center !important;
}

.title-page-log .why-mission-log h1 {
    color: rgb(99,112,126);
}

.title-page-log .why-mission-log h3 {
    color: rgb(99,112,126);
    text-align: right;
    font-size: 20px;
    margin-bottom: 8px;
}

.title-page-log .why-mission-log p {
    color: #000000;
    text-align: right;
}

.title-page-log {
    width: 100%;
}

.title-page-log .study-express-log {
    width: 100%;
    min-height: 680px;
    height: auto;
    position: relative;
}

.title-page-log .why-mission-log {
    position: absolute;
    right: 0px;
    bottom: -1px;
    background: #ffffff;
    width: 65%;
    height: 100%;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 0% 100%);
    padding: 50px 50px 50px 30%;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    justify-content: flex-end;
    min-width: 680px;
    border-radius: 0;
}

.title-page-log .why-mission-log h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: right;
}

.title-page-log .why-mission-log p {
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 16px;
}

@media only screen and (max-width: 800px) {
    .title-page-log .study-express-log {
        min-height: 320px;
        height: auto;
    }

    .title-page-log .why-mission-log {
        min-width: unset;
        width: 100%;
        clip-path: polygon(100% 100%, 100% -175%, 0 100%);
        padding: 100px 30px 30px 35%;
        text-align: right;
        min-width: unset;
    }

    .title-page-log .why-mission-log h1 {
        font-size: 18px;
    }

    .title-page-log .why-mission-log h3 {
        font-size: 16px;
    }

    .title-page-log .why-mission-log p {
        font-size: 14px;
    }
}

.inner-container-log .title-page-log {
    position: relative;
}

.inner-container-log .title-page-log::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0.7;
    z-index: 0;
}

.inner-container-log .title-page-log .why-mission-log {
    position: relative;
    clip-path: none;
    margin: auto;
    height: auto;
    background: none;
    display: flex;
    padding: 30px;
    display: flex;
    flex-direction: column;
    min-height: 336px;
    justify-content: center;
    max-width: 1200px;
}

.inner-container-log .title-page-log .why-mission-log::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: #ffffff;
    opacity: 0.7;
    z-index: 1;
}

.inner-container-log .title-page-log .study-express-log {
    display: flex;

}

.inner-container-log .title-page-log .why-mission-log h1 {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #000000;
}

.inner-container-log .title-page-log .why-mission-log h3 {
    color: #000000;
    text-align: center;
    z-index: 2;
    width: 100%;
}

.inner-container-log .title-page-log .why-mission-log p {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    margin-top: 40px;
    font-size: 20px;
    line-height: 32px;
    color: #000000;
}

@media only screen and (max-width: 800px) {
    .inner-container-log .title-page-log .study-express-log {
        padding: 20px;
    }

    .inner-container-log .title-page-log .why-mission-log h1 {
        font-size: 30px;
    }

    .inner-container-log .title-page-log .why-mission-log {
        padding: 30px 10px;
    }
}.program-details-log {
    padding-top: 100px;
    padding-bottom: 100px;
    background: rgb(99,112,126);
    font-family: Ubuntu, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}
.program-details-log h2 {
    color: rgb(147,181,179);
    font-size: 47px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.program-details-log .top-learning-log {
    overflow: hidden;
    box-shadow: 0 0 20px rgb(147,181,179,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: row;
    width: 100%;
}
.program-details-log .img-showcase-log {
    width: 50%;
    height: auto;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.3s ease;
}
.program-details-log .caption-box-log {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.program-details-log h3 {
    color: rgb(99,112,126);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.program-details-log p {
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
}
.program-details-log .query-feedback-log {
    background: rgb(147,181,179);
    color: #ffffff;
    padding: 15px 30px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}
.program-details-log .query-feedback-log:hover {
    background: rgb(99,112,126);
    transform: translateY(-5px);
}
.program-details-log .team-profile-log {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.program-details-log .training-guide-log {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.program-details-log .learn-now-log {
    width: 100%;
    margin-bottom: 40px;
    background: rgb(200,218,211);
}
@media only screen and (max-width: 600px) {
    .program-details-log {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .program-details-log .top-learning-log {
        flex-direction: column;
        width: 100%;
    }
    .program-details-log .img-showcase-log {
        width: 100%;
        height: 200px;
    }
    .program-details-log h2 {
        font-size: 36px;
    }
    .program-details-log h3 {
        font-size: 23px;
    }
}
.inner-container-log .program-details-log {
    position: relative;
    overflow: hidden;
}
.inner-container-log .program-details-log .training-guide-log {
    width: 100%;
}
.inner-container-log .program-details-log .top-learning-log {
    box-shadow: none;
    display: flex;
    align-items: stretch;
}
.inner-container-log .program-details-log .img-showcase-log {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0;
    background-position: center !important;
}
.inner-container-log .program-details-log .caption-box-log {
    position: relative;
    z-index: 3;
    background: none;
    width: 100%;
    min-height: unset;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    color: #ffffff;
    border: none;
}
.inner-container-log .program-details-log h3 {
    font-size: 36px;
    font-weight: 700;
    color: rgb(99,112,126);
    margin: 0;
}
.inner-container-log .program-details-log p {
    padding: 0 40px 0 0;
    margin-top: 20px;
    font-size: 18px;
    color: #000000;
    line-height: 1.6;
    font-weight: 400;
}
.inner-container-log .program-details-log .query-feedback-log {
    margin-top: 40px;
    display: inline-block;
    padding: 15px 40px;
    background: rgb(147,181,179);
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
    border-radius: 10px;
    border: none;
    transition: background 0.3s ease, transform 0.3s ease;
}
.inner-container-log .program-details-log .query-feedback-log:hover {
    background: rgb(99,112,126);
    transform: translateY(-5px);
}
@media only screen and (max-width: 800px) {
    .inner-container-log .program-details-log .caption-box-log {
        width: 100%;
        padding: 20px;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .inner-container-log .program-details-log p {
        padding: 0;
        font-size: 18px;
        line-height: 1.5;
        margin-top: 20px;
    }
    .inner-container-log .program-details-log h3 {
        font-size: 21px;
    }
    .inner-container-log .program-details-log .query-feedback-log {
        margin-top: 20px;
    }
    .inner-container-log .program-details-log .img-showcase-log {
        height: 300px;
    }
}.instructional-approach-log {
    background-color: rgb(200,218,211);
    padding: 180px 0;
    position: relative;
    overflow: hidden;
}

.instructional-approach-log::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 80%;
    height: 200%;
    background: linear-gradient(135deg, rgb(147,181,179,0.5) 0%, transparent 60%);
    transform: rotate(-15deg);
    opacity: 0.7;
}

.instructional-approach-log::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -25%;
    width: 80%;
    height: 200%;
    background: linear-gradient(135deg, rgb(99,112,126,0.5) 0%, transparent 60%);
    transform: rotate(-15deg);
    opacity: 0.7;
}

.instructional-approach-log .teach-flow-log {
    position: relative;
    z-index: 2;
}

.instructional-approach-log .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.instructional-approach-log .team-profile-log {
    position: relative;
    padding: 60px;
    background: #ffffff;
    border-radius: 0 11px 11px 0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.instructional-approach-log .team-profile-log::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, rgb(147,181,179), rgb(99,112,126));
}

.instructional-approach-log .team-profile-log::after {
    content: '';
    position: absolute;
    right: 40px;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, rgb(147,181,179,0.5), transparent);
    opacity: 0.3;
}

.instructional-approach-log .team-profile-log h3 {
    color: #000000;
    font-size: 37px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-left: 20px;
    line-height: 1.4;
}

.instructional-approach-log .team-profile-log h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    background: rgb(147,181,179);
    transform: translateY(-50%) rotate(45deg);
}

.instructional-approach-log .team-profile-log span {
    color: #000000;
    font-size: 16px;
    line-height: 1.8;
    display: block;
    font-weight: 400;
    padding-left: 20px;
}

.instructional-approach-log .img-showcase-log {
    height: 600px;
    position: relative;
    border-radius: 11px;
    overflow: hidden;
    transform: perspective(1000px) rotateY(5deg) translateZ(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.instructional-approach-log .img-showcase-log::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgb(147,181,179,0.5) 0%, transparent 70%);
    z-index: 1;
}

.instructional-approach-log .img-showcase-log::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    opacity: 0.8;
    z-index: 2;
    transition: transform 0.3s ease;
}

.instructional-approach-log .img-showcase-log:hover {
    transform: perspective(1000px) rotateY(0deg) translateZ(0);
}

.instructional-approach-log .img-showcase-log:hover::after {
    transform: scale(0.9) translate(5px, -5px);
}

@media (max-width: 1200px) {
    .instructional-approach-log {
        padding: 140px 0;
    }

    .instructional-approach-log .container {
        gap: 60px;
    }

    .instructional-approach-log .img-showcase-log {
        height: 500px;
    }

    .instructional-approach-log .team-profile-log {
        padding: 45px;
    }
}

@media (max-width: 991px) {
    .instructional-approach-log {
        padding: 100px 0;
    }

    .instructional-approach-log .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .instructional-approach-log .img-showcase-log {
        height: 400px;
        transform: perspective(1000px) rotateY(0deg) translateZ(0);
        margin: 0 auto;
        width: 90%;
    }

    .instructional-approach-log .team-profile-log {
        width: 90%;
        margin: 0 auto;
        border-radius: 11px;
    }
}

@media (max-width: 767px) {
    .instructional-approach-log {
        padding: 80px 0;
    }

    .instructional-approach-log .img-showcase-log {
        height: 300px;
        width: 100%;
    }

    .instructional-approach-log .img-showcase-log::after {
        width: 40px;
        height: 40px;
        top: 10px;
        right: 10px;
    }

    .instructional-approach-log .team-profile-log {
        padding: 30px;
        width: 100%;
    }

    .instructional-approach-log .team-profile-log h3 {
        font-size: calc(37px * 0.85);
        margin-bottom: 20px;
    }

    .instructional-approach-log .team-profile-log span {
        font-size: calc(16px * 0.95);
        padding-left: 15px;
    }
}.advantages-summary-log {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgb(147,181,179), rgb(99,112,126));
    color: #ffffff;
    border: 1px solid #000000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.advantages-summary-log .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.advantages-summary-log .fast-advantage-log {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}
.advantages-summary-log .fast-advantage-log h2 {
    font-size: 31px;
    color: #ffffff;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    border-bottom: 2px solid rgb(99,112,126);
    padding-bottom: 10px;
}
.advantages-summary-log .fast-edge-log {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
    gap: 20px;
}
.advantages-summary-log .fast-edge-log .img-showcase-log {
    width: 40%;
    height: 400px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border: 3px solid rgb(99,112,126);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.advantages-summary-log .pro-upgrade-log {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 55%;
    background: linear-gradient(135deg, rgb(99,112,126,0.5), rgb(147,181,179,0.5));
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    border: 1px solid rgb(147,181,179);
}
.advantages-summary-log .pro-upgrade-log .career-edges-log {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgb(99,112,126);
    transition: background 0.3s ease, transform 0.3s ease;
    width: 100%;
}
.advantages-summary-log .pro-upgrade-log .career-edges-log:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateX(10px);
}
.advantages-summary-log .pro-upgrade-log .career-edges-log:last-child {
    border-bottom: none;
}
.advantages-summary-log .pro-upgrade-log .expert-learn-log {
    margin-right: 15px;
    flex-shrink: 0;
}
.advantages-summary-log .pro-upgrade-log .expert-learn-log svg,
.advantages-summary-log .pro-upgrade-log .expert-learn-log svg path {
    width: 50px;
    height: 50px;
    fill: #ffffff;
}
.advantages-summary-log .pro-upgrade-log h4 {
    font-size: 17px;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
    flex-grow: 1;
}
@media only screen and (max-width: 1200px) {
    .advantages-summary-log .fast-edge-log {
        flex-direction: column;
    }
    .advantages-summary-log .fast-edge-log .photo,
    .advantages-summary-log .pro-upgrade-log {
        width: 100%;
    }
    .advantages-summary-log .pro-upgrade-log {
        margin-top: 20px;
    }
}
@media only screen and (max-width: 800px) {
    .advantages-summary-log .fast-advantage-log h2 {
        font-size: 21px;
    }
    .advantages-summary-log .fast-edge-log .img-showcase-log {
        height: 300px;
    }
    .advantages-summary-log .pro-upgrade-log h4 {
        font-size: 12px;
    }
}
.client-testimonials-log {
    padding: 100px 20px;
    background-color: rgb(99,112,126);
    font-family: Ubuntu, sans-serif;
    color: #000000;
}

.client-testimonials-log h2 {
    color: rgb(147,181,179);
    font-size: 41px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.client-testimonials-log .team-profile-log {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.client-testimonials-log .opinion-spot-log {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

.client-testimonials-log .testimonial-sharing-log {
    background: #ffffff;
    border-radius: 29px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    width: calc(33.333% - 30px);
    max-width: 360px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.client-testimonials-log .testimonial-sharing-log:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.client-testimonials-log .img-showcase-log {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 4px solid rgb(147,181,179);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.client-testimonials-log .text {
    text-align: center;
}

.client-testimonials-log .testimonial-sharing-log span {
    color: rgb(99,112,126);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.client-testimonials-log .testimonial-sharing-log p {
    color: #000000;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
    padding: 0 10px;
}

@media only screen and (max-width: 1024px) {
    .client-testimonials-log .testimonial-sharing-log {
        width: calc(50% - 30px);
    }
}

@media only screen and (max-width: 768px) {
    .client-testimonials-log .testimonial-sharing-log {
        width: 100%;
    }
}

.inner-container-log .client-testimonials-log .testimonial-sharing-log {
    width: 800px;
    max-width: 100%;
    background: #ffffff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    border-radius: 29px;
    flex-direction: row;
    align-items: center;
    padding: 30px;
    margin-bottom: 30px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.inner-container-log .client-testimonials-log .testimonial-sharing-log:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.inner-container-log .client-testimonials-log .opinion-spot-log {
    flex-wrap: wrap;
    align-items: center;
}

.inner-container-log .client-testimonials-log .img-showcase-log {
    width: 180px;
    height: 180px;
    flex-shrink: 0;
    margin-right: 30px;
    border-radius: 29px;
}

.inner-container-log .client-testimonials-log .text {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.inner-container-log .client-testimonials-log .text p {
    margin-bottom: 20px;
    font-size: 20px;
}

.inner-container-log .client-testimonials-log .text span {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 10px;
}

@media only screen and (max-width: 800px) {
    .inner-container-log .client-testimonials-log .testimonial-sharing-log {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .inner-container-log .client-testimonials-log .img-showcase-log {
        width: 140px;
        height: 140px;
        margin-bottom: 20px;
        margin-right: 0;
    }

    .inner-container-log .client-testimonials-log .text {
        align-items: center;
        text-align: center;
    }
}header .head-guide-log {
    background: rgb(147,181,179,0.5);
    color: #ffffff;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease;
}

header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header .top-mentor-log {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

header .top-pagebar-log {
    display: flex;
    align-items: center;
}

header .top-pagebar-log a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
}

header .top-pagebar-log img {
    height: 50px;
    width: auto;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

header .top-pagebar-log img:hover {
    transform: scale(1.1);
}

header .nav-site-log {
    display: flex;
    gap: 25px;
}

header .nav-site-log a {
    text-decoration: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    border-radius: 10px;
    position: relative;
    transition: background 0.3s ease, color 0.3s ease;
}

header .nav-site-log a::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: rgb(99,112,126);
    transition: width 0.3s ease;
}

header .nav-site-log a:hover::before,
header .nav-site-log a.active::before {
    width: 100%;
}

header .nav-site-log a.active {
    background: rgb(99,112,126);
    color: #ffffff;
}

header .nav-site-log a:hover {
    background: rgb(147,181,179);
}

@media only screen and (max-width: 1200px) {
    header .top-mentor-log {
        flex-direction: column;
        align-items: flex-start;
    }
    header .nav-site-log {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 20px;
        position: static;
        top: 100%;
        left: 0;
        z-index: 90;
        background: none;
        width: 100%;
    }
    header .nav-site-log a {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
        margin-right: 0;

    }
    header .menu.main-master-log {
        display: flex;
    }
}

.inner-container-log header .top-mentor-log {
    flex-direction: row-reverse;
    justify-content: space-around;
}

.inner-container-log header .top-pagebar-log {
    justify-content: space-between;
}

.inner-container-log header .top-pagebar-log .site-info-log svg, .inner-container-log header .top-pagebar-log .site-info-log img {
    margin-right: 0;
    width: 64px;
    height: 64px;
    fill: rgb(147,181,179);
}

.inner-container-log .nav-site-log {
    min-width: 50%;
    justify-content: flex-start;
}

.inner-container-log header .nav-site-log a {
    padding: 10px 5px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 20px;
    border-bottom: 1px solid transparent;
}

.inner-container-log header .nav-site-log a:hover {
    color: inherit;
    border-bottom: 1px solid rgb(147,181,179);
}

.inner-container-log header .nav-site-log a.active {
    border: none;
    border-radius: 0;
}

.inner-container-log header .nav-site-log a.active:hover {
    border: none;
    background: none;
    color: inherit;
    border-bottom: 1px solid rgb(147,181,179);
}

.inner-container-log header .head-teach-log {
    max-width: 48%;
    align-items: end;
}

.inner-container-log header .top-sitebar-log {
    text-align: right;
}

@media only screen and (max-width: 1200px) {
    .inner-container-log header .nav-site-log a {
        margin-right: 0;
    }
    .inner-container-log header .top-mentor-log {
        flex-direction: column;
        justify-content: flex-start;
    }
    .inner-container-log header .top-pagebar-log {
        width: 100%;
        justify-content: center;
    }
    .inner-container-log header .top-pagebar-log {
        margin: 0;
    }
    .inner-container-log header .nav-site-log {
        width: 100%;
        padding: 10px 20px;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .inner-container-log header .top-sitebar-log {
        line-height: 28px;
        margin-bottom: 6px;
        text-align: center;
    }
    .inner-container-log header .head-teach-log {
        max-width: unset;
    }
}footer {
    background: rgb(99,112,126);
    color: #ffffff;
    font-family: Ubuntu, sans-serif;
}
footer .sec-cert-log {
    background: rgb(147,181,179);
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    border-top: 2px solid rgb(99,112,126);
    font-size: 15px;
}
footer .top-pagebar-log svg,
footer .top-pagebar-log svg path,
footer .top-pagebar-log img {
    height: 80px;
    width: 80px;
    fill: rgb(147,181,179);
    margin-right: 15px;
}
footer .nav-site-log a {
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    margin-right: 20px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}
footer .nav-site-log a:hover {
    color: rgb(147,181,179);
}
footer .footer {
    padding-top: 60px;
    padding-bottom: 60px;
}
footer .lesson-cta-log {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
footer .top-expert-log {
    display: flex;
    flex-direction: column;
}
footer .recycle-info-log {
    color: #ffffff;
}
footer .recycle-info-log a {
    color: #ffffff;
    text-decoration: underline;
    transition: color 0.3s ease;
}
footer .recycle-info-log a:hover {
    color: rgb(99,112,126);
}
.inner-container-log footer .footer {
    padding: 0;
    background: rgb(99,112,126);
}
.inner-container-log footer .lesson-cta-log {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.inner-container-log footer .top-pagebar-log {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
    border-bottom: 3px solid rgb(147,181,179);
    margin-bottom: 20px;
}
.inner-container-log footer .top-expert-log {
    flex-direction: row;
    justify-content: center;
}
.inner-container-log footer .nav-site-log a {
    padding: 5px 20px;
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    transition: background 0.3s ease, color 0.3s ease;
    margin: 10px;
}
.inner-container-log footer .nav-site-log a:hover {
    background: rgb(147,181,179);
    color: #ffffff;
}
.inner-container-log footer .sec-cert-log {
    background: rgb(147,181,179,0.5);
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 15px;
    border-radius: 14px;
}
.inner-container-log footer .recycle-info-log {
    text-align: center;
    font-weight: 400;
}
@media only screen and (max-width: 1200px) {
    footer .lesson-cta-log {
        padding: 0 20px;
    }
}
@media only screen and (max-width: 800px) {
    footer .footer_info,
    footer .menu_holder,
    .inner-container-log footer .footer_info,
    .inner-container-log footer .top-expert-log {
        flex-direction: column;
        align-items: center;
    }
    footer .nav-site-log a,
    .inner-container-log footer .nav-site-log a {
        margin: 0 0 10px 0;
        font-size: 18px;
        width: 100%;
        text-align: center;
    }
    .inner-container-log footer .lesson-cta-log {
        padding: 10px;
    }
    .inner-container-log footer .recycle-info-log a {
        display: block;
        margin-top: 5px;
    }
}.privacy-gate-log {
    background-color: rgb(147,181,179);
    padding: 2em;
    font-family: Ubuntu, sans-serif;
    color: #ffffff;
    box-shadow: 0 0 20px rgb(147,181,179,0.5);
    margin: 0 auto;
    border: 1px solid rgb(147,181,179,0.5);
}
.privacy-gate-log h1 {
    font-size: 46px;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5em;
    text-shadow: 0 0 10px rgb(147,181,179,0.5);
}
.privacy-gate-log h2 {
    font-size: 33px;
    color: rgb(99,112,126);
    font-weight: 600;
    margin-bottom: 1em;
    text-shadow: 0 0 8px rgb(99,112,126,0.5);
}
.privacy-gate-log h3,
.privacy-gate-log h4,
.privacy-gate-log h5,
.privacy-gate-log h6 {
    margin-bottom: 0.75em;
    color: #ffffff;
}
.privacy-gate-log h3 {
    font-size: calc(22px - 0.2em);
    font-weight: 400;
}
.privacy-gate-log h4 {
    font-size: calc(22px - 0.4em);
    font-weight: 400;
}
.privacy-gate-log h5 {
    font-size: 22px;
    font-weight: 300;
}
.privacy-gate-log h6 {
    font-size: 22px;
    font-weight: 300;
}
.privacy-gate-log ul,
.privacy-gate-log ol {
    padding-left: 1.5em;
    margin-bottom: 1.5em;
}
.privacy-gate-log ul {
    list-style-type: circle;
}
.privacy-gate-log ol {
    list-style-type: decimal;
}
.privacy-gate-log li {
    margin-bottom: 0.75em;
    font-size: 18px;
    color: #ffffff;
}
.privacy-gate-log p {
    font-size: 18px;
    margin-bottom: 1.5em;
    line-height: 1.7;
    color: #ffffff;
}
.privacy-gate-log span {
    color: rgb(147,181,179);
    font-weight: 600;
}
.privacy-gate-log div {
    margin-bottom: 1.5em;
}
@media only screen and (max-width: 800px) {
    .privacy-gate-log {
        padding: 1em;
        border-radius: 10px;
    }
    .privacy-gate-log h1 {
        font-size: calc(22px - 0.5em);
    }
    .privacy-gate-log h2 {
        font-size: calc(22px - 0.4em);
    }
    .privacy-gate-log p,
    .privacy-gate-log li {
        font-size: calc(18px - 0.2em);
    }
}
.privacy-gate-log h1::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: rgb(147,181,179);
    margin: 0.5em auto 0;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(147,181,179,0.5);
}
.privacy-gate-log h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: rgb(99,112,126);
    margin: 0.5em auto 0;
    border-radius: 10px;
    box-shadow: 0 0 8px rgb(99,112,126,0.5);
}
.privacy-gate-log ul li::before,
.privacy-gate-log ol li::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: rgb(147,181,179);
    border-radius: 50%;
    margin-right: 0.5em;
    box-shadow: 0 0 5px rgb(147,181,179,0.5);
}
.privacy-gate-log a {
    color: rgb(147,181,179);
    text-decoration: underline;
    box-shadow: 0 0 5px rgb(147,181,179,0.5);
}
.privacy-gate-log a:hover {
    color: rgb(99,112,126);
    box-shadow: 0 0 5px rgb(99,112,126,0.5);
}
.privacy-gate-log blockquote {
    margin: 1em 0;
    padding: 1.5em;
    border-left: 5px solid rgb(147,181,179);
    background-color: rgba(0, 0, 0, 0.5);
    font-style: italic;
    color: #ffffff;
    box-shadow: 0 0 10px rgb(147,181,179,0.5);
}header .top_plank {
    background: rgb(147,181,179);
    color:  #ffffff;
}
header .top_plank .main-panel-log div svg, header .top_plank .main-panel-log div svg path {
    fill: #ffffff;
}
header .top_plank .main-panel-log div span {
    color: #ffffff;
}
header .top_plank .main-panel-log {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 0 10px 0;
    font-size: 12px;
    line-height: 21px;
    flex-wrap: wrap;
}
header .top_plank .main-panel-log div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-right: 24px;
}
header .top_plank .main-panel-log div img, header .top_plank .main-panel-log div svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}.contact-form-box-log {
    position: relative;
    padding: 120px 0;
}

.contact-form-box-log::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgb(99,112,126,0.5), rgb(147,181,179,0.5));
    z-index: 1;
}

.contact-form-box-log .container {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-box-log .inquiry-info-log {
    display: flex;
    flex-direction: row;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: perspective(1000px) rotateX(0deg);
    transition: transform 0.5s ease;
}

.contact-form-box-log .inquiry-info-log:hover {
    transform: perspective(1000px) rotateX(2deg);
}

.contact-form-box-log .reach-inquiry-log {
    width: 40%;
    padding: 60px 40px;
    background-color: rgb(200,218,211);
    position: relative;
    overflow: hidden;
}

.contact-form-box-log .reach-inquiry-log::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgb(99,112,126) 0%, transparent 70%);
    opacity: 0.2;
}

.contact-form-box-log .reach-inquiry-log h3 {
    color: #000000;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
}

.contact-form-box-log .reach-inquiry-log h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 4px;
    background: rgb(99,112,126);
}

.contact-form-box-log .reach-inquiry-log div {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateX(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-box-log .reach-inquiry-log div:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-box-log .reach-inquiry-log div svg {
    width: 24px;
    height: 24px;
    margin-right: 15px;
}

.contact-form-box-log .reach-inquiry-log div svg path {
    fill: rgb(147,181,179);
}

.contact-form-box-log .reach-inquiry-log div span {
    color: #000000;
    font-size: 14px;
    font-weight: 400;
}

.contact-form-box-log .reach-inquiry-log div span a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-form-box-log .reach-inquiry-log div span a:hover {
    color: rgb(147,181,179);
}

.contact-form-box-log .inquiry-support-log {
    width: 60%;
    padding: 60px 40px;
    background: #ffffff;
    position: relative;
}

.contact-form-box-log .inquiry-support-log::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgb(147,181,179,0.5) 0%, transparent 70%);
    opacity: 0.3;
}

.contact-form-box-log .inquiry-support-log h3 {
    color: #000000;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-form-box-log form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-box-log form input[type="text"],
.contact-form-box-log form input[type="email"] {
    padding: 18px 20px;
    border: none;
    background-color: rgb(200,218,211);
    border-radius: 10px;
    font-size: 14px;
    color: #000000;
    transition: all 0.3s ease;
}

.contact-form-box-log form input[type="text"]:focus,
.contact-form-box-log form input[type="email"]:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgb(147,181,179);
    transform: translateY(-2px);
}

.contact-form-box-log form input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.contact-form-box-log .support-block-log {
    margin-top: 10px;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.contact-form-box-log .support-block-log input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.contact-form-box-log .support-block-log label {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 16px;
    color: #000000;
    line-height: 1.5;
}

.contact-form-box-log .support-block-log label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 2px solid rgb(147,181,179);
    border-radius: 6px;
    background: transparent;
    transition: all 0.3s ease;
}

.contact-form-box-log .support-block-log input[type="checkbox"]:checked + label::before {
    background: rgb(147,181,179);
}

.contact-form-box-log .support-block-log input[type="checkbox"]:checked + label::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.contact-form-box-log .support-block-log label a {
    color: rgb(147,181,179);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-form-box-log .support-block-log label a:hover {
    text-decoration: underline;
}

.contact-form-box-log form .query-feedback-log {
    margin-top: 15px;
    background: rgb(147,181,179);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 18px 35px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-form-box-log form .query-feedback-log::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.contact-form-box-log form .query-feedback-log:hover {
    background: rgb(99,112,126);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-box-log form .query-feedback-log:hover::before {
    transform: translateX(100%);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.contact-form-box-log .reach-inquiry-log div:nth-child(2) {
    animation: bounce 5s infinite ease-in-out;
    animation-delay: 0.1s;
}

.contact-form-box-log .reach-inquiry-log div:nth-child(3) {
    animation: bounce 5s infinite ease-in-out;
    animation-delay: 0.3s;
}

.contact-form-box-log .reach-inquiry-log div:nth-child(4) {
    animation: bounce 5s infinite ease-in-out;
    animation-delay: 0.5s;
}

.contact-form-box-log .reach-inquiry-log div:nth-child(5) {
    animation: bounce 5s infinite ease-in-out;
    animation-delay: 0.7s;
}

@media screen and (max-width: 992px) {
    .contact-form-box-log .inquiry-info-log {
        flex-direction: column;
    }
    
    .contact-form-box-log .information,
    .contact-form-box-log .inquiry-support-log {
        width: 100%;
        padding: 40px 30px;
    }
    
    .contact-form-box-log .reach-inquiry-log div {
        animation: none;
    }
}

@media screen and (max-width: 576px) {
    .contact-form-box-log {
        padding: 60px 0;
    }
    
    .contact-form-box-log .container {
        width: 90%;
    }
    
    .contact-form-box-log .information,
    .contact-form-box-log .inquiry-support-log {
        padding: 30px 20px;
    }
    
    .contact-form-box-log .reach-inquiry-log h3 {
        font-size: calc(30px * 0.8);
    }
    
    .contact-form-box-log form input[type="text"],
    .contact-form-box-log form input[type="email"] {
        padding: 15px;
    }
    
    .contact-form-box-log form .query-feedback-log {
        width: 100%;
        padding: 15px;
    }
}.leadership-experience-log {
    padding-top: 100px;
    padding-bottom: 100px;
    color: #ffffff;
    font-family: Ubuntu, sans-serif;
    position: relative;
    overflow: hidden;
}

.leadership-experience-log:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(147,181,179,0.5), rgba(0, 0, 0, 0.5));
    clip-path: circle(30% at 70% 30%);
    transition: clip-path 1s ease-in-out;
    z-index: -1;
}

.leadership-experience-log:hover:before {
    clip-path: circle(75% at 50% 50%);
}

.leadership-experience-log .team-profile-log {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    padding: 0 20px;
}

.leadership-experience-log .testimonial-sharing-log {
    display: flex;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgb(147,181,179,0.5);
    border-radius: 10px;
    padding: 30px;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.leadership-experience-log .testimonial-sharing-log:hover {
    transform: translateY(-15px);
    border-color: rgb(147,181,179);
}

.leadership-experience-log .img-showcase-log {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.3s ease-in-out;
}

.leadership-experience-log .img-showcase-log:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
}

.leadership-experience-log .career-progress-log {
    text-align: center;
}

.leadership-experience-log .testimonial-sharing-log .name {
    color: rgb(99,112,126);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.leadership-experience-log .testimonial-sharing-log span {
    color: rgb(147,181,179);
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
}

.leadership-experience-log .testimonial-sharing-log .career-back-log {
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    position: relative;
    margin-top: 20px;
    transition: color 0.3s ease-in-out;
}

.leadership-experience-log .testimonial-sharing-log:hover .career-back-log {
    color: rgb(99,112,126);
}

.leadership-experience-log .testimonial-sharing-log .career-back-log:before,
.leadership-experience-log .testimonial-sharing-log .career-back-log:after {
    color: rgb(147,181,179,0.5);
    transition: color 0.3s ease-in-out;
}

.leadership-experience-log .testimonial-sharing-log:hover .career-back-log:before,
.leadership-experience-log .testimonial-sharing-log:hover .career-back-log:after {
    color: rgb(99,112,126,0.5);
}

.leadership-experience-log .testimonial-sharing-log .career-back-log:before {
    content: open-quote;
    font-size: 2em;
    position: absolute;
    left: -10px;
    top: -10px;
}

.leadership-experience-log .testimonial-sharing-log .career-back-log:after {
    content: close-quote;
    font-size: 2em;
    position: absolute;
    right: -10px;
    bottom: -10px;
}

@media only screen and (max-width: 1200px) {
    .leadership-experience-log .testimonial-sharing-log {
        max-width: unset;
    }
}

@media only screen and (max-width: 800px) {
    .leadership-experience-log {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .leadership-experience-log .team-profile-log {
        flex-direction: column;
    }

    .leadership-experience-log .testimonial-sharing-log {
        max-width: unset;
        width: 100%;
    }

    .leadership-experience-log .img-showcase-log {
        width: 100px;
        height: 100px;
    }
}

.inner-container-log .leadership-experience-log {
    background: rgb(200,218,211);
    padding: 80px 0;
}

.inner-container-log .leadership-experience-log .testimonial-sharing-log {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 400px;
    width: 100%;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.inner-container-log .leadership-experience-log .testimonial-sharing-log:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
    transform: translateY(-10px);
}

.inner-container-log .leadership-experience-log .img-showcase-log {
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
    border-radius: 10px;
    flex-shrink: 0;
}

.inner-container-log .career-progress-log {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.inner-container-log .leadership-experience-log .testimonial-sharing-log .name {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 5px;
}

.inner-container-log .leadership-experience-log .testimonial-sharing-log span {
    color: rgb(99,112,126);
    font-size: 18px;
    margin-bottom: 10px;
}

.inner-container-log .leadership-experience-log .testimonial-sharing-log .career-back-log {
    color: #ffffff;
    font-size: 18px;
    margin-top: 10px;
    position: relative;
    font-style: normal;
}

.inner-container-log .leadership-experience-log .testimonial-sharing-log .career-back-log:before,
.inner-container-log .leadership-experience-log .testimonial-sharing-log .career-back-log:after {
    color: rgb(99,112,126,0.5);
}

@media only screen and (max-width: 800px) {
    .inner-container-log .leadership-experience-log .testimonial-sharing-log {
        padding: 20px;
    }

    .inner-container-log .leadership-experience-log .img-showcase-log {
        margin-bottom: 15px;
    }

    .inner-container-log .career-progress-log {
        text-align: center;
    }
}
