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

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

:root {
    --background-color: -webkit-linear-gradient(-90deg, #eb432b 0%, #b9200b 100%);
}



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

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

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

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

img {
    max-width: 100%;
}

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

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

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

p {
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    font-family: "Montserrat", sans-serif;
    color: #666666;
}


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

@font-face {
    font-family: 'Evogria';
    src: url(../fonts/Evogria.otf);
}

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



/***** 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 {
    border: 1px solid #fff;
    border-radius: inherit;
    color: #ffffff;
    z-index: 1;
    background: #c0162b;
    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;
    text-transform: uppercase;
    width: fit-content;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-weight: 500;
    padding-left: 20px;
    padding-right: 0;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--background-color);
    z-index: -1;
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms
}

.theme_btn:hover {
    color: #fff;
}

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

.theme_btn span {
    background: #fff;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
}

.theme_btn:hover img {
    filter: brightness(0) saturate(100%) invert(13%) sepia(71%) saturate(766%) hue-rotate(169deg) brightness(95%) contrast(98%);
}

.theme_btn img {
    transition: 0.5s;
}

.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: 'Evogria';
    font-size: 63px;
    line-height: 1.2;
    color: #fff;
    font-weight: 500;
    margin: 0 0 17px;
    text-transform: uppercase;
}

h2 {
    font-family: 'BlenderPro';
    font-size: 64px;
    line-height: 1.2;
    color: #000;
    font-weight: 500;
    margin: 0 0 30px;
    text-transform: uppercase;
}

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

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

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

h6 {
    font-family: 'Poppins', 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 */

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

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

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

.menuSec li:hover ul {
    opacity: 1;
}

.menuSec ul li a {
    position: relative;
    text-decoration: none;
    font-size: 16px;
    color: #ffffffba;
    font-family: 'BlenderPro';
    text-transform: uppercase;
}

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

.menuSec li>ul.sub-menu {
    position: absolute;
    z-index: 0;
    background-color: #000000;
    left: 0px;
    width: 450px;
    text-align: left;
    top: 100%;
    opacity: 1;
    column-count:2;
    transition: 0.5s ease-in-out;
    display:none;
}

.menuSec li:hover ul {
    transition: 0.5s ease-in-out;
    display:block;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 10px 15px !important;
    color: #fff !important;
    font-size: 13px;
    line-height: 20px;
    width: 100%;
}

.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;
    width: 100%;
}

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


/* 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  */
/* ++++++++++++++++++++++++ HOME ++++++++++++++++++++++++ */
main.head-main {
    position: relative;
    background-image: url(../images/main-bg.jpg);
    background-size: cover;
    z-index: 0;
}

header {
    padding: 12px 0;
    z-index: 999;
    position: relative;
}

.header-btn {
    display: flex;
    align-items: center;
    justify-content: right;
}

.container-fluid {
    padding: 0 6%;
}

main.head-main:before {
    position: absolute;
    content: '';
    background: #c0162b;
    left: 0;
    top: 0;
    width: 24%;
    height: 42%;
    z-index: 9;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
}

main.head-main:after {
    position: absolute;
    content: '';
    background: #c0162b;
    right: 0;
    bottom: 0;
    width: 24%;
    height: 39%;
    z-index: 9;
    clip-path: polygon(100% 100%, 20% 100%, 100% 10%);
}

.cnt-career {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 40px;
}

.head-phn {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
}

.head-phn>div a {
    display: block;
}

.head-phn>div span {
    color: #ffffff9c;
    font-size: 18px;
}

.head-phn>div a {
    color: #fff;
    font-weight: 400;
    font-size: 26px;
}

.head-phn img {
    width: auto;
    height: auto;
}

.btn-1 {
    background: var(--background-color);
    color: #fff;
    font-size: 14px;
    height: 50px;
    width: fit-content;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    gap: 10px;
}

.btn-1 span {
    width: 16px;
    height: 16px;
    background: #fff;
    clip-path: polygon(0 0, 100% 50%, 0 100%, 20% 50%);
    transition: 0.5s;
}

.banner_text p {
    color: #ffffffe8;
    width: 80%;
    margin-bottom: 30px;
}

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

.banner_text {
    padding-left: 20%;
    z-index: 99;
    position: relative;
}

section.main_slider {
    position: relative;
}

section.main_slider:before {
    position: absolute;
    content: '';
    width: 823%;
    left: 9%;
    top: 8%;
    height: 82.8%;
    z-index: 1;
    background-image: url(../images/clip-path.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 9;
}

section.aboutus {
    padding: 80px 0;
}

section.aboutus img {
    width: 100%;
    border-radius: 15px;
}

.btn-1:hover {
    background: #fff;
    box-shadow: 0 0 8px #ccc;
    color: #ca2c16;
}

.btn-1:hover span {
    background: #ca2c16;
}

.abt-left img {
    margin-bottom: 50px;
}

.big-title {
    width: fit-content;
    padding: 10px 20px;
    border-radius: 10px;
    color: #fff;
    background: var(--background-color);
    font-size: 87px;
}

.reight-abt img {
    height: 600px;
}

/* Counter */

section.counter-sec {
    padding: 90px 0;
    background-image: url(../images/counter-bg.jpg);
    background-size: cover;
    text-align: center;
    background-position: center;
}

section.counter-sec h2.big-title {
    margin-bottom: 50px;
    color: #fff;
}

section.counter-sec h3 {
    font-size: 28px;
    color: #fff;
    font-family: 'BlenderPro';
    font-weight: 600;
    margin: 0;
}

span.counter {
    font-size: 74px;
    font-family: 'BlenderPro';
    font-weight: 700;
}

section.counter-sec .plus {
    line-height: 1;
    font-size: 55px;
    color: #fff;
    font-family: 'amplesoftpro';
}

/* end  */
section.offer {
    padding: 80px 0;
}

.top-heading {
    text-align: center;
}

.top-heading p {
    width: 40%;
    margin: 0 auto;
}

.top-heading h2 {
    margin-bottom: 20px;
}

.top-heading {
    margin-bottom: 50px;
}

.off-wrap h3 {
    position: relative;
    font-size: 90px;
    font-family: 'BlenderPro';
    line-height: 1;
    background: -webkit-linear-gradient(#e63f28, #c12610);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: fit-content;
}

.off-wrap h4 {
    font-size: 21px;
    color: #000000;
    font-family: 'Montserrat';
    text-transform: uppercase;
    font-weight: 600;
}

.btn-2 {
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid #db3721;
    font-weight: 500;
    margin-top: 30px;
    display: inline-block;
    background: -webkit-linear-gradient(#e63f28, #c12610);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.off-wrap p {
    margin-bottom: 30px;
    margin-top: 30px;
}

.off-wrap img {
    width: 100%;
    border-radius: 10px;
}

.off-wrap h3:before {
    position: absolute;
    content: '';
    background: #e3e3e3;
    bottom: 2px;
    left: -10%;
    width: 120%;
    height: 28px;
    z-index: -1;
}

.off-wrap {
    padding: 40px 0;
    width: 100%;
    border-right: 1px solid #ccc;
    padding-right: 7%;
    padding-left: 3%;
}

.col-md-4:last-child .off-wrap {
    border: 0;
}

section.expert {
    background-image: url(../images/expert-bg.jpg);
    padding: 70px 0;
    background-size: cover;
    margin-top: 100px;
}

.expert-img img {
    border-radius: 10px;
    width: 90%;
    height: 570px;
    margin-top: -150px;
    object-fit: cover;
}

.text-expert h2 {
    position: relative;
    color: #fff;
    font-size: 60px;
    width: 90%;
}

.text-expert h2:before {
    position: absolute;
    content: '';
    background: #fff;
    left: -40px;
    top: 10px;
    width: 10px;
    height: 100%;
}

.text-expert p {
    color: #fff;
    line-height: 28px;
    margin-bottom: 23px;
    font-size: 15px;
}

section.expert .btn-1 {
    border: 1px solid #fff;
}

/* Testimonial Section Start */

.testimonial-sec {
    padding: 80px 0 80px;
    z-index: 0;
    position: relative;
}


.qouma img {
    width: auto;
    position: absolute;
    right: 20px;
    bottom: 20px;
}

ul.test-profile img {
    width: 120px;
    height: 120px;
    border-radius: 100px;
    border: 2px solid #ffffff;
    padding: 3px;
    box-shadow: 0 0 8px #ccc;
}

.testi-text {
    background: #fff;
    padding: 40px;
    position: relative;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    border-radius: 6px;
}

.testi-text p {
    line-height: 35px;
    font-size: 18px;
    margin: 0;
    color: #000;
    padding-bottom: 50px;
}

ul.test-profile h6 {
    color: #7c7c7c;
    font-size: 14px;
    margin: 0 0 10px;
}

ul.test-profile {
    display: flex;
    align-items: end;
    justify-content: flex-start;
    gap: 20px;
    margin-top: -50px;
    padding-left: 6%;
    margin-bottom: 0;
    z-index: 99;
    position: relative;
}

ul.test-profile h4 {
    font-size: 29px;
    color: #000;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 3px;
}

.testi-slider .slick-slide {
    opacity: 1;
    margin-top: 10px;
}


.testi-box {
    width: 96%;
    margin: 0 auto;
}

section.testimonial-sec .row {
    align-items: center;
}


/* Testimonial Section End */
/* footer start */
.footer-links.footer-links-contact li {
    margin: 20px 0;
    gap: 20px;
    display: flex;
    align-items: center;
}

.footer-links.footer-links-contact li a {
    color: #8c8c8a;
    font-family: 'Montserrat';
}


.footer-links.footer-links-contact li i {
    color: white;
}

footer {
    background: #32322f;
    padding-top: 5%;
}
.ftr_logo  a img {
    width: 230px;
    margin-bottom: 30px;
}

footer .row {
    align-items: center;
}

.ftr-right-bar .row {
    align-items: start;
}


.bar {
    display: block;
    margin: 0 0 10px 0;
    color: #ffffff;
    padding: 0 0 20px 0;
    position: relative;
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'BlenderPro';
}

.ftr_box {
    position: relative;
    z-index: 2;
    padding: 20px 20px 40px 30px;
    height: 281px;
}

.ftr_box::before {
    position: absolute;
    height: 80%;
    width: 1px;
    content: '';
    background-color: #474744;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.ftr_box1::after {
    position: absolute;
    height: 100%;
    width: 1px;
    content: '';
    background-color: #474744;
    bottom: 0;
    right: 0;
}

.ftr_logo p {
    width: 100%;
    margin: 0 0 30px 0px;
    color: #8c8c8a;
}

.ftr_logo h5 {
    color: #fff;
}

ul.footer_social {
    display: flex;
    align-items: center;
    gap: 10px;
}

ul.footer_social li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #8c8c8a;
    transition: 0.3s ease-in-out;
}

ul.footer_social li a:hover i {
    transition: 0.3s ease-in-out;
    color: #fff;

}

ul.footer_social li a:hover {
    transition: 0.3s ease-in-out;
    background: -webkit-linear-gradient(#e63f28, #c12610);
}

ul.footer_social li a i {
    color: #fff;
    font-size: 15px;
    color: #8c8c8a;
    transition: 0.3s ease-in-out;
}

ul.services a {
    font-size: 14px;
    margin: 0 0 25px 0;
    transition: 0.3s ease-in-out;
}

ul.services {
    column-count: 2;
}

.ftr_box a {
    font-size: 14px;
    font-family: 'Montserrat';
    color: #8c8c8a;
    display: block;
    width: fit-content;
    margin: 15px 0;
}

.footer-links.footer-links-contact ul li img {
    object-fit: scale-down;
    width: auto;
}

.copy_right p {
    margin: 0;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #474744;
    color: #8c8c8a;
}

.banner_main_box::before {
    position: absolute;
    width: 37%;
    height: 220px;
    right: -20%;
    bottom: 0;
    content: '';
    background: #d12128;
}

ul.our-happy-box-ul img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 1px 1px 7px 4px #00000029;
}



.ftr-right-bar {
    position: relative;
    z-index: 6;
}

.ftr-right-bar::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background: -webkit-linear-gradient(#e63f28, #c12610);
    content: '';
    z-index: 2;
}

.footer-links.footer-links-contact a {
    margin: 0px 0;
}


ul.services a:hover {
    padding: 0 0 0 15px;
    transition: 0.3s ease-in-out;
}

ul.quick a {
    transition: 0.3s ease-in-out;
}

ul.quick a:hover {
    padding: 0 0 0 15px;
    transition: 0.3s ease-in-out;
}

/* footer end */
/* ++++++++++++++++++++++++ HOME END ++++++++++++++++++++++++ */

/* ++++++++++++++++++++++++  Inner Pages ++++++++++++++++++++++++  */
main.head-main.inn-head:before {
    height: 60%;
}

main.head-main.inn-head:after {
    height: 60%;
}
section.main_slider.inn-banner:before {
      background-image: url(../images/inner-clip.png);
    left: 4%;
    background-size: contain;
}

section.main_slider.inn-banner img.img-fluid {
    height: 67vh;
}
section.main_slider.inn-banner .banner_text {
    padding-left: 14%;
}
section.main_slider.inn-banner  .banner_text p {
    margin: 0;
}

section.main_slider.inn-banner  .banner_text {
    margin-bottom: -60px;
}
section.miss-vis {
    padding: 80px 0;
}

.miss-img img {
    width: 90%;
    border-radius: 10px;
    height: 380px;
    object-fit: cover;
}
section.miss-vis .row {
    align-items: center;
}
.miss-img.vis-img img {
    margin: 0 0 0 auto;
    display: block;
}
/*inn CONTACT START*/
.contact_page {
    padding: 70px 0;
}
.contact_detail_box:hover {
    background: #c0162b;
}
.contact_form input {
    height: 52px;
    width: 100%;
    border: 2px solid #e4e4e4;
    margin-bottom: 25px;
    /* border-radius: 100px; */
    padding: 0 15px;
    border-radius: 50px;
}
.contact_detail_box:hover img {
    filter: sepia(1);
}

.contact_detail_box:hover * {
    color: #fff;
}

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

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

.contact_form textarea {
    width: 100%;
    height: 250px;
    margin-bottom: 20px;
    width: 100%;
    border: 2px solid #e4e4e4;
    border-radius: 30px;
    padding: 15px 15px;
    resize: none;
}

.section_head {
    margin-bottom: 40px;
}

.section_head p {
    color: #636363;
    width: 70%;
    margin: 0 auto;
    font-weight: 400;
    font-size: 14px;
}

.section_head h3 {
    color: #222;
    font-size: 60px;
    margin-bottom: 15px;
    line-height: 60px;
    font-family: 'Evogria';
    text-transform: uppercase;
}

.br_gradient {
    padding: 2px;
    border-radius: 12px;
}

.contact_detail_box p span {
    display: block;
}

.contact_page h4 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 37px;
    color: #222222;
    font-family: 'Evogria';
}

.contact_detail_box figure img {
    margin: auto;
    height: 53px;
    width: 55px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(18%) sepia(27%) saturate(6700%) hue-rotate(354deg) brightness(98%) contrast(89%);
}

.contact_detail_box h2 {
    font-size: 20px;
    line-height: 24px;
    color: #000;
    font-weight: 700;
    margin: 30px 0 10px 0;
}

.contact_detail_box.box-2 {
}

.contact_detail_box p {
    font-size: 16px;
    line-height: 25px;
    color: #000;
    margin: 0;
    font-weight: 400;
    margin-bottom: 0;
}

.contact_detail_box {
    padding: 40px 30px;
    border: 2px solid #eeeeee;
    height: 235px;
    border-radius: 0px;
    border-radius: 5px;
    transition: 0.5s;
}

.contact_form {
    padding-bottom: 80px;
}

.contact_form label {
    font-size: 15px;
    color: #5d5d5d;
    margin-bottom: 7px;
    font-weight: 400;
}

.btn_wrap button {

margin: 0 auto;
}

/*CONTACT END*/

/*book start*/

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

section.book-sec input, section.book-sec select {
    width: 100%;
    height: 55px;
    margin: 0 0 20px;
    border-radius: 7px;
    border: 1px solid #eee;
    padding: 0 20px;
    font-size: 15px;
    color: #666666;
}

section.book-sec textarea {
    width: 100%;
    height: 150px;
    border-radius: 7px;
    padding: 20px;
    border-color: #eee;
}

section.book-sec button {
    width: 100%;
    border: 0;
    margin-top: 20px;
    text-transform: uppercase;
    transition: 0.5s;
}

section.book-sec .container {
    background: #fff;
    box-shadow: 0 0 20px 0 #00000045;
    padding: 50px;
}

section.book-sec button:hover {
    background: #000;
}

section.book-sec h2 {
    margin-bottom: 30px;
    font-size: 55px;
    font-family: 'Evogria';
}

/*book */
/* Gallery */
section.gallery {
    padding: 80px 0 50px;
}
.gall-wrap {
    position: relative;
    margin-bottom: 40px;
}

.gall-wrap img {
    width: 100%;
    border-radius: 15px;
    height: 450px;
    transition: .5s;
}

.gall-wrap a img {
    width: auto;
    height: auto;
}

.btn-3 {
    width: 90px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--background-color);
    border-radius: 15px 0 15px 0;
}

.gall-wrap:hover img {
    filter: grayscale(1);
}
.ser-wrap .row {
    align-items: center;
}

.ser-wrap {
    padding: 40px;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-bottom: 40px;
}

section.service {
    padding: 80px 0;
}

section.service .ser-wrap img {
    width: 588px !important;
    height: 561px !important;
    border-radius: 20px!important;
}
/* end */
.nav-tabs .nav-link.active {
    background: #c8152b;
    color: #ffff;
}

ul#myTab {
    gap: 20px;
    border: 0;
    margin-bottom: 20px;
}

.nav-tabs .nav-link {
    border: 1px solid #c8152b;
    color: #c8152b;
    text-transform: uppercase;
    font-family: 'BlenderPro';
    border-radius: 8px;
}

ul.check {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
}

ul.check li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    width: 33%;
}

ul.check li p {
    margin: 0;
}

ul.check li i {
    color: #c8152b;
    font-size: 20px;
}

.tab-overview h3 {
    text-transform: uppercase;
    font-size: 24px;
    font-family: 'Montserrat';
}

.ser-det-wrap h2 {
    margin: 20px 0;
}

section.service-detail {
    padding: 80px 0;
}
/* Reviews */
.tab-content textarea {
    width: 100%;
    border: 0px;
    background-color: rgb(246, 246, 246);
    padding: 10px;
    margin-bottom: 20px;
    font-weight: 500;
    color: rgb(124, 124, 124);
}

 .tab-content form {
    margin-bottom: 70px;
}


.productdetailportion img {
    width: 90%;
    height: 610px;
    object-fit: contain;
    object-position: left;
}

 .tab-content input[type="text"] {
    width: 100%;
    border: 0px;
    background-color: rgb(246, 246, 246);
    padding: 10px;
    height: 50px;
    margin-bottom: 20px;
    font-weight: 500;
    color: rgb(124, 124, 124);
}

.rev-btn {
    display: inline-block;
}

.rate {
    height: 46px;
    /* padding: 0 10px; */
    float: left;
    display: block;
    clear: both;
}

.rate input {
    top: 0;
    visibility: hidden;
}

.rate:not(:checked)>input {
    position: absolute;
    /* top: -9999px; */
}

.rate:not(:checked)>label {
    float: right;
    width: 0.8em;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 35px;
    color: #ccc;
    margin: 0 3px;
}

button.btn1.tabs-btn {
    font-size: 16px;
    padding: 10px 50px;
    margin-top: 20px;
    display: inline-block;
}

.rate:not(:checked)>label:before {
    content: '\f005';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 26px;
}

.rate>input:checked~label {
    color: #f9d71c;
}

.rate:not(:checked)>label:hover,
.rate:not(:checked)>label:hover~label {
    color: #deb217;
}

.rate>input:checked+label:hover,
.rate>input:checked+label:hover~label,
.rate>input:checked~label:hover,
.rate>input:checked~label:hover~label,
.rate>label:hover~input:checked~label {
    color: #c59b08;
}

.description .tab-content p {
    color: #000000b5;
    font-weight: 500;
    font-size: 18px;
    line-height: 35px;
    padding: 0;
}

.review-heading {
    letter-spacing: 1px;
    margin: 30px 0px;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.review-heading span {
    font-size: 1.3rem;
    color: #252525;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.review-box-container {
    display: block;
}

.review-box {
    width: 100%;
    box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    padding: 20px;
    margin: 15px;
    cursor: pointer;
}

.profile-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.profile {
    display: flex;
    align-items: center;
}

.name-user {
    display: flex;
    flex-direction: column;
}

.name-user strong {
    color: #3d3d3d;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.name-user span {
    color: #979797;
    font-size: 0.8rem;
}

.reviews {
    color: #f9d71c;
}

main.head-main:before {
    position: absolute;
    content: '';
    background: -webkit-linear-gradient(-90deg, #eb432b 0%, #b9200b 100%);
    left: 0;
    top: 0;
    width: 24%;
    height: 42%;
    z-index: 9;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
}


main.head-main:after {
    position: absolute;
    content: '';
    background: -webkit-linear-gradient(-90deg, #eb432b 0%, #b9200b 100%);
    right: 0;
    bottom: 0;
    width: 24%;
    height: 39%;
    z-index: 9;
    clip-path: polygon(100% 100%, 20% 100%, 100% 10%);
}

.theme_btn {
    border: 1px solid #fff;
    border-radius: inherit;
    color: #ffffff;
    z-index: 1;
    background: -webkit-linear-gradient(-90deg, #eb432b 0%, #b9200b 100%);
    position: relative;
    font-size: 16px;
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
    overflow: hidden;
    text-transform: uppercase;
    width: fit-content;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-weight: 500;
    padding-left: 20px;
    padding-right: 0;
}




/* end */
/*  ++++++++++++++++++++++++  Inner Pages end ++++++++++++++++++++++++  */
@media only screen and (min-width: 1661px) and (max-width: 1800x){
	section.main_slider:before {
    left: 6%;
    top: 6%;
}

header .menuSec img.custom-logo {
    margin: 0;
}
	
}
@media only screen and (min-width: 1400px) and (max-width: 1600px){
	h1 {
    font-size: 50px;
}

.banner_text p {
    width: 100%;
}

section.main_slider:before {
    left: 6%;
}

.testi-text p {
    font-size: 15px;
    line-height: 30px;
}
	header .menuSec img.custom-logo {
    margin: 0;
}
section.main_slider.inn-banner:before {
    left: 5%;
    width: 90%;
    top: 90px;
}
}
@media only screen and (min-width: 1200px) and (max-width: 1399px){
 section.book-sec h2 {
    font-size: 40px;
}
	header .col-md-3.col-sm-6.col-6.text-right {
    padding: 0;
}

header a.btn-1 {
    font-size: 13px;
}

header .menuSec img.custom-logo {
    margin: 0;
}

h1 {
    font-size: 33px;
}

.banner_text p {
    width: 100%;
}

.cnt-career {
    gap: 20px;
}

section.main_slider:before {
    left: 8%;
    width: 83%;
}
.testi-text p {
    font-size: 14px;
    line-height: 24px;
}

.testi-text {
    padding: 40px 20px;
}
	section.main_slider.inn-banner:before {
    top: 22%;
    width: 88%;
}
}
@media only screen and (min-width: 992px) and (max-width: 1199px){
h1 {
    font-size: 30px;
}

.banner_text {
    padding-left: 40px;
}

section.main_slider:before {
    left: 3%;
    top: 20px;
}

section.main_slider .carousel-caption .col-md-7.align-self-center {
    width: 70%;
}
    html .menuSec img {
        margin: 0;
        width: 100%;
        height: 110px;
    }

header .btn-1 {
    font-size: 10px;
}

header .col-md-3.col-sm-6.col-6.text-right {
    padding: 0;
}

h2 {
    font-size: 50px;
}

.reight-abt img {
    height: 520px;
    object-fit: cover;
}

span.counter {
    font-size: 60px;
}

.top-heading p {
    width: 70%;
}

.off-wrap p {
    font-size: 15px;
}

.text-expert h2 {
    font-size: 39px;
}	
	html{
		overflow-x:hidden;
	}
	.ftr_box {
    padding: 10px;
    padding-top: 17px;
}

.ftr_box a {
    font-size: 11px;
}
section.main_slider.inn-banner:before {
    background-image: url(../images/inner-clip.png);
        left: 6%;
        background-size: contain;
        width: 92%;
        top: 107px;
}
section.main_slider.inn-banner img.img-fluid {
    height: 500px;
}	
.gall-wrap img {
    object-fit: cover;
}
.contact_detail_box {
    padding: 40px 20px;
}
section.book-sec h2 {
    font-size: 40px;
}
}
@media only screen and (min-width: 768px) and (max-width: 991px){
	img.img-fluid {
    height: 590px;
}

.carousel-caption .col-md-7 {
    width: 80%;
}

h1 {
    font-size: 29px;
}

.banner_text p {
    width: 100%;
}

.head-phn>div a {
    font-size: 18px;
}

.head-phn>div span {
    font-size: 14px;
}

.head-phn img {
    width: 30px;
}

.cnt-career {
    gap: 20px;
}

.cnt-career .theme_btn {
    font-size: 12px;
}

.theme_btn span {
    width: 40px;
}

section.main_slider:before {
        left: 3%;
        width: 93%;
        top: 19%;
        height: 72%;
}

.banner_text {
    padding-left: 14%;
}
.menuSec img {
     height: 90px !important;
     width: 200px;
     object-fit: cover;
     margin: 0 !important;
}

.container-fluid {
    padding: 0 3%;
}

.btn-1 {
        padding: 10px;
        font-size: 9px;
	}

.menuSec ul li a {
    font-size: 14px;
}
header .col-md-3.col-sm-6.col-6.text-right {padding: 0;}
	
.big-title {
    font-size: 30px;
    width: fit-content;
}

h2 {
    font-size: 40px;
    line-height: 1.2;
}

section.aboutus img {
    height: 570px;
    object-fit: cover;
}

section.aboutus .abt-left img {
    height: 300px;
    object-fit: cover;
    margin-bottom: 20px;
}
section.counter-sec .plus {
    font-size: 30px;
}

span.counter {
    font-size: 50px;
}

section.counter-sec h3 {
    font-size: 20px;
}

section.counter-sec {
    padding: 50px 0;
}

.top-heading p {
    width: 80%;
}

section.offer .col-md-4 {
    width: 50%;
}

.off-wrap {
    border-right: 0;
    padding-top: 0;
}

section.offer .row {
    justify-content: center;
}

.text-expert h2 {
    font-size: 31px;
    margin: 0;
    margin-bottom: 10px;
}

.text-expert h2:before {
    top: 5px;
}

.expert-img img {
    height: 430px;
}

.text-expert p {
    font-size: 12px;
    line-height: 24px;
}

section.offer {
    padding-bottom: 20px;
}

.testi-text p {
    font-size: 14px;
    line-height: 24px;
}

footer .col-lg-3 {
    width: 100%;
}

footer .col-lg-9 .row .col-lg-4 {
    width: 33.33333%;
}

.ftr_box::before {
    display: none;
}

.ftr_box1::after {
    display: none;
}

.ftr_box {
    padding-left: 0;
}

ul.quick a {
    font-size: 13px;
}

.footer-links.footer-links-contact a {
    font-size: 11px;
}

.footer-links.footer-links-contact li {
    margin: 10px 0;
}

ul.quick a:hover {
    margin-bottom: 10px;
}
	.ftr-right-bar::before {
    left: -10px;
    top: 7px;
}
section.service .ser-wrap img {
    height: 400px !important;
}

.ser-cont h2 {
    font-size: 33px;
}

.ser-cont p {
    line-height: 20px;
}
section.main_slider.inn-banner:before {display: none;}

section.main_slider.inn-banner img.img-fluid {
    height: 430px;
}
.gall-wrap img {
    height: 400px;
    object-fit: cover;
}
.contact_page h4 {
    font-size: 17px;
}

.contact_detail_box p {
    font-size: 12px;
}

.contact_detail_box {
    padding: 40px 10px;
}

.section_head h3 {
    font-size: 50px;
}
section.book-sec .col-lg-8.col-md-6.col-12.centerCol {
    width: 100%;
}

section.book-sec h2 {
    font-size: 40px;
}
html	.ss-12 {
    margin-left: 190px;
}
}









@media only screen and (min-width: 520px) and (max-width: 767px){}
@media only screen and (min-width: 300px) and (max-width: 519px){
.menuSec img {
    width: 210px;
    height: auto;
    margin: 0 auto;
    display: block;
}
header a.btn-1 {
    font-size: 10px;
    justify-content: center;
}

header .col-md-3.col-sm-6.col-6 {
    width: 100%;
}

.header-btn {
    justify-content: center;
    margin-top: 10px;
}
	
img.img-fluid {
    height: 540px;
    object-fit: cover;
}

.banner_text {
    padding-left: 0;
    text-align: center;
}

h1 {
    font-size: 25px;
}

.banner_text p {
    width: 100%;
}

.cnt-career {
    display: block;
}

.cnt-career a {
    margin: 0 auto;
    margin-bottom: 10px;
}

.head-phn {
    justify-content: center;
}
h2 {
    font-size: 30px;
}

.abt-left {
    text-align: center;
}

.abt-left a {
    margin: 0 auto;
}
	section.main_slider:before {
    display: none;
}

main.head-main:before {
    width: 300px;
}

main.head-main:after {
    width: 300px;
}
	.container-fluid {
    padding: 0 4%;
}

.big-title {
    font-size: 39px;
    text-align: center;
    width: auto;
    margin-top: 10px;
}

section.aboutus img {
    height: 300px;
    object-fit: cover;
}

span.counter {
    font-size: 50px;
}

section.counter-sec .plus {
    font-size: 40px;
}

section.counter-sec h3 {
    font-size: 23px;
}

section.counter-sec .row .col-md-3 {margin-bottom: 14px;}

section.counter-sec {
    padding: 60px 0 40px;
}

.top-heading p {
    width: 90%;
}

.top-heading {
    margin-bottom: 10px;
}

.off-wrap {
    text-align: center;
}

.off-wrap h3 {
    margin: 0 auto;
    margin-bottom: 20px;
}

.expert-img img {
    width: 100%;
    height: 300px;
}

.text-expert h2 {
    font-size: 29px;
    width: 100%;
    margin-top: 10px;
}

.text-expert {
    text-align: center;
}

.text-expert a {
    margin: 0 auto;
}

.testimonial-sec {
    padding: 60px 0;
}

.testi-text p {
    font-size: 12px;
    line-height: 20px;
}

.testi-text {
    padding: 30px 20px;
}

ul.test-profile h4 {
    font-size: 18px;
}

ul.test-profile h6 {
    font-size: 13px;
}

ul.test-profile img {
    width: 100px;
    height: 100px;
}
	.ftr-right-bar::before {
    display: none;
}
    h5.bar {
        background: #c0172c;
        padding: 10px;
    }

.ftr_box {
    height: auto;
    padding: 0 10px;
    margin-bottom: 30px;
    padding-left: 0;
}
	section.main_slider.inn-banner .banner_text {
    padding: 0;
}
section.main_slider.inn-banner .banner_text p {
    width: 82%;
    font-size: 13px;
    margin: 0 auto;
}
section.main_slider.inn-banner img.img-fluid {
    height: 400px;
}

section.service .ser-wrap img {
    height: 300px !important;
    object-fit: cover;
    margin-bottom: 10px;
}

.ser-wrap {
    padding: 20px;
}

.ser-cont {
    margin-bottom: 20px;
}

section.service .ser-wrap:nth-child(even) .row {
    flex-direction: column-reverse;
}
	section.service-detail .ss-12 {
    margin: 0;
    margin-top: 10px;
}
.miss-img.vis-img img {
    width: 100%;
}

.miss-img img {
    margin-bottom: 10px;
    width: 100%;
}
	.gall-wrap img {
    height: 360px;
    object-fit: cover;
}
	.section_head h3 {
    font-size: 26px;
}

.section_head p {
    width: 100%;
}
section.book-sec h2 {
    font-size: 16px;
}

section.book-sec .container {
    padding: 20px;
}

.gform_wrapper.gravity-theme .gfield_label {
    font-size: 14px;
}

section.book-sec {
    padding: 30px 10px;
}
	html{
		overflow-x:hidden;
	}
}


