@import url('https://fonts.googleapis.com/css2?family=Caprasimo&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Readex+Pro:wght@160..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: var(--font-Readex);
}

body {
    overflow-x: hidden;
    background-color: #ffffff;
}

main {
    overflow: hidden;
}

:root {
    --primary-color: #FFC86D;
    --secondary-color: #63B2EA;
    --font-caprasimo: "Caprasimo", serif;
    --font-Readex: "Readex Pro", sans-serif;
}

a {
    text-decoration: none;
    transition: all .3s ease-in-out;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: #000000;
}

figure {
    margin: 0;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    letter-spacing: 0px;
    word-spacing: 0px;
    font-family: var(--font-caprasimo);
}

p {
    color: #000000;
    font-size: 22px;
    line-height: 32px;
    text-transform: unset;
    font-weight: 400;
    margin: 0;
    padding: 0;
    letter-spacing: 0px;
    word-spacing: 0px;
}

p::first-letter {
    text-transform: capitalize;
}

/**************************** Btn hover Start ***************************/

.btn {
    border-radius: 0px;
    padding: 0;
    margin: 0;
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 20px;
    transition: all .3s ease-in-out;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

input:focus,
textarea:focus,
textarea:active,
input:active,
button:focus {
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid #ffc86d !important;
}

.btn-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-box .btn-primary {
    position: relative;
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
    color: #000000;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    overflow: hidden;
    transition: all .3s ease-in-out;
    padding: 20px 30px;
    border-radius: 100px;
    font-family: var(--font-caprasimo);
}

.btn-box .btn-primary:hover {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-box .btn-secondary {
    color: #ffffff;
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.btn-box .btn-secondary:hover {
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

/* Bounce To Right */
.hvr-bounce-to-right {
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.hvr-bounce-to-right:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-bounce-to-right:hover,
.hvr-bounce-to-right:focus,
.hvr-bounce-to-right:active {
    color: var(--primary-color) !important;
}

.hvr-bounce-to-right:hover:after,
.hvr-bounce-to-right:focus:after,
.hvr-bounce-to-right:active:after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To Right */
/* Bounce To left */
.hvr-bounce-to-left {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.hvr-bounce-to-left::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-bounce-to-left:hover,
.hvr-bounce-to-left:focus,
.hvr-bounce-to-left:active {
    color: var(--secondary-color) !important;
}

.hvr-bounce-to-left:hover::after,
.hvr-bounce-to-left:focus::after,
.hvr-bounce-to-left:active::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To left */
/**************************** Btn hover Close ***************************/
/**************************** Form css Start ***************************/
.input-main {
    margin: 0 0 18px 0;
    overflow: hidden;
}

.input-main p,
.input-main label {
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    margin: 0 0 3px 0;
    padding: 0;
    color: #313747;
    line-height: 24px;
}

.input-main p span,
.input-main label span {
    color: #FF6B6B;
}

.input-main .form-group {
    position: relative;
}

.input-main .form-group .card-imgs {
    z-index: 2;
    position: absolute;
    top: 0;
    left: 20px;
    color: #74769E;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 3px;
}

.input-main .form-group .card-imgs li img {
    min-width: 26px;
    max-width: 26px;
    min-height: 26px;
    max-height: 26px;
    object-fit: contain;
}

.input-main .form-control.img-bx {
    padding: 12px 20px 12px 60px;
}

.input-main.rightOne .form-control.img-bx {
    padding: 12px 60px 12px 12px;
}

.input-main.rightOne .form-group .card-imgs {
    right: 20px;
    left: inherit;
}

.input-main .form-select,
.input-main .form-control {
    border: none;
    height: auto;
    background-color: #fff;
    border: 1px solid var(--Light-Grey, #D2D2D2);
    border-radius: 5px;
    padding: 8px 30px 8px 17px;
    color: #232F3F;
    font-size: 17px;
    font-weight: 400;
    position: relative;
}

.input-main .form-group .field-icon1 {
    z-index: 2;
    position: absolute;
    top: 0;
    right: 10px;
    color: #313747;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.input-main .form-group .field-icon1.fa-eye:before,
.input-main .form-group .field-icon1.fa-eye-slash:before {
    font-family: "Font Awesome 6 pro";
}

.input-main .forgot {
    text-align: right;
    color: #313747;
    margin: 10px 0 0 0;
    font-size: 15px;
    line-height: 18px;
    text-transform: unset;
    font-weight: 400;
    display: block;
}

.form-check {
    margin: 0;
}

.form-check .form-check-input:checked {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.form-check .form-check-input:focus {
    border-color: var(--secondary-color);
    box-shadow: none;
}

.form-check .form-check-label {
    letter-spacing: 1.5px;
    text-transform: capitalize;
    margin: 0;
    color: #313747;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/**************************** Form css End ***************************/

/************************************* header *************************************/
.navbar-toggler {
    background-color: #FFC233;
    color: #fff;
    border: none;
}

/* header */
header.desktop_menu {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
}

header .navbar .navbar-collapse {
    align-items: center;
    justify-content: space-between;
}

header.desktop_menu .navbar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between;
    gap: 30px;
    padding: 0;
}

header.desktop_menu .navbar .link-head {
    display: flex;
    align-items: center;
    gap: 6px;
}

header.desktop_menu .navbar .link-head a {
    background: #fff;
    font-size: 20px;
    color: #000;
    height: 46px;
    width: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

header.desktop_menu .navbar .link-head a:hover {
    background-color: var(--primary-color);
}

header .navbar .navbar-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

header .navbar .navbar-nav .nav-item .nav-link {
    position: relative;
    color: #000000;
    text-transform: capitalize;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
    padding: 0;
    font-weight: 400;
    line-height: 28px;
}

header .navbar .navbar-nav .nav-item .nav-link:hover {
    color: var(--secondary-color);
}

header .navbar .navbar-nav .nav-item .nav-link::before {
    position: absolute;
    content: "";
    height: 2px;
    background: #000000;
    width: 0%;
    bottom: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
}

header .navbar .navbar-nav .nav-item .nav-link:hover::before {
    width: 100%;
}

header .navbar .navbar-brand {
    position: relative;
    top: 3px;
    padding: 0;
    margin: 0;
}

header .navbar .navbar-brand img {
    width: 190px;
}

header .navbar .header_contact .btn-primary {
    font-size: 18px;
    padding: 17px;
    line-height: 20px;
}

/* mobile_menu */
.mobile_menu {
    display: none;
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    z-index: 999;
}

.mobile_menu img {
    width: 100px;
}

.mobile_menu .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile_menu .menuButton {
    border: 1px solid var(--primary-color);
    padding: 6px 11px;
    border-radius: 6px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
}

.mobile_menu .menuButton i {
    font-size: 20px;
}

.mobile_menu .offcanvas-body ul {
    padding: 2rem 1rem 0px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile_menu .offcanvas-body ul li {
    padding: 0px 0rem;
}

.mobile_menu .offcanvas-body ul li a {
    position: relative;
    color: #000000;
    text-transform: capitalize;
    padding: 0 0px;
    font-size: 15px;
    transition: all 0.3s ease-in-out;
    line-height: 25px;
}

.mobile_menu .offcanvas-body ul li a:hover {
    color: var(--secondary-color);
}

.mobile_menu .offcanvas-body ul li a::before {
    position: absolute;
    content: "";
    height: 2px;
    background: #000000;
    width: 0%;
    bottom: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
}

.mobile_menu .offcanvas-body ul li a:hover::before {
    width: 100%;
}

.mobile_menu .offcanvas-header .btn-close {
    background: #000;
    opacity: 1;
    position: absolute;
    right: 30px;
    top: 40px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile_menu .offcanvas-header .btn-close i {
    color: #fff;
    font-size: 16px;
}

.mobile_menu .offcanvas-header {
    padding: 0;
}

.mobile_menu .offcanvas-body .link-head {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 20px 0px 0px;
    padding: 0rem 1rem;
}

.mobile_menu .offcanvas-body .link-head a {
    background: #000000;
    font-size: 16px;
    color: #ffffff;
    font-size: 16px;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile_menu .offcanvas-body .link-head a:hover {
    background-color: var(--primary-color);
    color: #000000;
}

.mobile_menu .offcanvas-body .header_contact.btn-box {
    justify-content: start;
    margin: 20px 0px 0px;
    padding: 0rem 1rem;
}

/* mobile_menu */
/***************************** header close *****************************/

/***************************** Footer Start *****************************/
footer {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background: #FEFCFA;
}

footer .footer-top {
    padding: 90px 0;
}

footer .footer-top .footer-logo {
    text-align: center;
}

footer .footer-top .footer-logo img {
    width: 80%;
}

footer .footer-top .footer-logo ul {
    margin: 20px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

footer .footer-top .footer-logo ul li a i {
    font-size: 20px;
    width: 50px;
    height: 50px;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    transition: all .5s ease-in-out;
    background: #ffffff;
    border: 1px solid #E8E8E8;
    border-radius: 50%;
}

footer .footer-top .footer-logo ul li a i:hover {
    color: #ffffff;
    background: var(--secondary-color);
}

footer .footer-top .quik-inks h4 {
    font-size: 35px;
    color: #000000;
    text-transform: capitalize;
    margin: 0 0 20px 0;
    font-weight: 400;
}

footer .footer-top .quik-inks h5 {
    font-size: 21px;
    color: #E8E8E8;
    text-transform: uppercase;
    margin: 0 0 30px 0;
}

footer .footer-top .quik-inks p {
    color: #000000;
    font-size: 18px;
    line-height: 28px;
    text-transform: capitalize;
    margin: 0px 0px 20px;
    padding: 0;
    letter-spacing: 0px;
    word-spacing: 0px;
}

footer .footer-top .quik-inks .form-group {
    display: flex;
    align-items: center;
    background: #e1e1e1;
    height: 60px;
    border-radius: 100px;
    padding: 0px 0px;
    overflow: hidden;
}

footer .footer-top .quik-inks .form-group input.form-control {
    background: transparent;
    border: 0;
    padding: 10px 15px;
    font-size: 18px;
    color: #000;
    height: 100%;
    line-height: 28px;
}

footer .footer-top .quik-inks .form-group button.btn.btn-primary {
    background: var(--primary-color);
    color: #000;
    height: 100%;
    border-radius: 100px;
    width: 210px;
    font-size: 18px;
    font-weight: 400;
    border: 0;
    font-family: var(--font-caprasimo);
    overflow: hidden;
}

footer .footer-top .quik-inks ul {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 15px;
}

footer .footer-top .quik-inks ul li a {
    position: relative;
    color: #000000;
    font-size: 17px;
    line-height: 26px;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    letter-spacing: 0px;
    word-spacing: 0px;
    transition: all 0.5s ease-in-out;
}

footer .footer-top .quik-inks ul li a:hover {
    color: var(--secondary-color);
}

footer .footer-bottom .copyright p a::before,
footer .footer-top .quik-inks ul li a::before {
    position: absolute;
    content: "";
    height: 2px;
    background: #000000;
    width: 0%;
    bottom: -4px;
    left: 0;
    transition: all 0.3s ease-in-out;
}

footer .footer-bottom .copyright p a:hover::before,
footer .footer-top .quik-inks ul li a:hover::before {
    width: 100%;
}

footer .footer-top .quik-inks .contact {
    gap: 30px;
}

footer .footer-top .quik-inks .contact li {
    font-size: 18px;
}

footer .footer-top .quik-inks .contact li a {
    text-transform: lowercase;
    font-size: 18px;
    line-height: 28px;
}

footer .footer-bottom {
    padding: 30px 0;
    border-top: 1px solid #d1d1d1;
}

footer .footer-bottom .copyright {
    text-align: center;
}


footer .footer-bottom .copyright p {
    color: #000000;
    font-size: 18px;
    text-transform: capitalize;
}

footer .footer-bottom .copyright p a {
    color: #000000;
    position: relative;
}

footer .footer-bottom .copyright p a:hover {
    color: var(--secondary-color);
}

footer .footer-bottom .privacy-links ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 10px;
}

footer .footer-bottom .privacy-links ul li {
    color: #FAFBFD;
}

footer .footer-bottom .privacy-links ul li a {
    color: #FAFBFD;
    font-size: 18px;
    text-transform: capitalize;
    margin: 0;
    padding: 0;
    letter-spacing: 0px;
    word-spacing: 0px;
    transition: all .3s ease-in-out;
}

footer .footer-bottom .privacy-links ul li a:hover {
    color: #FFC233;
}

/*********************** footer close ***********************/

/*********************** Sign_in start ***********************/
/* ======form_detail====== */
.form_detail .main-input .group-control {
    margin: 0px 0px 15px;
    position: relative;
}

.form_detail .main-input .group-control .input-control {
    border-radius: 100px;
    border: 1px solid #E8E8E8;
    padding: 22px 24px;
    font-size: 18px;
    color: #000;
    width: 100%;
    position: relative;
    background: #fff;
}

.field-icon1 {
    z-index: 2;
    position: absolute;
    top: 60%;
    right: 20px;
    color: #ACACAC;
    font-size: 18px;
}

.form_detail .main-input .group-control .input-control::placeholder {
    color: #ACACAC;
}

.form_detail .main-input .group-control textarea.input-control {
    height: 150px;
    border-radius: 14px;
}

.form_detail .main-input .group-control label {
    color: #000;
    font-size: 18px;
    line-height: 28px;
    margin: 0px 0px 7px;
}

.form_detail .main-input .group-control .forget {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form_detail .main-input .group-control .forget a {
    text-decoration: underline;
    color: #000;
    font-size: 18px;
    line-height: 28px;
    margin: 0px 0px 8px;
}

.form_detail .main-input .group-control p {
    color: #000;
    font-size: 18px;
    text-transform: capitalize;
    line-height: 28px;
}

.form_detail .main-input .group-control p a {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: underline;
}

.form_detail .main-input .form-check {
    margin: 20px 0px 30px;
    padding: 0;
}

.form_detail .main-input .form-check label.form-check-label {
    font-weight: 600;
    letter-spacing: 0;
    color: black;
}

.form_detail .main-input .form-check .form-check-input {
    height: 24px;
    width: 24px;
    margin: -1px 6px 0px 0px;
}

.form_detail .main-input .group-control .input-control.submit-btn {
    background: var(--primary-color);
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: #000;
    overflow: hidden;
    font-family: var(--font-caprasimo);
}

.form_detail .main-input .group-control .digits {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form_detail .main-input .group-control .digits li .input-control {
    border: 1px solid #E8E8E8;
    height: 60px;
    width: 60px;
    border-radius: 15px;
    padding: 0;
    text-align: center;
    font-size: 20px;
}

/* ======form_detail====== */
/* =========sign_in_wrap========= */
.sign_in_wrap {
    position: relative;
    overflow: hidden;
    background-image: url(../images/banner-img.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 28px;
}

.sign_in_wrap .account_detail {
    padding: 0rem 8rem;
}

.sign_in_wrap .account_detail .main-logo {
    text-align: center;
    margin: 0px 0px 25px;
}

.sign_in_wrap .account_detail .main-logo img {
    width: 200px;
    object-fit: contain;
}

.sign_in_wrap .account_detail h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    color: #000;
    line-height: 46px;
    margin: 0px 0px 10px;
}

.sign_in_wrap .account_detail p {
    color: #000000;
    font-size: 18px;
    text-align: center;
    line-height: 28px;
    margin: 0px 0px 40px;
}

.sign_in_wrap .main-img img {
    width: 100%;
    /* height: 1025px; */
    object-fit: contain;
}

.sign_in_wrap .main-input {}

.sign_in_wrap .main-input .social-media {}

.sign_in_wrap .main-input .social-media p {
    margin: 30px 0px;
    font-weight: 500;
}

.sign_in_wrap .main-input .social-media .automatic-sign {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0px 0px 40px;
}

.sign_in_wrap .main-input .social-media .automatic-sign .box {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #E8E8E8;
    border-radius: 100px;
    background: #fff;
    padding: 10px 35px 10px 10px;
}

.sign_in_wrap .main-input .social-media .automatic-sign .box img {
    width: 50px;
    object-fit: cover;
}

.sign_in_wrap .main-input .social-media .automatic-sign .box p {
    margin: 0;
    font-size: 16px;
}

/* =========sign_in_wrap========= */
/*********************** Sign_in close ***********************/

/*********************** home-page css Start ***********************/
/* head */
.head {
    position: relative;
    z-index: 9;
}

.head h2 {
    font-size: 60px;
    line-height: 70px;
    margin: 0px 0px 20px;
    color: #000;
}

.head h3 {
    font-size: 40px;
    line-height: 50px;
    margin: 0px 0px 20px;
    color: #000;
}

.head p {
    margin: 0px 0px 30px;
}

.head ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0px 0px 30px;
}

.head ul li {
    font-size: 22px;
    color: #000;
    line-height: 32px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 14px;
}

.head ul li span {
    width: 10px;
    height: 10px;
    display: block;
    background: #E78585;
    border-radius: 50%;
    min-width: 10px;
}

/* head */

/* banner */
.home-banner-wrap {
    padding: 250px 100px 50px;
    position: relative;
}

.home-banner-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/banner-img.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 1460px;
    width: 100%;
}

.home-banner-wrap .content {
    text-align: center;
    margin: 0px auto 20px;
    position: relative;
}

.home-banner-wrap .content h1 {
    font-size: 90px;
    line-height: 100px;
    color: #000;
    font-weight: 400;
    margin: 0px 0px 15px;
}

.home-banner-wrap .content h1 span {
    font-family: var(--font-caprasimo);
    color: var(--primary-color);
}

.home-banner-wrap .content p {
    font-size: 28px;
    line-height: 40px;
    margin: 0px auto 0px;
    width: 59%;
}

.home-banner-wrap .banner-img-wrap {
    margin: 0px 0px 60px;
    position: relative;
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

.home-banner-wrap .banner-img-wrap .box{}
.home-banner-wrap .banner-img-wrap .box .pew-img{
    border-radius: 30px;
    width: 310px;
    object-fit: cover;
}
.home-banner-wrap .banner-img-wrap .box1 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.home-banner-wrap .banner-img-wrap .box1 .pew1-img {
    height: 430px;
}

.home-banner-wrap .banner-img-wrap .box1 .pew2-img {
    height: 200px;
}
.home-banner-wrap .banner-img-wrap .box2{}
.home-banner-wrap .banner-img-wrap .box2 .pew3-img {
    height: 560px;
}

.home-banner-wrap .banner-img-wrap .box3{
    margin: 0px 0px 100px;
}
.home-banner-wrap .banner-img-wrap .box3 .pew4-img {
    height: 370px;
}

/* banner */

/* reconnect_wrap */
.reconnect_wrap {
    position: relative;
    padding: 100px 0px;
}

.reconnect_wrap .vector-img img {
    position: absolute;
    right: 0;
    top: -50px;
}

.reconnect_wrap .btn-box {
    justify-content: start;
}

.reconnect_wrap .main-img {
    position: relative;
    z-index: 9;
}

.reconnect_wrap .main-img img {
    width: 100%;
    height: 650px;
    object-fit: contain;
}

/* reconnect_wrap */

/* works_wrap */
section.works_wrap {
    position: relative;
    padding: 100px 0px;
}

section.works_wrap .head {
    text-align: center;
}

section.works_wrap .head h2 {
    margin: 0px 0px 50px;
}

section.works_wrap .upload-box {
    position: relative;
    z-index: 1;
    height: 554px;
    width: 100%;
    padding: 60px 0px 0px;
    transition: all .3s ease-in-out;
}

section.works_wrap .upload-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/vector2.png);
    height: 100%;
    width: 100%;
    z-index: -1;
    transition: all .3s ease-in-out;
    background-size: contain;
    background-repeat: no-repeat;
}

section.works_wrap .upload-box .main-img {
    text-align: center;
    margin: 0px 0px 28px;
}

section.works_wrap .upload-box .main-img img {
    width: 110px;
}

section.works_wrap .upload-box h3 {
    font-size: 30px;
    line-height: 40px;
    text-align: center;
    margin: 0px 0px 15px;
}

section.works_wrap .upload-box p {
    text-align: center;
    width: 80%;
    margin: auto;
}

/* works_wrap */

/* world_wrap */
.world_wrap .head {
    padding: 0px 0px 0px 50px;
}

.world_wrap .vector-img img {
    left: 0;
    z-index: 9;
    top: -24%;
}

/* world_wrap */

/* pet_wrap */
.pet_wrap {
    padding: 190px 0px 100px;
    position: relative;
}

section.pet_wrap.story {
    padding: 100px 0px 100px;
}

.pet_wrap::before {
    content: "";
    position: absolute;
    top: -40%;
    left: 0;
    height: 1580px;
    width: 100%;
    background-image: url(../images/bg-img1.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

section.pet_wrap.story::before {
    height: auto;
}

.pet_wrap .head {
    z-index: 9999;
}

.pet_wrap .head h2 {
    text-align: center;
    margin: 0px 0px 30px;
}

.pet_wrap .pet-group {
    text-align: center;
    background: #ffffff;
    padding: 30px 20px 50px 20px;
    border-radius: 600px;
    position: relative;
    z-index: 9999;
    border: 1px solid #E8E8E8;
}

section.pet_wrap.story .pet-group {
    margin: 0px 0px 40px;
}

.pet_wrap .pet-group .main-img {
    margin: 0px 0px 25px;
}

.pet_wrap .pet-group .main-img img {
    width: 100%;
    height: 292px;
    object-fit: contain;
    border-radius: 50%;
}

.pet_wrap .pet-group h3 {
    font-size: 26px;
    text-transform: capitalize;
    color: #000;
    margin: 0px 0px 7px;
    line-height: 30px;
}

.pet_wrap .pet-group h4 {
    font-size: 20px;
    text-transform: capitalize;
    color: #000;
    margin: 0px 0px 6px;
    line-height: 26px;
}

.pet_wrap .pet-group p {
    font-size: 18px;
    line-height: 28px;
    margin: 0px 0px 10px;
}

.pet_wrap .pet-group small {
    font-size: 17px;
    line-height: 27px;
    color: #000;
    display: block;
    margin: 0px 0px 24px;
}

.pet_wrap .pet-group .btn-see {
    display: flex;
    justify-content: center;
}

.pet_wrap .pet-group .btn-see a {
    color: #000;
    font-size: 16px;
    background: var(--primary-color);
    padding: 15px 30px;
    border-radius: 100px;
    font-weight: 600;
    line-height: normal;
    overflow: hidden;
}

.clients_wrap .owl-theme .owl-nav.disabled+.owl-dots,
.pet_wrap .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 50px;
}

.clients_wrap .owl-theme .owl-dots .owl-dot span,
.pet_wrap .owl-theme .owl-dots .owl-dot span {
    height: 20px;
    width: 20px;
    background: transparent;
    border: 2px solid var(--secondary-color);
    margin: 0px 0px 0px 10px;
}

.clients_wrap .owl-theme .owl-dots .owl-dot.active span,
.clients_wrap .owl-theme .owl-dots .owl-dot:hover span,
.pet_wrap .owl-theme .owl-dots .owl-dot.active span,
.pet_wrap .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--secondary-color);
}

/* pet_wrap */

/* membership_wrap */
.membership_wrap {
    background-image: url(../images/vector4.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0px;
    position: relative;
    margin: -60px 0px 0px;
    height: 1000px;
    z-index: 9;
}

.member_page {
    background-image: none;
}

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

.membership_wrap .head h2 {
    margin: 0px 0px 40px;
}

.membership_wrap .member-price {
    background: #fff;
    padding: 60px 30px 30px;
    border-radius: 50px;
    border: 2px solid #E8E8E8;
    transition: all .3s ease-in-out;
}

.membership_wrap .member-price:hover {
    border: 2px solid var(--primary-color);
}

.membership_wrap .member-price h3 {
    text-align: center;
    font-size: 30px;
    color: #000;
    line-height: 40px;
    margin: 0px 0px 20px;
}

.membership_wrap .member-price h4 {
    text-align: center;
    font-size: 50px;
    color: #000;
    line-height: 60px;
}

.membership_wrap .member-price h4 sub {
    font-size: 16px;
    color: #000;
}

.membership_wrap .member-price .line {
    height: 1px;
    width: 100%;
    background: #cdcdcd;
    margin: 30px 0px 50px;
}

.membership_wrap .member-price ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0px 0px 40px;
    height: 200px;
    overflow: auto;
}

.membership_wrap .member-price ul li {
    font-size: 20px;
    line-height: 30px;
    color: #000;
    display: flex;
    align-items: start;
    gap: 10px;
}

.membership_wrap .member-price ul li img {
    min-width: 25px;
    height: 25px;
    object-fit: cover;
}

.membership_wrap .member-price:hover .btn-box .btn-secondary {
    background-color: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
}

.membership_wrap .btn-box {
    margin: 45px 0px 0px;
}

/* membership_wrap */

/* personalize_wrap */
.personalize_wrap {
    background-image: url(../images/bg-img2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0px;
    margin: -90px 0px 0px;
    position: relative;
    overflow: hidden;
}

.personalize_wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: radial-gradient(42.55% 42.55% at 50% 42.55%, rgba(255, 255, 255, 0.4) 0%, #FFFFFF 100%);
    transform: matrix(1, 0, 0, -1, 0, 0);
}

.personalize_wrap .main-img.pad {
    padding: 0px 0px 100px;
}

/* personalize_wrap */

/* clients_wrap */
.clients_wrap {
    background-image: url(../images/vector4.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0px;
    position: relative;
    margin: -60px 0px 0px;
    height: 870px;
    z-index: 9;
}

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

.clients_wrap .head h2 {
    margin: 0px 0px 40px;
}

.clients_wrap .review_box {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
}

.clients_wrap .review_box img {
    width: 50px;
    margin: 0px 0px 20px;
}

.clients_wrap .review_box p {
    margin: 0px 0px 20px;
    height: 260px;
    overflow: auto;
}

.clients_wrap .review_box .detail {
    display: flex;
    gap: 10px;
}

.clients_wrap .review_box .detail .main-img img {
    margin: 0;
    border-radius: 50%;
    height: 65px;
    width: 65px;
}


.clients_wrap .review_box .detail .name h4 {
    font-size: 22px;
    line-height: 25px;
    color: #000;
    font-weight: 400;
}

.clients_wrap .review_box .detail .name small {
    font-size: 16px;
    font-weight: 400;
}

.clients_wrap .review_box .detail .name .icon {
    display: flex;
    align-items: center;
    gap: 3px;
    margin: 4px 0px 0px;
}

.clients_wrap .review_box .detail .name .icon i {
    color: #FCAF23;
    font-size: 16px;
}

/* clients_wrap */

/* somewhere_wrap */
.somewhere_wrap {
    background-image: url(../images/bg-img3.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0px 0px;
    overflow: hidden;
    position: relative;
    height: 911px;
}

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

/* somewhere_wrap */
/*********************** home-page css Close ***********************/

/*********************** inner-page css Start ***********************/
/* who_cr  */
.who_cr.detail .crd {
    box-shadow: 1px 1px 19px #6e6e6e36;
    padding: 20px;
    border-radius: 20px;
    transition: all 0.3s ease-in;
    text-align: center;
    margin-bottom: 33px;
    border: 2px solid #E8E8E8;
    background: #fff;
}

.who_cr.detail .crd {
    padding: 50px;
}

.who_cr.detail .crd:hover {
    border: 2px solid var(--primary-color);
}

.who_cr.detail .crd img {
    width: 100px;
    margin: 0px 0px 20px;
}

.who_cr.detail {
    padding-top: 8rem;
    position: relative;
}

.who_cr.detail h6 {
    font-size: 30px;
    padding: 13px 0;
    line-height: 40px;
}

.who_cr.detail a {
    color: #000;
    font-size: 22px;
    line-height: 33px;
}

/* who_cr  */

/* ft_form */
.form_wrap {
    padding: 100px 0px;
    position: relative;
}

.form_wrap .ft_form form input {
    width: 100%;
    border-radius: 40px;
    padding: 20px 25px;
    background: #FAFAFA;
    color: #000;
    border: 1px solid #E8E8E8;
    font-size: 18px;
}

.form_wrap .ft_form form label {
    padding: 14px 16px;
    color: #000000;
    font-size: 20px;
}

.form_wrap .ft_form form textarea {
    width: 100%;
    border-radius: 18px;
    padding: 15px 25px;
    height: 161px;
    resize: none;
    background: #FAFAFA;
    color: #000;
    border: 1px solid #E8E8E8;
    font-size: 18px;
}

.form_wrap .ft_form .btn-box {
    justify-content: start;
    margin: 30px 0px 0px;
}

.form_wrap .img_contact img {
    width: 100%;
}

/* ft_form  */
/* recent_pet_wrap */
.recent_pet_wrap {
    padding: 100px 0px;
    position: relative;
    overflow: hidden;
}

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

.recent_pet_wrap .head h2 {
    margin: 0px 0px 40px;
}

.recent_pet_wrap .video-wrapper {
    position: relative;
    max-width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin: 0px 0px 20px;
    width: 100%;
    height: 330px;
}

.recent_pet_wrap .video-thumb {
    width: 100%;
    display: block;
    cursor: pointer;
    border-radius: 20px;
    height: 100%;
    object-fit: cover;
}

.recent_pet_wrap .custom-video {
    width: 100%;
    display: none;
    border-radius: 20px;
    height: 100%;
    object-fit: cover;
}

.recent_pet_wrap .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--secondary-color);
    color: #fff;
    border: none;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    font-size: 25px;
    cursor: pointer;
    border: 0;
    transition: all 0.3s ease-in-out;
}

.recent_pet_wrap .play-btn:hover {
    background: var(--primary-color);
    color: #000;
    transform: translate(-50%, -50%) scale(1.1);
    border: 0;
}

/* recent_pet_wrap */
/*********************** inner-page css close ***********************/