/*
Theme Name: Hypthon Theme
Author: the hypthon team
Author URI: https://wordpress.org/
Description: A custom WordPress theme for modern websites.
Version: 1.0
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hypthon
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

@charset "UTF-8";

:root {
    --white: #fff;
    --text-dark: #2f2d32;
    --blue-gray: #5d6676;
    --silver: #dfdfdf;
    --medium-gray: #9aa5ac;
    --light-blue-gray: #d7dde1;
    --off-white: #f5f6f7;
    --black: #282828;
    --dark-gray: #4b4b4b;
    --deep-blue: #0b3265;
    --blue: #01529c;
    --deep-orange: #f85c00;
    --orange: #fb8a2f;
    --swiper-navigation-size: 0 !important;
}

body,
p,
h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: "Open Sans";
    color: var(--text-dark);
}

p {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.text-center {
    text-align: center;
}

.text-lg {
    font-size: 18px;
}

.text-md {
    font-size: 14px;
}

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

.bold {
    font-weight: 700;
}

@media (min-width: 768px) {
    .text-lg {
    font-size: 24px;
    }

    .text-md {
    font-size: 20px;
    }

    .text-sm {
    font-size: 18px;
    }
}

.main-section {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
    overflow-x: clip;
}

@media (min-width: 1024px) {
    .main-section {
    overflow-x: visible;
    }
}

section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 auto 100px auto;
    box-sizing: border-box;
}

section:first-of-type {
    margin-top: 50px;
}

section:last-of-type {
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    section {
    margin-bottom: 150px;
    }

    section:first-of-type {
    margin-top: 100px;
    }

    section:last-of-type {
    margin-bottom: 0;
    }
}

.section-heading {
    font-family: "Roboto Slab";
    color: var(--deep-orange);
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .section-heading {
    font-size: 42px;
    margin-bottom: 50px;
    }
}

.image-with-content {
    width: 100%;
    display: flex;
}

.image-with-content.left,
.image-with-content.right {
    flex-direction: column;
}

.image-with-content.left .image-part .image-wrapper {
    border-top-left-radius: 50px;
}

.image-with-content.right .image-part .image-wrapper {
    border-top-right-radius: 50px;
}

.image-with-content .image-part {
    box-sizing: border-box;
    padding: 0 30px;
    width: 100%;
    margin-bottom: 20px;
}

.image-with-content .image-part .image-wrapper {
    overflow: hidden;
}

.image-with-content .image-part .image-wrapper img {
    width: 100%;
}

.image-with-content .content-part {
    width: 100%;
    display: flex;
    align-items: center;
}

.image-with-content .content-part .content-wrapper {
    padding: 0 30px;
}

@media (min-width: 768px) {
    .image-with-content .image-part {
    padding: 0 50px;
    }

    .image-with-content .content-part .content-wrapper {
    padding: 50px;
    }
}

@media (min-width: 1024px) {
    .image-with-content.left {
    flex-direction: row;
    }

    .image-with-content.right {
    flex-direction: row-reverse;
    }

    .image-with-content .image-part {
    flex-shrink: 0;
    width: 55%;
    padding: 0;
    }

    .image-with-content .content-part {
    width: 45%;
    }

    .image-with-content .content-part .content-wrapper {
    padding: 0 100px;
    }
}

.pattern {
    z-index: -2;
    position: absolute;
    width: 33%;
}

.pattern img {
    width: 100%;
}

@media (min-width: 1024px) {
    .pattern {
    width: 25%;
    }
}

.top-right-pattern {
    top: 100px;
    right: 0;
}

.middle-left-pattern {
    top: 700px;
    left: 0;
}

.bottom-left-pattern {
    bottom: 1000px;
    left: 0;
}

.bottom-right-pattern {
    bottom: 800px;
    right: 0;
}

.chevron-down {
    display: flex;
    width: fit-content;
    height: fit-content;
    justify-content: center;
    align-items: center;
    padding-left: 10px;
}

.chevron-down::after {
    display: flex;
    justify-content: center;
    align-items: center;
    content: "›";
    font-size: 40px;
    font-weight: 200;
    transform: rotate(90deg);
    width: 25px;
    height: 25px;
}

.sharp-ball {
    position: absolute;
    background-color: var(--deep-orange);
    width: 100px;
    height: 100px;
    border-radius: 999px 999px 999px 0;
    z-index: -1;
}

@media (min-width: 768px) {
    .sharp-ball {
    width: 300px;
    height: 300px;
    }
}

.squares-and-balls {
    position: absolute;
    width: 80px;
    height: 80px;
    z-index: -1;
}

.squares-and-balls .ball,
.squares-and-balls .square {
    width: 20px;
    height: 20px;
}

.squares-and-balls .ball {
    position: absolute;
    border-radius: 999px;
    background: var(--orange);
}

.squares-and-balls .ball:nth-child(1) {
    top: 0;
    left: 0;
}

.squares-and-balls .ball:nth-child(2) {
    bottom: 0;
    right: 0;
}

.squares-and-balls .square {
    position: absolute;
    background: var(--deep-orange);
}

.squares-and-balls .square:nth-child(3) {
    top: 0;
    right: 0;
}

.squares-and-balls .square:nth-child(4) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.squares-and-balls .square:nth-child(5) {
    bottom: 0;
    left: 0;
}

@media (min-width: 768px) {
    .squares-and-balls {
    width: 150px;
    height: 150px;
    }

    .squares-and-balls .ball,
    .squares-and-balls .square {
    width: 35px;
    height: 35px;
    }
}

.semi-circle {
    position: absolute;
    height: 75px;
    width: 150px;
    border-radius: 75px 75px 0 0;
    background: var(--orange);
}

@media (min-width: 768px) {
    .semi-circle {
    height: 100px;
    width: 200px;
    border-radius: 100px 100px 0 0;
    }
}

.triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 0 solid transparent;
    border-bottom: 50px solid var(--blue);
}

@media (min-width: 768px) {
    .triangle {
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 90px solid var(--blue);
    }
}

.rounded-corner-block {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--deep-orange);
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 0;
}

@media (min-width: 768px) {
    .rounded-corner-block {
    width: 200px;
    height: 200px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    border-bottom-left-radius: 60px;
    }
}

.triangle-square {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    position: absolute;
}

.triangle-shape {
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-bottom: 30px solid var(--light-blue-gray);
    opacity: 0.5;
}

@media (min-width: 768px) {
    .triangle-shape {
    border-left: 80px solid transparent;
    border-bottom: 80px solid var(--light-blue-gray);
    }
}

.logo {
    position: absolute;
    left: 0;
    top: 100px;
}

.scroll-to-top {
    position: fixed;
    right: 50px;
    bottom: 50px;
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    padding: 15px;
    background-color: var(--blue-gray);
    rotate: 270deg;
    border-radius: 999px;
    z-index: 110;
    cursor: pointer;
}

.scroll-to-top svg {
    width: 100%;
    height: 100%;
    color: var(--white);
}

#banner {
    margin: 0;
}

.page-banner {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.page-banner>* {
    box-sizing: border-box;
    min-width: 50%;
}

.page-banner-left {
    position: relative;
    padding: 200px 30px 50px 30px;
    background: linear-gradient(180deg, #0b3265 9.68%, #01528c 33.42%, #df9369 80.98%, #fb722c 100%);
}

.page-banner-left .banner-btn {
    background-color: var(--white);
    padding: 24px 8px;
    width: fit-content;
    border-radius: 999px;
    margin-top: 50px;
    cursor: pointer;
    overflow: hidden;
    display: inline-block;
}

.page-banner-left .logo {
    left: 30px;
}

.page-banner-right .page-banner-image {
    width: 100%;
}

.page-banner-right .page-banner-image img {
    width: 100%;
}

.page-banner .page-banner-images-swiper {
    height: 100%;
}

.page-banner .page-banner-images-swiper .page-banner-image img {
    object-fit: cover;
    height: 100%;
}

.page-banner .banner-title {
    font-family: "Roboto Slab";
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
}

.page-banner .banner-desc {
    font-family: "Open Sans";
    color: var(--white);
    font-size: 18px;
    margin-top: 20px;
}

@media (min-width: 1280px) {
    .page-banner {
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    flex-direction: row;
    }

    .page-banner-left {
    padding: 250px 50px 100px 100px;
    }

    .page-banner-left .logo {
    left: 100px;
    }

    .page-banner-left .banner-btn {
    margin-top: 100px;
    }

    .page-banner-left .banner-title {
    font-size: 46px;
    }

    .page-banner-left .banner-desc {
    font-size: 20px;
    }
}

.sticky-nav-bar {
    display: none;
    top: 0;
    position: sticky;
    width: 100%;
    background-color: var(--white);
    border-bottom: 1px var(--silver) solid;
    z-index: 100;
}

.sticky-nav-bar .nav-btn-wrappers {
    display: flex;
    padding: 0 100px;
    margin: 0 auto;
}

.sticky-nav-bar .nav-btn {
    display: flex;
    padding: 20px 10px;
    color: var(--text-dark);
    cursor: pointer;
    align-items: center;
}

.sticky-nav-bar .nav-btn:hover,
.sticky-nav-bar .nav-btn.active {
    color: var(--deep-orange);
    border-bottom: 2px solid var(--deep-orange);
}

@media (min-width: 1024px) {
    .sticky-nav-bar {
    display: flex;
    }
}

.sticky-nav-bar-mb {
    width: 100%;
    top: 0;
    position: sticky;
    background-color: var(--white);
    z-index: 100;
}

.sticky-nav-bar-mb .current-nav-bar {
    display: flex;
    justify-content: space-between;
    padding: 10px 30px;
    font-size: 20px;
    font-weight: 700;
    border-bottom: 1px var(--silver) solid;
    align-items: center;
}

.sticky-nav-bar-mb .nav-bar-list {
    position: absolute;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: var(--white);
}

.sticky-nav-bar-mb .nav-bar-list.open {
    max-height: 500px;
}

.sticky-nav-bar-mb .nav-bar-list .nav-btn {
    display: flex;
    padding: 10px 30px;
    font-size: 20px;
    border-bottom: 1px var(--silver) solid;
    align-items: center;
}

.sticky-nav-bar-mb .nav-bar-list .nav-btn.active {
    color: var(--deep-orange);
    border-bottom: 3px solid var(--deep-orange);
}

@media (min-width: 768px) {
    .sticky-nav-bar-mb .current-nav-bar {
    padding: 10px 50px;
    }

    .sticky-nav-bar-mb .nav-bar-list .nav-btn {
    padding: 10px 50px;
    }
}

@media (min-width: 1024px) {
    .sticky-nav-bar-mb {
    display: none;
    }
}

#about-us {
    padding: 0 30px;
    margin-bottom: 30px;
}

#about-us .highlight {
    color: #01528c;
}

#about-us .about-us-info {
    padding-bottom: 25px;
}

#about-us .triangle {
    z-index: -1;
    top: 330px;
    right: 10px;
    transform: rotateZ(-20deg);
}

@media (min-width: 768px) {
    #about-us {
    padding: 0 100px;
    }

    #about-us .triangle {
    top: 0px;
    right: 100px;
    }
}

@media (min-width: 1024px) {
    #about-us {
    padding: 0 100px;
    }

    #about-us .about-us-info {
    max-width: 650px;
    margin: 0 auto;
    padding: 15px;
    }

    #about-us .triangle {
    top: 120px;
    right: 205px;
    }
}

#stem-plus {
    padding: 0 30px;
}

#stem-plus .card-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
}

#stem-plus .card-gallery .card {
    display: flex;
    align-items: end;
    position: relative;
    aspect-ratio: 355/644;
    border-top-left-radius: 50px;
    overflow: hidden;
    box-sizing: border-box;
}

#stem-plus .card-gallery .card:nth-child(odd) {
    margin-bottom: 60px;
}

#stem-plus .card-gallery .card:nth-child(even) {
    margin-top: 60px;
}

#stem-plus .card-gallery .card img {
    z-index: -1;
    position: absolute;
    width: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#stem-plus .card-gallery .card-desc {
    padding: 0 20px;
    color: var(--white);
    margin-bottom: 25px;
}

#stem-plus .card-gallery .card::after {
    content: "";
    position: absolute;
    background: linear-gradient(180deg, rgba(11, 50, 101, 0) 0%, rgba(11, 50, 101, 0.8) 97.44%);
    height: 50%;
    width: 100%;
    z-index: -1;
}

#stem-plus .semi-circle {
    top: 40px;
    left: 60px;
    z-index: -1;
    transform: rotateZ(45deg);
}

#stem-plus .rounded-corner-block {
    z-index: -2;
    bottom: 20px;
    right: 150px;
}

#stem-plus .triangle-square {
    z-index: -3;
    bottom: 20px;
    right: 150px;
}

@media (min-width: 768px) {
    #stem-plus {
    padding: 0 50px;
    }

    #stem-plus .card-gallery {
    column-gap: 70px;
    }

    #stem-plus .card-gallery .card:nth-child(odd) {
    margin-bottom: 80px;
    }

    #stem-plus .card-gallery .card:nth-child(even) {
    margin-top: 80px;
    }

    #stem-plus .rounded-corner-block {
    bottom: -70px;
    right: 200px;
    }

    #stem-plus .triangle-square {
    bottom: -60px;
    right: 240px;
    }
}

@media (min-width: 1024px) {
    #stem-plus {
    padding: 0 100px;
    }

    #stem-plus .card-gallery {
    display: flex;
    flex-wrap: wrap;
    #grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 40px;
    }
  
  	#stem-plus .card-gallery .card {
    flex: 1;
    }

    #stem-plus .card-gallery .card:nth-child(odd) {
    margin-bottom: 100px;
    }

    #stem-plus .card-gallery .card:nth-child(even) {
    margin-top: 100px;
    }

    #stem-plus .semi-circle {
    top: 40px;
    left: 200px;
    }

    #stem-plus .rounded-corner-block {
    bottom: -40px;
    right: 245px;
    }

    #stem-plus .triangle-square {
    bottom: -80px;
    right: 340px;
    }
}

#uniqueness {
    padding: 0 30px;
}

#uniqueness .uniqueness-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

#uniqueness .uniqueness-list .unique-item {
    padding: 20px;
    border-right: 1px solid #dfe0df;
}

#uniqueness .uniqueness-list .unique-item p {
    word-break: break-word;
}

#uniqueness .uniqueness-list .unique-item:nth-child(even) {
    border-right: none;
}

#uniqueness .uniqueness-list .unique-item img {
    width: 75px;
    margin-bottom: 22px;
    height: 75px;
}

@media (min-width: 768px) {
    #uniqueness {
    padding: 0 50px;
    }

    #uniqueness .uniqueness-list .unique-item img {
    width: 120px;
    margin-bottom: 42px;
    height: 120px;
    }
}

@media (min-width: 1024px) {
    #uniqueness {
    padding: 0 100px;
    }

    #uniqueness .uniqueness-list {
    display: flex;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    }
  
  	#uniqueness .uniqueness-list .unique-item {
  	flex: 1;
    min-width: 0;
    }

    #uniqueness .uniqueness-list .unique-item:nth-child(even) {
    border-right: 1px solid #dfe0df;
    }

    #uniqueness .uniqueness-list .unique-item:last-child {
    border-right: none;
    }

    #uniqueness .uniqueness-list .unique-item img {
    width: 90px;
    margin-bottom: 42px;
    height: 90px;
    }
}

#vision {
    width: 100%;
    padding-bottom: 50px;
    margin-bottom: 0;
}

#vision .image-part {
    position: relative;
}

#vision .image-part>.sharp-ball {
    bottom: 75px;
    right: 0px;
}

@media (min-width: 768px) {
    #vision .image-part>.sharp-ball {
    bottom: 0px;
    right: 0;
    }
}

@media (min-width: 1024px) {
    #vision .image-part>.sharp-ball {
    bottom: -50px;
    right: -100px;
    }
}

#brand {
    width: 100%;
    margin-bottom: 50px;
}

#brand .image-with-content {
    position: relative;
}

#brand>.squares-and-balls {
    bottom: 350px;
    left: 50%;
}

#brand>.semi-circle {
    position: absolute;
    height: 250px;
    width: 125px;
    border-radius: 125px 0 0 125px;
    top: -75px;
    right: 0;
    z-index: -1;
    background-color: var(--light-blue-gray);
    opacity: 0.5;
}

#brand .image-part {
    position: relative;
}

#brand .image-part>.semi-circle {
    bottom: -20px;
    left: 30px;
    rotate: 220deg;
    scale: 0.7 !important;
    z-index: -1;
    background-color: #01528c;
}

#brand .rounded-corner-block {
    display: none;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    border-bottom-left-radius: 80px;
    z-index: -1;
    background-color: var(--light-blue-gray);
    opacity: 0.5;
    scale: 2.5;
    bottom: 150px;
    left: -250px;
}

@media (min-width: 768px) {
    #brand {
    margin-top: 200px;
    }

    #brand>.semi-circle {
    height: 400px;
    width: 200px;
    border-radius: 200px 0 0 200px;
    top: -150px;
    right: 0;
    }

    #brand .image-part {
    position: relative;
    }

    #brand .image-part>.semi-circle {
    bottom: -30px;
    left: 90%;
    rotate: 130deg;
    scale: 1.2 !important;
    }

    #brand>.squares-and-balls {
    bottom: calc(100% + 30px);
    left: 90px;
    }

    #brand .rounded-corner-block {
    display: block;
    }
}

@media (min-width: 1024px) {
    #brand .image-part>.semi-circle {
    bottom: -30px;
    left: -50px;
    rotate: 240deg;
    }
}

#brand .brand-portfolio {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 100px;
    width: 100%;
    align-items: center;
}

#brand .brand-portfolio>.squares-and-balls {
    display: none;
}

#brand .brand-portfolio .triangle-square {
    left: 60px;
    bottom: -100px;
}

#brand .brand-portfolio .venn-container {
    position: relative;
    width: 300px;
    height: 300px;
}

#brand .brand-portfolio .circle {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
}

#brand .brand-portfolio .circle-top {
    background-color: var(--orange);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    opacity: 0.9;
}

#brand .brand-portfolio .circle-left {
    background-color: var(--blue);
    bottom: 35px;
    left: -5px;
    z-index: 2;
    opacity: 0.9;
}

#brand .brand-portfolio .circle-right {
    background-color: var(--deep-orange);
    bottom: 35px;
    right: -5px;
    z-index: 1;
    opacity: 0.9;
}

#brand .brand-portfolio .center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
}

#brand .brand-portfolio .center-logo img {
    width: 100%;
}

#brand .brand-portfolio .circle-text {
    font-size: 14px;
}

@media (min-width: 768px) {
    #brand .brand-portfolio {
    padding-top: 100px;
    }

    #brand .brand-portfolio>.squares-and-balls {
    display: block;
    right: 30px;
    top: 150px;
    }

    #brand .brand-portfolio .triangle-square {
    left: 60px;
    bottom: 0;
    }

    #brand .brand-portfolio .venn-container {
    width: 550px;
    height: 550px;
    }

    #brand .brand-portfolio .circle {
    width: 260px;
    height: 260px;
    padding: 20px;
    }

    #brand .brand-portfolio .circle-left {
    background-color: var(--blue);
    bottom: 100px;
    left: 0;
    z-index: 2;
    opacity: 0.9;
    }

    #brand .brand-portfolio .circle-right {
    background-color: var(--deep-orange);
    bottom: 100px;
    right: 0;
    z-index: 1;
    opacity: 0.9;
    }

    #brand .brand-portfolio .center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    #brand .brand-portfolio .center-logo span {
    font-size: 32px;
    }

    #brand .brand-portfolio .circle-text {
    font-size: 18px;
    }
}

@media (min-width: 1024px) {
    #brand .brand-portfolio {
    padding-top: 200px;
    }

    #brand .brand-portfolio>.squares-and-balls {
    right: 150px;
    }
}

#projects {
    padding: 20px 30px;
    width: 100%;
}

#projects .projects-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

#projects .projects-wrapper .project-logo {
    width: 250px;
    margin-bottom: 10px;
}

#projects .projects-wrapper .project-logo img {
    width: 100%;
}

#projects .projects-wrapper .project-info>* {
    margin-bottom: 10px;
}

#projects .project-details {
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
}

#projects .project-details .view-more-btn {
    display: flex;
    gap: 5px;
    align-items: center;
    color: white;
    background-color: #01528c;
    border-radius: 999px;
    padding: 5px 10px;
    width: fit-content;
    text-decoration: none;
    margin-top: 30px;
}

#projects .project-details .view-more-btn svg {
    scale: 0.7;
}

#projects .project-details .view-more-btn .arrow-right {
    rotate: 270deg;
}

#projects .project-details .view-more-btn:hover {
    background-color: var(--deep-blue);
}

#projects .project-images {
    z-index: 0;
    width: 100%;
    margin-top: 20px;
    box-sizing: border-box;
    pointer-events: auto;
  	-webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+ and Edge */
    user-select: none; /* Standard syntax */
}

#projects .project-images .project-image-swiper {
    overflow: visible;
}

#projects .project-images .project-image-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    aspect-ratio: 590/722;
    border-top-left-radius: 70px;
}

#projects .project-images .project-image-swiper .swiper-slide img {
    object-fit: cover;
    height: 100%;
    pointer-events: none;
}

#projects .project-detail-nav-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    height: fit-content;
    padding-bottom: 5px;
}

#projects .project-detail-nav-wrapper>* {
    position: static;
    flex-shrink: 0;
    margin-right: 10px;
}

#projects .project-detail-nav-wrapper .swiper-pagination {
    width: fit-content;
    white-space: nowrap;
}

#projects .project-detail-nav-wrapper .swiper-scrollbar {
    width: 160px;
    height: 2px;
}

#projects .project-detail-nav-wrapper .swiper-scrollbar-drag {
    width: 30%;
    background: #3b5998;
}

#projects .project-detail-nav-wrapper .project-detail-nav-btn-wrapper {
    display: flex;
    width: fit-content;
}

#projects .project-detail-nav-wrapper .project-detail-nav-btn-wrapper .swiper-button-prev,
#projects .project-detail-nav-wrapper .project-detail-nav-btn-wrapper .swiper-button-next {
    position: static;
    display: flex;
    padding: 17px;
    background-color: #01528c;
    border-radius: 999px;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

#projects .project-detail-nav-wrapper .project-detail-nav-btn-wrapper .swiper-button-prev:hover,
#projects .project-detail-nav-wrapper .project-detail-nav-btn-wrapper .swiper-button-next:hover {
    background-color: var(--deep-blue);
}

#projects .project-detail-nav-wrapper .project-detail-nav-btn-wrapper .swiper-button-prev svg,
#projects .project-detail-nav-wrapper .project-detail-nav-btn-wrapper .swiper-button-next svg {
    color: #fff;
}

#projects .project-detail-nav-wrapper .project-detail-nav-btn-wrapper .swiper-button-prev.swiper-button-disabled,
#projects .project-detail-nav-wrapper .project-detail-nav-btn-wrapper .swiper-button-next.swiper-button-disabled {
    opacity: 1;
    background-color: rgba(1, 82, 140, 0.1);
}

#projects .project-detail-nav-wrapper .project-detail-nav-btn-wrapper .swiper-button-prev.swiper-button-disabled svg,
#projects .project-detail-nav-wrapper .project-detail-nav-btn-wrapper .swiper-button-next.swiper-button-disabled svg {
    color: #01528c;
}

@media (min-width: 768px) {
    #projects {
    padding: 0 50px;
    margin-bottom: 50px;
    }

    #projects .projects-wrapper {
    flex-direction: row;
    }

    #projects .project-details {
    width: 55%;
    padding-right: 0;
    }

    #projects .project-details .view-more-btn {
    gap: 10px;
    padding: 10px 20px;
    }

    #projects .project-details .view-more-btn svg {
    scale: 1;
    }

    #projects .project-details .project-logo {
    width: 350px;
    }

    #projects .project-images {
    flex-shrink: 0;
    width: 45%;
    margin-top: 0;
    padding-right: 50px;
    }

    #projects .project-images .project-image-swiper .swiper-slide {
    border-top-left-radius: 40px;
    }

    #projects .project-detail-nav-wrapper {
    margin-top: 70px;
    }
}

@media (min-width: 1024px) {
    #projects {
    padding: 50px 100px;
    }

    #projects .project-details {
    padding-right: 100px;
    }
}

footer {
    display: flex;
    justify-content: space-between;
    padding: 50px 30px;
    background-color: #01528c;
}

footer .footer-logo {
    width: 100px;
}

footer .footer-logo img {
    width: 100%;
}

footer .footer-details {
    color: var(--white);
    text-align: end;
}

footer .footer-details a {
    color: var(--white);
    text-decoration: none;
}

footer .copyright {
    margin-top: 10px;
    font-size: 10px;
}

@media (min-width: 1024px) {
    footer {
    padding: 50px 100px;
    }

    footer .footer-logo {
    width: 200px;
    }

    footer .copyright {
    margin-top: 10px;
    font-size: 14px;
    }
}

.arrow-down {
    display: inline-block;
    transition: none;            
    animation: bounceScale 1.5s ease-in-out infinite;
}

.banner-btn:hover .arrow-down {
    animation: slideOut 1s ease forwards;
}

.banner-btn:not(:hover) .arrow-down {
    animation: bounceScale 1.5s ease-in-out infinite;
}

@keyframes bounceScale {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

@keyframes slideOut {
    0% { 
    transform: translateY(0); 
    opacity: 1;
    }
    100% { 
    transform: translateY(150%); 
    opacity: 0;
    }
}