@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=Montserrat:ital,wght@0,100..900;1,100..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: #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-weight: 400;
   font-family: "Montserrat", sans-serif;
}


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

@font-face {
  font-family: 'Megila';
  src: url(../fonts/Megila-vmPw4.otf);
  font-weight: 400;
  font-style: normal
}


/***** Custom Classes *****/

.noPadding {
  padding: 0;
}
.menuSec a.btn-1 {
    margin: 0 0 0 auto;
}
a.btn-1 {
    background-color: #101010;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 4px;
    border-radius: 100px;
    padding-right: 12px;
}

a.btn-1 span {
    font-size: 14px;
    color: #000;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    background-color: #fff;
    border-radius: 100px;
    padding: 10px 25px;
}
.noLeft {
  padding-left: 0;
}
.menuSec ul li a.active {
    color: #000 !important;
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 100px;
}
.noRight {
  padding-right: 0;
}

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

.theme-btn {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 15px 40px;
  color: #fff;
  margin: 20px 20px 20px 0;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  text-transform: capitalize;
  border: 2px solid;
  text-transform: uppercase;
}

.theme-btn:hover {
  background-color: #fff;
  color: #28b16d;
  border-color: #28b16d;
}

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

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

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

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

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

h6 {
  font-family: "Montserrat", 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: 10px 0;
}
.menuSec .row {
    align-items: center;
}
.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: center;
  background-color: #000;
  padding: 5px 5px;
  width: fit-content;
  margin: 0 auto;
  border-radius: 100px;
  padding-right: 11px;
}

.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: #393939;
    padding: 0px;
    font-size: 14px;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
}

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

.menuSec ul li:last-child a {
  /* padding-right: 0px; */
}

.menuSec ul li:last-child a:after {
  display: none;
}
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}
.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: #ffffffd1;
}

.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;
  display: none;
}

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

/*banner start*/
section.banner {
    background-image: url(../images/banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 127px 0px 0px 0px;
    position: relative;
    height: 845px;
}
.banner-txt {
    text-align: center;
}

.banner-txt h1 {
    font-size: 82px;
    color: #141414;
    line-height: 1;
    margin-bottom: 10px;
}

.banner-txt h3 {
    font-size: 39px;
    font-weight: 400;
    color: #141414;
}
.ban-vid {
    position: absolute;
    right: 200px;
}
/*banner end*/
/*about start*/
section.about {
    padding: 100px 0px;
}

section.about .row {
    align-items: center;
}
.abt-txt h3 {
    font-size: 45px;
    color: #141414;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 10px;
}

.abt-txt p {
    font-size: 14px;
    color: #737373;
    line-height: 22px;
    margin-bottom: 30px;
}

.abt-img {
    width: 98%;
}

.abt-img img {
    width: 100%;
    border-radius: 20px;
    height: 450px;
    object-fit: cover;
}
.ul-abt ul {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 190px;
}

.ul-abt {
    margin-top: 30px;
    border-top: 1px solid #000;
    padding-top: 20px;
}

.ul-abt li h5 {
    font-size: 45px;
    line-height: 1;
    color: #141414;
    margin-bottom: 10px;
}

.ul-abt li p {
    font-size: 13px;
    color: #333b3d;
    font-weight: 700;
    text-transform: uppercase;
}

.ul-abt li p span {
    display: block;
    line-height: 15px;
}

.ul-abt li {
    position: relative;
    text-align: center;
}

.ul-abt li::before {
    position: absolute;
    right: -98px;
    top: -28px;
    content: '';
    background-color: #e6e6e6;
    height: 128px;
    width: 1px;
}

.ul-abt li::after {
    bottom: -10px;
    right: -99px;
    content: '';
    background-color: #5a5a5a;
    width: 2px;
    height: 20px;
    position: absolute;
}
.ul-abt li:last-child::before {
    display: none;
}
.ul-abt li:last-child::after {
    display: none;
}
/*about end*/

/* discover start */
.discover-txt h3 {
    font-size: 50px;
    line-height: 45px;
    font-weight: 300;
    margin: unset;
}

.discover-txt h3 span {
    display: block;
}

section.discover a.btn-1 {
    margin: 0 0 0 auto;
}

.dis-top .row {
    align-items: center;
    margin-bottom: 20px;
}

.dis-top {
    padding-bottom: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid #00000040;
}
.ser-main-bx {
    padding: 15px;
    border: 1px solid #cccccc;
    border-radius: 10px;
}

.ser-img img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-radius: 20px;
}

.sm-ser-bx {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 10px 30px;
    background-color: #fff;
    border-radius: 10px;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.sm-ser-bx p {
    margin: unset;
    font-size: 14px;
    color: #000;
}

.ser-img {
    position: relative;
}

.ser-bot-txt ul {
    display: flex;
    align-items: center;
    gap: 60px;
}

.ser-bot-txt ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ser-bot-txt ul li p {
    font-size: 12px;
    color: #7c7c7c;
    text-transform: uppercase;
    margin: unset;
    line-height: 15px;
}

.ser-bot-txt h4 {
    font-size: 26px;
    line-height: 1;
    color: #000000;
    margin-bottom: 10px;
}

.ser-bot-txt p {
    font-size: 14px;
    color: #7c7c7c;
}

.ser-bot-txt ul li p span {
    display: block;
}

.ser-bot ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: unset;
}

.ser-bot ul li h5 {
    margin: unset;
    font-size: 30px;
    color: #101010;
}

.ser-bot ul li a i {
    background-color: #101010;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(
53deg);
}

.ser-bot-txt {
    padding-top: 15px;
}

.ser-main-bx:hover {
    background-color: #101010;
    transition: 1s;
}

.ser-main-bx:hover p {
 color: #fff;
}
.ser-main-bx:hover h5{
  color: #fff;
}
.ser-main-bx:hover h4{
 color: #fff;
}

.ser-main-bx:hover i {
    background-color: #fff;
    color: #000;
}

.ser-main-bx:hover ul li img {
    filter: invert(1);
}
section.discover {
    padding-bottom: 100px;
}
.buld-txt h3 {
    font-size: 45px;
    line-height: 1;
    color: #141414;
    font-weight: 300;
}

.buld-txt p {
    font-size: 14px;
    line-height: 21px;
    color: #7c7c7c;
}

.bulid-img img {
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
}

.build-ul ul li {
    display: flex;
    align-items: center;
    gap: 14px;
}

.build-ul ul li h5 {
    font-size: 14px;
    color: #fff;
    width: 40px;
    height: 40px;
    background-color: #333b3d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.build-ul ul li p {
    font-size: 14px;
    line-height: 21px;
    color: #7c7c7c;
    padding-left: 10%;
}

.build-ul {
    position: relative;
}

.build-ul::before {
    position: absolute;
    top: 0;
    left: 20px;
    width: 1px;
    height: 100%;
    content: '';
    background-color: #c4c4c4;
    z-index: -1;
}
.build-ul ul li h5:hover {
    transition: 1s;
    background-color: #000;
}
section.build {
    padding-bottom: 100px;
}
/* discover end */
/*comp srart*/
.comprehensive-txt {
    text-align: center;
    margin-bottom: 30px;
}

.comprehensive-txt h3 {
    color: #1a1a1a;
    font-size: 50px;
    line-height: 1;
    margin: unset;
    font-weight: 300;
}

.comprehensive-txt h3 span {
    display: block;
}
.com-bot-txt h4 {
    font-size: 26px;
    color: #000000;
}

.com-main-bx {
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 111px 0px rgba(0, 0, 0, 0.06);
    padding-top: unset;
}

.com-img img {
    height: 290px;
    object-fit: cover;
    width: 100%;
    border-radius: 10px;
}

.com-bot-txt {
    padding-top: 30px !important;
    padding: 0 10px 10px 10px;
}

.com-bot-txt h4 {
    font-size: 26px;
    color: #000000;
    font-weight: 400;
}

.com-bot-txt p {
    font-size: 14px;
    color: #bcbcbc;
    line-height: 21px;
}

.com-bot-txt a {
    font-size: 13px;
    color: #000;
    text-transform: uppercase;
    text-decoration: underline;
}
.com-main-bx:hover {
    background-color: #000;
    transition: 1s;
}

.com-main-bx:hover h4 {
    color: #fff;
}

.com-main-bx:hover p {
    color: #fff;
}

.com-main-bx:hover a {
    color: #fff;
}

/*com end*/
/* Testimonials */

.quote_img img {
    height: 60px;
    width: 70px;
    object-fit: contain;
    margin: 0 auto 30px;
    transition: all .3s ease-in;
}

.testimonial_txt p {
    transition: all .3s ease-in;
}

.testimonial_txt {
    padding: 20px 30px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: all .3s ease-in;
    position: relative;
}

ul.client {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding: 0 10px;
}

.client img {
    border: 4px solid #333b3d;
    border-radius: 50%;
    height: 70px;
    width: 70px;
    object-fit: cover;
    transition: border 0.3s ease-in;
}

ul.client h3 {
    font-size: 20px;
    color: #333b3d;
    transition: all .3s ease-in;
    color: #101010;
    margin-bottom: 0px;
    line-height: 19px;
    font-weight: 400;
}

ul.client p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
}

ul.rating {
    display: flex;
    justify-content: flex-end;
    gap: 3px;
    align-items: center;
    color: #101010;
}

.avatar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 10px;
    margin-top: 40px;
}

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

.testimonial_main:hover .testimonial_txt::before,
.slick-center .testimonial_txt::before {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 55px;
    background: #101010;
    width: 30px;
    height: 30px;
    clip-path: polygon(0 0, 0 100%, 100% 0);
    transition: all .3s ease-in;
}

.testimonial_main:hover .testimonial_txt,
.slick-center .testimonial_txt {
    background: #101010;
}

.testimonial_main:hover .client img,
.slick-center .client img {
    border: 4px solid #101010;
}

.testimonial_main:hover .quote_img img,
.slick-center .quote_img img {
    filter: brightness(0) saturate(100%) invert(94%) sepia(47%) saturate(0%) hue-rotate(167deg) brightness(105%) contrast(106%);
}

.testimonial_main:hover .client h3,
.slick-center .client h3 {
    color: #101010;
    margin-bottom: 0px;
    line-height: 19px;
    font-weight: 400;
}

.testimonial_main:hover .testimonial_txt p,
.slick-center .testimonial_txt p {
    color: #fff;
}

/* Testimonials */

/* footer */

.ftr_contact_icon a {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #333b3d;
    font-size: 20px;
    color: #ffffff;
    transition: all .3s ease-in;
}

.ftr_contact_icon a:hover {
    background: #0abe63;
}

.ftr_contact ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 50px;
    margin-bottom: 50px;
    margin-top: 30px;
}

.ftr_contact ul li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 10px;
}

.ftr_contact h4 {
    color: #26202e;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 20px;
    margin-bottom: unset;
}

.ftr_contact_info a {
    color: #26202e;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    text-transform: none;
    line-height: 18px;
}

.ftr_contact p {
    margin-bottom: 0;
}

.ftr_lgo p {
    margin: 30px 0;
    color: #c2c5c6;
    width: 80%;
}

.footer_mid h5 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
}

.ftr_lgo ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
}

.ftr_lgo ul li a {
    width: 40px;
    height: 40px;
    border: 1px solid #5d6e6a;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 16px;
    text-align: center;
    transition: all .3s ease-in;
}

.ftr_lgo ul li a:hover {
    border: 1px solid #fff;
    color: #ffffff;
    background: #fff;
    color: #000;
}

.footer_mid {
    background: #101010;
    padding-top: 95px;
    position: relative;
}

.quick_links ul li a {
    font-size: 14px;
    color: #ffffff;
    font-family: 'Montserrat';
    font-weight: 500;
    text-transform: uppercase;
}

.quick_links ul {
    column-count: 2;
}

.ftr_form {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 10px;
    background: #ffffff;
    max-width: 624px;
    margin: -40% 0 0 auto;
    border-bottom-left-radius: 0;
}

.ftr_form h3 {
    font-size: 26px;
    color: #000000;
    margin-bottom: 10px;
    font-weight: 500;
}

.ftr_form form input,
.ftr_form form textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 15px;
    font-size: 14px;
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    border: 1px solid #0000001c;
    border-radius: 10px;
}

.ftr_form form input::placeholder,
.ftr_form form textarea::placeholder {
    color: #4c4c4c;
    text-transform: capitalize;
}

.ftr_form form textarea {
    resize: none;
    height: 120px;
}


.copy_right p {
    color: #000000;
    margin-bottom: 0;
    text-align: center;
    padding: 30px 0;
    position: relative;
    z-index: 2;
}

.footer_mid::before {
    content: '';
    position: absolute;
    background: #ffffff;
    bottom: 0;
    left: 0;
    height: 85px;
    width: 54%;
    z-index: 1;
}

.quick_links {
    padding-left: 50px;
}

/* footer */
section.testimonial.all-section-btm {
    padding-bottom: 100px;
}

section.comprehensive {
    padding-bottom: 100px;
}


.heading h2 {
    color: #1a1a1a;
    font-size: 50px;
    line-height: 1;
    margin-bottom: 10px;
}

section.testimonial.all-section-btm .row.bt {
    border-bottom: 1px solid #0000006e;
    margin-bottom: 30px;
}
section.testimonial.all-section-btm .slick-prev, section.testimonial.all-section-btm .slick-next {
    position: absolute;
    top: -90px;
    right: 0;
    left: auto;
}

section.testimonial.all-section-btm .slick-prev {
    right: 70px;
}
section.testimonial.all-section-btm .slick-prev::before{
  position: absolute;
  content: '\f1d8';
  background-color: #101010;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(238deg);
  font-family: 'FontAwesome';
}
section.testimonial.all-section-btm .slick-next::before{
  position: absolute;
  content: '\f1d8';
  background-color: #101010;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(
60deg);
  font-family: 'FontAwesome';
}

.container {
    max-width: 1400px !important;
} 

.ftr_contact h2 {
    font-size: 50px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.ftr_contact_info a span {
    display: block;
}

.quick_links ul li {
    padding-bottom: 35px;
}
button.btn-1 {
    border: unset;
    background-color: #101010;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 4px;
    border-radius: 100px;
    padding-right: 12px;
}

button.btn-1 span {
    font-size: 14px;
    color: #000;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    background-color: #fff;
    border-radius: 100px;
    padding: 10px 25px;
}
.ser-main-bx:hover .sm-ser-bx p {
    color: #000;
}