/* Reset */
*,
ul,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

/* Global */
.text-right {
    text-align: right;
}

/* Button */
.white-button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--bs-primary);
    width: 224px;
    height: 75px;
    color: var(--bs-primary);
    font-family: var(--bs-font-body);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.white-button-without-border {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 224px;
    height: 75px;
    color: var(--bs-primary);
    font-family: var(--bs-font-body);
    font-weight: 600;
    font-size: 12px;
    background: var(--white);
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.white-button:hover {
    background: var(--bs-primary);
    color: var(--white);
}

.white-button-without-border:hover {
    background: var(--bs-primary);
    color: var(--white);
}
.purple-text-button:hover {
    color: #A3B8FF;
}

/* Hero Section */
.hero-section {
    overflow: hidden;
}

.hero-section-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}

.hero-section-background {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
}

.hero-section h1 {
    color: var(--white);
    font-family: var(--main-font);
    font-weight: 200;
    font-size: 50px;
    text-align: center;
    padding: 0 60px;
}

.hero-section h1>span {
    font-family: var(--agatho-font);
}

.hero-section h1>strong {
    font-weight: 600;
    font-style: italic;
}


/* Second Section */
.home-second {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 90px 60px 90px;
    gap: 50px;
    background: #DBF3FF;
}

.home-second h2 {
    color: var(--black);
    font-family: var(--main-font);
    font-weight: 200;
    font-size: 50px;
        font-weight: 600;
    text-align: center;
    width: 100%;
    max-width: 1000px;
    margin: auto;
    line-height: 1.4;
    color: #005087;
}

.home-second h4 {
    color: var(--black);
    font-family: var(--main-font);
    font-weight: 400;
    font-size: 30px;
    text-align: center;
    width: 100%;
    max-width: 1050px;
    margin: auto;
    line-height: 1.4;
    color: #005087;
}

/* Third Section */
.home-third {
    overflow: hidden;
    position: relative;
    min-height: 700px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-third.arabic{
    text-align: right;
}

.home-third::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}

.home-third-container {
    width: 100%;
    max-width: 1700px;
    padding: 0 60px;
    margin: auto;
    position: relative;
    z-index: 1;
}

.home-third h2 {
    color: var(--white);
    font-family: var(--main-font);
    font-weight: 600;
    font-size: 60px;
    line-height: 1.4;
    padding-bottom: 30px;
}

.home-third p {
    color: var(--white);
    font-family: var(--main-font);
    font-weight: 400;
    font-size: 30px;
    width: 100%;
    max-width: 665px;
    line-height: 1.6;
}

.home-third.arabic p {
    margin-left: auto;
}

.home-third p span {
    font-family: var(--agatho-font);
}

/* Fourth Section */
.home-fourth {
    overflow: hidden;
    padding: 90px 60px;
    background: #A3B8FF;
}

.home-fourth.arabic {
    text-align: right;
}

.home-fourth-container {
    max-width: 1440px;
    margin: auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.home-fourth.arabic a {
    margin-left: auto;
}

.home-fourth .content {
    width: 100%;
    max-width: 670px;
}

.home-fourth .content h5 {
    font-family: var(--bs-font-body);
    font-weight: 600;
    font-size: 30px;
    line-height: 1.4;
    letter-spacing: 4px;
    color: #005087;
}

.home-fourth .content h2 {
    font-family: var(--main-font);
    font-weight: 400;
    font-size: 60px;
    line-height: 1.4;
    padding: 10px 0 50px;
    color: #005087;
}

.home-fourth .content p {
    font-family: var(--bs-font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    padding-bottom: 60px;
    color: #005087;
}

.home-fourth-container .image-container {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/5;
    height: auto;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.home-fourth-container .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Fifth Section */
.home-fifth {
    overflow: hidden;
    padding: 90px 60px;
    background: #005087;
}

.home-fifth.arabic {
    text-align: right;
}

.home-fifth-section {
    max-width: 1440px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.home-fifth-section-left {
    width: 100%;
    max-width: 485px;
}

.home-fifth-section-right {
    width: 100%;
    max-width: 850px;
}

.home-fifth-section-left h2 {
    color: var(--white);
    font-family: var(--main-font);
    font-weight: 600;
    font-size: 60px;
    line-height: 1.4;
    padding-bottom: 30px;
}

.home-fifth-section-left h4 {
    color: var(--white);
    font-family: var(--bs-font-body);
    font-weight: 400;
    font-size: 21px;
    line-height: 1.4;
}

.home-fifth-section-right li:first-child {
    border-top: 1px solid #DBF3FF;
}

.home-fifth-section-right li {
    padding: 20px;
    border-bottom: 1px solid #DBF3FF;
}

.home-fifth-section-right span {
    position: relative;
    display: block;
    color: var(--white);
    font-family: var(--main-font);
    font-weight: 600;
    font-size: 22px;
    padding: 0 20px;
    cursor: pointer;
}

.home-fifth-section-right span::after {
    content: '';
    background: url('../images/icons/arrow-down.png') no-repeat center;
    background-size: cover;
    width: 12px;
    height: 12px;
    display: block;
    position: absolute;
    top: 0;
    left: -10px;
    bottom: 0;
    margin: auto;
    transform: scaleY(1);
    transition: transform 0.3s ease-in-out;
    filter: invert(100%);
}

.home-fifth-section-right span.active::after {
    transform: scaleY(-1);
}

.home-fifth-section-right p {
    color: var(--white);
    font-family: var(--bs-font-body);
    font-weight: 400;
    font-size: 15px;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    max-height: 0;
    padding: 0 20px;
    line-height: 1.5;
}

.home-fifth-section-right p.active {
    max-height: 1000px;
    opacity: 1;
    padding: 20px 20px 0;
}

/* Sixth Section */
.home-sixth {
    overflow: hidden;
    background: #DBF3FF;
}

.home-sixth-title {
    max-width: 1045px;
    padding: 90px 60px;
    margin: auto;
}

.home-sixth-title h2 {
    color: var(--black);
    font-family: var(--main-font);
    font-weight: 600;
    font-size: 60px;
    line-height: 1.4;
    padding-bottom: 30px;
    text-align: center;
    color: #005087;
}

.home-sixth-title p {
    color: var(--black);
    font-family: var(--bs-font-body);
    font-weight: 400;
    font-size: 21px;
    line-height: 1.4;
    text-align: center;
    color: #005087;
}

.home-sixth-images {
    display: flex;
}

.home-sixth-images .images-container {
    position: relative;
    flex: 1;
    height: 540px;
    overflow: hidden;
}

.home-sixth-images .images-content {
    height: 100%;
}

.home-sixth-images .images-container:hover::after {
    background-color: rgba(0, 0, 0, 0);
}

.home-sixth-images .images-container:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease-in-out;
}

.home-sixth-images .images-container:hover img {
    transform: scale(1.1);
}

.home-sixth-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.home-sixth-images span {
    position: absolute;
    padding: 20px;
    z-index: 1;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-family: var(--main-font);
    font-size: 26px;
    text-align: center;
    text-transform: uppercase;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease-in-out;
}

.home-sixth-images .images-container:hover span {
    opacity: 0;
    visibility: hidden;
}

.home-sixth-images p strong {
    font-weight: 400;
    font-family: var(--agatho-font);
}

.home-sixth-images span>strong {
    font-family: var(--agatho-font);
    font-weight: 400;
}

/* Seventh Section */
.home-seventh {
    overflow: hidden;
    padding: 90px 60px;
}

.home-seventh.arabic {
    text-align: right;
}

.home-seventh.arabic .home-seventh-section {
    flex-direction: row-reverse;
}

.home-seventh-section {
    max-width: 1630px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.home-seventh>h2 {
    color: #005087;
    font-family: var(--main-font);
    font-weight: 600;
    font-size: 60px;
    line-height: 1.4;
    text-align: center;
    padding-bottom: 70px;
}

.home-seventh>h2>span {
    font-family: var(--agatho-font);
}

.home-seventh>p {
    color: #005087;
    font-family: var(--bs-font-body);
    font-weight: 400;
    font-size: 21px;
    line-height: 1.4;
    text-align: center;
    padding: 30px 0 70px;
}

.home-seventh-section .image-container {
    width: 100%;
    max-width: 655px;
}

.home-seventh-section video {
    width: 100%;
}

.home-seventh-content {
    width: 100%;
    max-width: 900px;
}

.home-seventh-content h3 {
    color: #005087;
    font-family: var(--main-font);
    font-weight: 600;
    font-size: 60px;
    line-height: 1.4;
}

.home-seventh-content h4 {
    color: #005087;
    font-family: var(--bs-font-body);
    font-weight: 400;
    font-size: 22px;
    line-height: 1.4;
    padding: 10px 0;
}

.home-seventh-content h5 {
    color: #005087;
    font-family: var(--bs-font-body);
    font-weight: 600;
    font-size: 24px;
    line-height: 1.4;
}

.home-seventh.arabic p {
    margin-left: auto;
}

.home-seventh-content p {
    color: #005087;
    font-family: var(--bs-font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    padding: 40px 0;
    max-width: 715px;
}

/* Eighth Section */
.eighth-section {
    overflow: hidden;
    position: relative;
    min-height: 610px;
    padding: 90px 60px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.eighth-section::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}

.eighth-section h2 {
    position: relative;
    z-index: 1;
    color: var(--white);
    font-family: var(--main-font);
    font-weight: 600;
    font-size: 60px;
    line-height: 1.4;
    text-align: center;
    max-width: 700px;
}

.eighth-section p {
    position: relative;
    z-index: 1;
    color: var(--white);
    font-family: var(--main-font);
    font-weight: 400;
    font-size: 28px;
    line-height: 1.4;
    text-align: center;
    max-width: 860px;
    padding: 20px 0 40px;
}

.eighth-section p>span {
    font-family: var(--agatho-font);
}

.eighth-section a {
    position: relative;
    z-index: 1;
}

.eighth-section>div {
    position: relative;
    z-index: 1;
}

/* Responsiveness */
@media (max-width: 1440px) {

    /* Hero Section */
    .hero-section h1 {
        font-size: 45px;
    }

    /* Second Section */
    .home-second {
        padding: 80px 60px;
    }

    .home-second h2 {
        font-size: 45px;
    }

    .home-second h4 {
          font-size: 28px;
    }

    /* Third Section */
    .home-third {
        min-height: 504px;
    }

    .home-third h2 {
        font-size: 55px;
    }

    .home-third p {
        font-size: 28px;
    }

    /* Fourth Section */
    .home-fourth {
        padding: 80px 60px;
    }

    .home-fourth-container {
        align-items: center;
    }

    .home-fourth .content h5 {
        font-size: 28px;
    }

    .home-fourth .content h2 {
        font-size: 55px;
    }

    /* Fifth Section */
    .home-fifth {
        padding: 80px 60px;
    }

    .home-fifth-section {
        align-items: center;
    }

    .home-fifth-section-left h2 {
        font-size: 55px;
    }

    .home-fifth-section-left h4 {
        font-size: 20px;
    }

    .home-fifth-section-right span {
        font-size: 21px;
    }

    /* Sixth Section */
    .home-sixth-title {
        padding: 80px 60px;
    }

    .home-sixth-title h2 {
        font-size: 55px;
    }

    .home-sixth-title p {
        font-size: 20px;
    }

    .home-sixth-images .images-container {
        height: 432px;
    }

    .home-sixth-images span {
        font-size: 24px;
    }

    /* Seventh Section */
    .home-seventh {
        padding: 80px 60px;
    }

    .home-seventh>h2 {
        font-size: 55px;
    }

    .home-seventh>p {
        font-size: 20px;
    }

    .home-seventh-content h3 {
        font-size: 55px;
    }

    .home-seventh-content h4 {
        font-size: 21px;
    }

    .home-seventh-content h5 {
        font-size: 22px;
    }

    /* Eighth Section */
    .eighth-section {
        min-height: auto;
        padding: 80px 60px;
    }

    .eighth-section h2 {
        font-size: 55px;
    }

    .eighth-section p {
        font-size: 26px;
    }
}

@media (max-width: 1024px) {

    /* Buttons */
    .white-button {
        width: 180px;
        height: 60px;
    }

    .white-button-without-border {
        width: 180px;
        height: 60px;
    }

    /* Hero Section */
    .hero-section h1 {
        font-size: 40px;
    }

    /* Second Section */
    .home-second {
        padding: 60px 40px;
        gap: 40px;
    }

    .home-second h2 {
        max-width: 800px;
        font-size: 40px;
    }

    .home-second h4 {
        max-width: 800px;
  font-size: 26px;
    }

    /* Third Section */
    .home-third {
        min-height: 403px;
    }

    .home-third-container {
        max-width: 880px;
        padding: 60px 40px;
    }

    .home-third h2 {
        font-size: 45px;
        padding-bottom: 20px;
    }

    .home-third p {
        font-size: 26px;
    }

    /* Fourth Section */
    .home-fourth {
        padding: 60px 40px;
    }

    .home-fourth-container {
        flex-direction: column-reverse;
    }

    .home-fourth-container .image-container {
        max-width: 100%;
        aspect-ratio: 4/5;
        min-height: 250px;
    }

    .home-fourth .content {
        max-width: 800px;
    }

    .home-fourth .content h5 {
        font-size: 26px;
    }

    .home-fourth .content h2 {
        font-size: 45px;
        padding: 10px 0 30px;
    }

    .home-fourth .content p {
        font-size: 15px;
        padding-bottom: 40px;
    }

    /* Fifth Section */
    .home-fifth {
        padding: 60px 40px;
    }

    .home-fifth-section {
        max-width: 800px;
        flex-direction: column;
    }

    .home-fifth-section-left {
        max-width: 100%;
    }

    .home-fifth-section-left h2 {
        font-size: 45px;
        padding-bottom: 20px;
    }

    .home-fifth-section-left h4 {
        font-size: 18px;
    }

    .home-fifth-section-right span {
        font-size: 19px;
        padding: 0;
    }

    .home-fifth-section-right li {
        padding: 15px;
    }

    .home-fifth-section-right span::after {
        width: 9px;
        height: 9px;
        left: unset;
        right: 0;
    }

    /* Sixth Section */
    .home-sixth-title {
        max-width: 800px;
        padding: 60px 40px;
    }

    .home-sixth-title h2 {
        font-size: 45px;
        padding-bottom: 20px;
    }

    .home-sixth-title p {
        font-size: 18px;
    }

    .home-sixth-images .images-container {
        height: 345px;
    }

    .home-sixth-images span {
        font-size: 22px;
    }

    /* Seventh Section */
    .home-seventh {
        padding: 60px 40px;
    }

    .home-seventh>h2 {
        font-size: 45px;
        padding-bottom: 40px;
    }

    .home-seventh>p {
        font-size: 18px;
        padding: 20px 0 50px;
    }

    .home-seventh-section {
        flex-direction: column !important;
    }

    .home-seventh-section .image-container {
        max-width: 800px;
    }

    .home-seventh-content {
        max-width: 800px;
    }

    .home-seventh-content h3 {
        font-size: 45px;
    }

    .home-seventh-content h4 {
        font-size: 19px;
    }

    .home-seventh-content h5 {
        font-size: 20px;
    }

    .home-seventh-content p {
        max-width: 100%;
        padding: 30px 0 40px;
        font-size: 15px;
    }

    /* Eighth Section */
    .eighth-section {
        padding: 60px 40px;
    }

    .eighth-section h2 {
        font-size: 45px;
        max-width: 800px;
    }

    .eighth-section p {
        font-size: 24px;
        max-width: 800px;
    }
}

@media (max-width: 768px) {

    /* Buttons */
    .white-button {
        width: 160px;
        height: 50px;
        margin: auto;
    }

    .white-button-without-border {
        width: 160px;
        height: 50px;
        margin: auto;
    }

    /* Hero Section */
    .hero-section h1 {
        font-size: 35px;
    }

    /* Second Section */
    .home-second {
        padding: 40px 20px;
        gap: 20px;
    }

    .home-second h2 {
        max-width: 600px;
        font-size: 35px;
    }

    .home-second h4 {
        max-width: 600px;
             font-size: 24px;
    }

    /* Third Section */
    .home-third {
        min-height: 325px;
    }

    .home-third-container {
        max-width: 600px;
        padding: 40px 20px;
    }

    .home-third h2 {
        text-align: center;
        font-size: 40px;
    }

    .home-third p {
        text-align: center;
        font-size: 24px;
    }

    /* Fourth Section */
    .home-fourth {
        padding: 40px 20px;
    }

    .home-fourth-container {
        max-width: 600px;
        gap: 20px;
    }

    .home-fourth .content h5 {
        font-size: 24px;
        text-align: center;
    }

    .home-fourth .content h2 {
        font-size: 40px;
        padding: 10px 0 20px;
        text-align: center;
    }

    .home-fourth .content p {
        text-align: center;
        padding-bottom: 20px;
    }

    /* Fifth Section */
    .home-fifth {
        padding: 40px 20px;
    }

    .home-fifth-section {
        max-width: 600px;
        gap: 20px;
    }

    .home-fifth-section-left h2 {
        text-align: center;
        font-size: 40px;
    }

    .home-fifth-section-left h4 {
        text-align: center;
        font-size: 16px;
    }

    .home-fifth-section-right span {
        font-size: 17px;
    }

    /* Sixth Section */
    .home-sixth-title {
        max-width: 640px;
        padding: 40px 20px;
    }

    .home-sixth-title h2 {
        font-size: 40px;
    }

    .home-sixth-title p {
        font-size: 16px;
    }

    .home-sixth-images {
        flex-wrap: wrap;
    }

    .home-sixth-images .images-container {
        flex: unset;
        width: 50%;
    }

    .home-sixth-images span {
        font-size: 20px;
        padding: 10px;
    }

    /* Seventh Section */
    .home-seventh {
        padding: 40px 20px;
    }

    .home-seventh>h2 {
        font-size: 40px;
        padding-bottom: 20px;
    }

    .home-seventh>p {
        font-size: 16px;
        padding: 10px 0 40px;
    }

    .home-seventh-section {
        gap: 20px;
    }

    .home-seventh-section .image-container {
        max-width: 600px;
    }

    .home-seventh-content {
        max-width: 600px;
    }

    .home-seventh-content h3 {
        font-size: 40px;
        text-align: center;
    }

    .home-seventh-content h4 {
        font-size: 17px;
        text-align: center;
    }

    .home-seventh-content h5 {
        font-size: 18px;
        text-align: center;
    }

    .home-seventh-content p {
        padding: 20px 0 30px;
        text-align: center;
    }

    /* Eighth Section */
    .eighth-section {
        padding: 40px 20px;
    }

    .eighth-section h2 {
        font-size: 40px;
        max-width: 600px;
    }

    .eighth-section p {
        font-size: 22px;
        max-width: 600px;
        padding: 10px 0 30px;
    }

}

@media (max-width: 425px) {

    /* Hero Section */
    .hero-section h1 {
        font-size: 30px;
    }

    /* Second Section */
    .home-second h2 {
        font-size: 30px;
    }

    /* Third Section */
    .home-third h2 {
        font-size: 35px;
    }

    .home-third p {
        font-size: 22px;
    }
    .home-second h4 {
        max-width: 600px;
             font-size: 22px;
    }
    /* Fourth Section */
    .home-fourth .content h2 {
        font-size: 35px;
    }

    .home-fourth .content h5 {
        font-size: 22px;
    }

    /* Fifth Section */
    .home-fifth-section-left h2 {
        font-size: 35px;
    }

    .home-fifth-section-right p {
        padding: 0;
    }

    .home-fifth-section-right p.active {
        padding: 20px 0 0;
    }

    /* Sixth Section */
    .home-sixth-title h2 {
        font-size: 35px;
    }

    .home-sixth-images .images-container {
        width: 100%;
        height: 300px;
    }

    /* Seventh Section */
    .home-seventh>h2 {
        font-size: 35px;
    }

    .home-seventh-content h3 {
        font-size: 35px;
    }

    /* Eighth Section */
    .eighth-section h2 {
        font-size: 35px;
    }

    .eighth-section p {
        font-size: 20px;
    }

    .subsriber-container .input-container>[type="submit"] {
        width: 100px;
    }


}