/*----------------------------------------*/
/*  01. Theme default CSS
/*----------------------------------------*/
/*-- Google Font --*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/*-- Common Style --*/

:root {
    --default-font-family: "Poppins", sans-serif;
    --primary-color: #f7df43;
    --secondary-color: #ffb53e;
    --background-section: rgb(249, 249, 249);
    --black:#000000;
    --white:#ffffff;
    --yellow:#fce462;
    --dark-gray:#333333;
    --light-gray:#f5f5f5;
    --gray:#f0f0f0;
    --light-blue:#e6f7ff;
    --light-green:#d9f7be;
    --light-red:#ffe3e3;
    --light-orange:#fff0e6;
    --light-purple:#f3e6ff;
    --light-pink:#ffe3f6;
    --light-yellow:#fffce6;
}

*,
*::after,
*::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--default-font-family);
}

body {
    font-size: 14px;
    line-height: 1.75;
    font-weight: 400;
    font-family: var(--default-font-family);
    font-style: normal;
    color: #191919;
    outline: none;
    visibility: visible;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    /* background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%); */
}


body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
        to right,
        rgba(197, 170, 32, 0.12) 0px,
        transparent 1px
    );
    background-size: 35px 100%;
    pointer-events: none;
    z-index: 1;
}

/*Input Field & Select*/
input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]),
textarea {
  border: 1px solid #ebebeb;
  box-shadow: none;
  color: #415674;
  border-radius: 4px;
  background-color: #ffffff;
  margin-bottom: 0;
  padding: 10px 25px;
  max-width: 100%;
  width: 100%;
  font-size: 13px;
  line-height: 30px;
  font-weight: 600;
  transition: all 0.3s linear;
}

input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):focus,
textarea:focus {
  outline: none;
  border-color: #75650b;
}

input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"])::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  opacity: 0.95;
  font-size: 13px;
  color: #898c94;
  font-weight: 600;
}

input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):-moz-placeholder,
textarea:-moz-placeholder {
  opacity: 0.95;
  font-size: 13px;
  color: #898c94;
  font-weight: 600;
}

input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"])::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 0.95;
  font-size: 13px;
  color: #898c94;
  font-weight: 600;
}

input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):-ms-input-placeholder,
textarea:-ms-input-placeholder {
  opacity: 0.95;
  font-size: 13px;
  color: #898c94;
  font-weight: 600;
}

.primary_color {
    color: var(--secondary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--default-font-family);
    color: #0e0e0e;
    font-weight: 700;
    margin-top: 0;
    line-height: 1.5;
    margin-bottom: 0;
}

h1 {
    font-size: 36px;
}

section{
    overflow: hidden;
}


/* h2 {
  font-size: 30px;
}

@media only screen and (max-width: 767px) {
  h2 {
    font-size: 24px;
  }
} */

p {
    margin-bottom: 0;
}

a,
button {
    color: inherit;
    display: inline-block;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
}

a,
button,
img,
input {
    transition: all 0.3s linear;
    outline: 0;
}
img {
    max-width: 100%;
}
a:focus,
button:focus,
img:focus,
input:focus {
    outline: 0;
}

a:focus {
    color: none;
    outline: none;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: var(--secondary-color);
}

ul,
ol {
    padding: 0;
    list-style: none;
    margin: 0;
}

button,
input[type="submit"] {
    cursor: pointer;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    opacity: 1;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    opacity: 1;
}

/*--Section Spacing--*/
.section-padding {
    padding-top: 80px;
    padding-bottom: 100px;
}

.section-title {
    font-size: 25px;
}

@media screen and (min-width: 1024px) {
    .section-title {
        inline-size: 700px;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 1199px) {
    .section-padding {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media only screen and (max-width: 991px) {
    .section-padding {
        padding-top: 80px;
        padding-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .section-padding {
        padding-top: 60px;
        padding-bottom: 20px;
    }
}

.section-padding-02 {
    padding-top: 120px;
    padding-bottom: 100px;
}

@media only screen and (max-width: 1199px) {
    .section-padding-02 {
        padding-top: 100px;
    }
}

@media only screen and (max-width: 991px) {
    .section-padding-02 {
        padding-top: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .section-padding-02 {
        padding-top: 60px;
    }
}

.section-padding-03 {
    padding-top: 140px;
}

@media only screen and (max-width: 1199px) {
    .section-padding-03 {
        padding-top: 100px;
    }
}

@media only screen and (max-width: 991px) {
    .section-padding-03 {
        padding-top: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .section-padding-03 {
        padding-top: 60px;
    }
}

.header-section{
    position: relative;
}

.header-section .header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding-top: 20px;
}

.header-section .header-wrap .header-logo a img {
    width: 150px;
}

.header-section .header-wrap .header-menu .main-menu {
    display: flex;
    align-items: center;
}

.header-section .header-wrap .header-menu .main-menu li {
    padding: 15px 30px;
}

.header-section .header-wrap .header-menu .main-menu li a {
    font-size: 16.5px;
    font-family: var(--default-font-family);
    font-weight: 500;
    /* line-height: 40px; */
}



@media only screen and (max-width: 575px) {
    .offcanvas {
      width: 280px;
    }
  }
  
  .offcanvas-header {
    padding: 1.5rem 1rem !important;
  }
  
  .offcanvas-header .close-btn {
    background: none !important;
    border: 0 !important;
    font-size: 18px !important;
    color: #ffffff !important;
    transition: all 0.3s linear !important;
  }
  
  .offcanvas-header .close-btn:hover {
    transform: rotate(90deg);
    color: #1D89FF;
  }
  
  .offcanvas-logo a img {
    width: 130px;
  }
  
  .offcanvas-menu {
    /* padding: 30px 0; */
  }
  
  .offcanvas-menu .main-menu li {
    position: relative;
  }
  
  .offcanvas-menu .main-menu li a {
    display: block;
    font-size: 16px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    color: #ffffff;
    padding: 20px 0px 20px 20px;
    position: relative;
  }
  
  .offcanvas-menu .main-menu li .menu-expand {
    position: absolute;
    right: 20px;
    top: 14px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
  }
  
  .offcanvas-menu .main-menu li .menu-expand::before {
    position: absolute;
    content: '';
    width: 16px;
    height: 2px;
    background-color: #ffffff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s linear;
  }
  
  .offcanvas-menu .main-menu li .menu-expand::after {
    position: absolute;
    content: '';
    width: 2px;
    height: 16px;
    left: 50%;
    top: 50%;
    bottom: 0;
    background-color: #ffffff;
    transform: translate(-50%, -50%);
    transition: all 0.3s linear;
  }
  
  .offcanvas-menu .main-menu li:hover > a {
    color: #1D89FF;
  }
  
  .offcanvas-menu .main-menu li.active > .menu-expand::after {
    height: 0;
  }
  
  .offcanvas-menu .main-menu li ul {
    padding-left: 6%;
    display: none;
  }
  
  
  
  .ham__menu{
    display: none;
    font-size: 24px;
  }
  
  @media (max-width:768px) {
    .ham__menu{
      display:block;
    }
    .nav__menu{
      display: none;
    }
  }
  
  
  .offcanvas {
    background: hsl(0 0% 0%) !important;
    width: 300px !important;
  }
  
  
  .offcanvas .offcanvas-header .logo {
    max-width: 50%;
  }
  
  .offcanvas .offcanvas-body {
    padding: 32px 0px;
  }
  
  
  .offcanvas .offcanvas-body .side-Nav{
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .offcanvas .offcanvas-body .side-Nav li {
    border-bottom: 1px solid hsl(40deg 98% 51% / 20%);
  }
  


.header-meta .header-btn .btn {
    border: 2px solid var(--secondary-color);
    padding: 15px 40px;
    border-radius: 50px;
}

.header-meta .header-btn .btn:hover {
    background-color: var(--secondary-color);
    color: #fff;
    transition: all 0.3s linear;
    border-color: var(--secondary-color);
}

/* When header-wrap does not have the sticky-header class */
.header-wrap:not(.sticky-header)::before {
    opacity: 0;
    border: 1px solid transparent;
}

/* Your existing code for the before element */
.header-wrap::before {
    content: "";
    position: absolute;
    height: 9rem;
    width: 73rem;
    border: 1px solid rgb(247, 240, 206);
    border-radius: 20rem;
    top: -0.9rem;
    left: -1.2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    z-index: -1;
    transition: 0.3s cubic-bezier(0.4, 0, 0.3, 1);
}

@media only screen and (max-width:768px) {
    .header-wrap::before {
        width: 0%;
        left: 0;
    }
    
}
/* sticky header on  */
.header-wrap.sticky-header {
    position: fixed;
    z-index: 999;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(7.5px);
    width: 100%;
    max-width: 70rem;
    margin: 0px auto;
    padding: 1.6rem 2.4rem;
    top: 1.5rem;
    left: 9%;
    right: 9%; 
    transform: translateY(50%);
    box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 40px;
    transition: transform 0.9s ease-in-out;
    border-radius: 6rem;
}

@media screen and (max-width: 768px) {
    .header-wrap.sticky-header{
      transform: translateX(0);
      left: 0;
      top: 0;
      right: 0;
      max-width: 100%;
      border-radius: 0;
    }
}

.hero-section {
    /* position: relative; */
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0%;
    background: linear-gradient(135deg, #f0e7b3 0%, #fcfcfc 35%);
    height: 70vh;
    width: 100%;
    z-index: -1;
}

.hero-section .hero-content {
    text-align: center;
}

.hero-section .hero-content h2 {
    font-size: 50px;
    font-family: var(--default-font-family);
    font-weight: 600;
    line-height: 60px;
}

.hero-section .hero-content h2 span {
    color: var(--secondary-color);
}

.hero-section .hero-content p {
    font-size: 20px;
    font-family: var(--default-font-family);
    font-weight: 300;
}

@media only screen and (min-width: 1280px) {
    .hero-section .hero-content h2 {
        inline-size: 800px;
        margin: 0 auto;
    }
    .hero-section .hero-content p {
        inline-size: 700px;
        margin: 0 auto;
    }
}

.hero-btn {
    margin-top: 40px;
}

.hero-btn .btn {
    background: var(--secondary-color);
    padding: 15px 40px;
    border-radius: 50px;
    font-family: var(--default-font-family);
    font-weight: 600;
}

.reg-wrapper {
    border-radius: 10px;
    position: relative;
    bottom: 0;
}

.reg-wrapper-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: start;
}

.text-mid-blue {
    color: var(--primary-color);
}

.text-gray-700 {
    --tw-text-opacity: 1;
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}

.font-bold {
    font-weight: 700;
}
.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.process-title {
    text-align: center;
    color: #27294d;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.step {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    border-radius: 8px;
    margin-bottom: 20px;
    position: relative;
}

.step:nth-child(1) .step-number {
    background-color: #75650b;
}

.step:nth-child(2) .step-number {
    background-color: #f59337;
}

.step:nth-child(3) .step-number {
    background-color: #27294d;
}

.step-number::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    left: 5px;
    top: 5px;
    z-index: -1;
}

.step-description {
    color: #444;
    max-width: 350px;
    font-size: 17px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .step {
        max-width: 500px;
    }
}

.unit-marker {
    width: 40px;
    height: 40px;
    background-color: #e6f0ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.unit-marker .dot {
    width: 16px;
    height: 16px;
    background-color: #0d6efd;
    border-radius: 50%;
}

/* .unit-title {
    color: #20315f;
    font-weight: 700;
    font-size: 1px;
} */

.code-tag {
    background-color: #020002;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
    font-weight: 500;
}

.code-tag img {
    margin-right: 8px;
}

.html-tag {
    background-color: #020002;
}

.css-tag {
    background-color: #020002;
}

.code-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.module-content {
    color: var(--light-gray);
    line-height: 25px;
    font-weight: 500;
}

.code-brackets {
    max-width: 300px;
}

.unit-marker.dot-marker {
    width: 40px;
    height: 40px;
    background-color: rgba(252, 228, 98, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.unit-marker .dot.dot-2 {
    width: 16px;
    height: 16px;
    background-color: #fce462;
    border-radius: 50%;
}

.unit-title {
    color: var(--white);
    font-weight: 700;
    font-size: 2rem;
}

.js-box {
    background-color: var(--yellow);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}

.js-box .js-logo {
    font-size: 8rem;
    font-weight: 900;
    color: #333;
}

.tag {
    background-color: #020002;
    border-radius: 4px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    margin-right: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color:#ffffff;
}

.tag img {
    height: 20px;
    margin-right: 10px;
}

/* .tag.js {
    background-color: #fce462;
} */

.bg-background {
    background-color: #020002;
}

.bg-background .code-tag {
    background-color: #ffffff;
    color: #000000;
}
.bg-background .tag {
    background-color: #ffffff;
    color: #000000;
}

.container__wrapper {
    position: relative;
    display: flex;
    height: 100vh;
}

/* partner section */

.partner-slider {
    padding-top: 50px;
}

.partner-slider .partner-item img {
    width: 40% !important;
    margin: 0 auto;
}

/*  03 - Counter CSS
/*----------------------------------------*/

.counter-section-02 {
    /* background: #f1f1f1; */
    background: url("../images/footer_bg.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.counter-section-02 .single-counter {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.counter-section-02 .single-counter .counter-img {
    height: 95px;
    width: 95px;
    line-height: 55px;
    text-align: center;
    padding: 20px 20px;
    background: #ffffff;
    box-shadow: 0px 0px 51px 0px rgba(0, 0, 0, 0.09);
    border-radius: 10px;
}

.single-counter-02 {
    margin-top: 30px;
}

.single-counter-02 span {
    font-size: 50px;
    line-height: 30px;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
}

.single-counter-02 p {
    font-size: 14px;
    line-height: 30px;
    text-transform: capitalize;
    color: #ffffff;
}
.single-counter-02 span {
    color: #ffffff;
}

.counter-section-02 .single-counter .counter-content {
    margin-left: 20px;
}

.counter-section-02 .single-counter .counter-content span {
    font-size: 40px;
    line-height: 26px;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
}

.counter-section-02 .single-counter .counter-content p {
    font-size: 12px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
    color: #4c4d56;
}

@media only screen and (max-width: 1199px) {
    .counter-section-02 .counter-wrap {
        padding: 15px 55px 75px;
    }
    .counter-section-02 .single-counter {
        margin-left: 0px;
    }
    .counter-section-02 .single-counter::before {
        display: none;
    }
}

@media only screen and (max-width: 678px) {
    .counter-section-02 {
        padding: 100px 0px 60px;
    }
    .single-counter .counter-content p {
        line-height: 18px;
    }
}

/* ======== ================ */
/* Our About */
/* ========================= */

.about-section {
    padding: 40px 0;
    margin: 40px 0;
}

/* Decorative shapes */
.shape-top-right {
    width: 100px;
    height: 100px;
    background-color: var(--secondary-color);
    top: -40px;
    right: -20px;
    z-index: -1;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.shape-bottom-left {
    width: 100px;
    height: 100px;
    background-color: var(--secondary-color);
    bottom: -30px;
    left: -20px;
    z-index: -1;
    clip-path: polygon(0 0, 0 100%, 100% 100%);
}

/* Container for the images */
.image-container {
    height: 450px;
}

/* Logo image */
.logo-image {
    width: 120px;
    height: 120px;
    top: 0;
    right: 40%;
    z-index: 3;
}

/* Middle image */
.image-middle {
    width: 50%;
    height: auto;
    top: 15%;
    left: 0;
    z-index: 1;
}

/* Top right image */
.image-top-right {
    width: 45%;
    height: auto;
    top: 0;
    right: 0;
    z-index: 2;
}

/* Bottom right image */
.image-bottom-right {
    width: 45%;
    height: auto;
    bottom: 0;
    right: 15%;
    z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .image-container {
        height: 290px;
        margin-top: 50px;
    }

    .logo-image,
    .image-middle,
    .image-top-right,
    .image-bottom-right {
        position: relative;
        width: 100%;
        margin: 15px auto;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
    }

    .logo-image {
        width: 120px;
        height: 120px;
    }
}

/* ======== ================ */
/* Our Service */
/* ========================= */

.subtitle {
    width: max-content;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--manrope), sans-serif;
    /* line-height: 140%; */
    /* padding: 0.85rem 1.4rem; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 0.8rem;
    /* margin-bottom: 1.2rem; */
    border-radius: 4rem;
    /* background-color: rgb(225, 251, 243); */
    color: rgb(230, 207, 60);
}

.service-section .subtitle {
    margin: 0 auto;
}

.sharp_p {
    text-transform: uppercase;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--manrope), sans-serif;
    /* line-height: 140%; */
    color: rgb(230, 207, 60);
    letter-spacing: 0.028rem;
}

.sharp {
    margin-right: 2px;
    width: 1.2rem;
    height: 1.2rem;
}

.sharp:first-child {
    background-color: rgb(193, 175, 56);
    animation: 3.5s ease 0s infinite normal none running dAmEtr;
}
.sharp {
    width: 6px;
    height: 6px;
}

.sharp:last-child {
    background-color: rgb(246, 225, 86);
    transform: translate(6px, 0px);
    animation: 3.5s ease 0s infinite normal none running gAbWqT;
}

@keyframes dAmEtr {
    0%,
    100% {
        transform: translate(0px, 0px);
    }

    25% {
        transform: translate(0px, 6px);
    }

    50% {
        transform: translate(6px, 6px);
    }

    75% {
        transform: translate(6px, 0px);
    }
}

@keyframes gAbWqT {
    0%,
    100% {
        transform: translate(6px, 0px);
    }

    25% {
        transform: translate(6px, -6px);
    }

    50% {
        transform: translate(0px, -6px);
    }

    75% {
        transform: translate(0px, 0px);
    }
}

/* Our service */
/* Service Section Styles */
.service-section {
    /* background-image: url('../images/background-1.png');
  background-size: cover;
  background-position:  center;
  background-repeat: no-repeat; */
    background-color: #f5f8f5;
    padding: 80px 0;
}

/* Service Cards */
.service-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1;
    position: relative;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-overlay h3 {
    color: #020002;
}

.service-card {
    position: relative;
    /* overflow: hidden; */
}

.service-card-overlay {
    background-color: #ffffff;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
        rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    color: #000000;
    padding: 20px;
}

.service-card:hover .service-card-overlay {
    /* transform: translateY(0); */
}

/* WHY CHOOSE US */
.why__choose__us {
    background-image: url("../images/background-1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f5f8f5;
}

.why__choose__us__img {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why__choose__us__list__item {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
        rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    padding: 15px;
    margin-bottom: 10px;
    margin-top: 20px;
}

.main-image {
    width: 80%;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.top-right-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    z-index: 2;
    border-radius: 10px;
    overflow: hidden;
}

.brand-element {
    position: absolute;
    top: 20%;
    left: 0;
    width: 30%;
    z-index: 3;
    background-color: #1a1a2e;
    border-radius: 10px;
    padding: 20px;
}

.bottom-right-image {
    position: absolute;
    bottom: -40%;
    right: 5%;
    width: 50%;
    z-index: 2;
    border-radius: 10px;
    overflow: hidden;
}

/* Add shadow effect to images */
.why__choose__us__img img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.choose-us-section{
    background-color: #f5f8f5;
}

.choose-us-item-02{
    /* box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px; */
    padding: 20px;
}

.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Testimonials Section */
.testimonial-container {
  width: 100%;
  max-width: 60rem;
  padding: 2rem;
  margin:0 auto;
}
.testimonial-grid {
  display: grid;
  gap: 5rem;
  
}
.images-test {
  position: relative;
  width: 100%;
  height: 24rem;
  perspective: 1000px;
}
.testimonial-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.testimonial-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 0.25rem;
}
.designation {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 2rem;
}
.quote {
  font-size: .89rem;
  color: #1a1a2e;
  line-height: 25px;
}
.arrow-buttons {
  display: flex;
  gap: 1rem;
  padding-top: 3rem;
}
.arrow-button {
  width: 40px;
  height: 40px;
  border-radius: 5%;
  background-color: #141414;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
}
.arrow-button:hover {
  background-color: #000000;
  border: 1px solid #000000;
}
.arrow-button svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: #f1f1f7;
  transition: transform 0.3s;
}
.arrow-button:hover svg {
  fill: #ffffff;
}
.prev-button:hover svg {
  transform: rotate(-12deg);
}
.next-button:hover svg {
  transform: rotate(12deg);
}
@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }
  .arrow-buttons {
    padding-top: 0;
  }
}
/* end  */

.cta__container {
    max-width: 1246px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-bottom: 9.6rem;
    top: 40px;
}

.cta__section {
    background-color: #f5f8f5;
}

.cta__section .cta__row {
    position: relative;
    border-radius: 1.2rem;
    background-color: rgb(0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    padding: 4rem 4.8rem;
    z-index: 1;
}

.cta__content__title {
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--default-font-family);
    line-height: 120%;
    color: rgb(255, 255, 255);
    margin-bottom: 0.55rem;
}

.cta__content__subtitle {
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--default-font-family);
    line-height: 120%;
    color: rgb(255, 255, 255);
    margin-bottom: 1.8rem;
}

.cta__content__description {
    font-size: 0.8rem;
    font-weight: 500;
    font-family: var(--default-font-family);
    line-height: 140%;
    color: rgb(255, 255, 255);
}

.cta__container__image {
    width: 15rem;
}

.cta__container__image img {
    width: 25%;
    max-width: 100%;
    height: 14.4rem;
    position: absolute;
    bottom: 0px;
    left: 2.1rem;
    z-index: 1;
    object-fit: cover;
}

.cta__container__button a {
    font-weight: 500;
    font-family: var(--default-font-family);
    border-radius: 3.2rem;
    width: max-content;
    font-size: 0.9rem;
    padding: 1rem 2rem;
    background-color: #ffb53e;
    color: #ffffff;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.contact-info{
    display: flex;
    align-items: center;
    gap:20px;
    padding-top: 40px;
}

.contact-info-item{
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    padding: 20px;
    border-radius: 10px;
    /* width: 35%; */
}

.contact-info-item .icon{
    font-size: 30px;
    color: var(--primary-color);
    /* width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--secondary-color); */
}

.contact-info-item .info{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-info-item .info .title{
    font-size: 16px;
}


/*--
/*  19 - Contact CSS
/*----------------------------------------*/
.contact-section .contact-wrap {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 60% 100%;
  }
  
  .contact-section .contact-wrap .contact-info .section-title .title {
    position: relative;
    padding-left: 45px;
  }
  
  .contact-section .contact-wrap .contact-info .section-title .title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    background: #ff5538;
    height: 150px;
    width: 4px;
    transform: translateY(-50%);
  }
  
  .contact-section .contact-wrap .contact-info ul {
    padding-top: 15px;
  }
  
  .contact-section .contact-wrap .contact-info ul li {
    margin-top: 15px;
    padding-right: 65px;
  }
  
  .contact-section .contact-wrap .contact-info ul li:first-child {
    border-top: 0;
  }
  
  .contact-section .contact-wrap .contact-info ul li .contact-info-item .contact-info-icon i {
    font-size: 50px;
    color: #ff5538;
  }
  
  @media only screen and (max-width: 575px) {
    .contact-section .contact-wrap .contact-info ul li .contact-info-item .contact-info-icon i {
      font-size: 42px;
    }
  }
  
  .contact-section .contact-wrap .contact-info ul li .contact-info-item .contact-info-text {
    margin-left: 20px;
  }
  
  .contact-section .contact-wrap .contact-info ul li .contact-info-item .contact-info-text .title {
    font-size: 24px;
    line-height: 30px;
    color: #0e0e0e;
  }
  
  .contact-section .contact-wrap .contact-info ul li .contact-info-item .contact-info-text p {
    font-size: 16px;
    line-height: 30px;
    color: #0e0e0e;
  }
  
  .contact-section .contact-wrap .contact-form {
    background: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
    margin-left: 110px;
  }
  
  @media only screen and (max-width: 1399px) {
    .contact-section .contact-wrap .contact-form {
      margin-left: 40px;
    }
  }
  
  @media only screen and (max-width: 1199px) {
    .contact-section .contact-wrap .contact-form {
      margin-left: 15px;
    }
  }
  
  @media only screen and (max-width: 991px) {
    .contact-section .contact-wrap .contact-form {
      margin-left: 0;
      margin-top: 60px;
    }
  }
  
  .contact-section .contact-wrap .contact-form .contact-form-wrap {
    padding: 55px 40px;
  }
  
  @media only screen and (max-width: 1199px) {
    .contact-section .contact-wrap .contact-form .contact-form-wrap {
      padding: 40px;
    }
  }
  
  .contact-section .contact-wrap .contact-form .contact-form-wrap .heading-wrap {
    margin-bottom: 30px;
  }
  
  .contact-section .contact-wrap .contact-form .contact-form-wrap .heading-wrap .sub-title {
    font-size: 14px;
    line-height: 30px;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #ff5538;
  }
  
  .contact-section .contact-wrap .contact-form .contact-form-wrap .heading-wrap .title {
    font-size: 42px;
    line-height: 54px;
    font-weight: 600;
    color: #333333;
  }
  
  @media only screen and (max-width: 1199px) {
    .contact-section .contact-wrap .contact-form .contact-form-wrap .heading-wrap .title {
      font-size: 32px;
      line-height: 48px;
    }
  }
  
  @media only screen and (max-width: 575px) {
    .contact-section .contact-wrap .contact-form .contact-form-wrap .heading-wrap .title {
      font-size: 28px;
      line-height: 40px;
    }
  }
  
  .contact-section .contact-wrap .contact-form .contact-form-wrap .single-form {
    margin-top: 25px;
  }
  
  .contact-section .contact-wrap .contact-form .contact-form-wrap .single-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]) {
    height: 55px;
    line-height: 55px;
    border: 1px solid #ebebeb;
    padding-left: 15px;
  }
  
  .contact-section .contact-wrap .contact-form .contact-form-wrap .single-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"])::-webkit-input-placeholder {
    opacity: 0.95;
    font-size: 14px;
    color: #4c4d56;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
  }
  
  .contact-section .contact-wrap .contact-form .contact-form-wrap .single-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):-moz-placeholder {
    opacity: 0.95;
    font-size: 14px;
    color: #4c4d56;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
  }
  
  .contact-section .contact-wrap .contact-form .contact-form-wrap .single-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"])::-moz-placeholder {
    opacity: 0.95;
    font-size: 14px;
    color: #4c4d56;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
  }
  
  .contact-section .contact-wrap .contact-form .contact-form-wrap .single-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):-ms-input-placeholder {
    opacity: 0.95;
    font-size: 14px;
    color: #4c4d56;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
  }
  
  .contact-section .contact-wrap .contact-form .contact-form-wrap .single-form textarea {
    height: 135px;
    border: 1px solid #ebebeb;
    padding-left: 15px;
    resize: none;
  }
  
  .contact-section .contact-wrap .contact-form .contact-form-wrap .single-form textarea::-webkit-input-placeholder {
    opacity: 0.95;
    font-size: 14px;
    color: #4c4d56;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
  }
  
  .contact-section .contact-wrap .contact-form .contact-form-wrap .single-form textarea:-moz-placeholder {
    opacity: 0.95;
    font-size: 14px;
    color: #4c4d56;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
  }
  
  .contact-section .contact-wrap .contact-form .contact-form-wrap .single-form textarea::-moz-placeholder {
    opacity: 0.95;
    font-size: 14px;
    color: #4c4d56;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
  }
  
  .contact-section .contact-wrap .contact-form .contact-form-wrap .single-form textarea:-ms-input-placeholder {
    opacity: 0.95;
    font-size: 14px;
    color: #4c4d56;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
  }
  
  .contact-section .contact-wrap .contact-form .contact-form-wrap .form-btn {
    margin-top: 25px;
  }

  .contact-section .contact-wrap .contact-form .contact-form-wrap .form-btn .btn-primary{
    background-color:var(--secondary-color);
    border:1.5px solid var(--secondary-color) ;
    color: #ffffff;
  }
  
  .contact-section .contact-wrap .contact-form .contact-form-wrap .form-btn .btn {
    font-size: 16px;
    width: 100%;
    height: 55px;
    line-height: 50px;
    margin-bottom: 10px;
  }
  
  @media only screen and (max-width: 575px) {
    .contact-section .contact-wrap .contact-form .contact-form-wrap .form-btn .btn {
      padding: 0 45px;
    }
  }
  
  .contact-section-02 .contact-wrap .contact-info .section-title .title::before {
    background: #75650b;
  }
  
  .contact-section-02 .contact-wrap .contact-info ul li .contact-info-item .contact-info-icon i {
    color: #75650b;
  }
  
  .contact-section-02 .contact-wrap .contact-form {
    background: #ffffff;
    box-shadow: 0px 0px 139px 0px rgba(0, 0, 0, 0.1);
  }
  
  .contact-section-02 .contact-wrap .contact-form .contact-form-wrap .heading-wrap .sub-title {
    color: #75650b;
  }
  
  .contact-info-section .contact-info-wrap {
    margin-top: -30px;
  }
  
  .contact-info-section .contact-info-wrap .single-contact-info {
    background: #f8f8f8;
    padding: 50px 80px 75px;
    border-radius: 5px;
    margin-top: 30px;
  }
  
  @media only screen and (max-width: 1199px) {
    .contact-info-section .contact-info-wrap .single-contact-info {
      padding: 50px 40px 60px;
    }
  }
  
  @media only screen and (max-width: 767px) {
    .contact-info-section .contact-info-wrap .single-contact-info {
      padding: 50px 30px 60px;
    }
  }
  
  .contact-info-section .contact-info-wrap .single-contact-info .info-content .title {
    font-size: 24px;
    line-height: 36px;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  
  .contact-info-section .contact-info-wrap .single-contact-info .info-content p {
    font-size: 18px;
    line-height: 30px;
  }
  
  @media only screen and (max-width: 1199px) {
    .contact-info-section .contact-info-wrap .single-contact-info .info-content p {
      font-size: 16px;
    }
  }
  
  @media only screen and (max-width: 991px) {
    .contact-info-section .contact-info-wrap .single-contact-info .info-content p {
      font-size: 18px;
    }
  }
  
  .contact-section-03 .contact-wrap {
    /* margin-bottom: -60px;
    position: relative;
    z-index: 5; */
  }
  
  .contact-section-03 .contact-wrap .contact-form .contact-form-wrap .form-btn {
    text-align: center;
  }
  
  .contact-section-03 .contact-wrap .contact-form .contact-form-wrap .form-btn .btn {
    width: 70%;
  }
  
  .contact-map-section .contact-map-wrap {
    margin-bottom: -8px;
  }
  
  .contact-map-section .contact-map-wrap iframe {
    height: 550px;
    width: 100%;
    filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
  }

/* Add responsive styles */
@media (max-width: 992px) {
}

@media (max-width: 576px) {
}

.flex {
    display: flex;
    gap: 50px;
}

.img-responsive {
    max-width: 100%;
    height: auto;
}

.training__section__image {
    background-image: url("../images/cohort.jpg");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    flex-basis: 50%;
    object-fit: cover;
    /* min-height: 20% !important; */
}

.training__section__content__title {
    font-size: 2rem;
    line-height: 80px;
    font-weight: 700;
    color: #444;
}

.training__section__content {
    padding: 30px 50px;
    flex-basis: 50%;
}

.training__section__content .training__section__content__form .form-group {
    margin-bottom: 40px;
    width: 100%;
}

.training__section__content
    .training__section__content__form
    .form-group
    label {
    /* text-transform: lowercase; */
    font-size: 15px;
}

.training__section__content
    .training__section__content__form
    .form-group
    .form-input {
    width: 100%;
    padding: 20px 8px;
    border: 1.5px solid #75650b !important;
    border-radius: 5px;
    box-sizing: border-box;
    margin: 8px 0px;
}

.btn-primary.submit {
    /* width: 100%; */
    cursor: pointer;
    border: none !important;
    outline: none !important;
}



@media screen and (max-width: 768px) {
    .training__section__image {
        flex-basis: 100%;
        visibility: hidden;
    }
    .training__section__content {
        background-color: rgba(0, 0, 0, 0);
        flex-basis: 100%;
        z-index: 999;
        position: absolute;
        width: 100%;
    }

    .training__section__content__title {
        font-size: 1rem;
        line-height: 60px;
    }

    .flex {
        gap: 20px;
    }

    .training__section__content {
        padding: 15px 30px;
    }
    .training__section__content .training__section__content__form .form-group {
        margin-bottom: 30px;
    }

    .btn-primary.submit {
        width: 100%;
    }
}

.footer {
    background-color: #000000;
    padding: 6.4rem 0px 4.8rem;
    margin: 0px 2.4rem 2.4rem;
    border-radius: 2.4rem;
    color: #ffffff;
}

.footer .footer-logo img {
    margin-left: -20px;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 0.8rem;
    padding-top: 4rem;
    border-top: 1px solid rgb(40, 47, 87);
}

.footer .footer-widget .footer-widget-title {
    color: var(--primary-color);
    font-weight: 600;
    font-family: var(--default-font-family);
    font-size: 20px;
    line-height: 50px;
}

.footer .footer-widget .widget-link .link {
    color: #ffffff;
    font-family: var(--default-font-family);
    font-size: 14px;
    font-weight: 500;
    line-height: 40px;
}

.footer .footer-des {
    color: #ffffff;
    font-family: var(--default-font-family);
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
}

.footer .social__media__handles {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.footer .social__media__handles a {
    width: 32px;
    height: 32px;
    background-color: #1a1a2e;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .social__media__handles a:hover {
    background-color: var(--primary-color);
    transition: background-color 0.3s ease;
    color: #ffffff;
}

.header-toggle {
    background-color:  #1a1a2e;
    position: absolute;
    right: 20px;
    padding: 5px 10px;
  }
  
  .header-toggle button {
    background: none;
    border: 0;
    padding: 0;
  }
  
  .header-toggle button span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 5px 0;
    display: block;
  }
  
  .header-toggle button span:last-child {
    margin-bottom: 0;
  }
  


@media only screen and (max-width: 767px) {
    h1 {
        font-size: 30px;
    }

    #header-mobile{
        padding-bottom:15px;
    }
    .header-section .header-wrap{
        justify-content: flex-start;
    }

    .hero-section .hero-content h2 {
        font-size: 35px;
        line-height: 45px;
    }
    .hero-section .hero-content p {
       font-size: 16px;
    }

    .cta__section .cta__row{
        justify-content: flex-start;
        flex-direction: column;
        padding: 5rem  1rem 7rem;
        z-index: 1;
        flex-wrap: wrap;
        /* border-radius: 0; */
    }

    .cta__container__content{
        padding-bottom: 25px;
    }

    .cta__container__image img {
        width: 48%;
        max-width: 100%;
        height: 7.4rem;
        position: absolute;
        bottom: 0px;
        left: 57%;
        z-index: -1;
        object-fit: cover;
    }

    .cta__container{
        max-width: 100%;
        /* padding-left: 0;
        padding-right: 0; */
    }

    .footer{
        margin: 0;
        border-radius: 0%;
        padding: 6.4rem 0px 1.8rem;
    }

    .footer__bottom{
        flex-wrap: wrap;
    }
}


.process-container {
  max-width: 1200px;
  margin: 0 auto;
}


/* Process steps layout */
.process-steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
}


/* Step card styles */
.process-step {
  flex: 1;
  min-width: 300px;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  padding: 40px 30px;
  position: relative;
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* opacity: 0; */
  transform: translateY(30px);
}

/* Step number styling */
.process-step-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  font-weight: bold;
  color: white;
  margin-bottom: 25px;
  transform: scale(0);
  transition: transform 0.5s ease;
}

/* Step colors */
.process-step-1 .process-step-number {
  background-color: #7a6821;
}

.process-step-2 .process-step-number {
  background-color: #f3a74d;
}

.process-step-3 .process-step-number {
  background-color: #2a2d52;
}

/* Content styling */
.process-step-content h3 {
  font-size: 22px;
  color: #2d3142;
  margin-bottom: 15px;
}

.process-step-content p {
  color: #5d6170;
  line-height: 1.6;
  margin-bottom: 20px;
}


/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandWidth {
  to {
    width: 80%;
  }
}

@keyframes popIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover effects */
.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.process-step:hover .process-step-number {
  animation: pulse 1s infinite alternate;
}

@keyframes pulse {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

/* Progress indicator */
.progress-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #e64c09;
  top: 66px;
  left: 10%;
  z-index: 2;
  animation: moveDot 3s linear infinite alternate;
}

@keyframes moveDot {
  0% {
    left: 10%;
    background-color: #7a6821;
  }
  50% {
    background-color: #f3a74d;
  }
  100% {
    left: 90%;
    background-color: #2a2d52;
  }
}

/* Responsive styles */
@media (max-width: 1000px) {
  .connector, .timeline {
    display: none;
  }
  
  .progress-dot {
    display: none;
  }
}

@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    align-items: center;
  }
  
  .process-step {
    width: 100%;
    max-width: 450px;
  }
}

/* Animation triggers */
.process-step-1 {
  animation: fadeInUp 1s ease forwards 0.3s;
}

.process-step-2 {
  animation: fadeInUp 1s ease forwards 0.6s;
}

.process-step-3 {
  animation: fadeInUp 1s ease forwards 0.9s;
}

.process-step-1 .process-step-number {
  animation: popIn 0.5s ease forwards 0.8s;
}

.process-step-2 .process-step-number {
  animation: popIn 0.5s ease forwards 1.1s;
}

.process-step-3 .process-step-number {
  animation: popIn 0.5s ease forwards 1.4s;
}

.program__box {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  border-radius: 2.4rem;
  padding: 5.6rem 4.8rem 4.8rem 8rem;
  background-color:rgb(115, 77, 2);

  .program__box__content__text {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 36rem;
  }

  .program__box__content__image {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 50rem;
    height: 100%;
    pointer-events: none;

    &::after {
      content: "";
      position: absolute;
      top: 0px;
      left: -2px;
      width: 500px;
      height: 100%;
      background: linear-gradient(90deg, rgb(250, 209, 144) 0%, rgba(74, 96, 158, 0) 20%);
    }

    img {
      object-fit: cover;
      object-position: center center;
      width: 100%;
      height: 100%;
      position: relative;
    }
  }
  
  @media (max-width: 900px) {
    /* padding: 4.6rem 0.2rem 4.8rem 1rem;  */
    .program__box__content__image {
      height: 0%;
    }
    /* .unit-title {
      font-size: 1.8rem;
    } */
  }

  @media (max-width: 768px) {
    padding: 4.6rem 0.2rem 4.8rem 1rem; 
    .program__box__content__image {
      height: 0%;
    }
    .unit-title {
      font-size: 1.8rem;
    } 
  }

}