@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

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

body {
    word-break: break-word;
    font: 15px/25px "Montserrat", sans-serif;
    color: #393939;
    overflow-x: hidden;
        background: #dce7eb;
}

a {
    text-decoration: none;
    color: #f79a48;
    white-space: initial;
    font-family: "Montserrat", sans-serif;
}

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: 400;
    line-height: 26px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    color: #202020;
}


/***** 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
}


/***** 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: 8px;
    color: #ffffff;
    z-index: 1;
    background: #3e4f60;
    position: relative;
    font-size: 15px;
    -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;
    font-family: 'Montserrat';
    font-weight: 500;
    display: flex;
    align-items: center;
    width: fit-content;
    gap: 10px;
    text-transform: capitalize;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 8px;
    background-color: #587a9d;
    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 img {
    filter: brightness(0) saturate(100%) invert(60%) sepia(69%) saturate(421%) hue-rotate(345deg) brightness(98%) contrast(98%);
}*/

.theme_btn:hover {
    color: #fff;
}

.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: "Rajdhani", sans-serif;
    font-size: 78px;
    line-height: 1.2;
    color: #fff;
    font-weight: 600;
    margin: 0 0 17px;
}

h2 {
    font-family: "Rajdhani", sans-serif;
    font-size: 72px;
    line-height: 1.1;
    color: #202020;
    font-weight: 600;
    margin: 0 0 20px;
}

h3 {
    font-family: "Rajdhani", sans-serif;
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: "Montserrat", sans-serif;
    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 */

.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 */


/* Tab slider fix  */

.tab_sec .tab-pane {
    display: block;
    border: 0;
    height: 0;
}

.tab_sec .tab-pane.active {
    display: block !important;
    height: auto;
}


/* Tab slider fix  */

.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;
}


/*banner css end*/

.blog_sec {
    padding: 5% 0;
}


/* Tabs  */

.tab_sec .nav-tabs .nav-link.active {
    background: #242889;
    color: #fff;
}

.tab_sec .nav-tabs .nav-link {
    background: #ccc;
    border-radius: 50px;
    color: #000;
    padding: 7px 28px;
}

.tab_sec .nav-tabs {
    border: none;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}


/* Tabs  */

.menu_sec #menu li a {
    font-size: 17px;
    color: #202020;
    text-transform: capitalize;
    font-weight: 500;
}

.menu_sec #menu li a:hover {
    color: #587a9d;
}

.menu_sec #menu {
    justify-content: center;
    margin: 0;
    gap: 40px;
}

.menu_sec #menu>li>ul {
    background: #3e4f60;
    width: 240px;
    position: absolute;
    padding: 0 !important;
    top: -90px;
    padding: 20px 20px;
    transition: 0.3s all;
    opacity: 0;
    z-index: -1;
}

.menu_sec #menu>li:nth-child(3) {
    position: relative;
}

.menu_sec #menu>li>ul>li>a {
    color: #fff;
}

.menu_sec #menu>li:nth-child(3):after {
    position: absolute;
    content: "";
    background: #000;
    width: 10px;
    height: 10px;
    bottom: -14px;
    left: 10px;
    clip-path: polygon(52% 0, 0 100%, 100% 100%);
    transition: 0.3s all;
    opacity: 0;
}

.menu_sec #menu>li:nth-child(3):hover:after {
    opacity: 1;
    transition: 0.5s ease-in-out;
}

.menu_sec #menu>li:nth-child(3):hover ul {
    opacity: 1;
    transition: 0.5s ease-in-out;
    top: 40px;
    z-index: 2;
    padding: 10px;
}

.menu_sec #menu>li:nth-child(3):hover ul li {
    margin-bottom: 0;
    background: #000;
    padding: 10px;
}


/* Header */

header {
    padding: 10px 0;
}

.header-btn a {
    font-size: 15px;
    background: #587a9d;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    border-radius: 7px;
    color: #fff;
}

.header-btn a i {
    font-size: 15px;
    color: #fff;
    transition: 0.5s;
}

.header-btn a:hover {
    background: #3e4f60;
}

.header-btn a:hover i {
    color: #fff;
}


/* end  */


/* Banner */

.banner_text h3 {
    font-size: 18px;
    color: #3e4f60;
    padding: 10px;
    background: #fff;
    display: inline-block;
    text-transform: uppercase;
}

.banner_text p {
    color: #fff;
    width: 75%;
}

span.carousel-control-prev-icon,
span.carousel-control-next-icon {
    background-image: unset;
    position: relative;
    width: auto;
    height: auto;
}

span.carousel-control-prev-icon:before,
span.carousel-control-next-icon:before {
    position: absolute;
    content: '\f104';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #587a9d;
    background: #fff;
    z-index: 9;
}

span.carousel-control-next-icon:before {
    content: '\f105';
}

.carousel-control-prev {
    left: 0;
    width: fit-content;
    height: fit-content;
    top: 50%;
}

.carousel-control-next {
    right: 40px;
    width: fit-content;
    height: fit-content;
    top: 50%;
}


/* end */


/* After Banner */

.after-wrap ul {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 8px;
    background: #fff;
    transition: 0.5s;
}

.after-wrap ul li:first-child {
    width: 20%;
}

.after-wrap h6 {
    font-size: 23px;
    color: #202020;
    font-family: "Rajdhani", sans-serif;
    font-weight: 600;
}

.after-wrap p {
    margin: 0;
}

.after-wrap {
    margin-top: -90px;
    z-index: 9;
    position: relative;
}

.after-wrap ul:hover {
    background: #587a9d;
}
.after-wrap ul:hover img{
    filter: brightness(10);
}
.after-wrap ul:hover * {
    color: #fff;
}


/* end  */


/* About */

section.about {
    padding: 80px 0;
}

.text-bg {
    font-size: 17px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px;
    background: #587a9d;
    display: inline-block;
    line-height: 1;
    margin-bottom: 20px;
    border-radius: 5px;
}

section.about p {
    line-height: 30px;
    margin-bottom: 30px;
}

section.about .row {
    align-items: center;
}

.abt-img img {
    width: 100%;
}


/* end  */


/* Services */

section.service {
    padding: 80px 0;
    background: #587a9d;
}

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

section.service h2 {
    color: #fff;
}

section.service .top-heading p {
    color: #fff;
    width: 54%;
    margin: 0 auto;
}

.ser-img img {
    width: 100%;
    border-radius: 8px;
    transition: 0.5s;
}

.ser-comtext {
    padding: 20px 20px 40px;
}

.ser-boxx {
    background: #ffffff38;
    border-radius: 8px;
    transition: 0.5s;
}

.ser-comtext h3 {
    font-size: 25px;
    color: #fff;
    margin-bottom: 20px;
}

.ser-comtext p {
    color: #fff;
}

.ser-boxx:hover {
    box-shadow: 0 0 8px 0 #3e4f60;
    background: #587a9d;
}

.ser-boxx:hover img {
    filter: grayscale(1);
}

.why-choose-card {
    display: flex;
    align-items: center;
    gap: 20px;
}

.why-choose-card>div:first-child {
    width: 170px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #000;
    border-radius: 50%;
}

.why-choose-card-txt h5 {
    font-size: 22px;
    color: #3e4f60;
    font-weight: 600;
    font-family: "Rajdhani", sans-serif;
    margin: 0;
}

section.why-choose {
    padding: 80px;
}

.why-choose-img img {
    border-radius: 15px;
}


/* end  */


/* Footer  */

footer.main_footer {
    background: #587a9d;
    padding: 5% 0 2%;
}

.footer_details h5 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 10%;
    font-weight: 600;
    font-family: 'Rajdhani';
}

.footer_details {
    margin: 0 auto;
}

.footer_details p {
    font-size: 16px;
    color: #fff;
    opacity: .6;
    margin: 0;
    line-height: 30px;
}

.footer_details.linkks {
    width: 70%;
}

.footer_details.linkks ul li a {
    color: #fff;
    font-size: 14px;
    font-family: 'Montserrat';
    font-weight: 300;
}

.footer_details.adrxs ul li a {
    font-size: 16px;
    color: #c1c1c3;
    font-family: 'Montserrat';
    font-weight: 400;
}

.footer_details.adrxs ul li {
    margin-bottom: 10px;
}

.footer_details.adrxs ul li a i {
    margin-right: 15px;
}

.footer_bottm {
    background: #3e4f60;
    border: 1px solid #9d9d9d;
    padding: 10px 20px 10px;
    border-radius: 5px;
}

.footer_bottm ul {
    display: flex;
    gap: 12px;
    margin: 0;
}

.footer_bottm ul li a i {
    color: #ffffff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
    transition: 0.5s;
}

.footer_bottm p {
    text-align: end;
    margin: 0;
    color: #fff;
    font-size: 12px;
}

.ftr_line {
    position: relative;
    padding-bottom: 40px;
}

.ftr_line:after {
    position: absolute;
    content: "";
    background: #9d9d9d;
    height: 240px;
    width: 1px;
    bottom: 0;
    right: -30px;
    z-index: 0;
}

.footer_bottm ul li a i:hover {
    background: #587a9d;
    color: #ffffff;
    transition: 0.5s;
    transform: scale(1.2);
}

.footer_details.adrxs ul li a i {
    font-size: 18px;
    color: #fff;
}

.footer_details.linkks ul {
    margin: 0;
}

.footer_details.adrxs ul li a {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #fff;
}

.footer_details.adrxs ul {
    margin: 0;
}

.footer_details.adrxs ul li:last-child {
    margin: 0;
}


/* Footer end */


/* Testmonial Start */

.testi-user-details img {
    width: auto;
    border-radius: 50%;
    border: 2px solid #fff;
}

.testi-slider-item {
    background: #d6d6d6;
    padding: 40px 62px 35px;
    position: relative;
    height: 400px;
}

.testi-slider-item i.fas.fa-quote-left {
    color: #fff;
    position: absolute;
    background: #587a9d;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    top: -30px;
}

.testi-slider .slick-track {
    padding: 50px 0;
    display: flex;
    justify-content: start;
}

.testi-slider .slick-slide {
    opacity: 1;
    margin: 0 10px;
    width: 375px !important;
}

.testi-slider-item p {
    color: #666666;
    font-size: 13px;
}

.testi-user-details {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.testi-user-name h4 {
    font-family: 'Rajdhani';
    color: #fff;
    margin: 0;
    font-size: 19px;
    line-height: normal;
    font-weight: 600;
}

.testi-user-name span {
    font-size: 12px;
    font-family: 'Montserrat';
    color: #fff;
    /* font-size: 12px;
    color: #fff;
    font-family: 'big-noodle';
    line-height: normal; */
}

.testi-slider-item .rating-star {
    margin-bottom: 22px;
}

.testi-slider .slick-slide.slick-current testi-slider-item {
    background: var(--lmustard);
}

.testi-slider .slick-slide.slick-current .testi-slider-item {
    background: #fff;
    box-shadow: 0 0 8px 0 #ccc;
    margin-left: 10px;
}

.testi-slider .slick-slide.slick-current {
    width: 500px !important;
    transition: 0.5s all;
}

.testi-slider .slick-slide.slick-current .testi-slider-item .testi-user-details {
    margin-top: 55px;
    margin-bottom: 20px;
}

.testi-slider .slick-slide.slick-current .testi-slider-item i.fas.fa-quote-left {
    background: #3e4f60;
}

.testi-slider .slick-slide.slick-current .testi-slider-item .rating-star ul li a {
    color: #f79a48;
}

.testi-slider .slick-slide.slick-current .testi-slider-item .rating-star ul li .grey-star {
    opacity: 1;
}

.testi-slider .slick-slide.slick-current .testi-slider-item .rating-star ul li.grey-star {
    opacity: 1;
}

.testi-slider .slick-list {
    padding-left: 35px;
    padding-right: 30px;
}

.rating-star ul {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
}

.testi-item-single i.fas.fa-quote-left {
    background: #af8d53;
}

.testi-item-single {
    background: #141516;
}

span.desg {
    font-size: 13px;
    font-family: 'Montserrat';
    color: rgba(255, 255, 255, .8);
}

.testi-slider-item p {
    color: #fff;
}

.testi-slider .slick-slide.slick-current .testi-slider-item p {
    color: #666;
}

.testi-slider .slick-slide.slick-current .testi-slider-item h4 {
    color: #587a9d;
}

.testi-slider .slick-slide.slick-current .testi-slider-item span {
    color: #666;
}

.slick-prev:before,
.slick-next:before {
    position: absolute;
    content: '\f30a';
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    font-size: 20px;
    color: #3e4f60;
}

.slick-next:before {
    content: '\f30b';
}

.slick-prev {
    left: -40px;
}

.slick-next {
    right: -6px;
}


/* testimonial End */


/* Gallery */

section.gallery {
    background: #587a9d;
    padding: 80px 0;
}

.gall-img img {
    width: 100%;
    border-radius: 20px;
    /* margin-bottom: 20px; */
    object-fit: cover;
    transition: 0.5s;
}

img.g-img1 {
    height: 430px;
}

img.g-img2 {
    height: 430px;
}

img.g-img4 {
    height: 250px;
}

img.g-img3 {
    height: 700px;
}

.gall-img img:hover {
    transform: scale(1.4);
    filter: grayscale(1);
}

.gall-img {
    overflow: hidden;
    margin-bottom: 20px;
}


/* end  */


/* Inner Pages */

section.inner-banner {
    background-image: url(../images/inner-banner.jpg);
    background-size: cover;
    height: 440px;
    display: flex;
    align-items: center;
    text-align: center;
}

section.inner-banner h3 {
    color: #587a9d;
    font-size: 18px;
    text-transform: uppercase;
    background: #fff;
    display: inline-block;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
}

section.inner-banner h1 {
    margin: 0;
}


/* Contact Page Start */

section.contact-sec {
    padding: 100px 0;
}

.get-in-touch-sec {
    background-repeat: no-repeat;
    padding: 30px 50px;
    border-radius: 0;
    width: 97%;
    padding-bottom: 10%;
    height: 100%;
    background: #587a9d;
    margin: 30px 0;
    border-radius: 0;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.get-in-touch-sec h4 {
    font-size: 49px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 74px;
    margin: 20px 0;
}

.get-in-touch-sec p {
    font-size: 13px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 7%;
    line-height: 30px;
}

.get-in-touch-sec ul {
    display: flex;
    margin-bottom: 10%;
    align-items: center;
    gap: 20px;
}

.get-in-touch-sec ul li span {
    color: #ef165d;
    background: #ffffff;
    padding: 20px 20px;
    border-radius: 100%;
    font-size: 22px;
    margin-right: 30px;
}

.get-in-touch-sec ul li span.fa-map-marker-alt {
    padding: 20px 23px;
}

.get-in-touch-sec ul li h6 {
    font-size: 26px;
    color: #fffcf3;
    margin-bottom: 3px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 41px;
    font-family: 'Rajdhani';
}

.get-in-touch-sec ul li a {
    font-size: 17px;
    color: #fffcf3;
    font-weight: 400;
}

.req-qoute-sec h4 {
    font-size: 49px;
    margin-bottom: 30px;
    position: relative;
    font-weight: 500;
    color: #587a9d;
    text-transform: uppercase;
    line-height: 75px;
}

.contact-inpt.about-text a {
    font-size: 20px;
    text-transform: uppercase;
    background: #973416;
    color: #fff;
    padding: 13px 40px;
    background-image: -moz-linear-gradient( 90deg, rgb(123, 232, 255) 0%, rgb(41, 137, 204) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(0 0 0) 0%, rgb(254 0 0) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(123, 232, 255) 0%, rgb(41, 137, 204) 100%);
}

.contact-inpt input::placeholder {
    font-family: revert;
    color: #808080c7;
}

.contact-inpt input {
    width: 95%;
    margin-bottom: 15px;
    padding: 15px 20px;
    border: 1px solid #b7b7b7;
    margin-bottom: 3%;
    color: #000;
    border-radius: 0;
}

.contact-inpt textarea {
    width: 95%;
    border: 1px solid #b7b7b7;
    margin-bottom: 10px;
    padding: 12px 20px;
    resize: none;
    border-radius: 35px;
    resize: vertical;
}

.contact-inpt input::placeholder {
    font-size: 14px;
}

.contact-inpt textarea::placeholder {
    font-size: 14px;
    font-family: "Avenir";
}

.req-qoute-sec {
    padding: 65px 25px 65px 40px;
    position: relative;
    background: #fff;
    height: 100%;
    border-radius: 0;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.req-qoute-sec h4:before {
    content: "";
    background: #587a9d;
    position: absolute;
    left: -40px;
    top: -8px;
    height: 55px;
    width: 7px;
}

.get-in-touch-sec ul li i {
    background: #fff;
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 30px;
    color: #587a9d;
}

.contact-inpt button {
    font-size: 16px;
    border: 0;
    border-radius: 0;
    padding: 0 30px;
    height: 50px;
    letter-spacing: 2px;
    transition: 0.5s;
    background: #587a9d;
    color: #fff;
    text-transform: uppercase;
}

.contact-inpt button:hover {
    background: #587a9d;
}

.inner-contact-map {
    text-align: center;
}

.inner-contact-map iframe {
    width: 100%;
    height: 400px;
    margin: 0 0 30px;
    filter: invert(1);
}

.inner-contact-map h4 {
    font-size: 40px;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Oswald';
    line-height: 50px;
}

.contact-inpt button {
    border-radius: 0;
}


/* Contact Page End */


/* Inner Services */

section.service.inn-ser {
    background: transparent;
    padding: 100px 0;
}

section.service.inn-ser .ser-boxx {
    background: #ececec;
}

section.service.inn-ser .ser-boxx .ser-comtext * {
    color: #000;
}

section.service.inn-ser .ser-boxx .ser-comtext a{
    color: #fff !important; 
}
.ser-det-img img {
    width: 100%;
    margin-bottom: 20px;
}

.ser-det-text h3 {
    font-size: 53px;
    color: #202020;
}


/* end  */

section.testimonail.pb-10 {
    padding: 70px 0;
}


/* section.main_slider img {
    width: 100%;
} */
/* inner pages end */





