@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-BlackCond';
    font-size: 83px;
    line-height: 74px;
    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: 26px;
    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: 21px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 300;
    margin-top: -58px;
}

.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: #28b16d;
}

.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.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 236px 70px;
    height: 850px;
}

.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 h2 {
    font-size: 82px;
    color: #f1560c;
    margin: 0;
}

.banner_text p {
    font-size: 21px;
    width: 79%;
    color: #0d234a;
    font-weight: 600;
    line-height: 29px;
}

.banner_text ul {
    display: flex;
    align-items: center;
    gap: 16px;
}

a.banner-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 13px;
    width: 260px;
    height: 60px;
    background: #f1560c;
    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: 18px 60px;
    background: #0d234a;
    display: flex;
    gap: 18px;
}
.navigation-box {
    display: flex;
    gap: 80px;
    justify-content: center;
    align-items: center;
}

.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: 100px 59px;
}

.services_sec .row {
    display: flex;
    justify-content: center;
}

.servi-cont {
    text-align: center;
}

.servi-cont h4 {font-family: HelveticaNeue-CondensedBold;color: #e94f1e;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: 'montserrat.semibold';
    padding-top: 23px;
    margin: 0;
    padding-bottom: 7px;
    color: #08224b;
}

.servi-box p {
    font-family: 'montserrat-regular';
    font-weight: 600;
    color: #08224b;
}
.contact-hm {
    padding: 100px 57px;
    background: #112449;
}

.contact-hm-text h3 {
    font-family: 'HelveticaNeue-CondensedBold';
    color: #f1560c;
    position: relative;
    z-index: 1;
}
.contact-hm-text h3 img {position: absolute;right: 0;height: auto;width: 43%;}
.contact-hm-text ul li {
    color: #fff;
    font-size: 19px;
    margin-bottom: 35px;
    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: #f1560c;
    font-size: 13px;
    border-radius: 50px;
}

.contact-hm-form {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
}

.contact-hm-form input {
    width: 100%;
    height: 50px;
    margin-bottom: 14px;
    padding: 11px;
    border-radius: 10px;
    border: 1px solid #7c7c7c;
}

.contact-hm-form textarea {
    width: 100%;
    height: 200px;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.contact-hm-form button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    background: #f1560c;
    border: 0;
    color: #fff;
    font-family: 'HelveticaNeue-BlackCond';
    font-size: 27px;
    border-radius: 10px;
    gap: 10px;
}
.why-chose-us {
    padding: 100px 73px;
}



.why-cont h2 {
    text-align: center;
    color: #142548;
    font-family: 'montserrat.semibold';
    font-size: 40px;
    margin-bottom: 53px !important;
    position: relative;
    z-index: 1;
    width: 69%;
    margin: 0 auto;
}

.why-boxes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 77px;
}

.why-text p {
    font-size: 16px;
    color: #142548;
}
.why-text h3 {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 17px;
    font-family: 'montserrat.semibold';
    color: #142548;
}

.why-cont h2:before {
    position: absolute;
    content: '';
    width: 60px;
    height: 4px;
    background: #f1560c;
    left: 0;
    top: 25px;
}

.why-cont h2:after {
    position: absolute;
    content: '';
    width: 60px;
    height: 4px;
    background: #f1560c;
    right: 0;
    top: 25px;
}
.why-cont.work h2 {
    width: 30%;
}

.how-boxes {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 99px;
    gap: 6px;
}

.how-it-work {
    padding: 0 62px 100px;
}

.how-text {
    text-align: center;
    padding: 13px;
    width: 296px;
    height: 121px;
    border: 1px solid #08224b;
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

.how-text h5 {
    background: #fff;
    color: #08224b;
    padding-top: 6px;
    font-family: 'montserrat.semibold';
    font-size: 15px;
}

.how-boxes i {
    font-size: 28px;
    color: #08224b;
}

.how-text p {
    color: #08224b;
}
.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-links.ft-pg-links ul {
    width: 100%;
    column-count: 1;
    display: block;
    margin-top: 9px;
}

.footer-links.ft-pg-links ul li {
    margin-bottom: 20px;
}
.footer-links.ft-pg-links {
    width: 100%;
}
.footer-links ul li {
    font-family: 'montserrat-regular';
    font-size: 14px;
    color: #fff;
}
.footer-links.ft-pg-links ul li a {font-family: 'montserrat-regular';}
.footer-txt-main.mainquick-link {
    margin-left: 45px;
}
.footer-txt-box img {
    width: 100%;
    height: 214px;
}
.follow-us h5 {
    border-bottom: unset;
    padding-bottom: 0px;
    margin-bottom: 6px;
    margin-top: 10px;
}
ul.ft-contact li a {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 22px;
    padding-bottom: 10px;
}
.subscribe-main {
    padding: 100px 53px;
    background-image: url(../images/foter.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
a.bbanner-tel.fot {
    border-color: #fff;
    color: #fff;
}

.subscribe-field ul {
    text-align: center;
    display: grid;
    gap: 25px;
    place-content: center;
}
.subscribe-icon-text h2 {
    color: #fff;
    font-family: 'montserrat.semibold';
    font-size: 43px;
}

.subscribe-icon-text p {
    color: #fff;
    width: 80%;
}

.subscribe-field {
    text-align: center;
    /* display: inline-table; */
    /* align-items: center; */
    /* justify-content: center; */
    width: 100%;
    margin: 0 auto;
}
/*Footer Css Ends*/
