* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
.container {
    margin: auto;
    width: 1200px;
    max-width: 100%;
}
header,footer {
    width: 100%;
}
html,
body {
    min-height: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    color: #000000;
}
.inner-containerbase {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(255,253,244);
}
a {
    color: inherit;
    text-decoration: none;
}
svg {
    width: 30px;
    height: 30px;
}
@media only screen and (max-width: 1200px)  {
    .container {
        width: 100%;
        padding: 0 20px;
    }
}
@media only screen and (max-width: 800px)  {
    .container {
        padding: 0 12px;
    }
}
.benefits_overviewbase .advantages_content h2 {
    color: rgb(119,150,148);
}

.benefits_overviewbase .advantage_item svg, .benefits_overviewbase .advantage_item svg path {
    fill: rgb(185,217,213);
}

.benefits_overviewbase .advantage_item p {
    color: #000000;
}

.benefits_overviewbase .advantage_item b {
    color: rgb(185,217,213);
}

.benefits_overviewbase {
    padding-top: 80px;
    padding-bottom: 80px;
}

.benefits_overviewbase .advantages_holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.benefits_overviewbase .advantages_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.benefits_overviewbase .advantages_content h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 35px;
    font-weight: 600;
}

.benefits_overviewbase .advantages_content h4 {
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
}

.benefits_overviewbase .advantages_description {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
    padding: 20px;
}

.benefits_overviewbase .advantage_item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 200px;
    width: 25%;
    padding: 10px;
}

.benefits_overviewbase .advantage_item svg, .benefits_overviewbase .advantage_item img {
    width: 128px;
    height: 128px;
}

@media only screen and (max-width: 1200px) {
    .inner-containerbase .benefits_overviewbase .advantages_holder .advantage_item {
        width: calc(50% - 20px);
        margin: 10px;
    }
}

@media only screen and (max-width: 800px) {
    .benefits_overviewbase .advantages_content h2 {
        font-size: 30px;
    }

    .benefits_overviewbase .advantages_holder {
        flex-direction: column;
    }

    .benefits_overviewbase {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .inner-containerbase .benefits_overviewbase .advantages_holder .advantage_item {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}

.inner-containerbase .benefits_overviewbase {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: rgb(255,253,244);
}

.inner-containerbase .benefits_overviewbase .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.inner-containerbase .benefits_overviewbase .advantages_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
    color: #000000;
}

.inner-containerbase .benefits_overviewbase .advantages_content h2 {
    font-size: 35px;
    font-weight: 700;
    color: rgb(185,217,213);
    margin-bottom: 40px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.inner-containerbase .benefits_overviewbase .advantages_content h2:hover {
    color: rgb(119,150,148);
}

.inner-containerbase .benefits_overviewbase .advantages_description {
    font-size: 12px;
    color: #000000;
    margin-bottom: 30px;
    max-width: 800px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.inner-containerbase .benefits_overviewbase .advantages_description:hover {
    opacity: 1;
}

.inner-containerbase .benefits_overviewbase .advantages_holder {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.inner-containerbase .benefits_overviewbase .advantage_item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 8px rgba(0, 0, 0, 0.5);
    width: calc(25% - 20px);
    min-height: 250px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.inner-containerbase .benefits_overviewbase .advantage_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.inner-containerbase .benefits_overviewbase .advantage_image {
    background-color: rgb(185,217,213,0.5);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.inner-containerbase .benefits_overviewbase .advantage_image img, .inner-containerbase .benefits_overviewbase .advantage_image svg {
    width: 70%;
    height: 70%;
    object-fit: cover;
    fill: rgb(185,217,213);
}

.inner-containerbase .benefits_overviewbase .advantage_item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media only screen and (max-width: 1200px) {
    .inner-containerbase .benefits_overviewbase .advantages_holder .advantage_item {
        width: calc(50% - 10px);
    }
}

@media only screen and (max-width: 800px) {
    .inner-containerbase .benefits_overviewbase {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .inner-containerbase .benefits_overviewbase .advantages_content h2 {
        font-size: 30px;
    }

    .inner-containerbase .benefits_overviewbase .advantages_holder {
        flex-direction: column;
    }

    .inner-containerbase .benefits_overviewbase .advantages_holder .advantage_item {
        width: 100%;
    }
}.leadership_experiencebase {
    padding: 100px 0;
    background-color: rgb(255,253,244);
    color: #000000;
    font-family: Arial, sans-serif;
    position: relative;
    overflow: hidden;
}

.leadership_experiencebase::before,
.leadership_experiencebase::after {
    content: "";
    position: absolute;
    background: rgb(185,217,213);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.leadership_experiencebase::before {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.leadership_experiencebase::after {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
}

.leadership_experiencebase .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.leadership_experiencebase .review {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    width: calc(33.333% - 40px);
    padding: 30px;
    position: relative;
}

.leadership_experiencebase .review::before,
.leadership_experiencebase .review::after {
    content: "";
    position: absolute;
    border-radius: 10px;
    background: rgb(185,217,213);
    opacity: 0.05;
}

.leadership_experiencebase .review::before {
    width: 50px;
    height: 50px;
    top: -10px;
    left: -10px;
}

.leadership_experiencebase .review::after {
    width: 30px;
    height: 30px;
    bottom: -10px;
    right: -10px;
}

.leadership_experiencebase .photo {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
    position: relative;
}

.leadership_experiencebase .photo::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid rgb(185,217,213);
    border-radius: 50%;
}

.worker_description {
    text-align: center;
    padding: 20px;
}

.leadership_experiencebase .name {
    font-size: 28px;
    color: rgb(185,217,213);
    margin-bottom: 10px;
    font-weight: 700;
    position: relative;
}

.leadership_experiencebase .name::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 3px;
    background: rgb(185,217,213);
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.leadership_experiencebase .job {
    font-size: 24px;
    color: rgb(119,150,148);
    margin-bottom: 20px;
    font-weight: 400;
}

.leadership_experiencebase .quote {
    font-size: 12px;
    color: #000000;
    font-style: italic;
    line-height: 1.6;
    border-left: 3px solid rgb(185,217,213);
    padding-left: 10px;
    margin-top: 10px;
}
.leadership_experiencebase .holder {
    display: flex;
    justify-content: center;
}
@media only screen and (max-width: 1200px) {
    .leadership_experiencebase .container {
        gap: 20px;
    }
    .leadership_experiencebase .review {
        width: calc(50% - 20px);
    }
}

@media only screen and (max-width: 800px) {
    .leadership_experiencebase {
        padding: 60px 0;
    }
    .leadership_experiencebase .review {
        width: 100%;
    }
}

.inner-containerbase .leadership_experiencebase {
    background: rgb(185,217,213);
    padding: 80px 0;
}

.inner-containerbase .leadership_experiencebase .review {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: none;
}

.inner-containerbase .leadership_experiencebase .photo {
    padding-bottom: 80%;
}

.inner-containerbase .worker_description {
    padding: 30px 0;
}
@media only screen and (max-width: 800px) {
    .inner-containerbase .leadership_experiencebase {
        padding: 60px 0;
    }
}
.customer_feedbackbase {
    background-color: rgb(255,253,244);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.customer_feedbackbase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(185,217,213,0.5) 0%, rgb(119,150,148,0.5) 100%);
    opacity: 0.1;
}

.customer_feedbackbase .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.customer_feedbackbase .holder {
    text-align: center;
}

.customer_feedbackbase h3 {
    font-size: 28px;
    color: #000000;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.customer_feedbackbase h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: rgb(185,217,213);
}

.customer_feedbackbase .reviews {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.customer_feedbackbase .review {
    background-color: #ffffff;
    border-radius: 29px;
    padding: 25px;
    display: flex;
    align-items: center;
    text-align: left;
    width: calc(33.333% - 20px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    border: 1px solid rgb(119,150,148,0.5);
}

.customer_feedbackbase .review:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    border-color: rgb(185,217,213);
}

.customer_feedbackbase .photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
    border: 3px solid rgb(119,150,148);
    transition: all 0.3s ease;
    object-fit: cover;
}

.customer_feedbackbase .review:hover .photo {
    border-color: rgb(185,217,213);
}

.customer_feedbackbase .text {
    flex-grow: 1;
}

.customer_feedbackbase .text p {
    font-size: 18px;
    color: #000000;
    margin-bottom: 5px;
    font-weight: 600;
}

.customer_feedbackbase .text span {
    font-size: 16px;
    color: #000000;
    display: block;
    position: relative;
    padding-left: 15px;
}

.customer_feedbackbase .text span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 2px;
    background-color: rgb(185,217,213);
}

@media (max-width: 991px) {
    .customer_feedbackbase .review {
        width: calc(50% - 15px);
    }
}

@media (max-width: 767px) {
    .customer_feedbackbase {
        padding: 50px 0;
    }

    .customer_feedbackbase h3 {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .customer_feedbackbase .reviews {
        gap: 20px;
    }

    .customer_feedbackbase .review {
        width: 100%;
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .customer_feedbackbase .photo {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .customer_feedbackbase .text span {
        padding-left: 0;
    }

    .customer_feedbackbase .text span::before {
        display: none;
    }
}.ty_successbase {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(255,253,244);
    padding: 60px 20px;
    position: relative;
}
.ty_successbase .container {
    max-width: 1200px;
    width: 100%;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 14px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    border: 1px solid rgb(185,217,213,0.5);
}
.ty_successbase .container::before,
.ty_successbase .container::after {
    content: '';
    position: absolute;
    border-radius: 14px;
    border: 1px solid rgb(185,217,213,0.5);
}
.ty_successbase .container::before {
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
}
.ty_successbase .container::after {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgb(119,150,148,0.5);
}
.ty_successbase .container h2 {
    font-size: 38px;
    color: rgb(185,217,213);
    font-family: Arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 3px solid rgb(119,150,148);
}
.ty_successbase .container p {
    font-size: 18px;
    color: #000000;
    font-family: Arial, sans-serif;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    padding-left: 20px;
    text-align: left;
}
.ty_successbase .container p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: rgb(185,217,213);
    border-radius: 50%;
}
@media only screen and (max-width: 800px) {
    .ty_successbase {
        padding: 30px 10px;
    }
    .ty_successbase .container {
        padding: 30px;
    }
    .ty_successbase h2 {
        font-size: 42px;
    }
}
.training_benefitsbase {
    background: rgba(0, 0, 0, 0.5);
    padding: 200px 0 120px;
    position: relative;
    z-index: 1;
}

.training_benefitsbase::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.5) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: -1;
    opacity: 0.1;
}

.training_benefitsbase .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.training_benefitsbase .holder {
    position: relative;
}

.training_benefitsbase .photo {
    width: 55%;
    height: 800px;
    margin-left: auto;
    border-radius: calc(29px * 2);
    position: sticky;
    top: 100px;
    mask-image: linear-gradient(to right, 
        transparent 0%,
        rgba(0,0,0,1) 20%,
        rgba(0,0,0,1) 100%
    );
}

.training_benefitsbase .text_holder {
    width: 50%;
    padding: 60px;
    background: #ffffff;
    border-radius: calc(29px * 2);
    margin-top: -700px;
    position: relative;
    z-index: 2;
}

.training_benefitsbase .text_holder h2 {
    font-size: calc(32px * 0.9);
    font-weight: 700;
    color: #000000;
    margin-bottom: 60px;
    line-height: 1.2;
    text-transform: uppercase;
}

.training_benefitsbase .text_holder h2 span {
    color: rgb(185,217,213);
}

.training_benefitsbase .text_holder ul {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: experience-counter;
}

.training_benefitsbase .text_holder ul li {
    counter-increment: experience-counter;
    padding: 40px;
    margin-bottom: 30px;
    position: relative;
    border: 2px solid transparent;
    background: linear-gradient(#ffffff, #ffffff) padding-box,
                linear-gradient(135deg, rgb(185,217,213), rgb(119,150,148)) border-box;
    border-radius: 29px;
}

.training_benefitsbase .text_holder ul li::before {
    content: counter(experience-counter, decimal-leading-zero);
    position: absolute;
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 2px solid rgb(185,217,213);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: rgb(185,217,213);
    font-size: 20px;
}

.training_benefitsbase .text_holder ul li svg {
    width: 40px;
    height: 40px;
    fill: rgb(185,217,213);
    margin-bottom: 20px;
}

.training_benefitsbase .text_holder ul li:last-child {
    margin-bottom: 0;
}

@media (max-width: 1400px) {
    .training_benefitsbase {
        padding: 150px 0 100px;
    }
    
    .training_benefitsbase .photo {
        height: 700px;
    }
}

@media (max-width: 1200px) {
    .training_benefitsbase {
        padding: 120px 0 80px;
    }

    .training_benefitsbase .photo {
        height: 600px;
        width: 60%;
    }

    .training_benefitsbase .text_holder {
        width: 55%;
        padding: 40px;
        margin-top: -500px;
    }

    .training_benefitsbase .text_holder h2 {
        font-size: calc(43px * 1.1);
        margin-bottom: 50px;
    }
}

@media (max-width: 991px) {
    .training_benefitsbase {
        padding: 100px 0 60px;
    }

    .training_benefitsbase .photo {
        position: relative;
        top: 0;
        width: 100%;
        height: 500px;
        margin: 0;
        mask-image: none;
    }

    .training_benefitsbase .text_holder {
        width: 100%;
        margin-top: -50px;
    }

    .training_benefitsbase .text_holder h2 {
        font-size: 43px;
        margin-bottom: 40px;
    }

    .training_benefitsbase .text_holder ul li {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .training_benefitsbase {
        padding: 80px 0 40px;
    }

    .training_benefitsbase .photo {
        height: 400px;
    }

    .training_benefitsbase .text_holder {
        padding: 30px;
    }

    .training_benefitsbase .text_holder h2 {
        font-size: calc(43px * 0.9);
        margin-bottom: 30px;
    }

    .training_benefitsbase .text_holder ul li {
        padding: 25px;
        margin-bottom: 25px;
    }

    .training_benefitsbase .text_holder ul li::before {
        width: 35px;
        height: 35px;
        font-size: calc(20px * 0.9);
    }
}

@media (max-width: 576px) {
    .training_benefitsbase {
        padding: 60px 0 30px;
    }

    .training_benefitsbase .photo {
        height: 300px;
    }

    .training_benefitsbase .text_holder {
        padding: 20px;
    }

    .training_benefitsbase .text_holder h2 {
        font-size: calc(43px * 0.8);
    }

    .training_benefitsbase .text_holder ul li {
        padding: 20px;
        margin-bottom: 20px;
    }

    .training_benefitsbase .text_holder ul li::before {
        width: 30px;
        height: 30px;
        top: -10px;
        left: -10px;
        font-size: calc(20px * 0.8);
    }

    .training_benefitsbase .text_holder ul li svg {
        width: 30px;
        height: 30px;
        margin-bottom: 15px;
    }
}.pricing_card_setbase {
    position: relative;
    padding: 160px 0;
    background: linear-gradient(45deg, rgb(255,253,244) 0%, rgba(0, 0, 0, 0.5) 100%);
    overflow: hidden;
}

.pricing_card_setbase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    transform: translateX(-50%);
    background: radial-gradient(circle at 30% 50%, rgb(185,217,213,0.5) 0%, transparent 50%);
    pointer-events: none;
}

.pricing_card_setbase .container {
    position: relative;
    z-index: 1;
    padding: 0;
    width: 90%;
    max-width: 1920px;
    margin: 0 auto;
}

.pricing_card_setbase .price_info_holder {
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pricing_card_setbase .photo {
    position: absolute;
    width: 55%;
    height: 140%;
    right: -15%;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 10px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    opacity: 0.85;
    transition: all 0.4s ease;
}

.pricing_card_setbase h2 {
    font-size: calc(30px * 1.2);
    color: #000000;
    font-weight: 700;
    margin-bottom: 25px;
    max-width: 45%;
}

.pricing_card_setbase h3 {
    font-size: 20px;
    color: #000000;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 80px;
    max-width: 45%;
}

.pricing_card_setbase .price_items {
    display: grid;
    gap: 60px;
    width: 55%;
}

.pricing_card_setbase .price_items:has(.price_item:nth-child(2):last-child) {
    grid-template-columns: repeat(2, 1fr);
}

.pricing_card_setbase .price_items:has(.price_item:nth-child(3):last-child) {
    grid-template-columns: repeat(3, 1fr);
    width: 85%;
}

.pricing_card_setbase .price_items:has(.price_item:nth-child(4):last-child) {
    grid-template-columns: repeat(2, 1fr);
    width: 75%;
    gap: 60px 80px;
}

.pricing_card_setbase .price_item {
    background: #ffffff;
    border-radius: 10px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
}

.pricing_card_setbase .price_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, rgb(185,217,213) 0%, rgb(119,150,148) 100%);
    transform: translateY(-100%);
    transition: all 0.4s ease;
}

.pricing_card_setbase .price_item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.pricing_card_setbase .price_item:hover::before {
    transform: translateY(0);
}

.pricing_card_setbase .price_item h3 {
    font-size: 20px;
    color: #000000;
    margin-bottom: 25px;
    font-weight: 600;
    max-width: 100%;
}

.pricing_card_setbase .price_item .price_amount {
    font-size: calc(48px * 1.2);
    color: rgb(185,217,213);
    font-weight: 700;
    margin-bottom: 35px;
    position: relative;
    display: inline-block;
}

.pricing_card_setbase .price_item span {
    display: block;
    font-size: 17px;
    color: #000000;
    margin-bottom: 35px;
    line-height: 1.6;
}

.pricing_card_setbase .price_item .button {
    display: inline-block;
    padding: 16px 40px;
    background: rgb(185,217,213);
    color: #ffffff;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing_card_setbase .price_item .button:hover {
    background: rgb(119,150,148);
    transform: translateY(-2px);
}

@media (max-width: 1600px) {
    .pricing_card_setbase {
        padding: 140px 0;
    }
    
    .pricing_card_setbase .photo {
        width: 50%;
        height: 130%;
        right: -10%;
    }
    
    .pricing_card_setbase .price_items {
        gap: 50px;
    }
    
    .pricing_card_setbase .price_items:has(.price_item:nth-child(3):last-child) {
        width: 90%;
    }
    
    .pricing_card_setbase .price_items:has(.price_item:nth-child(4):last-child) {
        width: 80%;
        gap: 50px 60px;
    }
    
    .pricing_card_setbase .price_item {
        padding: 45px 35px;
    }
}

@media (max-width: 1400px) {
    .pricing_card_setbase {
        padding: 120px 0;
    }
    
    .pricing_card_setbase .container {
        width: 95%;
    }
    
    .pricing_card_setbase .photo {
        width: 45%;
        height: 120%;
        right: -8%;
    }
    
    .pricing_card_setbase h2,
    .pricing_card_setbase h3 {
        max-width: 50%;
    }
    
    .pricing_card_setbase .price_items {
        width: 60%;
        gap: 40px;
    }
    
    .pricing_card_setbase .price_items:has(.price_item:nth-child(3):last-child) {
        width: 95%;
    }
    
    .pricing_card_setbase .price_items:has(.price_item:nth-child(4):last-child) {
        width: 85%;
        gap: 40px 50px;
    }
}

@media (max-width: 1200px) {
    .pricing_card_setbase {
        padding: 100px 0;
    }
    
    .pricing_card_setbase .photo {
        width: 42%;
        height: 110%;
        right: -5%;
    }
    
    .pricing_card_setbase h2 {
        font-size: 30px;
    }
    
    .pricing_card_setbase .price_items {
        width: 65%;
        gap: 30px;
    }
    
    .pricing_card_setbase .price_item {
        padding: 40px 30px;
    }
}

@media (max-width: 991px) {
    .pricing_card_setbase {
        padding: 80px 0;
    }

    .pricing_card_setbase .container {
        width: 90%;
        max-width: 720px;
    }

    .pricing_card_setbase .photo {
        position: relative;
        width: 100%;
        height: 500px;
        right: 0;
        top: 0;
        transform: none;
        margin-bottom: 60px;
    }

    .pricing_card_setbase h2,
    .pricing_card_setbase h3 {
        max-width: 100%;
        text-align: center;
    }

    .pricing_card_setbase h3 {
        margin-bottom: 60px;
    }

    .pricing_card_setbase .price_items {
        width: 100%;
    }

    .pricing_card_setbase .price_items:has(.price_item:nth-child(3):last-child),
    .pricing_card_setbase .price_items:has(.price_item:nth-child(4):last-child) {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .pricing_card_setbase {
        padding: 60px 0;
    }

    .pricing_card_setbase .container {
        width: 85%;
    }

    .pricing_card_setbase .photo {
        height: 400px;
        margin-bottom: 50px;
    }

    .pricing_card_setbase .price_items,
    .pricing_card_setbase .price_items:has(.price_item:nth-child(2):last-child),
    .pricing_card_setbase .price_items:has(.price_item:nth-child(3):last-child),
    .pricing_card_setbase .price_items:has(.price_item:nth-child(4):last-child) {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
        gap: 30px;
    }

    .pricing_card_setbase .price_item {
        padding: 35px 30px;
    }
}

@media (max-width: 575px) {
    .pricing_card_setbase .container {
        width: 90%;
    }

    .pricing_card_setbase .photo {
        height: 300px;
        margin-bottom: 40px;
    }

    .pricing_card_setbase h2 {
        font-size: calc(30px * 0.9);
    }

    .pricing_card_setbase .price_item {
        padding: 30px 25px;
    }

    .pricing_card_setbase .price_item .button {
        padding: 14px 30px;
        width: 100%;
    }
}header {
    background: rgb(185,217,213,0.5);
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}
.main_header .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
}
.main_header .logo_holder {
    display: flex;
    align-items: center;
}
.main_header .logo_holder svg,
.main_header .logo_holder img {
    width: 60px;
    height: 60px;
    fill: #ffffff;
    transition: transform 0.3s ease;
}
.main_header .header_logo svg text {
    fill: #ffffff;
}
.main_header .header_description {
    font-family: Arial, sans-serif;
    font-size: 24px;
    color: #ffffff;
    font-weight: 600;
    padding-left: 20px;
    margin: 20px 0;
    border-left: 2px solid #ffffff;
    transition: color 0.3s ease;
}
.main_header .header_menu {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}
.main_header .header_menu a {
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 15px;
    border-radius: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.main_header .header_menu a:hover {
    background-color: rgb(119,150,148,0.5);
    color: #000000;
}
@media only screen and (max-width: 1200px) {
    .main_header .logo_holder {
        justify-content: center;
    }
    .main_header .container {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .main_header .header_description {
        border-left: none;
        border-bottom: 2px solid #ffffff;
        padding-bottom: 20px;
        padding-left: 0;
        text-align: center;
    }
    .main_header .header_menu {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}
@media only screen and (max-width: 800px) {
    .main_header .header_menu a {
        padding: 8px 12px;
        font-size: 22px;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.main_header .header_menu a {
    animation: fadeIn 0.5s ease;
}
.main_header .header_menu a:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(185,217,213), rgb(119,150,148));
    opacity: 0.1;
    z-index: -1;
}.course_infobase {
    padding: 100px 0;
    background: rgb(185,217,213,0.5);
    color: #000000;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

.course_infobase .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.course_infobase .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.course_infobase .items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.course_infobase .course {
    flex: 1 1 calc(33.333% - 60px);
    background: #ffffff;
    border-radius: 17px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.course_infobase .course:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.course_infobase .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 30px;
}

.course_infobase .photo {
    height: 350px;
    width: 100%;
    background-size: cover;
    background-position: center;
    transition: background-position 0.4s ease;
}

.course_infobase .photo:hover {
    background-position: top;
}

.course_infobase h3 {
    font-size: 31px;
    font-weight: 700;
    color: rgb(185,217,213);
    margin: 20px 0;
    transition: color 0.4s ease;
}

.course_infobase h3:hover {
    color: rgb(119,150,148);
}

.course_infobase p {
    font-size: 15px;
    font-weight: 300;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 20px;
}

.course_infobase .button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 400;
    padding: 15px 30px;
    background: rgb(119,150,148);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.4s ease, transform 0.4s ease;
}

.course_infobase .button:hover {
    background: rgb(185,217,213);
    transform: scale(1.05);
}

@media only screen and (max-width: 900px) {
    .course_infobase .course {
        flex: 1 1 calc(50% - 40px);
    }
}

@media only screen and (max-width: 600px) {
    .course_infobase {
        padding: 60px 0;
    }

    .course_infobase .course {
        flex: 1 1 100%;
    }

    .course_infobase .photo {
        height: 250px;
    }
}

.inner-containerbase .course_infobase .container {
    width: 100%;
    padding: 0;
}

.inner-containerbase .course_infobase .items {
    width: 100%;
    gap: 0;
}

.inner-containerbase .course_infobase .course {
    width: 100%;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.inner-containerbase .course_infobase .photo {
    height: 250px;
    width: 100%;
    margin: 0;
    border-radius: 0 !important;
    background-position: 50% 30% !important;
}

.inner-containerbase .course_infobase .text_holder {
    max-width: 1200px;
    margin: auto;
    justify-content: flex-start;
    align-items: center;
    padding: 30px;
}

.inner-containerbase .course_infobase p {
    margin-top: 20px;
    text-align: center;
}

.inner-containerbase .course_infobase .button {
    margin-top: 30px;
    width: fit-content;
}

.inner-containerbase .course_infobase h3 {
    text-align: center;
}
.info_detailsbase {
    color: #ffffff;
    background: linear-gradient(to bottom right, rgb(119,150,148), rgb(185,217,213));
    padding: 74px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    position: relative;
    overflow: hidden;
}
.info_detailsbase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    z-index: -1;
}
.info_detailsbase .holder .info_holder div.working_schedulebase {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.info_detailsbase .holder .info_holder > div h5 {
    margin: 5px 0;
    font-size: 18px;
}
.info_detailsbase .holder .info_holder > div > div {
    margin: 5px 0;
}
.info_detailsbase .container {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    box-shadow: 0 0 20px rgb(185,217,213), 0 0 40px rgb(185,217,213), 0 0 60px rgb(185,217,213), 0 0 80px rgb(119,150,148);
    padding: 40px;
    background: rgba(0, 0, 0, 0.5);
    max-width: 800px;
    position: relative;
}

.info_detailsbase .contact_holder {
    text-align: left;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.info_detailsbase .contact_holder h2 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgb(185,217,213), 0 0 20px rgb(185,217,213), 0 0 30px rgb(185,217,213), 0 0 40px rgb(119,150,148);
}
.info_detailsbase .contact_holder .contact_description {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.8;
}
.info_detailsbase .contact_holder .photo {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(185,217,213), 0 0 20px rgb(185,217,213), 0 0 30px rgb(185,217,213), 0 0 40px rgb(119,150,148);
    margin-bottom: 20px;
    position: relative;
}
.info_detailsbase .holder .info_holder>div span {
    margin-left: 8px;
}
.info_detailsbase .contact_holder .photo::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(to bottom right, rgb(185,217,213), rgb(119,150,148));
    border-radius: 10px;
    z-index: -1;
}
.info_detailsbase .info_holder {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 20px 0;
}
.info_detailsbase .info_holder > div {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 16px;
    transition: color 0.3s ease;
    width: calc(50% - 10px);
    position: relative;
}
.info_detailsbase .info_holder > div::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(to bottom right, rgb(185,217,213), rgb(119,150,148));
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}
.info_detailsbase .info_holder > div:hover::before {
    opacity: 0.2;
}
.info_detailsbase .info_holder > div:hover {
    color: rgb(185,217,213);
}
.info_detailsbase .info_holder svg {
    width: 22px;
    height: 22px;
    fill: rgb(185,217,213);
    margin-right: 12px;
    transition: fill 0.3s ease;
}
.info_detailsbase .info_holder svg:hover {
    fill: rgb(119,150,148);
}
.info_detailsbase .contact_politics {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    margin-top: 20px;
    opacity: 0.8;
}
.info_detailsbase .contact_politics > div {
    margin-bottom: 14px;
}
.info_detailsbase .contact_politics > div h4 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 8px;
    text-shadow: 0 0 5px rgb(185,217,213);
}
@media only screen and (max-width: 1100px) {
    .info_detailsbase .info_holder {
        flex-direction: column;
    }
    .info_detailsbase .info_holder > div {
        width: 100%;
    }
}
.course_fit_forbase {
    background: linear-gradient(to bottom, rgb(255,253,244), #ffffff);
    padding: 100px 0;
    position: relative;
}

.course_fit_forbase::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgb(185,217,213,0.5));
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
}

.course_fit_forbase .container {
    display: flex;
    flex-direction: row-reverse;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.course_fit_forbase .who_needs_photo {
    flex: 0 0 45%;
    aspect-ratio: 1;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5);
}

.course_fit_forbase .who_needs_text {
    flex: 1;
}

.course_fit_forbase .who_needs_text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 40px;
    line-height: 1.4;
}

.course_fit_forbase .who_needs_list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.course_fit_forbase .who_needs_list div {
    background: #ffffff;
    padding: 24px;
    border-radius: 18px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    border-left: 4px solid rgb(185,217,213);
}

.course_fit_forbase .who_needs_list div svg {
    width: 24px;
    height: 24px;
    fill: rgb(185,217,213);
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .course_fit_forbase {
        padding: 70px 0;
    }

    .course_fit_forbase .container {
        flex-direction: column;
        gap: 50px;
    }

    .course_fit_forbase .who_needs_photo {
        width: 80%;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .course_fit_forbase {
        padding: 50px 0;
    }

    .course_fit_forbase .who_needs_list {
        grid-template-columns: 1fr;
    }

    .course_fit_forbase .who_needs_text h2 {
        font-size: calc(36px * 0.85);
        margin-bottom: 30px;
    }

    .course_fit_forbase .who_needs_list div {
        padding: 20px;
    }
}.our_storybase {
    padding: 60px 0;
    background: rgb(255,253,244);
}

.inner-containerbase .our_storybase .holder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-containerbase .our_storybase .holder .photo {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 300px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.inner-containerbase .our_storybase .caption_holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.inner-containerbase .our_storybase .style_element {
    width: 100%;
    padding: 20px;
    background: rgb(119,150,148);
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
}


.inner-containerbase .our_storybase h2 {
    color: rgb(185,217,213);
    font-size: 31px;
    font-weight: 700;
    margin-bottom: 20px;
}

.inner-containerbase .our_storybase p {
    color: #000000;
    font-size: 17px;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .inner-containerbase .our_storybase .caption_holder {
        flex-direction: column;
        padding: 15px;
    }
    
    .inner-containerbase .our_storybase .style_element {
        padding: 15px;
    }

    .inner-containerbase .our_storybase h2 {
        font-size: 19px;
    }

    .inner-containerbase .our_storybase p {
        font-size: 17px;
    }
}.check_it_out_nowbase {
    position: relative;
    padding: 80px 0;
    background: rgb(255,253,244);
    overflow: hidden;
    font-family: Arial, sans-serif;
    color: #000000;
}

.check_it_out_nowbase::before,
.check_it_out_nowbase::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgb(185,217,213,0.5) 20%, transparent 20%), 
                radial-gradient(circle, rgb(185,217,213,0.5) 20%, transparent 20%);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    animation: move-bg 20s linear infinite;
    z-index: 0;
}

.check_it_out_nowbase::after {
    top: -100%;
    left: -100%;
    animation-duration: 30s;
}

@keyframes move-bg {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.check_it_out_nowbase .container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    z-index: 1;
}

.check_it_out_nowbase .holder {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    background: #ffffff;
    border-radius: 19px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1;
    position: relative;
}

.check_it_out_nowbase .holder svg, 
.check_it_out_nowbase .holder svg path {
    fill: rgb(185,217,213);
    width: 90px;
    height: 90px;
    border-radius: 10px;
    border: 2px solid rgb(185,217,213);
    background: rgb(185,217,213,0.5);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.check_it_out_nowbase .holder svg:hover {
    transform: scale(1.05);
}

.check_it_out_nowbase .holder h2 {
    font-size: calc(38px * 1.1);
    margin: 0 30px;
    color: #000000;
    font-weight: 700;
    flex: 1;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.check_it_out_nowbase .holder h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgb(185,217,213), rgb(119,150,148));
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.check_it_out_nowbase .holder .button {
    padding: 14px 28px;
    background: linear-gradient(135deg, rgb(185,217,213), rgb(119,150,148));
    color: #ffffff;
    text-decoration: none;
    font-size: calc(16px * 0.95);
    border-radius: 10px;
    font-weight: 600;
    border: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.check_it_out_nowbase .holder .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.check_it_out_nowbase .holder .button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.check_it_out_nowbase .holder .button:hover::before {
    left: 100%;
}

@media only screen and (max-width: 1024px) {
    .check_it_out_nowbase .holder {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px;
    }

    .check_it_out_nowbase .holder svg, 
    .check_it_out_nowbase .holder svg path {
        margin-bottom: 20px;
    }

    .check_it_out_nowbase .holder h2 {
        font-size: 38px;
        margin: 0 0 20px;
    }

    .check_it_out_nowbase .holder h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .check_it_out_nowbase .holder .button {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 800px) {
    .check_it_out_nowbase {
        padding: 60px 0;
    }

    .check_it_out_nowbase .holder {
        padding: 25px;
    }

    .check_it_out_nowbase .holder svg, 
    .check_it_out_nowbase .holder svg path {
        width: 70px;
        height: 70px;
    }

    .check_it_out_nowbase .holder h2 {
        font-size: calc(38px * 0.9);
    }

    .check_it_out_nowbase .holder .button {
        padding: 12px 24px;
        font-size: calc(16px * 0.9);
        width: 100%;
    }
}
footer {
    background: rgb(119,150,148);
    color: #ffffff;
}

footer .copyright {
    background: rgb(185,217,213);
}

footer .logo_holder svg, footer .logo_holder svg path {
    fill: rgb(185,217,213);
}

footer h5 {
    color: rgb(185,217,213);
}

footer .menu a {
    color: #ffffff;
}

footer .copyright_info {
    color: #ffffff;
}

footer .copyright_info a {
    color: #ffffff;
    text-decoration: underline;
}

footer .contact_info div svg, footer .contact_info div svg path {
    fill: #ffffff;
}

footer .contact_info div span {
    color: #ffffff;
}

footer .footer {
    padding-top: 70px;
    padding-bottom: 70px;
}

footer .copyright {
    padding-top: 25px;
    padding-bottom: 25px;
}

footer .footer_info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

footer .logo_holder svg, footer .logo_holder img {
    height: 80px;
    width: 80px;
    margin-right: 10px;
}

footer h5 {
    font-size: 24px;
    margin-bottom: 16px;

}

footer .contact_info {
    display: flex;
    flex-direction: column;
}

footer .contact_info div {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    justify-content: flex-start;
}

footer .contact_info div img, footer .contact_info div svg {
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

footer .menu_holder {
    display: flex;
    flex-direction: column;
}

footer .menu a {
    text-decoration: none;
    font-size: 14px;
    margin-right: 10px;
    margin-bottom: 5px;
}

footer .copyright {
    font-size: 13px;
}

@media only screen and (max-width: 1200px) {
    footer .footer_info {
        padding: 0 20px;
    }
}

@media only screen and (max-width: 800px) {
    footer .menu, footer .menu_holder, footer .footer_info {
        flex-direction: column;
    }

    footer .contact_info {
        margin-top: 10px;
    }

    footer h5 {
        margin-top: 5px;
    }

}

.inner-containerbase footer .footer {
    padding: 0;
}

.inner-containerbase footer .footer_info {
    flex-direction: row;
    align-items: center;
    min-height: 100px;
}

.inner-containerbase footer .menu_holder {
    flex-direction: row;
    justify-content: flex-end;
}

.inner-containerbase footer .menu a {
    margin: 0;
    padding: 5px 10px;
    font-size: 20px;
    color: rgb(185,217,213);
}

.inner-containerbase footer .copyright {
    background: rgb(185,217,213,0.5);
    padding-top: 5px;
    padding-bottom: 5px;
}

.inner-containerbase footer .copyright_info {
    text-align: center;
}

@media only screen and (max-width: 800px) {
    .inner-containerbase footer .menu_holder {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .inner-containerbase footer .menu a {
        padding-left: 0;
        font-size: 18px
    }

    .inner-containerbase footer .menu a:first-child {

        margin-bottom: 10px;
    }

    .inner-containerbase footer .footer_info {
        padding: 20px 10px;
    }

    .inner-containerbase footer .copyright_info {
        text-align: center;
    }

    .inner-containerbase footer .copyright_info a {
        display: block;
        margin-top: 5px;
    }
}
.welcome_sectionbase {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #ffffff, rgb(255,253,244));
    color: #000000;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.welcome_sectionbase::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgb(185,217,213,0.5) 10%, transparent 10%);
    background-size: 20px 20px;
    opacity: 0.1;
}

.welcome_sectionbase .holder {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: flex-start;
}

.welcome_sectionbase .photo {
    order: 1;
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 27px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.welcome_sectionbase .photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(rgb(185,217,213), 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.welcome_sectionbase .text_holder {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 2rem;
}

.welcome_sectionbase .text_info {
    margin-bottom: 2rem;
    position: relative;
    padding: 2rem;
    background: linear-gradient(45deg, #ffffff, rgb(255,253,244));
    border-radius: 27px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.welcome_sectionbase .text_info::before,
.welcome_sectionbase .text_info::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgb(185,217,213);
    transition: all 0.3s ease;
}

.welcome_sectionbase .text_info::before {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.welcome_sectionbase .text_info::after {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.welcome_sectionbase .text_info svg {
    width: 60px;
    height: 60px;
    fill: rgb(185,217,213);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.welcome_sectionbase .text_info h2 {
    font-size: 32px;
    color: #000000;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.welcome_sectionbase .text_info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, rgb(185,217,213), rgb(119,150,148));
    transition: width 0.3s ease;
}

.welcome_sectionbase .text_info span {
    font-size: 17px;
    color: #000000;
    line-height: 1.6;
    display: block;
}

.welcome_sectionbase .button {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(45deg, rgb(185,217,213), rgb(119,150,148));
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.welcome_sectionbase .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgb(119,150,148), rgb(185,217,213));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.welcome_sectionbase .button:hover::before {
    opacity: 1;
}

.welcome_sectionbase .button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgb(185,217,213,0.5);
}

@media (min-width: 992px) {
    .welcome_sectionbase .holder {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }

    .welcome_sectionbase .photo {
        order: 2;
        width: 45%;
        height: 400px;
    }

    .welcome_sectionbase .text_holder {
        order: 1;
        width: 50%;
        text-align: left;
        align-items: flex-start;
        margin-top: 0;
    }

    .welcome_sectionbase .text_info h2::after {
        left: 0;
        transform: none;
    }
}

@media (max-width: 908px) {
    .welcome_sectionbase {
        padding: 3rem 0;
    }

    .welcome_sectionbase .text_info h2 {
        font-size: 18px;
    }

    .welcome_sectionbase .text_info span {
        font-size: 12px;
    }

    .welcome_sectionbase .button {
        padding: 10px 20px;
        font-size: 12px;
    }
    .welcome_sectionbase .text_holder {
        width: 100%;
    }
}.secure_chamberbase {
    padding: 40px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}


.secure_chamberbase h1 {
    margin-top: 40px;
    margin-bottom: 25px;
    font-size: 45px;
    font-family: Arial, sans-serif;
    color: rgb(185,217,213);
    text-transform: uppercase;
    text-align: center;
    border-bottom: 2px solid rgb(185,217,213);
    padding-bottom: 10px;
}

.secure_chamberbase h2 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 31px;
    font-family: Arial, sans-serif;
    color: rgb(119,150,148);
    text-transform: uppercase;
    border-bottom: 1px solid rgb(119,150,148);
    padding-bottom: 8px;
}

.secure_chamberbase h3, .secure_chamberbase h4, .secure_chamberbase h5, .secure_chamberbase h6 {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 19px;
    font-family: Arial, sans-serif;
    color: #000000;
    font-weight: 600;
    text-transform: uppercase;
}

.secure_chamberbase ul, .secure_chamberbase ol {
    list-style-position: inside;
    padding-left: 0;
    padding: 15px 0;
    margin: 0;
}

.secure_chamberbase li {
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.6;
    font-family: Arial, sans-serif;
    color: #000000;
    padding: 5px;
    border-radius: 10px;
    transition: background 0.3s ease-in-out;
}

.secure_chamberbase li:hover {
    background: rgb(185,217,213,0.5);
}

.secure_chamberbase section {
    background: none;
}

.secure_chamberbase p, .secure_chamberbase span, .secure_chamberbase div {
    line-height: 1.8;
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
    color: #000000;
    font-size: 13px;
}

@media only screen and (max-width: 800px) {
    .secure_chamberbase {
        padding: 25px 10px;
        width: 100%;
    }

    .secure_chamberbase h1, .secure_chamberbase h2 {
        text-align: left;
        font-size: calc(19px - 5px);
    }

    .secure_chamberbase ul, .secure_chamberbase ol {
        padding: 10px 0;
    }
}