@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/***** General CSS *****/
@font-face {
    font-family: 'Evogria';
    src: url('../fonts/Evogria-Italic.eot');
    src: url('../fonts/Evogria-Italic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Evogria-Italic.woff2') format('woff2'),
        url('../fonts/Evogria-Italic.woff') format('woff'),
        url('../fonts/Evogria-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Evogria';
    src: url('../fonts/Evogria.eot');
    src: url('../fonts/Evogria.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Evogria.woff2') format('woff2'),
        url('../fonts/Evogria.woff') format('woff'),
        url('../fonts/Evogria.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


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: 500;
  color: #1e1a1a;
}


/***** Font Files *****/

@font-face {
  font-family: 'Fonts Awesome';
  src: url(../fonts/fontawesome-webfont.eot);
  src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
  font-weight: 400;
  font-style: normal
}


/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.btn.btn_green {
    width: 250px;
    height: 60px;
    border-radius: 15px;
    font-size: 18px;
    color: #fff;
    border: 1px solid #ff8900;
    background: #ff8900;
    font-weight: 500;
    margin: 0;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center
}

.btn.btn_green:focus, 
.btn.btn_green:hover {
    border: 1px solid #ff8900;
    color: #ff8900;
    background: 0 0
}


img.pull-left,
.imgOverlay.pull-left {
  margin: 0 30px 20px 0;
}

img.pull-right {
  margin: 0 0 20px 30px;
}

.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;
}

input[type="text"],
input[type="password"],
select,
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  border: 1px solid #ececec;
  background-color: #fff;
  font-size: 14px;
  line-height: 20px;
  color: #575757;
  height: 40px;
  margin-bottom: 20px;
  width: 100%;
  padding: 0px 15px;
  border-radius: 0;
}

textarea {
  padding: 10px;
  height: 167px;
}

input[type="submit"] {
  color: #fff;
  background-color: #33458d;
  height: 55px;
  padding: 0px 65px;
  font-size: 12px;
  line-height: 20px;
  border: 2px solid #33458d;
  border-radius: 0;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}

input[type="submit"]:hover {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  background-color: #fff;
  color: #33458d;
  border-color: #33458d;
}

select {
  background: #fff url('../images/arrow.png') no-repeat right;
  padding: 0 40px 0 30px;
}

input[type="checkbox"],
input[type="radio"] {
  margin: 0 10px 20px 0;
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}





/*banner css start */
.main_slider {
    position: relative;
}
.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: 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;
  color: #fff;
  text-align: left;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background: rgb(0 0 0 / 0%);
  padding: 0 0 10% 0;
}

.carousel-indicators {
  bottom: 350px;
  left: inherit;
  z-index: 2;
  display: flex;
  padding: 0;
  margin-right: -46px;
  margin-bottom: 0;
  margin-left: 0;
  list-style: none;
  position: absolute;
  right: 50px;
  gap: 10px;
  top: 0;
  flex-direction: column;
  justify-content: center;
  align-items: anchor-center;
}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: inherit;
  width: 10px;
  height: 10px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: 0;
  cursor: pointer;
  background-color: #b6bcc200;
  background-clip: padding-box;
  border: 0;
  border-top: 0;
  border-bottom: 0;
  opacity: 1;
  transition: opacity 0.6s ease;
  border-radius: 50px;
  border: 1px solid #fff;
}


.carousel-indicators .active {
  opacity: 1;
  background: #ff8900;
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*.carousel-indicators [data-bs-target]:nth-child(1) {
  background: #6cd4ad;
}

.carousel-indicators [data-bs-target]:nth-child(2) {
  background: #629b57;
}

.carousel-indicators [data-bs-target]:nth-child(3) {
  background: #bfe8d8;
}

.carousel-indicators [data-bs-target]:nth-child(4) {
  background: #b6bdc2;
}*/

.social_icon {
  position: absolute;
  top: 0;
  bottom: 24%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 5;
}


.social_icon ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.social_icon ul li {}

.social_icon ul li a {
  font-size: 25px;
  color: #fff;
}

.social_icon ul li a:hover {

color: #ff8900;
}

.social_icon ul li a i {
  transition: all 0.5s ease-in-out;
  transform: rotate(0deg);
}

.social_icon ul li a:hover i {
  transform: rotate(360deg);
}

.social_icon ul li a span {
  transform: rotate(90deg);
  display: block;
  font-style: italic;
  font-size: 20px;
  position: relative;
  top: -30px;
}




.banner_text h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 35px;
  line-height: 40px;
  color: #ffffff;
  font-weight: 400;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.banner_text h1 {
    font-size: 110px;
    line-height: 105px;
    color: #fff;
    font-weight: 600;
    margin: 10px 0 10px;
    text-transform: uppercase;
    letter-spacing: 4px;
}
.banner_text h3 {
  line-height: 34px;
  color: #fff;
  font-weight: 600;
  margin: 0 0 28px;
  text-transform: uppercase;
  font-size: 50px;
}

.banner_text {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 0px 0 0 0;
  position: relative;
}

.banner_text p {
    color: #fff;
    font-size: 22px;
    line-height: 27px;
    margin: 20px 0 20px;
    width: 60%;
}







.banner_text a {
  width: 210px;
  height: 60px;
  border-radius: 15px;
  font-size: 18px;
  color: #fff;
  border: 1px solid #ff8900;
  background: #ff8900;
  font-weight: 500;
  margin: 0;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.banner_text a:hover {
  color: #ff8900;
  border: 1px solid #ff8900;
  background: transparent;
}



.banner_text a i {
  margin-left: 20px;
}

.main_slider {
  position: relative;
  overflow: hidden;
}

/*.main_slider:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 110px;
  background: url(../images/shape.png) no-repeat;
  background-position: center;
  background-size: contain;
}
.main_slider:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: #ffffff;
  z-index: 1;
}*/


/*banner css end*/

/*about us sec css start*/
.about_sec_main:after {
    position: absolute;
    top: 21%;
    left: 0;
    background: url(../images/art.png) top center/100% no-repeat;
    z-index: -2
}

.about_sec {
    padding: 2% 0 14%;
    position: relative;
}
.about_sec:before {
    position: absolute;
    content: '';
    top: -130px;
    left: 0;
    background: url(../images/art_1.png) no-repeat;
    z-index: -1;
    width: 1056px;
    height: 859px;
    background-size: 100%;
}

.about_sec:after {
    position: absolute;
    content: '';
    bottom: 0px;
    right: 0;
    background: url(../images/art_2.png) right no-repeat;
    z-index: 0;
    width: 420px;
    height: 811px;
    background-size: 90%;
}

.about_text h4 {
    font-size: 30px;
    line-height: 35px;
    color: #03265f;
    margin: 0 0 10px;
}

.about_text h2 {
    font-size: 65px;
    line-height: 75px;
    color: #191717;
    margin: 10px 0 10px;
    font-family: 'Evogria';
    font-weight: 500;
}

.about_text h3 {
    line-height: 34px;
    color: #191717;
    margin: 0 0 20px;
    font-size: 35px;
    font-weight: 300;
}

.about_text p {
    font-size: 18px;
    color: #1e1a1a;
    font-weight: 500;
    line-height: 27px;
    margin: 0 0 30px;
    width: 90%
}

.about_img img,.about_img_left img,.blog_box img,.ser_box img,.testi-img-wrapper figure img {
    border-radius: 0;
}

.about_img_left {
    position: absolute;
    bottom: 19%;
    width: 15%;
    left: 10px;
}

.coot_img,.cott_text,.custom_width {
    position: relative
}

.about_img_left.rightt {
    left: inherit;
    right: 0;
    bottom: 100px;
    width: 20%;
    animation: 3s ease-out 4s infinite alternate-reverse bounce-top;
}


.dual_btn {
  display: flex;
  gap: 20px;
}

.call_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

}

a.call_btn b {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  width: 60px;
  height: 60px;
  color: #fff;
  font-size: 30px;
  transform: rotate(0deg);
  transition: all 0.5s ease-in-out;
  border-radius: 30px;
  position: relative;
  z-index: 0;
}

a.call_btn b:after {
  position: absolute;
  content: '';
  top: -5px;
  left: -5px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -3;
  border-radius: 50px;
  border: 0px solid #6f6f6f00;
}

.dual_btn a:hover b {
  transform: rotate(360deg);
}

.text_call {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.text_call small {
  font-size: 16px;
  font-weight: 500;
  color: #000003;
  margin-left: 30px;
}

.text_call span {
  color: #000003;
  font-size: 20px;
  font-weight: 800;
}


.thirty_div {
    bottom: 15%;
    left: 17%;
    position: absolute;
    z-index: 5;
    animation: 3s ease-out 4s infinite alternate-reverse bounce-top;
}


/* services css start */


.services_sec {
  padding: 11% 0 15%;
  background:url(../images/ser_bg.png) no-repeat;
  background-size:cover;
  background-position: top center;
}

.services_sec h2 {
  font-size: 65px;
  line-height: 70px;
  color: #fff;
  font-weight: 400;
  margin: 10px 0 10px;
  text-transform: uppercase;
  text-align: center;
  font-family: 'Evogria';
}

.services_sec p.text-center {
    color: #fff;
    font-size: 18px;
    margin: 30px auto 0;
    width: 30%;
}





.blog_slide {
    margin-top: 0;
}
.ser_box img {
  border-radius: 10px;
}

.ser_text {
  width: 100%;
  margin: 0px 0 0;
  border-radius: 0px 0px 50px 50px;
  height: 247px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 30px;
}

.ser_text h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  line-height: 34px;
  color: #ffffff;
  font-weight: 600;
  margin: 0 0 10px;
}

.ser_text p {
  color: #ffffff;
  font-size: 18px;
  line-height: 27px;
}

.ser_text a {
  color: #ffffff;
  font-size: 19px;
  line-height: 45px;
  margin: 0 0;
  transition: all 0.5s ease-in-out;
}

.ser_text a:hover {
  color: #ff8900;
}


.small_img {
  margin: 13% 0 0;
}

.ser_box .small_img img {
  border-radius: 10px;
  margin: 0 0 19%;
}

.blog_slide .slick-active,
.blog_slide2 .slick-active {
  opacity: 1;
}

.blog_slide .slick-slide,
.blog_slide2 .slick-slide {
  opacity: 1;
}

.blog_slide .slick-next {
  right: 245px;
}


.blog_slide .slick-next:before {
  content: '';
  background: url(../images/long.png) no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 36px;
  background-position: 0;
}


.blog_slide .slick-prev,
.blog_slide .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 40%;
  display: flex;
  width: 200px;
  height: 200px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: #ffffff4f;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.blog_slide .slick-prev:hover,
.blog_slide .slick-prev:focus,
.blog_slide .slick-next:hover,
.blog_slide .slick-next:focus {

  background: #ffffff4f;
}

.blog_slide button.slick-prev.slick-arrow {
  opacity: 0;
}

.gallery_sec .btn.btn_green,
.services_sec .btn.btn_green,
.blog_sec .btn.btn_green {
  margin: 0 auto;
}


.ser_box {
    margin: 65% 0 5%;
    background: rgb(0 0 0);
    border-radius: 50px 50px 50px 50px;
    position: relative;
    height: 400px;
    display: flex;
    align-items: flex-end;
}
.ser_box img {
    border-radius: 50px 50px 50px 50px;
    width: 100%;
    padding: 0 20px;
    position: absolute;
    top: -220px;
}
.ser_box.otp.aos-init.aos-animate {
    margin: 77% 0 0 0;
}


/*need calll sec css start*/

.need_to_sec{margin: -7% 0 5%;}



.need_main{
  padding: 7% 20px;
  background:url(../images/nd_bg.jpg) no-repeat;
  background-size:cover;
  background-position: top center;
  position: relative;
  border-radius: 15px;
  z-index: 1;
 }

.need_main:after{
  position:absolute;
  content: '';
  top: -15px;
  left: -15px;
  width: 100%;
  height: 250px;
  border: 1px solid #ff8900;
  border-radius: 15px;
  z-index: -1;
  border-bottom: transparent;
}



.need_main h3 {
    font-family: 'Evogria';
    font-size: 41px;
    line-height: 45px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 10px;
}
.need_main p {
    font-weight: 500;
    color: #1e1a1a;
    font-size: 23px;
}


.need_main .text_call span {
    color: #ffffff;
    font-size: 31px;
    font-weight: 800;
}

.need_main .text_call small {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    margin-left: 30px;
    line-height: 30px;
}

.need_main .home {
    position: absolute;
    top: -40%;
    right: -10%;
}

/*cliient sec css start*/


.client-section {
    padding: 5% 0 5%;
}





.client-img-wrap .reviews-wrap .review-li {
    font-size: 12px
}

.client-slider .slick-dots {
    bottom: -50px;
    left: 23%;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    top: unset;
    right: 0;
    row-gap: 0;
    gap: 10px;
    margin: auto;
    max-width: fit-content
}

.client-slider p {
    color: #000
}

.client-slider .slick-dots li {
    background: #000000;
    border: 0;
    height: 5px;
    width: 60px;
    margin: 0 6px;
    transition: .4s;
    border-radius: 0
}

.client-slider .slick-dots li.slick-active {
    background: #ff8900;
    border-color: transparent;
    width: 90px
}

.client-slider .slick-list.draggable {
    padding-top: 40px
}

.testi-left-img {
    bottom: -5px;
    right: -28rem;
    z-index: 0;
}

.testi-right-img {
    left: -250px
}

.testi-commas {
    margin-top: -41px;
    margin-right: 190px;
    position: absolute;
    top: 0;
    right: 0
}

.img-icon-span {
    background: #0097a7;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 600;
    color: #fff
}

.review_img {
    bottom: 40px;
    right: -120px;
    z-index: 9
}

.extra-bg-2 {
    background: #fff;
    box-shadow: 0px 0px 30px #00000047;
    margin: 0 0 40px 20px;
}

.slick-slide img {
    display: block;
    width: auto
}

.client-slide {
    border-radius: 20px;
    position: relative
}

.slick-dots li button:before,
.slick-dots li.slick-active button:before {

    opacity: 0;
}
.client-section h2 {
   font-family: 'Evogria';
   font-size: 65px;
   line-height: 70px;
   color: #191717;
   font-weight: 500;
   margin: 0 0 0px 80px;
}
.client-section{ position:relative; }
.client-section .container-fluid{ position:relative; z-index: 5;}
.client-section:after {
    position: absolute;
    content: '';
    background: url(../images/testi-right-img.jpg) no-repeat;
    width: 510px;
    height: 710px;
    right: 0;
    z-index: -1;
    border-radius: 0px;
    bottom: 35%;
}

h5.level-5.primary-semibold-font.extra-color-10 {
    color: #2277e8;
    margin: 0 0 4px;
    font-weight: 600;
}

h5.level-6.primary-regular-font.extra-color-9.mb-0, h6.level-6.primary-regular-font.extra-color-9 {
    color: #75787e;
}


.client-section:before {
    position: absolute;
    content: '';
    top: 0px;
    left: 0;
    background: url(../images/hm_bg.png) no-repeat;
    z-index: -1;
    width: 1500px;
    height: 1177px;
    background-size: 100%;
}



.contact_sec {
    padding: 5% 0 14%;
    background: url(../images/con_bg.png) center bottom/cover no-repeat;
    position: relative;
    z-index: 5
}

.contact_sec h2 {
        font-family: 'Evogria';
    font-size: 65px;
    line-height: 70px;
    color: #110f0f;
    font-weight: 500;

}
.contact_sec p {
    font-weight: 500;
    color: #1e1a1a;
    font-size: 18px;
    width: 50%;
    margin: 0 auto 6%;
}
.con_det h5,.phone_div a h5 {
    font-family: Poppins,sans-serif;
    line-height: 25px
}

.contact_sec textarea {
    padding: 10px;
    height: 155px;
}

.contact_sec input[type=email],.contact_sec input[type=number],.contact_sec input[type=password],.contact_sec input[type=tel],.contact_sec input[type=text],.contact_sec input[type=url],select,textarea {
    border: 1px solid #e4e3e0;
    background-color: #ffffff87;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    height: 67px;
    margin-bottom: 20px;
    width: 100%;
    padding: 0 15px;
    border-radius: 15px;
    resize: none
}

.contact_sec input::-webkit-inner-spin-button,.contact_sec input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.contact_sec input[type=number] {
    -moz-appearance: textfield
}

.footerSec {
    padding: 4% 0 3%;
    background: #222c14
}

.inner_banner.contact,.inner_banner.project,.inner_banner.ser {
    padding: 14% 0;
    position: relative
}

.con_det {
    float: right
}

.con_det h5 {
    font-size: 30px;
    color: #fff;
    font-weight: 600;
    margin: 0 0 30px
}

.con_det a {
    color: #fff;
    font-size: 18px;
    margin: 0 0 30px;
    display: inline-flex;
    gap: 18px;
    align-items: center;
    font-weight: 400;
    letter-spacing: 2px
}

.con_det a:hover,.f_menu a:hover {
    color: #43b64e
}



/*gallery sec start */



.gallery_sec{ padding:5% 0; position: relative;}
.gallery_sec .container-fluid{ position: relative; z-index: 5;}


.gallery_sec:after{padding:5% 0;position:absolute;content: '';top: 12%;left:0;width: 100%;height: 520px;background: url(../images/font.png) no-repeat;background-position: center;opacity: 0.5;}

.gallery_sec:before {
    content: '';
    display: flex;
    height: 140px;
    width: 530px;
    align-items: center;
    justify-content: center;
    border: 3px solid #ff8900;
    position: absolute;
    top: 47%;
    bottom: 0;
    transform: rotate(-90deg);
    left: -12%;


}



.gl_head {
    display: flex;
    gap: 40px;
    align-items: center;
    margin: 0 0 5%;
}




.gl_head h2 {
    font-family: 'Evogria';
    font-size: 65px;
    line-height: 70px;
    color: #191717;
    font-weight: 500;
    margin: 0 0 0px;
}
.gl_head p {
    font-weight: 500;
    color: #191717;
    font-size: 18px;
    width: 40%;
    border-left: 10px solid #191717;
    padding: 0 0 0 40px;
    margin: 0;
    line-height: 34px;
}

.gal_main img {
    width: 100%;
}

.gal_main.spp {
    margin: 10% 0 5%;
}

.gal_main h4 {
    font-family: 'Evogria';
    font-size: 65px;
    line-height: 70px;
    color: #191717;
    font-weight: 500;
    margin: 30px 0 0px;
}


.rotet_text {
    display: flex;
    height: 140px;
    width: 450px;
    align-items: center;
    justify-content: center;
    border: 3px solid #ff8900;
    position: absolute;
    right: -10%;
    top: 36%;
    bottom: 0;
    transform: rotate(-90deg);
}


.rotet_text h4 {
    font-family: 'Evogria';
    font-size:39px;
    line-height: 42px;
    color: #191717;
    font-weight: 500;
    margin: 0px 12px 0px;
}



/*work sec css start */



.work_sec{

padding: 7% 0 18%;

position:relative;

background: url(../images/wrk_bg.png) no-repeat;

background-size:cover;

background-position: top center;

margin: 0 0 0%;
}
.work_sec .container-fluid{  position:relative; position: relative;}
/*wrk_bg*/




/*.work_sec:before {
    position: absolute;
    content: '';
    top: 0px;
    left: 0;
    background: url(../images/wrk_bg.png) no-repeat;
    z-index: -1;
    width: 100%;
    height: 859px;
    background-size: 100%;
}
*/


.work_width{  }

.left_col_mian{  }

.left_div h5 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 22px;
    line-height: 25px;
    color: #191717;
    font-weight: 500;
    margin: 0 0 0px;
}

.left_div  p {
    font-weight: 500;
    color: #1e1a1a;
    font-size: 15px;
    width: 80%;
    line-height: 20px;
    margin: 0;
}

.left_div a {
    background: #ff8900;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
    border-radius: 60px;
}
.left_div {
    display: flex;
    justify-content: space-between;
    background: #fff;
    height: 121px;
    width: 100%;
    align-items: center;
    box-shadow: -41px 20px 40px #0000002e;
    padding: 0 20px 0 7px;
    border-radius: 0px 100px 100px 0px;
    position: relative;
    transition: all 0.5s ease-in-out;
    margin: 0 0 50px 0;
}
.left_div a {
    transform: rotate(0deg);
    transition: all 0.5s ease-in-out;
}

.left_div:hover a {
    transform: rotate(360deg);
}

.left_div:hover{
    box-shadow: -41px 20px 40px #ff89004a;
    margin: 0 0 50px -10px;
 }




.left_div:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 50px;
  height: 126px;
  background: url(../images/caret.png) no-repeat;
  top:0;
  left: -47px;
  background-size: 96%;
  } 


  .left_col_mian .left_div:nth-child(2){ position:relative; right:0%; }
  .left_col_mian .left_div:nth-child(3){ position:relative; right:0%; }
  .left_col_mian .left_div:nth-child(1){position:relative;right: -30%;}
  .left_col_mian .left_div:nth-child(4){position:relative;right: -30%;}



.right.left_col_mian .right.left_div:nth-child(1) {
    position: relative;
    right: 30%;
}.right.left_col_mian .right.left_div:nth-child(4){position:relative;right: 30%;}

.work_width {
    width: 90%;
    margin: 0 auto;
}




.right.left_div:after {
  position: absolute;
  content: '';
  width: 50px;
  height: 126px;
  background: url(../images/caret.png) no-repeat;
  top: -4px;
  right: -46px;
  background-size: 96%;
  left: inherit;
  transform: rotate(180deg);
  } 
.right.left_div {
    flex-direction: row-reverse;
    border-radius: 100px 0px 0px 100px;
}
.right.left_div:hover {
    box-shadow: -41px 20px 40px #ff89004a;
    margin: 0 0 50px 10px;
}

.right.left_div {
    flex-direction: row-reverse;
    border-radius: 100px 0px 0px 100px;
    gap: 73px;
}
.right.left_div  p {
    font-weight: 500;
    color: #1e1a1a;
    font-size: 15px;
    width: 100%;
    line-height: 20px;
    margin: 0;
}










.center_col_mian{  }



.center_div img{
    visibility: visible;
    animation-duration: 2s;
    animation-delay: 300ms;
    animation-iteration-count: infinite;
    animation-name: bounce-top;
    margin-top: -13%;
} 





.big_hrd {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 0 10%;
}




.big_hrd h2 {
    font-family: 'Evogria';
    font-size: 65px;
    line-height: 70px;
    color: #191717;
    font-weight: 500;
    margin: 0 0 0px;
}
.big_hrd p {
    font-weight: 500;
    color: #191717;
    font-size: 18px;
    width: 40%;
    margin: 0;
    line-height: 34px;
}


    /*

    font-family: 'Evogria';

    */


































.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0 0 0 60px;
}



    

