/*
 * Template Name: 3hands Book - Book HTML5 Template
 * Author: shalevlevi - (https://www.fiverr.com/shalevlevi)
 * Version: 1.0
 * Copyright 2025 shalevlevi

===========================================
    
    All include section: 

    01. Google fonts
    02. Basic css
    03. Preloader css
    04. home section css
    05. section one css
    06. section two css 
    07. photo gallery css
    08. section three css
    09. explanation question css
    10. section four css
    11. button section four css
    12. back to top css

    
===========================================


*/

/*======================
   01. Google fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=Alef:wght@400;700&display=swap');

@font-face {
    font-family: AlmoniMLv5AAA-Light;
    src: url('../webfonts/AlmoniMLv5AAA-Light.eot');
    src: url('../webfonts/AlmoniMLv5AAA-Light.eot?#iefix') format('embedded-opentype'),
        url('../webfonts/AlmoniMLv5AAA-Light.woff2') format('woff2'),
        url('../webfonts/AlmoniMLv5AAA-Light.woff') format('woff'),
        url('../webfonts/AlmoniMLv5AAA-Light.ttf') format('truetype'),
        url('../webfonts/AlmoniMLv5AAA-Light.svg#AlmoniMLv5AAA-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: AlmoniMLv5AAA-U-Bold;
    src: url('../webfonts/AlmoniMLv5AAA-U-Bold.eot');
    src: url('../webfonts/AlmoniMLv5AAA-U-Bold.eot?#iefix') format('embedded-opentype'),
        url('../webfonts/AlmoniMLv5AAA-U-Bold.woff2') format('woff2'),
        url('../webfonts/AlmoniMLv5AAA-U-Bold.woff') format('woff'),
        url('../webfonts/AlmoniMLv5AAA-U-Bold.ttf') format('truetype'),
        url('../webfonts/AlmoniMLv5AAA-U-Bold.svg#AlmoniMLv5AAA-U-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


:root {
    --bg-white: #ffffff;
    --bg-opacity: #F7F7F7;
    --primary-color: #262626;
    --red-color: #E85757;
    --black-color: #000000;
    --color01: #3CA8A0;
}

/*======================
   02. Basic css
========================*/
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
    margin: 0;
    padding: 0;
}

body {
    background: var(--bg-white);
    color: var(--primary-color);
    font-family: AlmoniMLv5AAA-Light;
}

ol,
ul {
    list-style: none;
}

a:hover {
    text-decoration: none;
}

button:focus, input:focus, textarea:focus {
    outline: 0;
}

.custom_btn {
    background: var(--red-color);
    height: 77px;
    padding: 0 60Px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 56px;
    font-family: AlmoniMLv5AAA-U-Bold;
    color: var(--bg-white);
    border-radius: 43px;
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
    border: 6px solid transparent;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.custom_btn:hover {
    border: 6px solid var(--red-color);
    color: var(--red-color);
    background: var(--bg-white);
}

/*======================
   03. Preloader css
========================*/
#preloader {
    position: fixed;
    background: var(--bg-white);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    height: 100vh;
    width: 100vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.loader3 {
    width: 50px;
    height: 50px;
    display: inline-block;
    padding: 0;
    text-align: left;
}

.loader3 span {
    position: absolute;
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: var(--red-color);
    -webkit-animation: loader3 1.5s linear infinite;
            animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
    -webkit-animation-delay: -0.9s;
            animation-delay: -0.9s;
}

@keyframes loader3 {
    0% {
        -webkit-transform: scale(0, 0);
                transform: scale(0, 0);
        opacity: 0.8;
    }
    100% {
        -webkit-transform: scale(1, 1);
                transform: scale(1, 1);
        opacity: 0;
    }
}

@-webkit-keyframes loader3 {
    0% {
        -webkit-transform: scale(0, 0);
        opacity: 0.8;
    }
    100% {
        -webkit-transform: scale(1, 1);
        opacity: 0;
    }
}

/*======================
   04. home section css
========================*/
.bg1 {
    background: var(--bg-opacity);
}

.custom_container {
    max-width: 1920px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    padding-left: 15px;
    padding-right: 15px;
}

.home_wrapper .home_bg {
    width: 100%;
    height: 100%;
    -o-object-fit: fill;
       object-fit: fill;
}

.home_wrapper .container {
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    max-width: 78vw;
    bottom: 19vh;
}

.home_wrapper h2 {
    color: var(--bg-white);
    font-weight: 600;
    font-size: 2.81vw;
    line-height: 8.4vh;
}

.home_wrapper .custom_btn {
    height: 8.1vh !important;
    padding: 0 3.1vw !important;
    font-size: 2.9vw !important;
    margin-top: 4.2vh !important;
    border-top-left-radius: 5vh !important;
    border-top-right-radius: 5vh !important;
    border-bottom-left-radius: 5vh !important;
    border-bottom-right-radius: 5vh !important;
}

/*======================
   05. section one css
========================*/
.section_wrapper1 {
    background: var(--bg-opacity);
}

.section_wrapper1 .section_content1 h2 {
    font-size: 56px;
    line-height: 72px;
    font-weight: 600;
}

.section_wrapper1 .section_content1 h2 span {
    font-family: AlmoniMLv5AAA-U-Bold;
}

.section_wrapper1 figure {
    padding-left: 70px;
}

/*======================
   06. section two css
========================*/
.main_wrapper1 {
    padding-bottom: 220px;
}

.section_wrapper2 {
    background: var(--bg-opacity);
    padding: 390px 0 215px 0;
    background-image: url(../img/section_bg1.png);
    background-repeat: no-repeat;
    background-size: 1920px;
    background-position: center;
}

.section_wrapper2 .shape1 {
    left: 0%;
    top: -5%;
    width: 100%;
    z-index: 1;
    max-width: 16.4vw;
}

.section_wrapper2 .shape2 {
    right: 0;
    width: 100%;
    bottom: 0;
    max-width: 19.3vw;
}

.section_wrapper2 .container {
    max-width: 1435px;
    position: absolute;
    top: 41%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.section_wrapper2 h2 {
    font-size: 54px;
    line-height: 79px;
    color: var(--bg-white);
    font-weight: 600;
}

.section_wrapper2 .custom_btn {
    -webkit-transform: translateY(160px);
    -ms-transform: translateY(160px);
    transform: translateY(160px);
}

/*======================
   07. photo gallery css
========================*/
.photo_gallery_wrapper {
    padding-top: 25px;
}

.photo_gallery_wrapper .container-fluid {
    padding-right: 0px;
    padding-left: 0px;
}

.photo_gallery_wrapper .swiper {
  width: 100%;
  height: 100%;
}

.photo_gallery_wrapper .swiper-slide {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.photo_gallery_wrapper .swiper-slide a {
    display: block;
}

.photo_gallery_wrapper .swiper-slide img {
    display: block;
    width: 626px;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.photo_gallery_wrapper .swiper-slide p {
    font-size: 44px;
    line-height: 20px;
    font-family: "Alef", sans-serif;
    font-weight: 700;
    color: #000000;
    position: absolute;
    bottom: 0;
    right: 35px;
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
}

.photo_gallery_wrapper .swiper-slide:hover p {
    bottom: 35px;
    visibility: visible;
    opacity: 1;
}

.photo_gallery_wrapper .swiper .swiper-button-next {
    left: 30px;
}

.photo_gallery_wrapper .swiper .swiper-button-prev {
    right: 30px;
}

.photo_gallery_wrapper:hover .swiper .swiper-button-next, 
.photo_gallery_wrapper:hover .swiper .swiper-button-prev {
    visibility: visible;
    opacity: 1;
}

.photo_gallery_wrapper .swiper .swiper-button-next, 
.photo_gallery_wrapper .swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: #000000;
    color: #ffffff;
    font-size: 20px;
    border-radius: 50%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
    top: 52%;
}

.photo_gallery_wrapper .swiper .swiper-button-next svg,
.photo_gallery_wrapper .swiper .swiper-button-prev svg {
    display: none;
}

.photo_gallery_wrapper .swiper .swiper-button-disabled {
    opacity: 0.35 !important;
}

/*======================
   08. section three css
========================*/
.wrapper2 {
    padding: 25px 0 185px 0;
}

.section_wrapper3 {
    background: var(--bg-white);
    background-repeat: no-repeat;
    background-size: 1920px;
    background-position: center;
    padding: 470px 0;
}

.section_wrapper3 .shape3 {
    left: 0;
    top: 4%;
    max-width: 18vw;
    width: 100%;
}

.section_wrapper3 .shape4 {
    right: 0;
    bottom: 16%;
    max-width: 22vw;
    width: 100%;
}

.section_wrapper3 .container {
    max-width: 1060px;
    position: absolute;
    top: 41%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.section_wrapper3 h2 {
    font-size: 45px;
    line-height: 65px;
    font-weight: 600;
}

.section_wrapper3 h2 span {
    display: block;
    font-family: AlmoniMLv5AAA-U-Bold;
    margin-top: 40px;
}

.section_wrapper3 .custom_btn {
    -webkit-transform: translateY(175px);
        -ms-transform: translateY(175px);
            transform: translateY(175px);
}

/*==============================
   09. explanation question css
================================*/
.explanation_question_wrapper {
    padding: 180px 0 170px 0;
}

.explanation_question_wrapper .shape {
    right: 0;
    width: 100%;
    z-index: 1;
    bottom: 14%;
    max-width: 15.7vw;
}

.explanation_question_wrapper .frequently_head_mini {
    display: none !important;
}

.explanation_question_wrapper .explanation_head img {
    max-width: 415px;
    width: 100%;
}

.explanation_question_wrapper .container {
    max-width: 1803px !important;
}

.explanation_question_wrapper .accordion .last_card .card-header {
    border-bottom: 3px solid transparent !important;
}

.explanation_question_wrapper .accordion .card {
    border: none;
}

.explanation_question_wrapper .accordion .card .card-body {
    font-size: 27px;
    padding: 30px;
    text-align: right;
    background: rgb(60 168 160 / 19%);
    margin-top: 20px;
    border-radius: 10px;
    color: #000000;
}

.explanation_question_wrapper .accordion .card-header {
    background-color: transparent;
    border-bottom: 3px solid #3CA8A0;
    cursor: pointer;
    padding: 0;
    position: relative;
    text-align: right;
    margin-bottom: 0;
}

.explanation_question_wrapper .accordion .card-header h2 {
    width: 100%;
    font-size: 56px;
    line-height: 60px;
    font-weight: 600;
    padding: 30px 0;
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

.explanation_question_wrapper .accordion .card-header h2[aria-expanded="true"] {
    color: var(--color01);
}

.explanation_question_wrapper .accordion .last_card .card-header h2[aria-expanded="true"] {
    border-bottom: 3px solid #3CA8A0 !important;
}

/*=====================
   10. section four css
=======================*/
.wrapper3 {
    padding-bottom: 90px;
    margin-top: 190px;
}

.section_wrapper4 {
    background-repeat: no-repeat;
    background-size: 1920px;
    background-position: center;
    padding: 800px 0;
}

.section_wrapper4 .shape5 {
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 18vw;
}

.section_wrapper4 .container {
    max-width: 1700px;
    position: absolute;
    top: 34%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    text-align: center;
}

.section_wrapper4 figure img {
    width: 800px;
    height: 800px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 50%;
}

.section_wrapper4 .section_head .section_head_mini {
    display: none !important;
}

.section_wrapper4 .section_head img {
    width: 100%;
    padding-bottom: 60px;
}

.section_wrapper4 h2 {
    font-size: 56px;
    line-height: 72px;
    font-weight: 600;
    margin-top: 40px;
}

.section_wrapper4 h2 span {
    display: block;
}

.section_wrapper4 h2 span {
    font-family: AlmoniMLv5AAA-U-Bold;
}

.section_wrapper4 .custom_btn {
    -webkit-transform: translateY(290px);
        -ms-transform: translateY(290px);
            transform: translateY(290px);
}

/*============================
   11. button section four css
==============================*/
.button_section_wrapper {
    padding-bottom: 60px;
}

.button_section_wrapper a {
    display: block;
    margin: 70px auto 0 auto;
    max-width: 685px;
}

.button_section_wrapper a:hover img {
    opacity: 0.7;
}

.button_section_wrapper a img {
    width: 100%;
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

/*======================
   12. back to top css
========================*/
.back-to-top {
    font-size: 24px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    display: none;
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 999999999999;
    border-radius: 50%;
    background: var(--red-color);
}

.back-to-top i {
    color: #ffffff;
}