@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,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: #000;
    white-space: initial;
    font-family: "Manrope", 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;
    padding: 0;
    list-style-type: none;
}

p {
    font-weight: 500;
    line-height: 28px;
    margin: 0;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
}


/***** 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: 'NexaBold';
    src: url(../font/Nexa\ Bold.otf);
}

@font-face {
    font-family: 'NexaLight';
    src: url(../font/Nexa\ Light.otf);
}


/***** 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 40px;
    border: unset;
    border-radius: 5px;
    color: #ffffff;
    z-index: 1;
    background: #ff911f;
    position: relative;
    font-size: 16px;
    -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;
    font-family: 'Manrope';
    text-transform: uppercase;
    letter-spacing: 2px;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 5px;
    background-color: #5187f5;
    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: #ffff;
}

.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-size: 55px;
    font-family: 'NexaBold';
    line-height: 1.2;
    color: #fff;
    font-weight: 400;
    margin: 0;
}

h2 {
    font-family: 'NexaBold';
    font-size: 48px;
    line-height: 1.1;
    color: #000;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
}

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

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

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

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

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

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

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

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

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

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

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

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

/*---------------------------------------------------- Header Section Start ----------------------------------------------------------- */

.menuSec {
    padding: 15px 0 17px;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: 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: #000;
    padding: 10px 20px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Manrope';
}

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

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

.serv-srch-main {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
}

.BottomSec {
    background: #5187f5;
    padding: 15px 0px;
}

.serv-srch-main h5 {
    font-family: 'Manrope';
    text-transform: uppercase;
    color: #fff;
    font-size: 16px;
    word-spacing: 3px;
}

.serv-srch-inp {
    position: relative;
    width: 40%;
}

.serv-srch-inp input {
    width: 100% !important;
    height: 50px;
    border: unset;
    padding: 10px 20px;
    border-radius: 6px;
}

.serv-srch-main i {
    position: absolute;
    right: 0;
    top: 0;
    background: #ff911f;
    width: 52px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    color: #fff;
    font-size: 25px;
}

.serv-srch-inp input::placeholder {
    font-family: 'Manrope';
    font-size: 14px;
}

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

.header-cntct {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-cntct i {
    background: #ff911f;
    width: 65px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 17px;
}

.contact-header {
    display: grid;
    width: 100%;
    gap: 6px;
}

.contact-header span {
    font-size: 16px;
    font-family: 'NexaBold';
    text-transform: uppercase;
    color: #000;
    font-weight: bold;
}

.contact-header a {
    font-size: 31px;
    font-family: 'NexaBold';
    font-weight: bolder;
    color: #000;
}

.menuSec img {
    width: 100%;
    height: 85px;
    object-fit: scale-down;
}

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

/*---------------------------------------------------- Header Section End ------------------------------------------------------------- */


/*---------------------------------------------------- Banner Section Start ----------------------------------------------------------- */

section.banner-sec {
    background: url(../images/banner.jpg);
    width: 100%;
    background-size: cover;
    align-content: center !important;
    position: relative;
    padding-top: 30px;
    background-position: center;
    margin-bottom: 0px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}


section.banner-sec.iner {
    padding: 230px 0;
    background: url(../images/banner-iner.jpg);
    width: 100%;
    background-position: bottom;
}

.banner-text h1 {
    color: #000;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

section.banner-sec .row {
    align-content: center !important;
    align-items: center;
}

.banner-img img {
    width: 78%;
    height: 740px;
    object-fit: cover;
    object-position: top;
}

.banner-img {
    text-align: center;
}

.banner-text p {
    margin-bottom: 18px;
}

/*---------------------------------------------------- Banner Section End ------------------------------------------------------------- */



/*---------------------------------------------------- Footer Section Start ------------------------------------------------------------- */


.footer-main {
    background-color: #0e1321;
    padding: 80px 0 25px 0;
}

.footer-logo a img {
    width: 100%;
    margin-bottom: 25px;
}

.footer-logo p {
    color: #fff;
    font-size: 14px;
    line-height: 23px;
    text-align: justify;
    opacity: 70%;
}

.footer-heading {
    margin: 0 0 45px 0;
}

.footer-contact {
    padding: 0px 0 0 75px;
}

.footer-link-txt p {
    width: 75%;
}

.footer-heading h5 {
    position: relative;
    font-size: 24px;
    color: #fff;
    margin: 0;
    display: inline-block;
    text-transform: uppercase;
}

.footer-heading h5::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #ff911f;
}

.footer-links ul li .footer-link-txt {
    display: flex;
    align-items: baseline;
    justify-content: start;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-links ul li .footer-link-txt i,
.footer-links ul li .footer-link-txt a,
.footer-links ul li .footer-link-txt p {
    color: #fff;
    font-size: 14px;
    line-height: 27px;
    transition: ease-in;
    transition-duration: 0.2s;
    text-transform: none;
    opacity: 70%;
}

.footer-links ul li .footer-link-txt a:hover,
.footer-links ul li .footer-link-txt p:hover {
    color: #ff911f;
    transition: ease-out;
    transition-duration: 0.2s;
}

.footer-links ul li a {
    color: #fff;
    font-size: 15PX;
    line-height: 36px;
    margin: 0;
    font-family: 'Poppins';
    transition: ease-in;
    transition-duration: 0.2s;
    text-transform: uppercase;
    opacity: 65%;
}

.footer-links ul li a:hover {
    color: #ff911f;
    transition: ease-out;
    transition-duration: 0.2s;
}

.footer-socials ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    margin: 0;
}

.footer-socials ul li a i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 100px;
    font-size: 20px;
    transition: ease-in;
    transition-duration: 0.2s;
}

.footer-link-txt-extra {
    display: grid;
}

.footer-socials ul li a i:hover {
    background-color: #ff911f;
    color: #fff;
    border: 1px solid #0000;
    transition: ease-out;
    transition-duration: 0.2s;
}

.footer-estimate .estimate {
    display: inline-flex;
    align-items: center;
    justify-content: start;
    gap: 17px;
}

.footer-socials {
    margin: 30px 0 0 0;
}

span.footer-estimate-txt p {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

span.footer-estimate-txt h5 {
    font-family: 'Poppins';
    font-size: 24px;
    line-height: 30px;
    color: #fff;
    margin: 0;
}

a.theme1.estimate {
    background: #ff911f;
    padding: 15px 20px;
    border-radius: 12px;
}

.footer-socials P {
    opacity: 70%;
    color: #fff;
}

span.footer-estimate-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    color: #fff;
    background: #000;
    border-radius: 100px;
    font-size: 18px;
    transition: ease-out;
    transition-duration: 0.2s
}

.estimate:hover span.footer-estimate-icon i {
    background: #ff911f;
    transition: ease-in;
    transition-duration: 0.2s;
}

.footer-rights p {
    color: #fff;
    line-height: 46px;
    text-align: center;
    margin: 0;
}

.footer-rights-sec {
    position: relative;
    margin: 30px 0 0 0;
}

.footer-rights-sec::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    width: 100%;
    border: 1px solid #fff3;
    z-index: 0;
}

.footer-rights {
    background-color: #ff911f;
    border-radius: 5px;
    position: relative;
    padding: 5px 0;
}


/*---------------------------------------------------- Footer Section End ------------------------------------------------------------- */


/*---------------------------------------------------- About Us Section Start ------------------------------------------------------------- */

.about-image img {
    width: 100%;
    height: 680px;
    object-fit: cover;
    border-radius: 12px;
}

.about-text h2 {
    margin: 10px 0 5px;
    letter-spacing: 1px;
}

section.about-sec {
    margin-bottom: 100px;
}

.about-text h2 span {
    display: block;
}

.about-text p {
    margin-bottom: 14px;
    word-spacing: 5px;
    line-height: 33px;
}

span.Tag-Name {
    font-size: 24px;
    font-family: 'NexaBold';
    text-transform: uppercase;
    color: #ff911f;
}


section.about-sec.iner p {
    line-height: 33px;
    margin: unset;
}

section.about-sec.iner img {
    margin-bottom: 15px;
    height: 600px;
}

/*---------------------------------------------------- About Us Section End ------------------------------------------------------------- */


/*---------------------------------------------------- Services Section End ------------------------------------------------------------- */

section.service-sec {
    padding: 100px 0;
    background: #ececec;
    text-align: center;
    margin-bottom: 100px;
}

section.service-sec.iner {
    background: unset;
    padding: unset;
    padding-top: 50px;
}

.service-main p {
    width: 95%;
    margin: 0 auto;
    margin: 5px 0 30px;
}

.service-main ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 33px;
}

.service-main ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.service-main ul li h3 {
    text-transform: uppercase;
    font-size: 22px;
    word-spacing: 1px;
}

.service-main a.theme_btn.p {
    background: #5187f5;
}

.service-main a.theme_btn.p:before {
    background: #ff911f;
}

/*---------------------------------------------------- Services Section End ------------------------------------------------------------- */


/*---------------------------------------------------- Why Choose Us Section Start ------------------------------------------------------------- */

.why-choose-txt ul li img {
    filter: brightness(0) saturate(100%) invert(78%) sepia(45%) saturate(5442%) hue-rotate(344deg) brightness(102%) contrast(101%);
}

.why-choose-img img {
    width: 100%;
    height: 515px;
    object-fit: cover;
    border-radius: 12px;
}

.why-choose-txt ul li {
    display: flex;
    align-items: center;
    gap: 23px;
    margin-bottom: 22px;
}

.why-choose-txt ul li h3 {
    color: #ff911f;
    font-family: 'NexaBold';
    font-weight: 400;
}

section.why-choose-sec {
    margin-bottom: 100px;
}

.why-choose-txt span.Tag-Name {
    color: #5187f5;
}

.why-choose-txt h2 span {
    display: block;
}

.why-choose-txt h2 {
    margin: 10px 0 3px;
}

.why-choose-txt p {
    margin-bottom: 15px;
}

.why-choose-img {
    position: relative;
}

.video-play-button {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    /* background: #eb2055; */
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
}

.video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #5187f5;
    border-radius: 50%;
    animation: pulse-border 1100ms ease-out infinite;
}

.video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 70px;
    height: 70px;
    background: #5187f5;
    border-radius: 50%;
    transition: all 200ms;
}

.video-play-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 17px solid #fff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    top: 12px;
    left: 5px;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

/*--------------------------------------------------- Why Choose Us Section End ------------------------------------------------------------- */


/*---------------------------------------------------- Vision Reality Section Start ------------------------------------------------------------- */

section.vision-reality-sec {
    margin-bottom: 100px;
    background-image: url(../images/vision-reality.jpg);
    padding: 50px 0;
    position: relative;
    z-index: 1;
    background-position: center;
    background-attachment: fixed;
}

.vision-main h1 {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.1;
}

.vision-main i {
    background: #ff911f;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 17px;
    margin: 0 auto;
    margin-bottom: 25px;
}

.vision-main {
    text-align: center;
}

.vision-main a {
    font-family: 'NexaBold';
    font-size: 36px;
    color: #fff;
}

section.vision-reality-sec:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #1b2339;
    width: 100%;
    height: 100%;
    opacity: 87%;
    z-index: -1;
}

/*---------------------------------------------------- Vision Reality Section End ------------------------------------------------------------- */


/*---------------------------------------------------- Safe Solution Section Start ------------------------------------------------------------- */

.safe-solution-text h2 {
    margin-bottom: 5px;
}

.safe-solution-text p {
    word-spacing: 5px;
}

.safe-pic img {
    width: 100%;
    height: 520px;
    border-radius: 12px;
    object-fit: cover;
}

.safe-solution-text {
    padding-left: 10px;
}

section.safe-sec {
    margin-bottom: 100px;
}


/*---------------------------------------------------- Safe Solution Section End ------------------------------------------------------------- */


/*---------------------------------------------------- Partnership Section Start ------------------------------------------------------------- */

section.partner-sec {
    text-align: center;
    margin-bottom: 100px;
}

section.partner-sec h2 {
    margin-bottom: 40px;
}

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

/*---------------------------------------------------- Partnership Section End ------------------------------------------------------------- */


/*---------------------------------------------------- Team Section Start ------------------------------------------------------------- */

section.team-sec {
    margin-bottom: 130px;
}

.team-head {
    text-align: center;
    margin-bottom: 20px;
}

.team-head p {
    width: 63%;
    margin: 0 auto;
}

.team-img img {
    height: 400px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: 0.5s;
}

.team-txt {
    text-align: center;
    padding: 15px;
    background: #ff911f;
    border-radius: 12px;
    width: 80%;
    margin: 0 auto;
    margin-top: -40px;
    position: relative;
}

.team-txt h3 {
    color: #fff;
    text-transform: uppercase;
}

.team-txt span {
    font-size: 18px;
    font-family: 'Poppins';
    color: #fff;
    color: #5187f5;
    text-transform: uppercase;
    font-weight: 600;
}

.team-main:hover img {
    transform: scale(1.4);
}

.team-img {
    overflow: hidden;
}


/*---------------------------------------------------- Team Section End ------------------------------------------------------------- */


/*---------------------------------------------------- Serv Detail Section Start ------------------------------------------------------------- */

section.banner-sec.iner h1 span {
    display: block;
}

.service-detail-img img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 40px;
    object-position: top;
}

.serv-detail-txt h2 {
    margin-bottom: 10px;
}

section.detail-service-sec {
    margin-bottom: 100px;
}

.serv-detail-txt p {
    margin-bottom: 22px;
    line-height: 33px;
}

/*---------------------------------------------------- Serv Detail Section End ------------------------------------------------------------- */


/*---------------------------------------------------- Porject Section Start ------------------------------------------------------------- */

.project-head {
    text-align: center;
    margin-bottom: 40px;
}

.project-head p {
    width: 83%;
    margin: 0 auto;
}

section.project-sec {
    margin-bottom: 130px;
}

.project-head h2 {
    margin-bottom: 7px;
}

.project-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 25px;
}

.project-main.it img {
    height: 300px;
}

.project-btn {
    text-align: center;
    margin-top: 20px;
}

.project-btn .theme_btn {
    background: #5187f5;
}


/*---------------------------------------------------- Porject Section End ------------------------------------------------------------- */


/*---------------------------------------------------- Contact Us Section Start ------------------------------------------------------------- */

/*Contact us start*/

.contact-text>p {
    color: #000;
    opacity: 70%;
    font-size: 17px;
    width: 80%;
    margin-top: 5px;
}

.contact_page_main button.theme_btn {
    padding: 15px 70px;
    font-size: 18px;
}

.contatc-form input::placeholder {
    text-transform: uppercase;
    color: #8e8e8e;
    font-family: 'Poppins';
    font-size: 16px;
}

.contatc-form textarea::placeholder {
    text-transform: uppercase;
    color: #8e8e8e;
    font-family: 'Poppins';
    font-size: 16px;
}


.Contact-banner:before {
    content: 'Contact Us';
    color: #fff;
    font-size: 55px;
    position: absolute;
    left: 12%;
    top: 45%;
    font-weight: bolder;
    letter-spacing: 2px;
    z-index: 10;
}

.contatc-form {
    padding: 48px 30px;
    border-radius: 25px;
    /* box-shadow: 0px 0px 12px #b1afaf94; */
    border: solid 0.5px #00000026;
    background: #fff;
}

.contatc-form h2 {
    font-size: 48px;
}

.contatc-form input {
    background: #fff0;
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #c4c4c475;
    border-radius: 7px;
}

.contatc-form textarea {
    background: #fff0;
    width: 100%;
    resize: none;
    height: 150px;
    border: 1px solid #c4c4c475;
    color: black;
    border-radius: 5px;
    padding: 10px 20px !important;
}

.contact-text h2 {
    font-size: 48px;
}

.contact_page_sidbar h6 {
    font-size: 17px;
    color: #8b8a8a;
    line-height: 20px;
    margin: 0;
    font-weight: 400;
    font-family: 'Poppins';
    text-transform: capitalize;
}

.contact_page_sidbar h4 {
    font-size: 19px;
    line-height: 23px;
    color: #000000;
    font-weight: 600;
    margin: 0;
    font-family: 'Poppins';
    margin-bottom: 5px;
}

ul.contact_page_sidbar a {
    font-size: 17px;
    color: #8b8a8a;
    line-height: 20px;
    margin: 0;
    font-weight: 400;
    font-family: 'Poppins';
}

.contact_page_sidbar i {
    font-size: 40px;
    margin: 0 20px 0 0;
    width: 50px;
    color: black;
}

.contact_social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #e51921;
    color: #ffffff;
    border-radius: 0;
    margin: 0 10px 0 0;
    font-size: 22px;
}

.contact_social a:hover {
    background-color: #e51921;
    color: #fff;
}

.contact_map iframe {
    width: 100%;
    height: 480px;
    margin-top: 80px;
}


ul.contact_page_sidbar {
    margin-bottom: 50px;
}

.social-links a:hover {
    transform: scale(0.9) rotate(360deg);
    border-radius: 50%;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    font-size: 23px;
    height: 50px;
    background: transparent;
    color: #000000;
    transition: 0.2sease-in-out;
    border: solid 1px black;
    border-radius: 50%;
}


.contatc-form button.btn10 {
    width: 38%;
}

.contact_page_main {
    /* background: #f6f4ec; */
    width: 100%;
    height: 100%;
    background-size: cover;
}


.social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}


.rd-txt a.btn10 {
    width: 30%;
}

.rd-txt h3 {
    font-size: 60px;
}

.appoinment_secc form input,
textarea,
select {
    width: 100%;
    height: 60px;
    padding: 12px 10px !important;
    margin-bottom: 30px;
    border-radius: 7px !important;
}


.appoinment_secc form select {
    font-size: 13px;
    color: #606060;
    font-weight: 500;
    font-family: 'Poppins';
    text-transform: uppercase;
}

.appoinment_secc form input::placeholder {
    font-size: 13px;
    color: #8e8e8e;
    font-weight: 500;
    font-family: 'Poppins';
    text-transform: uppercase;
}

.appoinment_secc form textarea::placeholder {
    font-size: 13px;
    color: #8e8e8e;
    font-weight: 500;
    font-family: 'Poppins';
    text-transform: uppercase;
}


.appoinment_secc form textarea {
    resize: none;
    height: 200px;
}

/*---------------------------------------------------- Contact Us Section End ------------------------------------------------------------- */


/*---------------------------------------------------- Book Now Section Start ------------------------------------------------------------- */

.online-restions-sec input {
    width: 100%;
    height: 65px;
    padding: 0 20px;
    margin-bottom: 5%;
    border: 1px solid #c1c0c0;
    border-radius: 10px;
    color: #636363;
}

.online-restions-sec select {
    width: 100%;
    height: 65px;
    padding: 0 21px;
    margin-bottom: 5%;
    border: 2px solid #e5e5e5;
    font-size: 16px;
    color: #636363;
    -webkit-appearance: none;
    border-radius: 7px;
}

.online-restions-sec textarea::placeholder,
.online-restions-sec input::placeholder {
    font-weight: 400;
    color: #636363;
    font-size: 16px;
}

.online-restions-sec textarea {
    width: 100%;
    height: 200px;
    padding: 15px 20px !important;
    margin-bottom: 4%;
    border: 2px solid #c1c0c0;
    resize: none;
    border-radius: 7px;
    background: #f8f8f8;
}

.online-restions-sec {
    text-align: center;
    padding: 40px 0 100px;
    background-image: url(../images/team-bg.jpg);
    background-repeat: no-repeat;
}

.online-restions-sec .theme_btn {
    width: 46%;
    font-size: 19px;
}

.online-restions-sec button {
    width: 40%;
    justify-content: center;
    font-size: 25px;
    padding: 18px;
    background: #5187f5;
    border: unset;
    border-radius: 8px;
    color: #fff;
}

/*---------------------------------------------------- Book Now Section End ------------------------------------------------------------- */


section.banner-sec.iner.in {
    padding: 200px 0;
}







/*---------------------------------------------------- Testimonial Start ------------------------------------------------------------- */

section.testimonial-sec {
    padding-bottom: 100px;
}

.testi-head {
    margin-bottom: 30px;
}

.testi-main img {
    margin-bottom: 10px;
    object-fit: scale-down;
    width: 80px;
    height: 80px;
}

.testi-main {
    padding: 20px 25px;
    border: 3px solid #ff911f;
    transition: 0.9s;
    height: 220px;
}

.testi-slider .slick-slide {
    opacity: 1;
}

.testi-main h5 {
    text-transform: uppercase;
    font-size: 18px;
    color: #000;
    margin-bottom: 5px;
}

.testi-main h6 {
    text-transform: uppercase;
    font-size: 18px;
    color: #ff911f;
    margin-bottom: 15px;
}

.testi-main p {
    font-size: 15px;
}

.testi-slider .slick-slide.slick-current.slick-active {
    background: #ff911f;
    border: unset;
}

.testi-slider .slick-slide.slick-current.slick-active p {
    color: #fff;
}

.testi-slider .slick-slide.slick-current.slick-active h6 {
    color: #fff;
}

.testi-slider .slick-slide.slick-current.slick-active h5 {
    color: #fff;
}

.testi-slider button.slick-prev {
    top: -65px;
    left: 89%;
    width: 50px;
    height: 50px;
    border: 2px solid #ff7f50;
    transition: 0.9s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testi-slider button.slick-next {
    top: -65px;
    right: 34px;
    border: 2px solid #ff7f50;
    width: 50px;
    height: 50px;
    transition: 0.9s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testi-slider button.slick-prev:hover {
    background: #ff7f50;
}

.testi-slider button.slick-next:hover {
    background: #ff7f50;
}

.testi-slider button.slick-next:before {
    content: '';
    display: block;
    background: url(../images/arrow-long.png);
    width: 23px;
    height: 10px;
    background-repeat: no-repeat;
    background-size: auto;
    transform: rotate(180deg);
}

.testi-slider button.slick-next:hover:before {
    filter: invert(1);
}

.testi-slider button.slick-prev:before {
    content: '';
    display: block;
    background: url(../images/arrow-long.png);
    width: 23px;
    height: 10px;
    background-repeat: no-repeat;
    background-size: auto;
}

.testi-slider button.slick-prev:hover:before {
    filter: invert(1);
}

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

section.testimonial-iner-sec .testi-main {
    margin-bottom: 45px;
}

section.testimonial-iner-sec .testi-main:hover {
    background: #ff7f50;
    border: unset;
}

section.testimonial-iner-sec .testi-main:hover h5 {
    color: #fff;
}

section.testimonial-iner-sec .testi-main:hover h6 {
    color: #fff;
}

section.testimonial-iner-sec .testi-main:hover p {
    color: #fff;
}

/*---------------------------------------------------- Testimonial End ------------------------------------------------------------- */



















































