@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #000000;
    white-space: initial;
    font-family: 'HelveticaNeue-BlackCond';
}

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 {
    font-weight: 500;
    line-height: 25px;
    font-family: 'montserrat.semibold';
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'HelveticaNeue-BlackCond';
    src: url(../fonts/HelveticaNeue-BlackCond.ttf);
    font-weight: 400;
    font-style: normal
}
@font-face {
    font-family: 'montserrat.semibold';
    src: url(../fonts/montserrat.semibold.ttf);
    font-weight: 400;
    font-style: normal
}
@font-face {
    font-family: 'montserrat-regular';
    src: url(../fonts/montserrat-regular\ .ttf);
    font-weight: 400;
    font-style: normal
}
@font-face {
    font-family: 'HelveticaNeue-CondensedBold';
    src: url(../fonts/HelveticaNeue-CondensedBold.ttf);
    font-weight: 400;
    font-style: normal
}
/***** 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: 15px 25px;
    border: unset;
    border-radius: 15px;
    color: #ffffff;
    z-index: 1;
    background: #242889;
    position: relative;
    font-size: 17px;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
    overflow: hidden;
    display: inline-block;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 14px;
    background-color: #000000;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms
}

.theme_btn:hover {
    color: #000000;
}

.theme_btn: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: 'HelveticaNeue-CondensedBold';
    font-size: 60px;
    line-height: 80px;
    color: #08224b;
    font-weight: 700;
    margin: 0;
}

h2 {
    font-family: 'HelveticaNeue-BlackCond';
    font-size: 55px;
    line-height: 1.2;
    color: #000000;
    font-weight: 500;
    margin: 0 0 30px;
}

h3 {
    font-family: 'HelveticaNeue-BlackCond';
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: 'HelveticaNeue-BlackCond';
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'HelveticaNeue-BlackCond';
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'HelveticaNeue-BlackCond';
    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: 15px 78px;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    display: flex;
    justify-content: end;
    gap: 49px;
    align-items: center;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}
.header-tels a {
    display: flex;
    justify-content: end;
    text-align: start;
    align-items: center;
    font-size: 21px;
    margin-top: -63px;
    color: #112449;
}
.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #0d234a;
    /* padding: 10px 23px; */
    font-size: 15px;
    display: flex;
    align-items: center;
    font-weight: 300;
    /* margin-top: -58px; */
    font-family: 'HelveticaNeue-BlackCond';
}

.menuSec ul li a:after {
    /* content: ''; */
    /* position: absolute; */
    top: 35%;
    right: 0;
    width: 1px;
    /* height: 13px; */
    /* background-color: #393939; */
}

.menuSec ul li:last-child a {
    padding-right: 0px;
}

.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: #112449;
    border-bottom: 1px solid #bb0030;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 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: 230px;
    top: 0px;
    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 */



.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px!important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}

header {
    position: absolute;
    width: 100%;
    z-index: 99;
}
.main_slider{
    background-image: url(../images/banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 236px 70px;
    height: 728px;
    position: relative;
    z-index: 1;
}
section.main_slider::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    z-index: -1;
    left: 0;
    top: 0;
    background: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.59) 33%, rgba(255, 255, 255, 0) 100%);
}
.banner_text h4 {
    font-size: 24px;
    color: #03214c;
    position: relative;
    z-index: 1;
    padding-left: 25px;
    width: 71%;
}

.banner_text h4::before {
    position: absolute;
    width: 23px;
    height: 3px;
    left: 0;
    top: 13px;
    background: #f1550a;
    z-index: 99;
    content: '';
}

.banner_text h4:after {
    position: absolute;
    width: 23px;
    height: 3px;
    right: 0;
    top: 13px;
    background: #f1550a;
    z-index: 99;
    content: '';
}
.banner_text h1 span {
    color: #b07724;
}
.banner_text h2 {
    font-size: 30px;
    color: #12183b;
    margin: 0;
    font-family: 'HelveticaNeue-CondensedBold';
    padding: 11px 0;
}

.banner_text p {
    font-size: 21px;
    width: 60%;
    color: #0d234a;
    font-weight: 600;
    line-height: 29px;
}

.banner_text ul {
    display: flex;
    align-items: center;
    gap: 16px;
}
a.banner-btn.headbtn {
    /* margin-top: -74px; */
}
a.banner-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 13px;
    width: 270px;
    height: 60px;
    background: #b47d25;
    color: #fff;
    border-radius: 7px;
    font-size: 21px;
    font-weight: lighter;
    text-transform: uppercase;
}

a.bbanner-tel {
    display: flex;
    align-items: center;
    gap: 13px;
    justify-content: center;
    width: 260px;
    height: 60px;
    border: 2px solid #0d234a;
    font-size: 19px;
    border-radius: 8px;
    color: #0d234a;
}
/*banner css end*/

.navigation {
    padding: 27px 60px;
    background: #0d234a;
    display: flex;
    gap: 18px;
}
.navigation-box {
    display: flex;
    gap: 37px;
    justify-content: center;
    align-items: center;
}
.navigation-img img {
    height: 60px;
    width: auto;
    object-fit: cover;
    filter: brightness(0) saturate(100%) invert(44%) sepia(66%) saturate(514%) hue-rotate(356deg) brightness(97%) contrast(89%);
}

.navigation-img p {
    margin: 0;
    color: #fff;
    width: 69%;
}
.navigation-img {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navigation-img h4 {
    font-size: 19px;
    margin: 0;
    color: #fff;
    font-weight: 600;
    font-family: montserrat-regular;
}

.services_sec {
    padding: 37px 59px;
}

.services_sec .row {
    display: flex;
    justify-content: center;
}

.servi-cont {
    text-align: center;
}

.servi-cont h4 {font-family: HelveticaNeue-CondensedBold;color: #ce0f2d;margin: 0;}

.servi-cont h2 {
    color: #112449;
    font-family: 'montserrat.semibold';
    font-size: 41px;
}
.servi {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    text-align: center;
}

.servi-box {
    /* border: 1px solid #08224b; */
    padding: 22px 23px;
    height: 273px;
    width: 361px;
    border-radius: 10px;
}

.servi-box h5 {
    font-family: 'HelveticaNeue-CondensedBold';
    padding-top: 25px;
    margin: 0;
    padding-bottom: 7px;
    color: #08224b;
    font-size: 16px;
    font-weight: 600;
}

.servi-box p {
    font-family: 'montserrat-regular';
    font-weight: 600;
    color: #08224b;
}
.contact-hm {
    padding: 75px 57px;
    margin: 32px;
    border-radius: 22px;
    background-image: url(../images/map-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}
.contact-hm::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #112449f7;
    z-index: -1;
    border-radius: 25px;
}
.contact-hm-text h3 span {
    color: #fff;
}
.contact-hm-text h3 {
    font-family: 'HelveticaNeue-CondensedBold';
    color: #b07724;
    position: relative;
    z-index: 1;
}
.contact-hm-text h3 img {position: absolute;right: -15px;height: auto;width: 69%;top: -19px;}
.contact-hm-text ul li {
    color: #fff;
    font-size: 19px;
    margin-bottom: 25px;
    font-family: 'montserrat-regular';
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-hm-text ul li i {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25px;
    width: 25px;
    background: #b07724;
    font-size: 13px;
    border-radius: 50px;
}

.contact-hm-form {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
}
.contact-hm-form input::placeholder ,.contact-hm-form textarea::placeholder {
    color: #313856;
    font-size: 16px;
    font-weight: 600;
}
.contact-hm-form input {
    width: 100%;
    height: 50px;
    margin-bottom: 14px;
    padding: 11px;
    border-radius: 10px;
    border: 1px solid #7c7c7c4f;
}

.contact-hm-form textarea {
    width: 100%;
    height: 180px;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid #7c7c7c45;
}

.contact-hm-form button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    background: #b07724;
    border: 0;
    color: #fff;
    font-family: 'HelveticaNeue-BlackCond';
    font-size: 27px;
    border-radius: 10px;
    gap: 10px;
}
/* how-it-work-sec */

.how-it-work-sec {
    padding: 100px 0px 0px;
}

.how-it-work-sec .section-heading h5 {
    font-size: 47px;
    font-weight: 600;
    position: relative;
    width: fit-content;
    margin: 0px auto 15px;
    font-family: 'HelveticaNeue-CondensedBold';
    text-transform: uppercase;
    color: #0b1035;
}

.how-it-work-sec .section-heading h5::before {
    top: 0;
    bottom: 0;
    left: 110%;
    width: 30%;
    content: '';
    height: 2px;
    margin: auto;
    position: absolute;
    background-color: #b07724;
}

.how-it-work-sec .section-heading h5::after {
    top: 0;
    bottom: 0;
    right: 110%;
    width: 30%;
    content: '';
    height: 2px;
    margin: auto;
    position: absolute;
    background-color: #b07724;
}

.how-it-work-boxes ul {
    display: flex;
    align-items: flex-start;
    gap: 128px;
    justify-content: center;
}

.how-it-work-boxes ul li {
    max-width: 169px;
    position: relative;
    text-align: center;
}

.how-it-work-boxes ul li::before {
    top: 15px;
    left: 0;
    z-index: -1;
    width: 100%;
    content: '';
    height: 125px;
    border-radius: 5px;
    position: absolute;
    border: 1px solid #eff0f3;
}

.how-it-work-boxes ul li::after {
    top: 60px;
    right: -54%;
    font-size: 30px;
    content: '\f061';
    position: absolute;
    color: #040524;
    font-family: 'FontAwesome';
}

.how-it-work-boxes ul li:last-child:after {
    display: none;
}

.how-it-work-boxes ul li span {
    width: 30px;
    height: 30px;
    display: flex;
    border-radius: 50%;
    color: #ffff;
    align-items: center;
    margin: 0px auto 15px;
    justify-content: center;
    background-color: #b07724;
}

.how-it-work-boxes ul li img {
    width: 100%;
    height: 50px;
    object-fit: contain;
}

.how-it-work-boxes ul li h5 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    text-align: center;
    color: #14142c;
    text-transform: uppercase;
    font-family: 'montserrat.semibold';
}

.how-it-work-boxes ul li p {
    font-size: 15px;
    color: #222a47;
    margin: 0;
    font-family: 'montserrat-regular';
    font-weight: 600;
}


/* how-it-work-sec */

/* review-sec */

.review-sec {
    padding: 100px 0px;
}

.review-box {
    padding: 35px;
    margin: 10px 0px;
    border-radius: 5px;
    background-color: #fcfcfc;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
}

.review-box ul {
    gap: 3px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    justify-content: center;
}

.review-box ul li i {
    color: #b07724;
}

.reviewSlider .slick-slide {
    opacity: 1;
    margin: 0px 10px;
}

.review-box-text {
    height: 100px;
    padding: 0px 10px;
    margin-bottom: 10px;
}

.review-box-text p {
    text-align: center;
    line-height: 30px;
    color: #061744;
}

.review-box-text::-webkit-scrollbar {
    width: 4px;
    background-color: #fff;
}

.review-box-text::-webkit-scrollbar-thumb {
    background-color: var(--themeColor2);
    outline: 1px solid var(--themeColor2);
    border-radius: 100px;
}

.review-box-text::-webkit-scrollbar-track {
    box-shadow: inset 0 0 10px rgb(0 0 0 / 55%);
}

.review-box h5 {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    font-family: 'HelveticaNeue-BlackCond';
    margin-top: 33px;
    margin-bottom: 0;
    color: #0b1541;
}

.review-box h5 span {
    display: block;
    margin-top: 2px;
    font-weight: 400;
}

.reviewSlider .slick-prev,
.reviewSlider .slick-next {
    z-index: 1;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #eceef1;
    background-color: var(--white);
}

.reviewSlider .slick-prev {
    left: -60px;
}

.reviewSlider .slick-next {
    right: -60px;
}

.reviewSlider .slick-prev::before {
    content: '\f053';
    font-size: 16px;
    font-family: 'FontAwesome';
}

.reviewSlider .slick-next::before {
    font-size: 16px;
    content: '\f054';
    font-family: 'FontAwesome';
}
.review-sec .section-heading h5 {
    font-size: 46px;
    font-weight: 600;
    position: relative;
    width: fit-content;
    margin: 0px auto 15px;
    color: #0c1134;
    text-transform: uppercase;
    font-family: 'HelveticaNeue-CondensedBold';
}

.review-sec .section-heading h5::after {
    top: 0;
    bottom: 0;
    right: 110%;
    width: 70%;
    content: '';
    height: 1px;
    margin: auto;
    position: absolute;
    background-color: #b40033;
}

.review-sec .section-heading h5::before {
    top: 0;
    bottom: 0;
    left: 110%;
    width: 70%;
    content: '';
    height: 1px;
    margin: auto;
    position: absolute;
    background-color: #b40033;
}

/* review-sec */
.testimonals {
    padding: 0 69px 100px;
}

.testi-cont {
    text-align: center;
}

.testi-cont h2 {
    font-size: 40px;
    font-family: 'montserrat.semibold';
    color: #08224b;
    position: relative;
    z-index: 1;
    width: 47%;
    margin: 0 auto 50px;
}

.testi-cont h2:before {
    position: absolute;
    content: '';
    width: 40px;
    height: 3px;
    background: #e94f1e;
    left: 0;
    top: 23px;
}
.testi-cont h2:after {
    position: absolute;
    content: '';
    width: 40px;
    height: 3px;
    background: #e94f1e;
    right: 0;
    top: 23px;
}
.testi-boxes {
    padding: 25px;
    border: 1px solid #08224b;
    border-radius: 20px;
    height: 270px;
}

.star {
    text-align: center;
    padding-bottom: 14px;
}

.star i {
    color: #f09d27;
}

.testi-boxes p {
    width: 83%;
    font-size: 18px;
    color: #08224b;
    font-family: 'montserrat.semibold';
}

.testi-boxes h5 {
    color: #08224b;
    font-size: 27px;
    font-family: 'HelveticaNeue-BlackCond';
    text-transform: uppercase;
    font-weight: 500;
}

.testi-boxes h5 span {
    font-family: 'montserrat-regular';
    font-weight: 100;
    font-size: 17px;
}





/* slider arrows */

.testislid .slick-next:before{content:"\f105";font-family:"FontAwesome";color: #12203a;font-size: 22px;position: absolute;opacity: 1;}

.testi-slider .slick-next {
    right: -32px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    opacity: 1;
    border: 1px solid #4f586b;
    border-radius: 51px;
}

.testi-slider .slick-next:before {content: "\f105";font-family: "FontAwesome";color: #142039;font-size: 22px;position: absolute;/* top: 0; *//* left: 0; */opacity: 1;}

.testi-slider .slick-next:hover {
    background: #18223a;
 
}
.testi-slider .slick-next:hover:before {
       color: #fff;
}

.testi-slider .slick-prev:hover {
    background: #18223a;
 
}
.testi-slider .slick-prev:hover:before {
       color: #fff;
} 
.testi-slider  .slick-slide {
    transition: all ease-in-out .3s;
    opacity: 1.2;
}
.testi-slider button.slick-prev.slick-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    opacity: 1;
    border: 1px solid #4f586b;
    border-radius: 51px;
    left: -37px;
}
.testi-slider .slick-prev:before{content:"\f104";font-family:"FontAwesome";color: #142039;font-size: 22px;position: absolute;/* top: 0; *//* left: 0; */opacity: 1;}

/*Footer Css Starts*/

.footer-main {
    background-color: #02183a;
    position: relative;
    z-index: 2;
    border-top: 2px solid #e94f1e;
}

footer {
    padding: 65px 35px 0;
}

.footer-txt-box {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.footer-txt p {
    color: #fff;
    opacity: 0.7;
}

.footer-socials-main {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
    width: 100%;
    margin-top: 10px;
}

.footer-txt h5 {
    color: var(--white);
}

.footer-heading {
    position: relative;
    display: flex;
    align-items: start;
    justify-content: start;
    height: 50px;
    width: 100%;
}

.footer-heading::before {
    /* content: ''; */
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 1px solid #ffffff52;
    width: 100%;
}

.footer-heading h5, .footer-socials-txt h5 {
    color: #fff;
    text-transform: uppercase;
    font-weight: unset;
    font-size: 20px;
    width: fit-content;
    /* border-bottom: 1px solid #ffffff91; */
    padding-bottom: 15px;
    padding-right: 30px;
    font-family: 'montserrat.semibold';
}

.footer-txt-main {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
    width: 100%;
    margin: 0 auto;
    margin-left: 20px;
}

.footer-links ul li a {
    font-size: 14px;
    font-family: 'montserrat-regular';
    font-weight: 400;
    line-height: 1;
    color: #fff;
    opacity: 1;
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: start; */
    /* gap: 15px; */
    /* transition: ease-in; */
    /* transition-duration: 0.5s; */
}

.footer-links ul li a:hover {
    opacity: 1;
    transition: ease-out;
    transition-duration: 0.5s;
}
    
    
.footer-links  ul li a {
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: start; */
    /* gap: 20px; */
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 16px;
    width: 100%;
    column-count: 2;
}

.footer-socials ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}



.footer-socials ul li a i {
    color: #ffffff54;
    font-size: 14px;
    height: 36px;
    width: 36px;
    background: #ffffff00;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border: 1px solid #ffffff54;
}

.footer-copy-main {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
}

.footer-copy-txt p, .footer-copy-txt p a {
    font-size: 14px;
    line-height: 20px;
    color: #ffffff;
    transition: ease-in;
    transition-duration: 0.5s;
    margin-bottom: 0px;
}

.footer-copy-txt p a:hover {
    color: var(--base2);
    transition: ease-out;
    transition-duration: 0.5s;
}

.footer-main .footer-ex {
    padding: 20px 0 20px 0;
    margin-top: 50px;
    border-top: 1px solid #ffffff52;
    position: relative;
}

.footer-scroll a {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--g1);
}



section.inner-about-sec .heading2 span {
    color: #000;
}

.about-bottom {
    margin: 50px 0 0 0;
}

.about-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* height: 600px; */
    object-fit: cover;
    /* display: none; */
}

section.inner-banner-sec .banner-heading::before, section.inner-banner-sec .banner-heading::after {
    display: none;
}

section.inner-banner-sec .banner-heading h1 {
    font-weight: 900;
}/* Footer Section Start */

footer.footer-sec {
    width: 100%;
    padding: 80px 0 0;
    position: relative;
    background-image: url(../images/footer-bg.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

footer.footer-sec::before {
    top: 0;
    left: 0;
    width: 100%;
    content: '';
    height: 100%;
    opacity: 0.97;
    position: absolute;
    background-color: #06172b;
}

footer.footer-sec .container {
    z-index: 1;
    position: relative;
}

.footer-text img {
    margin-bottom: 30px;
}

ul.footer-social-list {
    gap: 10px;
    display: flex;
    margin-top: 20px;
    align-items: center;
    justify-content: center;
    justify-content: flex-start;
}


.footer-text h2 {
    line-height: 1;
    font-size: 18px;
    position: relative;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

ul.footer-link li a {
    font-size: 14px;
    transition: 0.5s;
    font-weight: 500;
    line-height: 25px;
    color: #fff;
    text-transform: capitalize;
    font-family: 'montserrat.semibold';
}

ul.footer-link li a:hover {
    color: var(--themeColor2);
}

ul.footer-link-list li i {
    font-size: 20px;
    color: var(--white);
}

ul.footer-link-list li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 25px;
    padding-right: 15px;
    margin-bottom: 30px;
}

ul.footer-link-list li a {
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
}

ul.footer-link-list li p {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    line-height: 22px;
    font-family: 'montserrat.semibold';
}

.footer-form {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    position: relative;
}

.footer-form input {
    width: 100%;
    height: 60px;
    padding: 15px;
    border: 1px solid #dddddd;
    border-radius: 7px;
    margin-bottom: 14px;
    color: #000;
    font-weight: 400;
    font-size: 15px;
    padding-left: 80px;
}

.footer-form i {
    position: absolute;
    top: 19px;
    left: 40px;
    font-size: 20px;
    color: #4984e8;
}

.footr-btn button {
    border: 0;
    margin: 0;
    width: 100%;
}

.footer-text.ftr-border {
    position: relative;
    padding-left: 30px;
}

.footer-text.ftr-border:after {
    position: absolute;
    content: '';
    width: 1px;
    height: 110%;
    left: -20px;
    top: -15%;
    background: #0c8381bf;
    display: none;
}

.footer-text.ftr-border:before {
    position: absolute;
    content: '';
    width: 1px;
    height: 110%;
    right: 20px;
    top: -15%;
    background: #0c8381bf;
    display: none;
}

section.bottom-nav {
    z-index: 1;
    padding: 16px 0;
    margin-top: 80px;
    position: relative;
    background: transparent;
    text-transform: capitalize;
    border-top: 1px solid #ffffff81;
}

section.bottom-nav p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
    color: #fff;
    text-transform: capitalize;
}

ul.footer-link li {
    width: 75%;
    margin-bottom: 5px;
    transition: 1s ease-in-out;
}

ul.footer-link-list li {
    transition: 1s ease-in-out;
}

.footer-text.text-center {
    display: flex;
    min-height: 100%;
    align-items: flex-start;
    justify-content: flex-start;
}

footer.footer-sec .col-lg-3 {
    position: relative;
}

footer.footer-sec .col-lg-3:before {
    position: absolute;
    content: '';
    background-color: #fff;
    width: 1px;
    height: 100%;
    right: 20px;
    top: 0;
}

footer.footer-sec .col-lg-3:last-child:before {
    display: none;
}

footer.footer-sec .col-lg-3:first-child:before {
    right: -10px;
}

footer.footer-sec .col-lg-3 {
    position: relative;
}

footer.footer-sec .col-lg-3:before {
    position: absolute;
    content: '';
    background-color: #ccc;
    width: 1px;
    height: 100%;
    right: 20px;
    top: 0;
}

footer.footer-sec .col-lg-3:last-child:before {
    display: none;
}

footer.footer-sec .col-lg-3:first-child:before {
    right: -10px;
}

/* Footer Section End */
/* ready-sec */

.ready-sec {
    padding: 60px 0px;
    position: relative;
    background-color: #06172b;
}

.ready-img {
    height: 100px;
}

.ready-img img {
    top: 0;
    left: 0;
    width: 32%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.ready-text {
    gap: 19px;
    z-index: 1;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: end;
}

.ready-heading {
    max-width: 500px;
}

.ready-heading h2 {
    font-size: 32px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.ready-heading h3 {
    color: #ffffff;
    font-family: 'montserrat-regular';
    font-weight: 500;
    font-size: 19px;
}
.ready-heading p {
    font-size: 24px;
    color: #b47d25;
}

.ready-btn {
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ready-btn a {
    width: 240px;
}

.ready-btn .theme-bnt-2 {
    color: #fff;
    border: 1px solid #fff;
    background-color: transparent;
}

.review-sec .section-heading h5 {
    font-size: 40px;
    font-weight: 600;
    position: relative;
    width: fit-content;
    margin: 0px auto 15px;
    text-transform: uppercase;
}

.review-sec .section-heading h5::after {
    top: 0;
    bottom: 0;
    right: 110%;
    width: 30%;
    content: '';
    height: 2px;
    margin: auto;
    position: absolute;
}

.review-sec .section-heading h5::before {
    top: 0;
    bottom: 0;
    left: 110%;
    width: 30%;
    content: '';
    height: 2px;
    margin: auto;
    position: absolute;
}


/* ready-sec */
.services-section{
    background:#fff;
}

.sub-title{
    color:#c98a2b;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    display:block;
    margin-bottom:10px;
}

.title-wrap{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.title-wrap h2{
    font-size:34px;
    font-weight:800;
    color:#10254d;
    margin:0;
    text-transform:uppercase;
}

.title-wrap .line{
    width:80px;
    height:2px;
    background:#c98a2b;
}

.service-card{
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:8px;
    text-align:center;
    position:relative;
    overflow:hidden;
    height:100%;
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.service-card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.icon-circle{
    width:65px;
    height:65px;
    background:#08295c;
    color:#d8a13f;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin:-32px auto 15px;
    position:relative;
    z-index:2;
    border:4px solid #fff;
}

.service-card h4{
    font-size:16px;
    font-weight:800;
    color:#10254d;
    margin-bottom:12px;
    padding:0 15px;
}

.service-card p{
    color:#4f5d73;
    font-size:14px;
    line-height:1.7;
    padding:0 15px 25px;
    margin:0;
}

@media(max-width:991px){
    .title-wrap h2{
        font-size:24px;
    }

    .service-card img{
        height:160px;
    }
}