@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=Rajdhani:wght@300;400;500;600;700&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:#DF8B00;
  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-family: 'Poppins';
    font-size: 18px;
    font-weight: 500;
    line-height: 29px;
}

/***** 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: 'azo';
  src: url(../fonts/azo.ttf);
  font-weight: 400;
  font-style: normal
}
/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.theme-btn {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #fff;
    margin: 20px 20px 20px 0;
    border-radius: 6px;
    /* -webkit-border-radius: 50px; */
    -moz-border-radius: 50px;
    text-transform: capitalize;
    border: unset;
    text-transform: uppercase;
    font-family: 'Poppins';
    background: #f8a80d;
     padding: 21px 14px;
    letter-spacing: 0px;
    position: relative;
}

.theme-btn:hover {
    background: #561384;
    color: #fff;
    box-shadow: 4px 3px 3px 1px #f8a80d;
}

.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: 'Poppins', Sans-Serif;
  font-size: 55px;
  line-height: 60px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 17px;
}

h2 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 55px;
  line-height: 60px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 30px;
}

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

h4 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 24px;
  line-height: 29px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 13px;
}

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

h6 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 18px;
  line-height: 23px;
  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: 29px 0;
    position: absolute;
    width: 100%;
    z-index: 2;
    transition: 0.5s all;
}
.menuSec.sticky {
    background: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 10px 20px 0px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.menuSec.sticky a img {
    width: 63%;
    margin-top: -16px;
}
.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 12px 0;
  text-align: right;
  text-transform: capitalize;
}

.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 17px;
    font-family: 'Poppins';
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
}

/*.menuSec ul li a:after {
  content: '';
  position: absolute;
  top: 35%;
  right: 0;
  width: 1px;
  height: 13px;
  background-color: #393939;
}*/

.menuSec ul li:last-child a {
    padding-right: 22px;
}

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

.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:hover a {}

.menuSec li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menuSec ul ul ul {
  left: 100%;
  top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
  content: " ";
  display: table;
}

.menuSec ul:after {
  clear: both;
}

.menuSec li>ul>li:hover>ul {
  left: 230px;
  top: 0px;
  width: 270px;
}
.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}
.droopdwon {
    float: left;
}
.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}
/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}
/*banner css start */




.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
  width: 100%;
}
.carousel-control.right,
.carousel-control.left {
  background: none;
  opacity: 1;
  width: 50px;
  height: 50px;
  top: initial;
  top: 40%;
  background: rgba(255, 255, 255, 0.1);
  text-shadow: none;
}
.carousel-control.right:hover,
.carousel-control.left:hover {
  background: rgba(255, 27, 27, 0.6);
  color: #fff;
}
.carousel-control.right .fa,
.carousel-control.left .fa {
  position: relative;
  top: 12px;
  font-size: 20px;
  color: #fff;
  opacity: 0.5;
}
.carousel-control.right {
  right: 0px;
}
.carousel-control.left {
  left: 0px;
}
.carousel-indicators {}
.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 23px;
    height: 11px;
    padding: 0;
    margin: 3px!important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #e6c9f4;
    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: 50%;
}
.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: #fff;
}
.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: #f7e18f;
  width: 23px;
  height: 11px;
}
/*banner css end*/

.blog_sec {
  padding: 5% 0;
}
/*slick slider in tabs css start*/


/* Style the tab */




.tab_sec .tab {
  overflow: hidden;
  border: 0;
  background-color: #ffffff;
}
/* Style the buttons that are used to open the tab content */
.tab_sec .tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}
/* Change background color of buttons on hover */
.tab_sec .tab button:hover {
  background-color: #ddd;
}
/* Create an active/current tablink class */
.tab_sec .tab button.active {
  background-color: #ccc;
}
/* Style the tab content */

.tab_sec .tabcontent {
  display: none;
  padding: 6px 12px;
  border: 0;
}
.tabcontent.active {
  display: block;
}
/*slick slider in tabs css start*/

.nav-item {padding: 10px;}



/*My Header Csss Start*/
.menuSec .row {
    align-items: flex-start;
}
header:before {
    position: absolute;
    content: '';
    width: 64%;
    height: 128px;
    background: #fff;
    z-index: 1;
    right: 0;
    top: 0px;
    border-radius: 40px 0px 0px 40px;
}
header {
    position: relative;
}
.head-btn .theme-btn {
    padding: 20px 25px;
    color: #fff;
    letter-spacing: 0px;
    margin: 0px 0px 0px 13px;
}
.menuSec a img {
    width: 100%;
    /* object-fit: cover; */
    /* height: 84px; */
    margin-top: -59px;
}

/*My Header css End*/





/*Main banner Css Start*/
.banner_text h1 {
    font-size: 87px;
    font-weight: 400;
    line-height: 90px;
    text-transform: uppercase;
    /* text-shadow: 1px 5px 4px #561a97; */
    color: #561a97;
    font-family: 'azo';
}
.banner_text p {
    font-family: 'Poppins';
    font-size: 18px;
    width: 75%;
    color: #000;
    font-weight: 500;
    line-height: 30px;
    text-align: justify;
}
.banner-btn {
    margin-top: 50px;
}
.banner_img img {
    position: absolute;
    right: 0;
    top: 0;
    width: 930px;
    height: 100%;
    object-fit: cover;
}
.main-banner-img img {
    width: 100%;
}
.social-icons-banner ul li {
    border: 1px solid #000;
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.social-icons-banner ul li a {
    font-size: 35px;
    color: #000;
}
.social-icons-banner ul {
    display: flex;
    gap: 10px;
    position: absolute;
    bottom: 50px;
    justify-content: center;
}
.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: left;
    padding: 0;
    /* margin-right: 15%; */
    margin-bottom: 1rem;
    margin-left: 26%;
    list-style: none;
}
/*Main Banner Css End*/




/*Section About Us Start*/
.about {
    padding: 100px 0px;
}
.experience-text ul li h5 {
    font-family: 'Rajdhani';
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0px;
    color: #000;
}

.experience-text ul li h5 span {
    display: block;
}
.experience-text ul li {
    font-family: 'Rajdhani';
    font-weight: bold;
    font-size: 72px;
    color: #000;
}
.experience-text ul {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 22px 8px;
    /* background: #f7e18fb8; */
    margin: 0 -2px;
    border-radius: 10px;
}
.aboutimg2 img {
    width: 100%;
    height: 366px;
    border: 9px solid #fff;
    border-radius: 10px;
    object-fit: cover;
}
.aboutimg2 {
    margin-top: -280px;
    margin-left: -89px;
}
.experience-text {
    margin-top: 0px;
}
.about-img1 img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}
.about-check-text ul li img {
    width: 17px;
    height: 16px;
}
.about-check-text ul li {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 14px;
}
.about-check-text ul {
    display: flex;
    gap: 17px;
}
.chech-row {
    padding-left: 15px;
}
.about-btn .theme-btn {
    background: #f8a80d;
}
.about-btn .theme-btn:hover {
    background: #561384;
}
.text-about h2 {
    font-size: 70px;
    font-family: 'Rajdhani';
    font-weight: bold;
    color: #561a97;
    margin-bottom: 10px;
}
.text-about h3 {
    font-family: 'Rajdhani';
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 0px;
    color: #df8c00;
}
.text-about p {
    text-align: justify;
    line-height: 37px;
    font-weight: 400 !important;
    width: 100%;
    margin-bottom: 22px;
    font-size: 20px;

}
.about-check-text p {
    font-weight: 400 !important;
}
.text-about {
    padding-left: 15px;
}
.about-btn {
    margin-top: 30px;
    margin-left: 15px;
}
.text-about {
    padding-left: 15px;
    margin-top: 15px;
}
.about-check-text h4 {
    font-family: 'Rajdhani';
    font-weight: 800;
    margin-bottom: 8px;
    font-size: 29px;
    color: #561a97;
}

.about-check-text p {
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    text-align: justify;
}
/*Section About Us ENd*/


/*Section Services Start*/
.top-heading-service h2 {
    font-size: 70px;
    font-family: 'Rajdhani';
    font-weight: bold;
    color: #561a97;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.top-heading-service h3 {
    font-size: 24px;
    margin-bottom: 0px;
    text-transform: uppercase;
    font-family: 'Rajdhani';
    font-weight: bold;
    color: #df8c00;
}
.service-head-btn {
    float: inline-end;
}
.heading-row .row {
    align-items: center;
}
.text-service img {
    width: 35px;
    height: 35px;
    margin-right: 10px;
    transition: 0.8s;
    filter: brightness(0) saturate(100%) invert(97%) sepia(69%) saturate(4052%) hue-rotate(186deg) brightness(100%) contrast(92%);
    margin: 0 auto;
}
.text-service {
    /* display: flex; */
    justify-content: space-between;
    padding: 25px 20px;
    text-align: center;
}
.text-service h3 {
    margin-bottom: 0px;
    font-family: 'Rajdhani';
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: #f8a80d;
}
.img-service img {
    width: 100%;
    height: 361px;
    object-fit: cover;
    border-radius: 20px 20px 0px 0px;
}
.maindv-service {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px !important;
}


/*.text-service a img:hover {
    margin-right: 0px;
}*/
.img-service img:hover {
    transform: scale(1.1);
    transition: 0.7s;
}
.heading-row {
    margin-bottom: 10px;
}
.services {
    background: #f5f5f5;
    padding: 90px 0px;
}
.text-service p {
    height: 70px;
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
}
.serviceslid .slick-active {
    opacity: 1.5;
}
.serviceslid  .slick-slide {
    margin: 26px 20px;
}
/*Section Services End*/



/*Section Step Start*/
.text-step {
    text-align: center;
}
.text-step a span {
    border: 1px solid #f7e18fb8;
    PADDING: 25px 39px;
    font-size: 24px;
    border-radius: 10px;
    background: #f7e18fb8;
    color: #000;
}
.text-step a {
    border: 2px solid #f7e18fb8;
    padding: 53px 22px;
    border-radius: 10px;
}
.text-step h2 {
    font-size: 82px;
    font-family: 'Rajdhani';
    font-weight: bold;
    padding: 100px 0px 0px;
    color: #fff;
    line-height: 80px;
}
.Step {
    background-image: url(../images/stepback.jpg);
    width: 100%;
    height: 634px;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
}
.text-step {
    text-align: center;
    padding-top: 80px;
}

/*Counter css Start*/
.counter span {
    font-family: 'Rajdhani';
    color: #000;
    font-weight: bold;
    font-size: 72px;
}
.counter {
    font-family: 'Rajdhani';
    color: #000;
    font-weight: bold;
    font-size: 72px;
    text-align: center;
    margin-bottom: 26px;
}

.counter-box h4 {
    font-family: 'Rajdhani';
    font-size: 28px;
    font-weight: bold;
    color: #000;
    text-align: center;
    margin-bottom: 0px;
}
.counter-sec .row {
    background: #e6c9f4c4;
    padding: 70px 0px 60px;
    border-radius: 20px;
}
.copunter-row {
    margin-bottom: -230px;
}
.counter-box:before {
    position: absolute;
    content: '';
    width: 1px;
    height: 120px;
    background: #d0aee9a6;
    right: -22px;
    top: -20px;
}
.counter-box {
    position: relative;
}
.forth-counter.award-win .counter-box:before {
    display: none;
}
/*Counter csss End*/
/*Section Step End*/



/*Section Why Choose US Start*/
.maindv-whychooseus .text-about {
    padding-left: 0px;
}

.maindv-whychooseus .chech-row {
    padding-left: 0px;
}
.maindv-whychooseus .about-check-text ul {
    gap: 11px;
    margin-bottom: 10px;
    display: unset;
}
.maindv-whychooseus .about-check-text ul li h4 {
    font-size: 23px;
    font-family: 'Rajdhani';
    font-weight: bold;
    margin-bottom: 3px;
}
.maindv-whychooseus .about-check-text ul li {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 16px;
    display: block;
    gap: 5px;
    font-weight: 600;
    margin-bottom: 17px;
}
.maindv-whychooseus .text-about h2 {
    font-size: 47px;
    line-height: 46px;
}
.choose-us-btn {
    margin-top: 40px;
}
.why-choose-us {
    padding: 4% 0px 70px;
}

.whychoose-img1 img {
    width: 371px;
    height: 291px;
    object-fit: cover;
    border-radius: 20px;
    margin-top: -17px;
}
.whychoose-img2 img {
    width: 371px;
    height: 274px;
    object-fit: cover;
    border-radius: 20px;
}
.maindv-images-chooseus {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}
.whychoose-img3 img {
    width: 371px;
    height: 291px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: -17px;
}
.chosse-home {
    width: 18%;
    display: flex;
    justify-content: center;
    padding: 25px 0px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 209px;
    left: 41%;
    box-shadow: 0px 9px 16px 0 rgba(0, 0, 0, 0.2), 0 14px 28px 0 rgba(0, 0, 0, 0.19);
}
.chosse-home img {
    width: 60%;
    height: 80px;
}
.maindv2chooseusimages {
    position: relative;
}
.choose-us-btn .theme-btn {
    letter-spacing: 0px;
    padding: 20px 30px;
}
/*Section Why Choose Us End*/



/*Section testimonials Start*/

.testimonials {
    background-image: url(../images/testiback.jpg);
    width: 100%;
    height: 697px;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
}
.main-heading-testi {
    text-align: center;
}
.main-heading-testi .text-about h2 {
    color: #fff;
}
.main-heading-testi .text-about h3 {
    color: #df8c00;
    text-transform: uppercase;
}
.text-testi p {
    font-size: 15px;
    text-align: justify;
    margin-bottom: 30px;
}
.text-testi ul {
    text-align: center;
}
.text-testi ul li {
    font-family: 'Rajdhani';
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}
.text-testi ul li span {
    font-size: 18px;
    display: block;
    color: #e6c9f4;
}
.text-testi {
    padding: 50px 34px 0px;
    background: #fff;
    /* height: 278px; */
    border-radius: 30px;
}
.maindv-testi:before {
    position: absolute;
    content: '';
    background-image: url(../images/testi-quote.png);
    width: 118px;
    height: 103px;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 42px;
}
.maindv-testi {
    position: relative;
}
.text-testi ul li img {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}
.testislid .slick-slide {
    margin: 0px 20px 100px;
}
.testislid  .slick-active {
    opacity: 1.5;
}
.testislid .slick-prev:before {
    content: '\f060' !important;
    font-family: 'FontAwesome';
    font-weight: 800;
    border: 1px solid #f8a80d;
    background: #f8a80d;
    padding: 8px 10px;
    border-radius: 50%;
    color: #fff;
    opacity: 1.75;
}
.testislid .slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
    opacity: 1.25;
}
.testislid .slick-next:before {
    content: '\f061' !important;
    font-family: 'FontAwesome';
    font-weight: 800;
    border: 1px solid #f7e18f;
    background: #f7e18f;
    padding: 8px 10px;
    border-radius: 50%;
    color: #000;
    opacity: 1.75;
}
.testislid .slick-prev {
    left: 13px;
    top: 130px;
    z-index: 2;
}
.testislid .slick-next {
    right: 27px;
    top: 130px;
}


/*Section testimonilas End*/




/*Section Blogs Start*/


.img-.blog img {
    width: 100%;
    height: 289px;
    border-radius: 20px 20px 0px 0px;
}
.img-.blog {
    position: relative;
}
.img-.blog p {
    background: #561384;
    width: 38%;
    padding: 4px 10px 4px 21px;
    border-radius: 4px;
    color: #fff;
    position: absolute;
    bottom: -16px;
    left: 40px;
}
.text-blog h3 {
    font-family: 'Rajdhani';
    font-weight: bold;
    font-size: 34px;
    margin-top: 16px;
    padding-bottom: 25px;
    margin-bottom: 0px;
    border-bottom: 1px solid #0000007a;
    width: 70%;
}
.text-blog a {
    font-family: 'Rajdhani';
    font-weight: bold;
    font-size: 18px;
    text-decoration: underline;
    color: #f8a80d;
}

.text-blog {
    padding: 10px 20px 25px;
}
.text-blog p {
    padding-top: 17px;
    line-height: 30px;
    text-align: justify;
    margin-bottom: 10px;
}
.maindv-blog {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 20px;
}
.top-heading-blogs .main-heading-testi .text-about h2 {
    color: #561a97;
    text-transform: uppercase;
}
.top-heading-blogs {
    margin-bottom: 20px;
}
.blog-btn {
    text-align: center;
    margin-top: 60px;
}
.blogs-sec {
    padding: 100px 0px;
}


/*Section Blogs End*/



/*Footer Start*/

footer {
    padding: 70px 0px 30px;
    position: relative;
    background: #fff;
    border-top: 1px solid #ddd;
}

.fticons-social .social-icons-banner ul {
    position: unset;
    margin-top: 30px;
}

.logo-ft p {
    font-size: 14px;
    line-height: 27px;
    font-weight: 300;
    color: #000;
    text-align: justify;
}
.logo-ft h3 {
    font-size: 23px;
    margin-bottom: 8px;
}
.logo-ft a img {
    /* border: 1px solid #fff; */
     padding: 50px 9px 10px; 
    /* border-radius: 4px; */
    width: 100%;
    height: 100%;
}
ul.ft-links h2 {
    font-size: 25px;
    margin-bottom: 22px;
    line-height: 20px;
    color: #000;
    font-family: 'Rajdhani';
    font-weight: bold;
}
ul.ft-links li a {
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 300;
    color: #000;
    text-transform: uppercase;
}
ul.ft-links li {
    margin-bottom: 7px;
}
ul.ft-links {
    margin-left: 44px;
    margin-top: 100px;
}
ul.ft-contact h2 {
    font-size: 25px;
    margin-bottom: 22px;
    line-height: 20px;
    color: #000;
    font-family: 'Rajdhani';
    font-weight: bold;
}
ul.ft-contact li a {
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 300;
    color: #000;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}
ul.ft-contact li a i {
    font-size: 16px;
}
ul.ft-contact {
    margin-left: 20px;
    margin-top: 100px;
}
ul.ft-contact  li {
    margin-bottom: 7px;
}
.ft-social-icons h2 {
    font-size: 25px;
    margin-bottom: 22px;
    line-height: 20px;
    color: #000;
    font-family: 'Rajdhani';
    font-weight: bold;
}
.ft-social-icons ul.top-sec-socialicons {
    justify-content: start;
}
.paypal-img {
    margin-top: 40px;
}
.ft-social-icons {
    margin-left: 20px;
}
.ft-bottom-text p {
    text-align: center;
    color: #000;
    margin-top: 0px;
    margin-bottom: 0px;
}
.ft-bottom-text {
    padding: 20px 0px;
    border-top: 1px solid #ddd;
}

/*footer:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: #2a2727;
    bottom: 63px;
}*/
ul.ft-links li a:hover {
    color: #dcad1d;
    margin-left: 10px;
    transition: 0.9s;
}
ul.ft-contact li a:hover {
    color: #dcad1d;
    margin-left: 10px;
    transition: 0.9s;
}
ul.top-sec-socialicons li p {
    font-size: 14px;
    color: #000;
}
ul.top-sec-socialicons li input {
    border: unset;
    width: 80%;
    height: 40px;
    padding: 0px 10px;
    border-radius: 4px 0px 0px 4px;
    background: #000;
    color: #fff;
}
ul.top-sec-socialicons li a {
    border: 1px solid #dcad1d;
    color: #fff;
    padding: 7px 14px;
    font-size: 18px;
    border-radius: 6px;
    margin-left: -7px;
    background: #dcad1d;
}
ul.top-sec-socialicons li input::placeholder {
    color: #fff;
}
/*Footer End*/

/*Contact Start*/

.map iframe {
    width: 100%;
    height: 500px;
    filter: brightness(0.5);
}

.contact-frm h4 {
    color: #000000;
    margin-bottom: 70px;
    font-family: 'Rajdhani';
    text-transform: uppercase;
    font-size: 50px;
    text-align: center;
    font-weight: 600;
}

.contact-frm input {
    border: 0;
    border-bottom: 1px solid #2125298a;
    width: 100%;
    margin: 0 0 40px !important;
    padding: 0 0 16px;
    outline: 0;
}
.contact-frm textarea {
    border: 0;
    border-bottom: 1px solid #2125298a;
    width: 100%;
    margin: 0 0 20px;
    padding: 0 0 16px;
    outline: 0;
    height: 160px;
}
.ctct-detl {
    background: #eaeaea;
    padding: 65px 40px 90px;
    position: relative;
    box-shadow: 0 0 8px 0 #00000036;
}

.ctct-detl ul li {
    display: inline-block;
}
.ctct-detl ul {
    display: flex;
    align-items: center;
    line-height: 30px;
    margin-bottom: 26px;
    gap: 40px;
}

.ctct-detl ul li i {
    color: #fff;
    font-size: 25px;
    margin: 0 26px 0 0;
}

.ctct-detl ul li a {
    font-size: 14px;
    color: #000;
    font-family: 'Montserrat';
    font-weight: 500;
}

.ctct-detl ul li span {
    display: block;
    text-align: center;
}


.contact-frm {
    padding: 60px 40px 57px;
    background: #fff;
    box-shadow: 0 0 8px 0 #00000036;
    border-radius: 20px;
}

.cont-inner {
    width: 80%;
    margin: 0 auto;
    z-index: 999;
    position: relative;
}

.map {
    z-index: -1;
}

section.contact-sec {
    padding: 40px 0 100px;
}
.contact-frm input::placeholder {
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 500;
}
.contact-frm textarea::placeholder {
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 500;
}


.ctct-detl h4 {
    color: #000000;
    margin-bottom: 70px;
    font-family: 'blenderpro';
    text-transform: uppercase;
    font-size: 40px;
}

/*Contact Page End*/


.head-btn .theme-btn:hover {
    color: #fff;
}

.banner-btn .theme-btn {
    padding: 21px 14px;
    letter-spacing: 0px;
}
section.contact-sec .row {
    display: flex;
    justify-content: center;
}
.why-choose-us .row {
    align-items: center;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


/*@media only screen and (min-width: 1366px) and (max-width: 1600px){
  .banner_img img {
    width: 900px;
}
.social-icons-banner ul { 
    bottom: 10px;
}*/


@media only screen and (min-width: 1366px) and (max-width: 1920px){
    
    
    .head-btn .theme-btn {
    padding: 20px 14px;
  }
    
    .contact-frm h4 {
    font-size: 42px;
 
}
    
    
}






@media only screen and (min-width: 1200px) and (max-width: 1500px){
    
        .head-btn .theme-btn {
    padding: 20px 14px;
  }
      .contact-frm h4 {
    font-size: 42px;
 
}
  
  .banner_text h1 {
    font-size: 76px;
    line-height: 62px;
}
.banner_text p {
    font-size: 15px;
    line-height: 24px;
        width: 75%!important;

}
.social-icons-banner ul {
    bottom: 10px;
}
.menuSec a img {
    width: 88%;
    margin-top: -38px;
}
.banner_img img {
    width: 771px;
}
.text-about h2 {
    font-size: 64px;
}
.maindv-whychooseus .text-about h2 {
    font-size: 40px;
}
.menuSec.sticky a img {
    margin-top: -11px;
}
}

@media only screen and (min-width: 992px) and (max-width: 1199px){
    
    
    
   .menuSec ul li a {
    padding: 10px 11px;
    font-size: 15px;
 
} 
.head-btn .theme-btn {
    padding: 20px 13px;
     font-size: 13px;
}
    
    .top-row-email a {
      font-size: 22px!important;
}
    
    .main-banner-img {
    margin: 20% 0 0;
}
    
    .banner_img img {
    top: 129px;
    width: 573px;
    height: 82%;
 
    object-position: right;
}
    
    
       .about .wpb_column.vc_column_container.vc_col-sm-6 {
    width: 100%;
}
    .services .col-md-4.col-lg-4.col-12 {
    width: 50%;
}
    
    
    .maindv-whychooseus.wpb_column.vc_column_container.vc_col-sm-5 {
    width: 100%;
}
    
    .wpb_column.vc_column_container.vc_col-sm-7 {
    width: 100%;
}
    
    
  .contact-frm {
    padding: 60px 22px 57px;
  }
    
    
    .contact-frm h4 {
    font-size: 44px;
    line-height: 55px;
}
    
    }

@media only screen and (min-width: 768px) and (max-width: 991px){
    
    
    .menuSec a img {
    width: 48%!important;
    margin: 0 auto;
    display: flex;
}
   ul#menu {
    margin-top: 0;
    margin-right: 0;
} 
    
    .menuSec ul li a {
    padding: 10px 11px;
    font-size: 13px;

}
    
    .banner_text h1 {
    font-size: 40px!important;
    line-height: 54px!important;
}
    .banner_text p {
    font-size: 13px;
    width: 100%;

}
    
    
     .banner_img img {
        top: 28%;
        width: 416px;
        height: 39%;
        object-fit: cover;
        object-position: right;
    }
    
.main-banner-img {
        margin-top: 58%;
    }
    .banner-btn .theme-btn {
    padding: 21px 6px;
    font-size: 14px;
}

    .menuSec {
    padding: 0;
   }
    .about .wpb_column.vc_column_container.vc_col-sm-6 {
    width: 100%;
}
    .services .col-md-4.col-lg-4.col-12 {
    width: 100%;
}
    
    
    .maindv-whychooseus.wpb_column.vc_column_container.vc_col-sm-5 {
    width: 100%;
}
    
    .wpb_column.vc_column_container.vc_col-sm-7 {
    width: 100%;
}
    
    
  .contact-frm {
    padding: 60px 22px 57px;
  }
  
  
  .contact-frm h4 {
    font-size: 33px;
  }
  .top-row-email a {
     font-size: 15px!important;
}
  
}

@media only screen and (min-width: 520px) and (max-width: 767px){
    
    .menuSec {
    padding: 0 0!important;
}
    
      .top-row-email a {
    font-size: 16px!important;
}
.top-row-email {
    text-align: center!important;
}
    
    .top-row-socail-link ul {
    justify-content: center!important;
    margin: 6px 0!important;
}
    
header:before {
   
    width: 100%;
    height: 143px;
}
       .head-btn .theme-btn {
        padding: 20px 12px;
        font-size: 12px;
    }
    
    
    .banner_img img {
    position: absolute;
    right: 0;
            top: 28%;
    width: 362px;
    height: 38%;
    object-fit: cover;
}




    
/*    .banner_img img {*/
/*     display: none;*/
/*}*/
    
    .banner_text h1 {
    font-size: 30px!important;
    line-height: 37px!important;
}
    
     .banner_text p {
        width: 100%!important;
        font-size: 12px !important;
        line-height: 20px!important;
    }
    
    
   .main-banner-img {
        margin-top: 27%;
    }
      .banner-btn .theme-btn {
        padding: 21px 11px !important;
        font-size: 10px!important;
    }
    
   .aboutimg2 {
    margin-top: 0;
    margin-left: 0;
} 
    .text-about {
    padding-left: 0!important;
}
    
    
    .text-about h2 {
    font-size: 31px!important;
    line-height: 40px!important;
}
   .vc_column_container>.vc_column-inner {
    padding-left: 0!important;
    padding-right: 0!important;
 
} 
    .about-btn .theme-btn {
    background: #f8a80d;
    font-size: 12px;
}
    
    
    .contact-frm {
    padding: 60px 8px 57px;
}
    
    .contact-frm h4 {
    font-size: 30px!important;

}
    
    ul.ft-links {
    margin-left: 20px;
   }
    
    
/*    .banner_text.wow.fadeInLeft {*/
/*    margin-top: -65%;*/
/*}*/
    
    
    .about {
    padding: 0;
}
    
    
    .menuSec.sticky {
    top: 39px!important;
    }
    
    
}

@media only screen and (min-width: 300px) and (max-width: 519px){
    html {
        overflow-x: hidden;
    }
    .chosse-home {
        width: 130px;
        height: 130px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .top-row-email a {
    font-size: 16px!important;
}
    
    .top-row-socail-link ul {
    justify-content: center!important;
    margin: 6px 0!important;
}
    
header:before {
   
    width: 100%;
    height: 143px;
}
       .head-btn .theme-btn {
        padding: 20px 12px;
        font-size: 12px;
    }
    
    .banner_img img {
     display: none;
}
    
    .banner_text h1 {
    font-size: 36px!important;
    line-height: 56px!important;
}
    
    .banner_text p {
    width: 100%!important;
  
}
    
    
    .main-banner-img {
    margin-top: 137%;
}
    .banner-btn .theme-btn {
    padding: 21px 11px!important;
   }
    
   .aboutimg2 {
    margin-top: 0;
    margin-left: 0;
} 
    .text-about {
    padding-left: 0!important;
}
    
    
    .text-about h2 {
    font-size: 31px!important;
    line-height: 40px!important;
}
   .vc_column_container>.vc_column-inner {
    padding-left: 0!important;
    padding-right: 0!important;
 
} 
    .about-btn .theme-btn {
    background: #f8a80d;
    font-size: 12px;
}
    
    
    .contact-frm {
    padding: 60px 8px 57px;
}
    
    .contact-frm h4 {
    font-size: 30px!important;

}
    
    ul.ft-links {
    margin-left: 20px;
   }
    
    
}



















section.inner-banner-sec {
    background: #000;
    padding: 150px;
}
section.inner-banner-sec h2 {
    font-size: 75px;
    color: #fff;
    text-transform: capitalize;
    position: relative;
    z-index: 1;
}
.text-service p {
    color: #000;
}