@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/***** General CSS *****/

:root {
    --theme: #A89787;
    --theme1: #22324c;
}


body {
    word-break: break-word;
    font-family: 'Alga';
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}

p {
    line-height: 1.6;
    font-family: "Inter", sans-serif;
    color: #848485;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 15px;
}


/***** Font Files *****/

@font-face {
    font-family: 'Alga';
    src: url(../fonts/Alga-Medium.ttf);
    font-weight: 500;
}

@font-face {
    font-family: 'Alga';
    src: url(../fonts/Alga-Regular.ttf);
}

@font-face {
    font-family: 'Alga';
    src: url(../fonts/Alga-Semibold.ttf);
    font-weight: 600;
}

@font-face {
    font-family: 'Alga';
    src: url(../fonts/Alga-Bold.ttf);
    font-weight: bold;
}

@font-face {
    font-family: 'Alga';
    src: url(../fonts/Alga-Extralight.ttf);
    font-weight: 200;
}

@font-face {
    font-family: 'Alga';
    src: url(../fonts/Alga-Light.ttf);
    font-weight: 300;
}

/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.theme_btn {
    padding: 10px 25px !important;
    border: unset;
    border-radius: 10px;
    color: #ffffff !important;
    z-index: 1;
    background: #20314D;
    position: relative !important;
    font-size: 18px !important;
    transition: all 250ms;
    overflow: hidden;
    display: flex !important;
    align-items: center;
    gap: 12px;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 10px;
    background-color: #A89787;
    z-index: -1;
    transition: all 950ms;
}

.theme_btn:hover {
    color: #000000;
}

.theme_btn:hover::before {
    width: 100%;
}


.theme_btn1 {
    padding: 10px 25px !important;
    border: unset;
    border-radius: 10px;
    color: #ffffff !important;
    z-index: 1;
    background: #A89787;
    position: relative !important;
    font-size: 18px !important;
    transition: all 250ms;
    overflow: hidden;
    display: flex !important;
    align-items: center;
    gap: 12px;
}

.theme_btn1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 10px;
    background-color: #22324c;
    z-index: -1;
    transition: all 950ms;
}

.theme_btn1:hover {
    color: #000000;
}

.theme_btn1:hover::before {
    width: 100%;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: 'Alga';
    font-size: 55px;
    line-height: 1.2;
    color: #fff;
    font-weight: 500;
    margin: 0 0 17px;
}

h2 {
    font-family: 'Alga';
    font-size: 55px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 30px;
}

h3 {
    font-family: 'Alga';
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: 'Alga';
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'Alga';
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'Alga';
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 0;
}

.menuSec ul li:last-child a:after {
    display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #fff;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #a79788;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 45px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 12px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 231px;
    top: 15px;
    width: 270px;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}


/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}


/*banner css start */



/*header css start*/

.menuSec ul li a.logoo {
    padding: 0 80px;
}

header {
    padding: 20px 0;
    background: transparent;
    position: absolute;
    width: 100%;
    z-index: 999;
}

.menuSec ul li a.theme_btn {
    background: transparent;
    border: 1px solid #fff;
    padding: 9px 25px !important;
}

.banner_main {
    background: url(../images/banner.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 110vh;
    display: flex;
    align-items: center;
}

.banner_main .banner_txt {
    text-align: center;
    margin-top: 80px;
}

.banner_main .banner_txt h1 {
    font-size: 65px;
    font-weight: 500;
    line-height: 1.2;
    width: 70%;
    margin: 0 auto;
    margin-bottom: 20px;
}

.banner_main .banner_txt p {
    width: 80%;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

.banner_main .banner_txt .form_bg {
    background: #606D849E;
    border-radius: 20px;
    padding: 30px 40px;
    width: 80%;
    margin: 0 auto;
    margin-top: 20px;
}

.banner_main .banner_txt .form_bg .grp {
    display: flex;
    justify-content: space-between;
    margin: 0 0 10px 0;
    gap: 10px;
}

.banner_main .banner_txt .form_bg .grp input {
    padding: 10px;
    width: 28%;
    height: 50px;
    background: #FFFFFF17;
    border: 1px solid #D9D9D9;
    border-radius: 10px;
    color: #D9D9D9;
}

.banner_main .banner_txt .form_bg .grp textarea {
    padding: 10px;
    width: 100%;
    height: 60px;
    background: #FFFFFF17;
    border: 1px solid #D9D9D9;
    border-radius: 10px;
    resize: none;
    color: #D9D9D9;
}

.mini {
    font-size: 24px;
    color: #fff;
    font-weight: 500;
}

.para {
    font-size: 18px;
    font-weight: 400;
    color: #ffff;
    line-height: 32.4px;
}

/* hammad css start */

.banner_main .banner_txt .form_bg .grp input::placeholder {
    color: #D9D9D9;
}

.banner_main .banner_txt .form_bg .grp textarea::placeholder {
    color: #D9D9D9;
}

.banner_main .banner_txt .form_bg .grp:last-child {
    margin: 0;
}

.banner_main .banner_txt .form_bg .grp input:focus {
    border-color: #a89787;
}

.banner_main .banner_txt .form_bg .grp textarea:focus {
    border-color: #a89787;
}

.banner_main {
    position: relative;
}

.banner_main>span {
    position: absolute;
    width: 28px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 20px;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    cursor: pointer;
    overflow: hidden;
}

.banner_main>span:after {
    position: absolute;
    content: "";
    background: #fff;
    width: 5px;
    height: 10px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    animation: ani 1s linear infinite;
}

@keyframes ani {
    0% {
        transform: translate(-50%, -300%);
    }

    100% {
        transform: translate(-50%, 300%);
    }
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

/* video sec start */

.video_sec>.video_sec_box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video_sec>.video_sec_box>video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.video_sec>.video_sec_box>a.play-btn {
    position: absolute;
}

.video_sec>.video_sec_box>a.play-btn>i {
    color: #000;
    font-size: 25px;
    background: #fff;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 15px 1px #0000002b;
    transition: 0.3s ease-in-out;
    animation: shadow-pulse 1.5s infinite;
}

@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0px #22324c5c;
    }

    100% {
        box-shadow: 0 0 7px 25px #22324c00;
    }
}

.video_sec>.video_sec_box>a.play-btn>i:hover {
    background: var(--theme1);
    color: #fff;
}

.video_sec .counter_box {
    margin-top: 40px;
    text-align: center;
    margin-bottom: 40px;
}

.video_sec .counter_box>h3 {
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--theme1);
}

.video_sec .counter_box>p {
    font-size: 18px;
    color: #848484;
    margin: 0;
    font-family: 'Inter';
    font-weight: 400;
}

/* fold one start */

.all-sec {
    padding: 90px 0px;
}

.fold_one {
    background: #F8F8F8;
}

.fold_one .row {
    align-items: center;
}

.theme_heading>span {
    font-size: 30px;
    color: var(--theme);
    font-weight: 500;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
}

.theme_heading>h2 {
    font-size: 60px;
    color: var(--theme1);
    font-weight: 600;
}

.theme_heading>ul {
    display: flex;
    margin-bottom: 0;
    margin-top: 20px;
    gap: 20px;
    align-items: center;
}

.btn1 {
    font-size: 20px;
    color: #fff;
    display: block;
    background: var(--theme);
    padding: 10px 30px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    padding-right: 60px;
    transition: 0.3s ease-in-out;
    z-index: 1;
}

.btn1>i {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 25px;
    transition: 0.3s ease-in-out;
    font-weight: 300;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.btn1:after {
    background: linear-gradient(0deg, rgba(168, 151, 135, 1) 0%, rgba(32, 49, 77, 1) 100%);
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: 0.3s ease-in-out;
}

.btn1:hover:after {
    height: 100%;
}

.btn1:hover {
    color: #fff;
    border-radius: 30px;
}

.btn1:hover>i {
    transform: translate(20px, -50%);
    background: #fff;
    color: var(--theme);
    box-shadow: inset 0 0 11px 1px #a89787;
}

.btn2 {
    font-size: 20px;
    color: #fff;
    display: block;
    background: var(--theme1);
    padding: 10px 30px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    z-index: 1;
}

.btn2>i {
    margin-right: 7px;
    animation: tada 1.5s ease infinite;
}

.btn2:after {
    background: linear-gradient(0deg, rgba(168, 151, 135, 1) 0%, rgba(32, 49, 77, 1) 100%);
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    top: 0;
    z-index: -1;
    transition: 0.3s ease-in-out;
}

.btn2:hover:after {
    height: 100%;
}

.btn2:hover {
    color: #fff;
    border-radius: 30px;
}

@keyframes tada {

    0% {
        transform: scale(1);
    }

    10%,
    20% {
        transform: scale(0.9) rotate(-3deg);
    }

    30%,
    50%,
    70%,
    90% {
        transform: scale(1.1) rotate(3deg);
    }

    40%,
    60%,
    80% {
        transform: scale(1.1) rotate(-3deg);
    }

    100% {
        transform: scale(1) rotate(0);
    }

}

/* fold two start */

.fold_two {
    background: var(--theme);
    overflow: hidden;
}

.fold_two .theme_heading>span {
    color: #fff;
}

.fold_two .theme_heading>h2 {
    color: #fff;
    margin-bottom: 15px;
}

.fold_two .theme_heading>p {
    color: #fff;
}

.fold_two .theme_heading {
    margin-bottom: 70px;
}

.fold_two .serv_box {
    position: relative;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fold_two .serv_box>h3 {
    color: #fff;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 15px;
}

.fold_two .serv_box>p {
    color: #fff;
    font-weight: 400;
    font-size: 15px;
}

.fold_two .serv_box>a>i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #B7A696;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s ease-in-out;
}

.fold_two .serv_box:hover>a>i {
    background: #fff;
    color: var(--theme);
    transform: rotate(-35deg);
}

.fold_two .row>.col-lg-3 {
    padding: 0;
}

.fold_two .serv_box>span {
    position: absolute;
    width: 100%;
    height: 100%;
}

.fold_two .serv_box>span:nth-child(1):after {
    position: absolute;
    content: "";
    background: #BCA793;
    width: 260%;
    height: 1px;
    left: -90%;
    top: -20px;
}

.fold_two .serv_box>span:nth-child(1):before {
    position: absolute;
    content: "";
    background: #BCA793;
    width: 260%;
    height: 1px;
    left: -90%;
    bottom: 0;
}

.fold_two .serv_box>span:nth-child(2):before {
    position: absolute;
    content: "";
    background: #BCA793;
    height: 140%;
    width: 1px;
    left: -30px;
    top: -70px;
}

.fold_two .row>.col-lg-3:last-child .serv_box>span:nth-child(2):after {
    position: absolute;
    content: "";
    background: #BCA793;
    height: 140%;
    width: 1px;
    right: 20px;
    top: -70px;
}

.fold_two .serv_box:after {
    position: absolute;
    content: "";
    width: 0;
    background: #fff;
    height: 4px;
    left: 0;
    top: 0px;
    z-index: 1;
    transition: 0.3s ease-in-out;
    margin: 0 auto;
    right: 0;
    transform: translate(-10px, 0px);
}

.fold_two .serv_box:hover:after {
    width: 100%;
}

.fold_two .row>.col-lg-3:last-child>.serv_box:hover:after {
    width: 103%;
}

/* fold three start */

.fold_three {
    background: #F8F8F8;
}

.fold_three .whychose_box {
    padding: 25px;
    background: #fff;
    border-radius: 20px;
    height: 100%;
    margin-top: 40px;
    max-height: -webkit-fill-available;
    transition: 0.3s ease-in-out;
}

.fold_three .whychose_box>img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
    margin-bottom: 10px;
}

.fold_three .whychose_box>h3 {
    color: var(--theme1);
    line-height: 1.2;
    margin-bottom: 15px;
    font-size: 35px;
}

.fold_three .whychose_box>p {
    margin: 0;
}

.fold_three .whychose_box:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.fold_three .row>ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 0;
}

.btn3 {
    font-size: 20px;
    color: #fff;
    display: block;
    background: var(--theme);
    padding: 10px 30px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    z-index: 1;
}

.btn3>i {
    margin-right: 7px;
    animation: tada 1.5s ease infinite;
}

.btn3:hover {
    color: #fff;
    border-radius: 30px;
}

.btn3:after {
    background: linear-gradient(0deg, rgba(168, 151, 135, 1) 0%, rgba(32, 49, 77, 1) 100%);
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: 0.3s ease-in-out;
}

.btn3:hover:after {
    height: 100%;
}

.fold_five {
    position: relative;
    padding: 100px 0px;
    z-index: 1;
}

.fold_five>img {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    object-fit: cover;
    object-position: left;
    z-index: -1;
}

.theme_heading>ul.listingg {
    flex-direction: column;
    align-items: baseline;
    gap: 10px;
    margin: 20px 0px 30px;
}

.theme_heading>h3 {
    margin-bottom: 0;
    color: var(--theme);
    font-size: 40px;
}

.theme_heading>ul.listingg>li {
    position: relative;
    padding-left: 20px;
}

.theme_heading>ul.listingg>li:after {
    position: absolute;
    content: "";
    background: var(--theme);
    width: 7px;
    height: 7px;
    left: 0;
    top: 7px;
    border-radius: 50%;
}

/* fold six */

.fold_six {
    background: var(--theme1);
}

.fold_six .theme_heading>h2 {
    color: #fff;
}

.fold_six .theme_heading {
    margin-bottom: 40px;
}

.fold_six .fold_six_video_wrp>video {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
}

.fold_six .fold_six_video_wrp {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fold_six .fold_six_video_wrp>a.play-btn {
    position: absolute;
    background: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--theme);
    font-size: 20px;
    animation: shadow-pulse1 1.5s infinite;
}

@keyframes shadow-pulse1 {
    0% {
        box-shadow: 0 0 0 0px #A89787;
    }

    100% {
        box-shadow: 0 0 7px 25px #a8978700;
    }
}

.cust_accordions .accordion-item {
    background: transparent;
    border: 0;
    padding: 0;
}

.cust_accordions .accordion-button {
    background: transparent;
    font-size: 40px;
    color: #fff;
    padding: 20px 0px;
    border-top: 1px solid #4E6488;
}

.cust_accordions .accordion-button:focus {
    box-shadow: none;
}

.cust_accordions .accordion-button:not(.collapsed) {
    box-shadow: none;
}

.cust_accordions .accordion-body {
    padding: 0;
}

.cust_accordions .accordion-body>p {
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cust_accordions .accordion-button::after {
    filter: brightness(0) invert(1);
}

.cust_accordions .accordion-item:first-child .accordion-button {
    border: 0;
}

.fold_six .row>ul {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 0;
}

.fold_six .btn2 {
    border: 1px solid;
    height: 48px;
}

.fold_seven .portfolio_slider>.slick-list {
    padding: 30px 0px;
}

.fold_seven .slick-slide {
    margin: 0px 15px;
    opacity: 1;
}

.fold_seven .slick-slide>img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top;
    box-shadow: rgb(79 79 79 / 66%) 0px 7px 29px 0px;
}

.portfolio_slider_two>.slick-list {
    padding: 30px 0px;
}

/* cta start */

.cta_sec {
    position: relative;
    padding: 50px 0px;
}

.cta_sec:after {
    position: absolute;
    content: "";
    width: 80%;
    height: 65%;
    z-index: -1;
    background: var(--theme);
    top: 110px;
    right: 0;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.cta_sec .cta_box img {
    width: 100%;
}

.cta_sec .cta_box .row {
    align-items: center;
}

.cta_sec .cta_box span {
    color: #fff;
    font-size: 25px;
}

.cta_sec .cta_box h2 {
    color: #fff;
    font-size: 70px;
    line-height: 1.1;
    margin-bottom: 10px;
}

.cta_sec .cta_box p {
    font-size: 14px;
    color: #fff;
}

.cta_sec .cta_box ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.cta_sec .btn1 {
    background: var(--theme1);
}

.cta_sec .btn3 {
    border: 1px solid;
    height: 48px;
}

/* fold eight start */

.fold_eight .slick-prev:before {
    display: none;
}

.fold_eight .slick-next:before {
    display: none;
}

.fold_eight .slick-slide {
    margin: 0;
}

.fold_eight .testi_box>h3 {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-family: 'Inter';
    font-weight: 500;
}

.fold_eight .testi_box>span {
    display: flex;
    align-items: baseline;
    flex-direction: column;
    font-size: 26px;
    font-family: 'Inter';
    color: var(--theme1);
    font-weight: 500;
    line-height: 1.2;
}

.fold_eight .testi_box>span>small {
    font-size: 16px;
    color: #848484;
}

.fold_eight .slide_counter {
    text-align: end;
}

.fold_eight .slide_counter>h2 {
    font-size: 20px;
    font-family: 'Inter';
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: end;
    color: #C6C6C6;
    font-weight: 300;
}

.fold_eight .slide_counter>h2>span.start_number {
    color: var(--theme);
}

.fold_eight ul.slider_btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    margin-top: 40px;
}

.fold_eight ul.slider_btns>li {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    cursor: pointer;
}

.fold_eight ul.slider_btns>li>i {
    color: var(--theme2);
    font-size: 20px;
}

.fold_eight ul.slider_btns>li>span {
    font-size: 16px;
    font-family: 'Inter';
    color: #848484;
}

.fold_eight ul.slider_btns>li:after {
    position: absolute;
    content: "";
    background: var(--theme);
    width: 0;
    height: 3px;
    left: 0;
    bottom: -7px;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
    margin: 0 auto;
    right: 0;
}

.fold_eight ul.slider_btns>li:hover:after {
    width: 100%;
}

/* fold nine */

.fold_nine {
    position: relative;
}

.fold_nine>img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    object-position: bottom;
}

.fold_nine .cust_accordions .accordion-button {
    color: #000;
    font-size: 25px;
}

.fold_nine .cust_accordions .accordion-body>p {
    color: #000;
    font-size: 15px;
}

.fold_nine .cust_accordions .accordion-button::after {
    filter: invert(1) brightness(0);
}




/*bottom form*/

.btm_form {
    background: url(../images/contact-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: -25px;
}

.btm_form .theme_heading {}

.btm_form .theme_heading h2 {
    color: #fff;
}

.btm_form .theme_heading p {}

.btm_form .form_wrp {}

.btm_form .form_wrp .grp {
    margin: 0 0 15px 0;
}

.btm_form .form_wrp .grp input {
    background: transparent;
    border: 1px solid #4E6488;
    padding: 10px 20px;
    width: 90%;
    border-radius: 5px;
    height: 60px;
    color: #fff;
}

.btm_form .form_wrp .grp textarea {
    background: transparent;
    border: 1px solid #4E6488;
    padding: 10px 20px;
    width: 90%;
    border-radius: 5px;
    height: 120px;
    resize: none;
    color: #fff;
}

.btm_form .form_wrp .grp button {
    border: 0;
}

.btm_form .form_wrp .grp input::placeholder {
    color: #fff;
}

.btm_form .form_wrp .grp textarea::placeholder {
    color: #fff;
}


.btm_form .contact_wrp {
    border: 1px solid #506C9A;
    background: #32456666;
    border-radius: 15px;
    padding: 50px 50px;
    margin: 0 85px 0 20px;
}

.btm_form .contact_wrp h3 {
    font-size: 45px;
    color: #fff;
    margin: 0 0 15px 0;
}

.btm_form .contact_wrp p {
    color: #fff;
}

.btm_form .contact_wrp ul {
    margin: 0;
}

.btm_form .contact_wrp ul li {
    border-bottom: 1px solid #4E6488;
    padding: 24px 0;
}

.btm_form .contact_wrp ul li a {
    color: #fff;
    display: flex;
    gap: 30px;
}

.btm_form .contact_wrp ul li a .icon {}

.btm_form .contact_wrp ul li a .icon i {
    font-size: 25px;
    vertical-align: bottom;
}

.btm_form .contact_wrp ul li a .detail {}

.btm_form .contact_wrp ul li a .detail span {
    font-size: 16px;
    vertical-align: top;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.btm_form .contact_wrp ul li a .detail h6 {
    margin: 10px 0 0 0;
    color: #fff;
    font-size: 24px;
}

.btm_form .contact_wrp .smm_links {
    padding: 40px 0 0 0;
    display: flex;
    gap: 30px;
}

.btm_form .contact_wrp .smm_links a {
    color: #fff;
    font-size: 30px;
}

.btm_form .contact_wrp .smm_links a i {
    transition: 0.3s ease-in-out;
}





/*gallery css*/


.gallery_sec .slick-slide {
    opacity: 1;
}

.gallery_sec .slick-slide {
    margin: 0px 5px;
}

.gallery_sec .slick-slide img {
    width: 100%;
    height: 200px;
}

.gallery_sec ul {
    margin: 0 0 10px 0;
}




/*footer*/


footer {
    padding: 60px 0 20px 0;
    background: #EAE6E2;
}

footer .f_logo {
    text-align: center;
    margin: 0 0 60px 0;
}

footer .f_logo img {}

footer .f_txt {}

footer .f_txt h6 {
    font-size: 40px;
    color: #20314D;
}

footer .f_txt p {
    color: #626262;
    font-size: 18px;
    padding: 0 40px 0 0;
}

footer .f_txt img {
    width: 55%;
}

footer .f_txt ul li {
    padding: 0 0 10px 0;
}

footer .f_txt ul li a {
    color: #626262;
    font-size: 18px;
    transition: 0.3s ease-in-out;
    position: relative;
}

footer .last_rw {
    display: flex;
    gap: 20px;
}

footer .last_rw p {
    margin: 0;
}

footer .last_rw a {
    color: #626262;
    font-size: 18px;
}

footer .last_rw span {}



.br {
    height: 1px;
    padding: 20px 0 10px 0;
    margin: 50px 0 0 0;
    border-top: 1px solid #A89787;
}







.menuSec ul li a i {
    vertical-align: middle;
    padding: 0 0 0 5px;
    font-size: 14px;
}


/*service pages*/

.banner_main.service_pg {
    background: #20314D;
    height: 75vh;
    z-index: 1;
    margin: 0 0 80px 0;
}


.banner_main.service_pg .banner_txt {
    margin-top: 270px;
}

.banner_main.service_pg .banner_txt .form_bg {
    background: #606D84;
}

.banner_main.service_pg .banner_txt h1 {
    width: 100%;
}


.benefits_Sec {
    background: #A89787;
}

.benefits_Sec .theme_heading {
    margin: 0 0 60px 0;
    padding: 0 250px;
}

.benefits_Sec .theme_heading span {
    color: #fff;
}

.benefits_Sec .theme_heading h2 {
    color: #fff;
}

.benefits_Sec .theme_heading p {
    color: #fff;
}

.benefits_Sec .ben_bx {
    background-color: #B0A091;
    padding: 30px;
    border-radius: 15px;
    position: relative;
    z-index: 2 !IMPORTANT;
}

.benefits_Sec .ben_bx img {
    width: 20%;
    margin: 0 0 20px 0;
    height: 65px;
}

.benefits_Sec .ben_bx h6 {
    color: #fff;
    font-size: 34px;
}

.benefits_Sec .ben_bx p {
    margin: 0;
    color: #fff;
}

/* hammad css start */

.menuSec ul li a:before {
    position: absolute;
    content: "";
    background: var(--theme);
    width: 0;
    height: 2px;
    left: 0;
    bottom: 9px;
    transition: 0.3s ease-in-out;
    right: 0;
    margin: 0 auto;
}

.menuSec ul li a:hover:before {
    width: 100%;
}

header .btn3 {
    font-size: 17px;
    padding: 0;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .btn2 {
    font-size: 17px;
    padding: 0;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    background: transparent;
}

.menuSec ul li a.logoo:before {
    display: none;
}

.menuSec ul li:hover>a>i {
    transform: rotate(180deg);
}

.menuSec ul li>a>i {
    padding: 0;
    margin-left: 5px;
    transition: 0.3s ease-in-out;
}

.menuSec ul li>a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.banner_main .banner_txt .form_bg .grp button {
    border: 0;
    width: 180px;
}

section.gallery_sec {
    margin-top: 10px;
}

.menuSec ul li>ul>li:hover>a>i {
    transform: rotate(270deg);
}

.benefits_Sec .ben_bx:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(168, 151, 135, 1) 0%, rgb(110 99 88) 100%);
    bottom: 0;
    left: 0;
    border-radius: 15px;
    transition: 0.3s ease-in-out;
    z-index: -2;
    transform: scale(1);
}

.benefits_Sec .ben_bx:hover:after {
    height: 100%;
}

.benefits_Sec .ben_bx:before {
    position: absolute;
    content: "";
    background: #B0A091;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    border-radius: 15px;
}

.benefits_Sec .ben_bx:hover:after {
    transform: scale(1.02);
}

.fba_packages_sec {
    text-align: center;
    padding: 70px 0 20px;
}

.fba_packages_sec h2 {
    color: #20314D;
    font-size: 80px;
    margin-bottom: 20px;
}

.fba_packages_sec span {
    display: block;
    font-size: 30px;
    color: #20314D;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 10px;
}

.fba_packages_sec p {
    margin-bottom: 30px;
}

.blog_sec .blog_bx {
    text-align: center;
    padding: 10px;
}

.blog_sec .blog_bx h6 {
    margin: 30px 0 20px 0;
    font-size: 30px;
}


html {
    overflow-x: hidden;
}

.privacy_policy ul li {
    line-height: 1.6;
    font-family: "Inter", sans-serif;
    color: #848485;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 15px;
}


.privacy_policy a {
    color: #000;
}

.btm_form .form_wrp .grp input:focus {
    border-color: var(--theme);
}

.btm_form .form_wrp .grp textarea:focus {
    border-color: var(--theme);
}

.btm_form .contact_wrp .smm_links a:hover>i.fa-brands.fa-square-facebook {
    color: rgb(63, 81, 181);
}

.btm_form .contact_wrp .smm_links a:hover>i.fa-brands.fa-linkedin {
    color: rgb(2, 136, 209);
}

.btm_form .contact_wrp .smm_links a:hover>i.fa-brands.fa-square-instagram {
    background: radial-gradient(circle at 30% 107%, rgb(253, 244, 151) 0%, rgb(253, 244, 151) 5%, rgb(253, 89, 73) 45%, rgb(214, 36, 159) 60%, rgb(40, 90, 235) 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btm_form .contact_wrp .smm_links a:hover>i.fa-sharp.fa-solid.fa-star-sharp {
    color: #23ab79;
}

footer .f_txt ul li a:after {
    position: absolute;
    content: "";
    background: var(--theme1);
    width: 0;
    height: 2px;
    left: 0;
    bottom: -4px;
    right: 0;
    margin: 0 auto;
    transition: 0.3s ease-in-out;
}

footer .f_txt ul li a:hover:after {
    width: 100%;
}

footer .f_txt ul li a:hover {
    color: var(--theme);
}

.testi_pg img {
    width: 90%;
    margin: 0 auto 100px;
    display: block;
    height: 400px;
    object-fit: contain;
}

/*  */
.book-mock {
    display: inline-block;
    width: 35%;
    background: #fff;
}

.book-des {
    display: inline-block;
    width: 60%;
}

.book-mock img {
    max-width: 80%;
}

.parent-bk-moc {
    padding: 20px;
    transition: 0.4s ease-in;
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    display: flex;
    margin: 10px 0;
}
.think.blog-content img {
    width: 100%;
    padding: 20px 0;
    border-radius: 0;
}

.parent-bk-moc p {
    color: #848484;
    font-weight: 500;
    font-family: 'Alga';
}
.parent-bk-moc .theme_heading>span {font-size: 22px;text-transform: capitalize;}
.parent-bk-moc .book-des .theme_heading {
    height: 200px;
}
/*  */