@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: 'Good Times Rg';
    src: url('../fonts/GoodTimesRg-Regular.woff2') format('woff2'),
        url('../fonts/GoodTimesRg-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
body::-webkit-scrollbar {
  width: 5px;
}
body::-webkit-scrollbar-track {
  background-color: #d6d6d6;
}
body::-webkit-scrollbar-thumb {
  background-color: #888888;
}

body {
	font-family: "Montserrat", sans-serif;
	overflow-x: hidden;
    font-size: 16px;
    background-image: url('../images/Pattern_bg.png');
    background-position: top center;
    background-repeat: repeat;
    background-size: auto;
}
a, a:hover {
    text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Manrope", sans-serif;
}
header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}
.navbar {
    padding: 10px 0;
}
.navbar-brand img {
    width: 100%;
    max-height: 40px;
}
.navbar-expand-lg .navbar-nav .nav-link {
    font-weight: 600;
    letter-spacing: 2.64px;
    text-transform: uppercase;
    font-size: 12px;
    color: #fff;
    padding: 12px 24px;
}
section {
    display: block;
    padding: 80px 0;
}
section h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 24px;
}
.subtitle {
    display: flex;
    align-items: center;
    gap:10px;
}
.subtitle span:first-child {
    width: 30px;
    height: 30px;
    border-radius: 15px;
    background: #FFDC82;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}
.subtitle span:last-child {
    display: flex;
    height: 30px;
    padding: 0 24px;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
}
.subtitle.white span:last-child {
    display: flex;
    height: 30px;
    padding: 0 24px;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    color: #fff;
    border-radius: 15px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
}
.subtitle.primary span:first-child {
    background: #101A33;
    color: #fff;
}
.subtitle.primary span:last-child {
    border-color: #101A33;
    color: #101A33;
}
.banner_section {
    display: block;
    position: relative;
    padding: 0;
}
.banner_section::before {
    width: 100%;
    height: 1px;
    background: #FFFFFF33;
    content: '';
    position: absolute;
    top: 80px;
    left: 0;
    z-index: 9;
}
.banner_section::after {
    width: 100%;
    height: 1px;
    background: #FFFFFF33;
    content: '';
    position: absolute;
    bottom: 80px;
    left: 0;
    z-index: 9;
}
.hero_slider img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: top left;
}
.banner_caption {
    position: absolute;
    padding: 80px 0;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 61.94%, #00000091 100%);
    display: flex;
}
.caption_block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 40px;
    min-height: 100%;
    background: #00000033;
    backdrop-filter: blur(75px);
    max-width: 500px;
    margin-left: 80px;
    position: relative;
}
.caption_block:before {
    width: 1px;
    height: calc(100% + 160px);
    background: #FFFFFF33;
    content: '';
    position: absolute;
    bottom: -80px;
    left: 0;
    z-index: 9;
}
.caption_block:after {
    width: 1px;
    height: calc(100% + 160px);
    background: #FFFFFF33;
    content: '';
    position: absolute;
    bottom: -80px;
    right: 0;
    z-index: 9;
}
.caption_block h1 {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    margin-bottom: auto;
}
.caption_block p {
    margin-bottom: 24px;
    color: #fff;
}
.btn {
    display: inline-flex;
    padding: 0 30px;
    height: 60px;
    align-items: center;
    justify-content: center;
    background: #FFDC82;
    color: #101A33;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    border: none;
}
.btn:hover {
    /* background: #FFDC82;
    color: #fff; */
    color: #fff;
    background: #FFDC82;
    fill: #101A33;
}
.btn::after {
    position: absolute;
    content: "";
    width: 150%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: #101A33;
    transform: translateX(-50%) translateY(-50%);
    transition: all .75s;
    opacity: .5;
    z-index: 1;
}
.btn:hover::after {
    height: 120%;
    opacity: 1;
}
.btn span {
    position: relative;
    z-index: 9;
}
.btn.btn_secondary {
    background: #101A33;
    color: #FFDC82;
}
.btn.btn_secondary:hover {
    color: #101A33;
    background: #101A33;
    fill: #FFDC82;
}
.btn.btn_secondary::after {
    background-color: #FFDC82;
}
.btn.btn_light {
    background: #101A33;
    color: #FFDC82;
}
.btn.btn_light:hover {
    color: #101A33;
    background: #101A33;
    fill: #fff;
}
.btn.btn_light::after {
    background-color: #fff;
}
.about_section {
    display: block;
    background-image: url('../images/call-to-action.webp');
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: auto;
}
.about_section figure {
    display: flex;
    aspect-ratio: 4/5;
    margin: 0;
}
.about_section figure img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}
.about_section h3 {
    font-weight: 800;
    text-transform: uppercase;
}
.about_content {
    border-right: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.about_content p:last-child {
    margin: 0;
}
.about_section video {
    aspect-ratio: 5/4;
    object-fit: cover;
    width: 100%;
    height: auto;
    margin-top: auto;
}
.about_left {
    display: flex;
    flex-direction: column;
}
.project_section {
    display: block;
    background: #101a33;
}
.project_section h2 {
    color: #fff;
    margin-top: 24px;
}
.projects {
    padding-top: 20px;
    border-top: 1px solid #FFFFFF33;
}
.slider_btn {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 10px;
    padding: 18px;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 30px;
}
.projects .projects_prev {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    z-index: 9;
}
.projects .projects_next {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 9;
}
.projects figure {
    margin: 0;
    overflow: hidden;
}
.projects img {
    aspect-ratio: 4/5;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all ease-in 1s;
}
.projects .swiper-slide:hover img {
    transform: scale(1.1);
}
.projects figure:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 61.94%, #000000 100%);
    opacity: 0.9;
    z-index: 1;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.projects .swiper-slide {
    position: relative;
}
.projects .swiper-slide:after {
    width: 1px;
    height: 100%;
    background: #FFFFFF33;
    content: '';
    position: absolute;
    left: auto;
    right: -20px;
    top: 0;
}
.project_content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px 40px;
    z-index: 3;
    color: #fff;
}
.project_content h4 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
}
.project_meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}
.meta_item {
    display: flex;
    height: 30px;
    padding: 0 24px;
    align-items: center;
    justify-content: center;
    border: 1px solid #FFFFFF33;
    color: #FFFFFF;
    border-radius: 15px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;   
}
.product_section {
    display: block;
}
.product_section h2 {
    margin-top: 24px;
}
.product_card {
    display: block;
    border: 1px solid #e0e0e0;
}
.product_content {
    padding: 40px;
    display: flex;
    flex-direction: column;
}
.product_content figure {
    margin-bottom: 30px;
}
.product_content img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/10;
    object-fit: scale-down;
}
.product_content h4 {
    margin-bottom: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 700;
}
.product_content p {
    margin: auto 0 0;
    color: #555555;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.product_content ul {
    margin: 24px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.product_content ul li {
    flex: 1;
    display: flex;
    gap: 10px;
}
.product_content ul li:before {
    content: '\f00c';
    font-family:"Font Awesome 5 Pro";
    color: #FFDC82;
}
.product_content_bottom {
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1;
    font-size: 14px;
    text-transform: uppercase;
    border-top: 1px solid #e0e0e0;
}
.value_section {
    display: block;
    background: url(../images/steptodown.com161007.jpg) center no-repeat;
    background-size: cover;
    position: relative;
}
.value_section:before {
    width: 100%;
    height: 100%;
    position: absolute;
    background: #000000;
    opacity: 0.2;
    top: 0;
    left: 0;
    content: '';
}
.value_section .container {
    position: relative;
    z-index: 1;
}
.value_section .container:before {
    width: 1px;
    height: calc(100% + 160px);
    background: #FFFFFF33;
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    z-index: 9;
}
.value_section .container:after {
    width: 1px;
    height: calc(100% + 160px);
    background: #FFFFFF33;
    content: '';
    position: absolute;
    top: -80px;
    right: 0;
    z-index: 9;
}
.value_content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 40px;
    height: 100%;
    background: #00000033;
    backdrop-filter: blur(75px);
    max-width: 500px;
    margin-left: 80px;
    position: relative;   
    min-height: 750px;
}
.divider {
    width: 100%;
    height: 1px;
    background: #FFFFFF33;
}
.value_content h2 {
    margin-top: 24px;
    color: #fff;
}
.accordian_block {
    margin-top: auto;
    width: 100%;
}
.accordian_heading {
    padding: 12px 0;
    padding-left: 40px;
    position: relative;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    border-top: 1px solid #FFFFFF33;
    margin: 0;
}
.accordian_heading span {
    font-size: 14px;
    font-weight: 500;
    position: absolute;
    left: 0;
    top: 17px;
}
.accordian_content {
    padding-bottom: 12px;
    color: #ffffff99;
}
.accordian_content:last-child {
    padding: 0;
}
.heading {
    font-size: 100px;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    font-family: "Manrope", sans-serif;
    line-height: 100px;
}
.process_section {
    display: block;
}
.process_section h2 {
    margin-top: 24px;
}
.process_section figure {
    margin-bottom: 24px;
}
.process_section img {
    aspect-ratio: 16/10;
    width: 100%;
    height: auto;
}
.process_left {
    position: sticky;
    top: 80px;
}
.process_item {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    padding: 30px;
    background: #101A33;
    position: sticky;
    top: 80px;
}
.process_item {
  position: sticky;
  top: calc(var(--i) * 80px);
}

.process_item:nth-child(1) { --i: 1; }
.process_item:nth-child(2) { 
    --i: 2;
    background: url(../images/h2_img4.jpg) center no-repeat;
    background-size: cover;
}
.process_item:nth-child(3) { --i: 3; }
.process_item:nth-child(4) { 
    --i: 4; 
    background: url(../images/h2_img5.jpg) center no-repeat;
    background-size: cover;
}
.process_item:last-child {
    margin: 0;
}
.process_item:nth-child(even)::before {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #00000070;
    content: '';
}
.process_count {
    font-size: 200px;
    font-weight: 700;
    line-height: 170px;
    color: #fff;
    width: 40%;
    flex: 0 0 auto;
    text-align: center;
    position: relative;
    font-family: "Manrope", sans-serif;
}
.process_count::after {
    width: 1px;
    height: 100%;
    background: #FFFFFF33;
    content: '';
    position: absolute;
    left: auto;
    right: -20px;
    top: 0;
}
.process_content {
    position: relative;
    color: #fff;
    z-index: 1;
}
.process_content h4 {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #ffffff33;
    margin-top: 150px;
    color: #fff;
}
.article_section {
    display: block;
}
.article_section h2 {
    margin-top: 24px;
    margin-bottom: 0;
}
.insights {
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}
.insights figure {
    margin: 0;
    overflow: hidden;
}
.insights img {
    aspect-ratio: 5/4;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all ease-in 1s;
}
.insights .swiper-slide:hover img {
    transform: scale(1.1);
}
.insights .swiper-slide {
    position: relative;
}
.insights .swiper-slide:after {
    width: 1px;
    height: 100%;
    background: #e0e0e0;
    content: '';
    position: absolute;
    left: auto;
    right: -20px;
    top: 0;
}
.insights_content {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 0 0;
    z-index: 3;
    color: #111;
}
.insights_content h4 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 16px;
}
.insights_content h4 a {
    color: #101A33;
}
.insights_content p:last-child {
    margin: 0;
}
.insights_meta {
    display: flex;
    gap: 16px;
    margin: 0;
}
.insights_meta .meta_item {
    display: flex;
    height: 30px;
    padding: 0 24px;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    color: #111;
    border-radius: 15px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;   
}
.insights_meta .meta_item.date {
    padding: 0;
    border-radius: 0;
    border: none;
    gap: 16px;
    color: #888888;
}
.insights_meta .meta_item.date:before {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #555555;
    content: '';
    display: inline-flex;
}
.choose_section {
    display: flex;
    min-height: 100vh;
    background: #0F0F0F08;
    padding: 0;
}
.choose_left {
    width: 50%;
    flex: 0 0 auto;
    background: url(../images/steptodown.com671018.jpg) bottom center no-repeat;
    background-size: cover;
}
.choose_right {
    width: 50%;
    flex: 0 0 auto;
    background: url(../images/illustration.webp) bottom left no-repeat;
    background-size: auto;
    padding: 80px 0;
    padding-left: 120px;
}
.choose_content {
    display: block;
    width: 100%;
    max-width: 520px;
}
.choose_content h2 {
    margin-top: 24px;
    margin-bottom: 0;
}
.choose_content h4 {
    line-height: 1.4;
}
.choose_list {
    padding-top: 60px;
    display: block;
    width: 100%;
}
.choose_item {
    display: flex;
    gap: 30px;
    padding: 30px 0px 30px 0px;
    border-style: solid;
    border-width: 1px 0px 0px 0px;
    border-color: #e0e0e0;
}
.choose_item:last-child {
    border-bottom-width: 1px;
}
.choose_item figure {
    width: 80px;
    flex: 0 0 auto;
    margin: 0;
}
.choose_item figcaption {
    flex: 1;
}
.choose_item figcaption h4 {
    margin-bottom: 24px;
}
.choose_item figcaption p {
    margin: 0;
}
footer {
    background: url(../images/ft2-img.jpg) center no-repeat;
    padding-top: 80px;
    position: relative;
}
footer > .container {
    position: relative;
    background: #101A33;
    padding: 80px;
    color: #fff;
}
footer > .container:before {
    width: 1px;
    height: calc(100% + 160px);
    background: #FFFFFF33;
    content: '';
    position: absolute;
    bottom: -80px;
    left: 0;
    z-index: 9;
}
footer > .container:after {
    width: 1px;
    height: calc(100% + 160px);
    background: #FFFFFF33;
    content: '';
    position: absolute;
    bottom: -80px;
    right: 0;
    z-index: 9;
}
footer::before {
    width: 100%;
    height: 1px;
    background: #FFFFFF33;
    content: '';
    position: absolute;
    top: 80px;
    left: 0;
    z-index: 9;
}
footer::after {
    width: 100%;
    height: 1px;
    background: #FFFFFF33;
    content: '';
    position: absolute;
    bottom: 80px;
    left: 0;
    z-index: 9;
}
footer h5 {
    color: #FFFFFF66;
    text-transform: uppercase;
    font-size: 15px;
    margin-bottom: 40px;
}
footer h2 {
    margin-top: 24px;
    margin-bottom: 24px;
}
.footer_logo {
    height: 40px;
    width: auto;
}
.footer_menu_widget {
    border-left: 1px solid #ffffff33;
    border-right: 1px solid #ffffff33;
}
.footer_info {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.footer_info a {
    color: #fff;
}
.footer_call {
    font-size: 24px;
    margin-bottom: 16px;
}
.footer_map {
    margin-top: auto;
}
.footer_menu {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    gap: 16px 0;
}
.footer_menu li {
    width: 50%;
    flex: 0 0 auto;
}
.footer_menu li a {
    color: #fff;
}
.bottom_footer {
    padding: 28px 0;
}
.bottom_footer > .container {
    padding: 0 80px;
}
.bottom_footer p {
    margin: 0;
    color: #fff;
}
.social {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: flex-end;
}
.social li {
    display: block;
}
.social li a {
    color: #fff;
}
.testimonial_section {
    display: flex;
    background: #0F0F0F08;
}
.testimonial_section h2 {
    margin-top: 24px;
    margin-bottom: 0;
}
.testimonial_wrapper {
    display: block;
    position: relative;
}
.testimonial_card {
    background: #fff;
    padding: 40px;
    padding-bottom: 120px;
}
.testimonial_card h4 {
    font-size: 30px;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 24px;
}
.author_name {
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 5px;
}
.author_position {
    font-size: 20px;
    font-weight: 500;
}
.testiomnial_bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.testiomnial_button {
    display: inline-flex;
    gap: 20px;
}
.testi_btn {
    display: flex;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.testi_btn:hover {
    background: #FFDC82;
    border-color: #FFDC82;
}
.testi_btn svg {
    width: 20px;
    height: 20px;
}
.slide-counter {
    display: flex;
    align-items: center;
    gap: 10px;
}
.slide-counter span {
    width: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    font-weight: 600;
}
.slide-counter span.current {
    color: #FFDC82;
}
.client_list {
    margin: 12px 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
}
.client_list li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 3px solid #fff;
    border-radius: 50%;
}
.client_list li img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}
.client_list li:last-child {
    background: #FFDC82;
}
.client_list li + li {
    margin-left: -10px;
    position: relative;
    z-index: 1;
}
.testimonial_content {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.testimonial_block {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 24px;
}
.testimonial_block h6 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}
.contact_list {
    margin: 0;
    display: flex;
    padding: 16px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    list-style-type: none;
}
.contact_list li {
    flex: 0 0 auto;
}
.contact_list li:first-child {
    padding-right: 16px;
    flex: 1;
}
.contact_list li:last-child {
    padding-left: 16px;
}
.contact_list li:nth-child(2) {
    padding: 0 16px;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
}
.contact_list li figure {
    margin: 0;
}
.contact_block {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #0F0F0F08;
    padding: 30px 40px;
    text-align: left;
	height: 100%;
}
.contact_block h4 {
    margin: 0;
}
.contact_block p {
    margin-bottom: 5px;
    color: #00000066;
    font-weight: 500;
}
.inner_section {
    display: block;
    background: url(../images/steptodown.com319484.png) center no-repeat;
    background-size: cover;
    position: relative;
    padding: 240px 0 0;
    color: #fff;
}
.inner_section:after {
    position: absolute;
    padding: 80px 0;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    content: '';
    background: rgba(0, 0, 0, 0.3);
}
.inner_section::before {
    width: 100%;
    height: 1px;
    background: #FFFFFF33;
    content: '';
    position: absolute;
    top: 80px;
    left: 0;
    z-index: 9;
}
.inner_section .container {
    position: relative;
    z-index: 9;
}
.inner_section h1 {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.breadcrumb_Area {
    border-top: 1px solid#FFFFFF33;
    display: flex;
    flex-direction: column;
    height: 80px;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}
.breadcrumb {
    margin: 0;
    color: #fff;
}
.breadcrumb-item a {
    color: #fff;
}
.breadcrumb-item.active {
    color: #fff;
}
.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;   
}
.about_section figure.about_image {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    margin: 24px 0 0;
}
.about_section figure.about_image img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;   
}
.about_section video.about_video {
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 100%;
    height: auto;
    margin-top: auto;
}
.foundation {
    border-left: 1px solid #e0e0e0;   
}
.mission_box {
    padding: 24px;
    background: #0F0F0F08;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}
.mission_box p:last-child {
    margin: 0;
}
.about_section figure.square_image {
    width: 100%;
    height: auto;
    aspect-ratio: 16/10;
    display: block;
}
.about_section figure.square_image img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/10;
    object-fit: cover;
}
.difference_section {
    display: block;
    position: relative;
}
.difference_section .container {
    position: relative;
    z-index: 1;
}
.difference_wrapper {
    display: block;
    position: relative;
    z-index: 1;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}
.difference_list {
    margin: 0;
    padding: 0;
    list-style-type: none;
    position: relative;
    display: flex;
}
.difference_list > li:first-child:before {
    display: block;
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    left: 0;
    background: #e0e0e0;
    content: '';
}
.difference_list > li {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 40px;
    color: #000;
    flex: 1;
}
.difference_list > li:after {
    display: block;
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    left: auto;
    right: 0;
    background: #e0e0e0;
    content: '';
}
.difference_list > li.active {
    backdrop-filter: blur(75px);
    background-color: #FFDC82;
}
.difference_list > li h3 {
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.difference_list > li ul {
    list-style-type: none;
    padding: 0;
    margin-top: auto;
}
.difference_list > li ul li {
    display: flex;
    padding: 6px 0;
    gap: 10px;
}
.difference_list > li ul li:before {
    content: '\f00c';
    font-family:"Font Awesome 5 Pro";
    color: #FFDC82;
}
.difference_list > li.active ul li:before {
    color: #101A33;
}
.philosophy_section {
    display: block;
    background: #0F0F0F08;
}
.philosophy_section h4 {
    line-height: 1.4;
}
.philosophy_section figure {
    margin: 0;
    display: flex;
    aspect-ratio: 16/9;
    width: 100%;
    height: auto;
}
.philosophy_section figure img {
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.philosophy_section ul {
    list-style-type: none;
    padding: 0;
    margin-top: auto;
}
.philosophy_section ul li {
    display: flex;
    padding: 6px 0;
    gap: 10px;
}
.philosophy_section ul li:before {
    content: '\f00c';
    font-family:"Font Awesome 5 Pro";
    color: #FFDC82;
}
.philosophy_top {
    padding-left: 48px;
    padding-bottom: 24px;
    border-left: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}
.philosophy_bottom {
    padding-left: 48px;
    padding-top: 24px;
    border-left: 1px solid #e0e0e0;
}
.vision_section .rec_image {
    display: flex;
    aspect-ratio: 4/5;
    width: 100%;
    height: auto;
    margin: 0;
}
.vision_section .rec_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vision_section .land_image {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
}
.vision_section .land_image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vision_section ul {
    list-style-type: none;
    padding: 0;
    margin-top: auto;
}
.vision_section ul li {
    display: flex;
    padding: 6px 0;
    gap: 10px;
}
.vision_section ul li:before {
    content: '\f00c';
    font-family:"Font Awesome 5 Pro";
    color: #FFDC82;
}
.vision_section h4 {
    line-height: 1.4;
}
.vision_section h4:last-child {
    margin: 0;
}
.vision_content {
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
}
.item_list {
    padding-top: 30px;
    display: block;
    width: 100%;
}
.list_item {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    border-style: solid;
    border-width: 1px 0px 0px 0px;
    border-color: #e0e0e0;
    align-items: center;
}
.list_item:last-child {
    border-bottom-width: 1px;
}
.list_item figure {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    padding: 15px;
    flex: 0 0 auto;
    margin: 0;
}
.list_item figure svg, .list_item figure img {
    width: 30px;
    height: 30px;
}
.list_item figcaption {
    flex: 1;
}
.list_item figcaption h4 {
    margin-bottom: 24px;
}
.list_item figcaption p {
    margin: 0;
}
.team_section {
    display: block;
}
.team_section h4 {
    line-height: 1.4;
}
.team_section figure {
    margin: 0;
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}
.team_section figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team_top ul {
    list-style-type: none;
    padding: 0;
    margin-top: auto;
}
.team_top ul li {
    display: flex;
    padding: 6px 0;
    gap: 10px;
}
.team_top ul li:before {
    content: '\f00c';
    font-family:"Font Awesome 5 Pro";
    color: #FFDC82;
}
.team_top {
    padding-right: 48px;
    padding-bottom: 24px;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}
.team_bottom {
    padding-right: 48px;
    padding-top: 24px;
    border-right: 1px solid #e0e0e0;
}
.contact_banner {
    display: block;
    padding-bottom: 80px;
    background: url(../images/steptodown.com606861.jpg) left center no-repeat;
    background-size: cover;
    margin-top: 80px;
}
.contact_card {
    padding: 40px;
    display: block;
    background: #FFDC82;
    margin-top: -80px;
}
.contact_card h4 {
    font-weight: 800;
    margin-bottom: 24px;
}
.contact_card h6 {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
}
.contact_card .contact {
    display: block;
    color: #101A33;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 24px;
}
.dealer_section {
    display: block;
    background: #0F0F0F08;
}
.dealer_section ul {
    list-style-type: none;
    padding: 0;
    margin-top: auto;
}
.dealer_section ul li {
    display: flex;
    padding: 6px 0;
    gap: 10px;
}
.dealer_section ul li:before {
    content: '\f00c';
    font-family:"Font Awesome 5 Pro";
    color: #FFDC82;
}
.dealer_section figure {
    display: flex;
    aspect-ratio: 5/4;
    width: 100%;
    height: auto;
    margin: 0;
}
.dealer_section figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.support_section {
    display: block;
}
.support_section ul {
    list-style-type: none;
    padding: 0;
    margin-top: auto;
}
.support_section ul li {
    display: flex;
    padding: 6px 0;
    gap: 10px;
}
.support_section ul li:before {
    content: '\f00c';
    font-family:"Font Awesome 5 Pro";
    color: #FFDC82;
}
.support_section figure {
    display: flex;
    aspect-ratio: 5/4;
    width: 100%;
    height: auto;
    margin: 0;
}
.support_section figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.form_section {
    display: block;
    background: url(../images/h1_bg-2.jpg) top center no-repeat;
    background-size: cover;
    padding-bottom: 0;
    margin-bottom: 80px;
}
.form_section h2 {
    margin: 0;
}
.contact_area {
    display: flex;
    transform: translateY(80px);
}
.form_area {
    display: block;
    padding: 70px 80px;
    background: #f8f8f8;
    width: 50%;
    flex: 0 0 auto;
}
.form_area h4 {
    line-height: 1.4;
}
.form_area .textbox {
    display: block;
    padding: 16px 0;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    width: 100%;
    font-weight: 600;
    background: #f8f8f8;
}
.form_area .textbox:focus {
    outline: none;
}
.form_area .textarea {
    display: block;
    padding: 16px 0;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    width: 100%;
    font-weight: 600;
    background: #f8f8f8;
}
.form_area .textarea:focus {
    outline: none;
}
.checkbox_inline {
    display: flex;
    padding: 16px 0;
    gap: 24px;
}
.checkbox_inline label {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 600;
    position: relative;
}
.checkbox_inline label input {
    position: absolute;
    left: -9999em;
}
.checkbox_inline label span {
    display: flex;
    padding: 6px 12px;
    border-radius: 3px;
    border: 1px solid #e0e0e0;
}
.checkbox_inline label input:checked + span {
    background: #FFDC82;
    border-color: #FFDC82;
}
.steps { 
    display: none; 
}
.steps.active { 
    display: block; 
}
.form_content {
    display: flex;
    width: 50%;
    flex: 0 0 auto;
    flex-direction: column;
    padding: 70px 80px;
    background: #FFDC82;
}
.resource_list {
    margin: 40px 0 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.resource_list li {
    width: calc(50% - 12px);
    flex: 0 0 auto;
}
.resource_list li a {
    display: flex;
    gap: 16px;
    padding: 16px 24px;
    background: #fff;
    color: #101a33;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
}
.resource_list li a img {
    width: 40px;
    height: auto;
}
.social_link {
    margin: 24px 0 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.social_link li {
    display: block;
}
.social_link li a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    border-radius: 3px;
    background: #101A33;
    color: #fff;
}
.faqs_section {
    display: block;
}
.faq_wrapper {
    display: block;
    border-bottom: 1px solid #e0e0e0;
    margin-top: 40px;
}
.faq_heading {
    display: flex;
    padding: 22px 0;
    gap: 24px;
    border-top: 1px solid #e0e0e0;
    font-weight: 600;
    color: #101A33;
    cursor: pointer;
    font-size: 22px;
}
.faq_content {
    padding: 0 0 35px;
}
.faq_heading:before {
    content: '\f067';
    font-family:"Font Awesome 5 Pro";
    color: #101A33;
    font-weight: 300;
}
.faq_heading.active:before {
    content: '\f068';
}
.faq_contact {
    display: block;
    padding: 45px 40px;
    background: #FFDC82;
    color: #101A33;
}
.faq_contact h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}
.faqs_section figure {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    margin-top: 24px;
}
.faqs_section figure img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;   
}
.specifications_block {
    display: block;
    padding: 24px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    margin: 24px 0;
}
.product_Wrapper {
    display: block;
    background: #0F0F0F08;
}
.product_Wrapper.white {
    display: block;
    background: #fff;
}
.product_Wrapper h6 {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
}
.specifications_block ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 50px;
    margin: 24px 0 0;
    padding: 0;
}
.specifications_block ul li {
    width: 46%;
    flex: 0 0 auto;
    display: flex;
    gap: 10px;
}
.specifications_block ul li:before {
    content: '\f00c';
    font-family:"Font Awesome 5 Pro";
    color: #FFDC82;
}
.variants_block {
    display: block;
    background: #0F0F0F08;
    padding: 30px 40px;
}
.variants .swiper-slide:after {
    width: 1px;
    height: 100%;
    background: #e0e0e0;
    content: '';
    position: absolute;
    left: auto;
    right: -20px;
    top: 0;
}
.variants_block h4 {
    font-size: 20px;
    font-weight: 800;
}
.variants_block ul {
    margin: 24px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.variants_block ul li {
    flex: 1;
    display: flex;
    gap: 10px;
}
.variants_block ul li:before {
    content: '\f00c';
    font-family:"Font Awesome 5 Pro";
    color: #FFDC82;
}
.variants_buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}
.product_Wrapper video {
    width: 100%;
    height: auto;
    aspect-ratio: 16/10;
    object-fit: cover;
}
.product_gallery {
    margin-top: 40px;
}
.product_gallery img {
    width: 100%;
    height: auto;
    aspect-ratio: 10/16;
    object-fit: cover;
}
.fall-container {
  position: relative;
  width: 100%;
  height: 100%; /* Adjust height of falling area */
  overflow: hidden;
  background: transparent;
}

.falling-item {
  position: absolute;
  /* top: -100px; */
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 6px 10px rgba(0,0,0,0.1);
  /* opacity: 0; */
  white-space: nowrap;
  /* pointer-events: none; */
  user-select: none;
}
.product_section .container {
    position: relative;
}
.product_block {
    height: 800px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}
.product_range .swiper-slide:first-child .product_block {
    border-left: 0;
}
.product_block:after {
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    transition: all ease 0.3s;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(75px);
    opacity: 0;
}
.product_thumb {
    display: flex;
    position: absolute;
    top: 0;
    left: 12px;
    width: calc(100% - 24px);
    height: 100%;
    overflow: hidden;
}
.product_thumb:before {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background: rgba(0, 0, 0, 0.3);
    content: '';
    z-index: 5;
}
.product_thumb img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    transition: all ease 0.5s;
    transition-delay: 0.5s;
    transform: translateY(100%);
    transform-origin: top center;
    pointer-events: none;
    top: 0;
    left: 0;
}
.product_thumb img.active {
    transform: translateY(0);
    transition-delay: 0s;
    z-index: 2;
}
.product_title_wrap {
    position: relative;
    z-index: 1;
}
.product_title {
    padding: 80px 20px;
    text-align: center;
    position: relative;
    z-index: 4;
}
.product_heading h2 {
    color: #fff;
    margin: 0;
}
.product_bottom {
    transform: translate3d(0px, 50px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    opacity: 0;
    transform-style: preserve-3d;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    padding: 80px 40px;
    color: #fff;
    z-index: 9;
}
.product_block:hover {
    border-left: 0;
}
.product_block:hover .product_bottom {
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    opacity: 1;
}
.product_block:hover:after {
    opacity: 1;
}
.moving_bg {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    background-color: #FFDC82;
    mix-blend-mode: hard-light;
    position: absolute;
    inset: 0%;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}
.product_block:hover .moving_bg {
    transform: translate3d(0px, 0, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
}
.product_range .swiper-slide:hover + .swiper-slide .product_block {
    border-left: 0;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }   
}
.product_heading_hover {
    margin-bottom: 0;
    opacity: 0;
    transition: all 0.4s ease;
    white-space: nowrap;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.product_heading_hover .scroll_text {
    animation: scroll-left 3s linear infinite;
    padding-right: 40px;
    padding-left: 40px;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    color: #000;
    font-size: 40px;
    font-weight: 800;
}
.product_block:hover .product_heading_hover {
    opacity: 1;
}
.product_heading_hover .scroll_text:before {
    content: "";
    position: absolute;
    left: -2px;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    width: 4px;
    background: #000;
}
.product_block:hover .product_heading {
    opacity: 0;
}
.product_range {
    z-index: 5;
}
.product_range .product_prev {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    z-index: 9;
}
.product_range .product_next {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 9;
}
.product_bottom ul {
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.product_bottom ul li {
    flex: 1;
    display: flex;
    gap: 10px;
}
.product_bottom ul li:before {
    content: '\f00c';
    font-family:"Font Awesome 5 Pro";
    color: #FFDC82;
}
.product_bottom p {
    margin-bottom: 24px;
}
.presence_list {
    margin: 0 0 24px;
    position: relative;
    z-index: 1;
    padding: 0;
    list-style-type: none;
    display: grid;
    grid-template-columns: 300px 300px 300px 300px;
    gap: 16px;
}
.presence_list li {
    border: 1px solid #e0e0e0;
}
.presence_list img {
    max-width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}
.product_heading {
    font-size: 60px;
    line-height: 1;
    font-weight: 800;
}
.product_heading span {
    font-weight: 400;
    font-size: 70px;
}
.product_listing {
    margin: 0;
    padding: 100px 0 0 60px;
    list-style-type: none;
    border-left: 5px solid #000;
    margin-left: 62px;
    margin-top: -10px;
}
.product_listing li {
    display: block;
    margin-bottom: 24px;
}
.product_listing li a {
    color: #101A33;
}
.product_listing li h5 {
    color: #101A33;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
}
.product_listing li h5:last-child {
    margin: 0;
}
.product_listing ul {
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.product_listing ul li {
    margin: 0;
}
.character_box {
    padding: 24px;
    background: #0F0F0F08;
    margin-bottom: 24px;
}
.character_box:last-child {
    margin: 0;
}
.character_box h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;   
}
.character_item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
}
.character_item:last-child {
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.character_item span {
    white-space: nowrap;
}
.character_item span:last-child {
	white-space: normal;
}
.character_item span + span {
	white-space: normal;
	text-align: right;
	font-weight: bold;
}
.character_item ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	width: 100%;
}
.character_item ul li {
	padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}
.character_item ul li:last-child {
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.character_item ul li:first-child {
    padding-top: 0;
}
.product_image {
    max-width: 100%;
    max-height: 700px;
}
.product_image_wrapper {
    border-right: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
}
.swiper-thumbs .product_image {
    background-color: #fff;
    object-position: center;
    aspect-ratio: 4/5;
    object-fit: scale-down;
}

.single_product_section {
    display: block;
    background: #0F0F0F08;
}
.single_product_section h4 {
    line-height: 1.4;
    margin-bottom: 16px;
}
.single_product_section figure {
    margin: 0;
    display: flex;
    /* aspect-ratio: 16/9; */
    width: 100%;
    height: 100%;
    position: relative;
}
.single_product_section figure img {
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.single_product_section ul {
    list-style-type: none;
    padding: 0;
    margin-top: auto;
}
.single_product_section ul li {
    display: flex;
    padding: 6px 0;
    gap: 10px;
}
.single_product_section ul li:before {
    content: '\f00c';
    font-family:"Font Awesome 5 Pro";
    color: #FFDC82;
}
.single_product_section_top {
    padding-left: 48px;
    padding-bottom: 24px;
    border-left: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}
.single_product_section_bottom {
    padding-left: 48px;
    padding-top: 24px;
    border-left: 1px solid #e0e0e0;
}
.swiper-slide-thumb-active .product_image {
    border: 1px solid #e0e0e0;
}
.product_image_slider .product_image {
    width: 100%;
    object-fit: scale-down;
    object-position: center;
    aspect-ratio: 4/5;
}

.reverse_product_section {
    display: block;
}
.reverse_product_section h4 {
    line-height: 1.4;
}
.reverse_product_section figure {
    margin: 0;
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}
.reverse_product_section figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.reverse_product_top ul {
    list-style-type: none;
    padding: 0;
    margin-top: auto;
}
.reverse_product_top ul li {
    display: flex;
    padding: 6px 0;
    gap: 10px;
}
.reverse_product_top ul li:before {
    content: '\f00c';
    font-family:"Font Awesome 5 Pro";
    color: #FFDC82;
}
.reverse_product_top {
    padding-right: 48px;
    padding-bottom: 24px;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}
.reverse_product_bottom {
    padding-right: 48px;
    padding-top: 24px;
    border-right: 1px solid #e0e0e0;
}
.blog_wrapper {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 1fr 1fr;
    overflow: hidden;
}
.blog_card {
    position: relative;
}
.blog_card figure {
    margin: 0;
    overflow: hidden;
}
.blog_card img {
    aspect-ratio: 5/4;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all ease-in 1s;
}
.blog_card:after {
    width: 1px;
    height: 100%;
    background: #e0e0e0;
    content: '';
    position: absolute;
    left: auto;
    right: -20px;
    top: 0;
}
.blog_card:before {
    width: calc(100% + 40px);
    height: 1px;
    background: #e0e0e0;
    content: '';
    position: absolute;
    left: 0;
    top: -20px;
}
.pagination-wrap {
    display: block;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    margin-top: 20px;
}
.page-numbers {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.page-numbers span, .page-numbers a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    color: #888;
}
.page-numbers span.current {
    background: #FFDC82;
    border-color: #FFDC82;
    color: #101A33;
}
.blog__post .breadcrumb {
    color: #333;
}
.blog__post .breadcrumb-item a {
    color: #333;   
}
.blog__post .breadcrumb-item+.breadcrumb-item::before {
    color: #333;
}
.blog__post .breadcrumb-item.active {
    color: #333;
}
.blog__post h1 {
    font-size: 60px;
    font-weight: 700;
}
.blog__post figure {
    width: 100%;
    height: auto;
    aspect-ratio: 16/6;
    margin: 40px 0;
}
.blog__post figure img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/6;
    object-fit: cover;   
}
.page_navigation {
    display: flex;
    padding: 40px 0;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    margin-top: 40px;
}
.nativation_btn {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 18px;
    font-weight: 600;
    flex: 1;
    color: #000;
}
.nativation_btn.next {
    flex-direction: row-reverse;
    margin-left: auto;
}
.nativation_btn figure {
    margin: 0;
}
.nativation_btn figure img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}
.nativation_btn figcaption {
    flex: 1;
}
.nativation_btn p {
    margin: 0;
}
.nativation_btn h6 {
    text-transform: uppercase;
    color: #888;
    font-size: 12px;
    letter-spacing: 1px;
}
.nativation_btn.next h6, .nativation_btn.next p {
    text-align: right;
}
.product_rows h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 16px;
}
.product_description {
    font-size: 14px;
}
.comingsoon_card {
    display: block;
    width: 100%;
    position: relative;
}
.comingsoon_card figure {
    margin: 0;
    overflow: hidden;
    position: relative;
}
.comingsoon_card figure:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 61.94%, #000000 100%);
    opacity: 0.9;
    z-index: 1;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.comingsoon_card figure img {
    aspect-ratio: 4 / 5;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all ease-in 1s;
}
.comingsoon_card figcaption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px 40px;
    z-index: 3;
    color: #fff;
    text-align: center;
}
.comingsoon_card figcaption h4 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
}
.variation_section img {
    max-width: 100%;
	width: 100%;
    aspect-ratio: 5/4;
    background: #fff;
    object-fit: scale-down;
	border: 1px solid #e0e0e0;
}
.variation_section.odd {
	background: #0F0F0F08;
}
.variation_section a {
	display:flex;
	width: 100%;
}
.image_thumb img {
	max-width: 100%;
}
.benefit_section .benefit-number {
	font-size: 180px;
    font-weight: 600;
    line-height: 0.9em;
    letter-spacing: -0.05em;
    margin-bottom: 110px;
	color: transparent;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.15);
	display: inline-block;
}
.benefit_card {
	border-right: 1px solid #e0e0e0;
}
.benefit_card:last-child {
	border-right: none;
}
.benefit_card h3 {
	font-weight: bold;
	margin-bottom: 20px;
	font-size: 28px;
}
.career_form {
	display: block;
	padding: 40px;
	background: #0F0F0F08;
	position: sticky;
	top: 100px;
}
.career_form .textbox {
    display: block;
    padding: 16px 0;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    width: 100%;
    font-weight: 600;
    background: #f8f8f800;
}
.career_form .textarea {
    display: block;
    padding: 16px 0;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    width: 100%;
    font-weight: 600;
    background: #f8f8f800;
}
.career_form .textbox:focus, .career_form .textarea:focus {
	outline: none;
}