/*------------------------------------------------------------------
Common section
-------------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
    font-family: "DM Sans", sans-serif;
    color: #2D2330;
    font-weight: 700;
}

html {
    scroll-behavior: smooth;
}

/* width and height */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #ffeae8;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #ff827f;
    border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #ff3533;
}

a,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

p {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    color: #736D75;
    font-weight: 500;
}

/*==============================================
Get to know us section
==============================================*/
.get-to-know-full {
    background-color: #faf5ee;
    padding: 110px 0 180px 0;
}

.get-to-know-left {
    /*margin-top: 110px;*/
    display: flex;
    justify-content: center;
    align-items: center;
}

.get-to-know-left img {
    width: 100%;
    border-radius: 15px;
}

.get-to-know-title p {
    font-size: 14px;
    color: #FF5956;
    line-height: 0.9;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 11px;
}

.get-to-know-title h2 {
    text-transform: uppercase;
    font-size: 40px;
    line-height: 1.25;
    margin-bottom: 0;
}

.get-to-know-description p {
    margin-bottom: 30px;
}


.get-to-know-first-icon-box {
    display: flex;
    align-items: center;
}

.get-to-know-first-icon-box span {
    width: 76px;
    height: 76px;
    background-color: #FF5956;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 40px;
    margin-right: 15px;
}



/*==============================================
achievement section
==============================================*/
.achievements-full {
    position: relative;
    top: -180px;
}

.achievements {
    margin-top: 110px;
    padding: 52px 15px 49px;
    background-color: #ffffff;
    box-shadow: 0 16px 60px 0 rgba(0, 0, 0, 0.05);
    border-radius: 20px;
}

.achievements span {
    width: 100px;
    height: 100px;
    background-color: #FF5956;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 40px;
    margin-bottom: 20px;
}

.achievements h3 {
    font-size: 40px;
    line-height: 1.25;
    margin: 0;
}

.achievements p {
    margin: 0;
}

.inner-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.v-line {
    border-right: 1px solid #EBE6DE;
}

/*==============================================
choose-your-tour
==============================================*/

.choose-your-tour-left {
    /*margin-top: 110px;*/
    display: flex;
    justify-content: center;
    align-items: center;
}

.choose-your-tour-title p {
    font-size: 14px;
    color: #FF5956;
    line-height: 0.9;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 11px;
}

.choose-your-tour-title h2 {
    text-transform: uppercase;
    font-size: 40px;
    line-height: 1.25;
    margin-bottom: 0;
}

.choose-your-tour-description p {
    margin-bottom: 30px;
}

.choose-your-tour-first-icon-box {
    display: flex;
    align-items: center;
}

.choose-your-tour-first-icon-box span {
    width: 76px;
    height: 76px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FF5956;
    font-size: 40px;
    margin-right: 15px;
    border: 1px solid #EBE6DE;
}

.img1 {
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 45%;
    border-radius: 50%;
    border: 6px solid #ffffff;
    filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.15));
}

.img2 {
    position: absolute;
    right: 30px;
    bottom: 0;
    width: 40%;
    animation: updown 3s infinite linear;
}

@keyframes  updown {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    50% {
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.img3 {
    width: 80%;
    border-radius: 50%;
    margin-left: auto;

}
