* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
	 font-family: Syne;
}
/* 
@font-face {
  font-family: poppins-bold;
  src: url(../fonts/Poppins-Bold.ttf);
}

@font-face {
  font-family: poppins-semibold;
  src: url(../fonts/Poppins-SemiBold.ttf);
}

@font-face {
  font-family: poppins-medium;
  src: url(../fonts/Poppins-Medium.ttf);
}

@font-face {
  font-family: poppins-light;
  src: url(../fonts/Poppins-Light.ttf);
}

@font-face {
  font-family: poppins;
  src: url(../fonts/Poppins-Regular.ttf);
}

@font-face {
  font-family: muli-bold;
  src: url(../fonts/Muli-Bold.ttf);
}

@font-face {
  font-family: muli-semibold;
  src: url(../fonts/Muli-SemiBold.ttf);
}

@font-face {
  font-family: muli-light;
  src: url(../fonts/Muli-Light.ttf);
}

@font-face {
  font-family: muli;
  src: url(../fonts/Muli-Regular.ttf);
} */

:root {
  --primary-color: #535654;
  --secondary-color: #000;
  --tertiary-color: #fff;
  --para-color: #565656;
}
@import url('https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Syne:wght@400..800&display=swap');
a,
button,
input[type="submit"] {
  transition: all 0.5s;
  text-decoration: none;
  font-family: poppins-medium;
  font-size: 17px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /*font-family: muli-bold;*/
  font-family: Cardo;
  margin: 0;
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 35px;
  text-transform: capitalize;
}

p,
li {
  margin-bottom: 8px;
  font-size: 19px;
  color: var(--para-color);
  /*font-family: poppins-light;*/
  font-family: Syne;
  line-height: 1.5;
}

input,
select,
textarea {
  font-family: poppins;
  font-size: 15px;
  color: var(--secondary-color);
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

img {
  height: auto;
}

.custom-margin {
  margin: 80px 0;
}

.padd {
  padding: 80px 0;
}

.margin-sec {
  margin: 0 0 80px 0;
}

.custom-btn {
  padding: 8px 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.5s ease;
  z-index: 1;
  display: inline-block;
  color: var(--tertiary-color);
  background: var(--primary-color);
}

.custom-btn:after {
  content: "";
  background: var(--secondary-color);
  position: absolute;
  transition: all 0.5s ease-in;
  z-index: -1;
  height: 100%;
  left: -35%;
  top: 0;
  transform: skew(30deg);
  transition-duration: 0.5s;
  transform-origin: top left;
  width: 0;
}

.custom-btn:hover::after {
  width: 135%;
}

.header {
  width: 100%;
  position: fixed;
  top: 40px;
  left: 0;
  z-index: 999;
}

.nav-bar {
  width: 100%;
}

.nav-flex {
  width: 100%;
  position: relative;
}

.logo {
  width: 12%;
}

.logo img {
  width: 100%;
}

.bars {
  width: 35px;
  display: flex;
  flex-direction: column;
}

.bar {
  width: 100%;
  height: 3px;
  background: var(--tertiary-color);
  border-radius: 5px;
  margin: 0 0 7px 0;
  transition: transform 0.5s;
}

.bar:last-child {
  margin: 0;
}

.bars.active .bar {
  transform: rotate(45deg) translateX(10px);
}

.bars.active .bar:nth-child(2) {
  display: none;
}

.bars.active .bar:last-child {
  transform: rotate(-45deg) translateX(10px);
}

.nav-flex .offcanvas.offcanvas-start {
  left: unset;
  right: 0;
  transform: translateX(100%);
}

.offcanvas.show:not(.hiding),
.offcanvas.showing {
  transform: translateX(0);
}

.offcanvas-header {
  width: 100%;
  background: var(--secondary-color);
}

.offcanvas-header .logo {
  width: 120px;
}

.offcanvas-header .logo img {
  width: 100%;
  filter: in;
}

.offcanvas-header .close-sidebar {
  display: grid;
  place-items: center;
  outline: none;
  border: none;
  background: transparent;
  transition: all 0.5s;
  color: var(--tertiary-color);
  width: 40px;
  height: 40px;
  font-size: 15px;
  border: 2px solid #dddddd;
  border-radius: 50%;
}

.offcanvas-header .close-sidebar:hover {
  color: #dddddd;
  border: 2px solid var(--tertiary-color);
}

.offcanvas-header .close-sidebar i {
  transition: all 0.3s;
}

.offcanvas-header .close-sidebar:hover i {
  transform: rotate(90deg);
}

.menu {
  display: none;
}

.offcanvas-body {
  padding: 15px;
}

.offcanvas-body .menu {
  width: 100%;
  display: block;
  padding: 0;
  text-align: left;
}

.offcanvas-body .menu ul {
  width: 100%;
}

.offcanvas-body .menu ul li {
  width: 100%;
  margin: 0;
  padding: 0;
}

.offcanvas-body .menu ul li a {
  width: 100%;
  padding: 10px;
  margin: 0 0 10px 0;
  border-bottom: solid 1px #e0e0e0;
  display: block;
  color: var(--secondary-color);
}

.offcanvas-body .menu ul li a:hover {
  background: var(--secondary-color);
  color: var(--tertiary-color);
  letter-spacing: 2px;
}

.offcanvas-body .menu ul li.active a {
  background: var(--primary-color);
  color: var(--tertiary-color);
  letter-spacing: normal;
}

.menu-btn {
  width: 100%;
  text-align: left;
  margin: 30px 0 0 0;
}

.sticky {
  width: 100%;
  left: 0;
  top: 0;
  position: fixed;
  animation: slidetop 1s linear;
  z-index: 999;
  background: var(--secondary-color);
  padding: 10px 0;
}

@keyframes slidetop {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0%);
  }
}

.sticky .logo {
  width: 8%;
}

.sticky .bars {
  width: 40px;
}

.sticky .bar {
  height: 2px;
}

.sticky .offcanvas-header .logo {
  width: 50%;
}

/* header ends */

.form-popup-box h2 {
  text-transform: capitalize;
}

.close-popup {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 15px;
  color: var(--primary-color);
  background: none;
  outline: none;
  border: 1px solid var(--secondary-color);
}

.close-popup:hover {
  background: var(--primary-color);
  border: transparent;
  color: var(--tertiary-color);
}

.popup-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  transition: all 0.2s;
  outline: none;
  border-radius: 5px;
  margin: 0 0 20px 0;
  background: none;
}

.popup-input::placeholder {
  opacity: 1;
  color: rgba(0, 0, 0, 0.8);
}

.popup-input:focus {
  border-color: var(--primary-color);
}

.popup-select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  transition: all 0.2s;
  outline: none;
  border-radius: 5px;
  margin: 0 0 20px 0;
  background: none;
}

.popup-select:focus {
  border-color: var(--primary-color);
}

.popup-area {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  transition: all 0.2s;
  outline: none;
  border-radius: 5px;
  margin: 0 0 20px 0;
  background: none;
  height: 70px;
}

.popup-area::placeholder {
  opacity: 1;
  color: rgba(0, 0, 0, 0.8);
}

.popup-area:focus {
  border-color: var(--primary-color);
}

.popup-submit {
  width: 100%;
  padding: 10px 0;
  background: var(--primary-color);
  border: none;
  outline: none;
  color: var(--tertiary-color);
  border-radius: 5px;
}

.popup-submit:hover {
  background: var(--secondary-color);
}

/* header popup ends */

.slider {
  width: 100%;
}

.banner {
  width: 100%;
  position: relative;
  height: 100vh;
}

.banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-cont {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.banner-text {
  width: 100%;
}

.banner-text h1 {
  color: var(--tertiary-color);
  text-align: center;
  text-transform: uppercase;
}

.about-box {
  width: 100%;
}

.about-box-row {
  align-items: center;
}

.about-image-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about-image {
  width: 48%;
  height: 500px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s;
}

.about-image-box:hover .about-image img {
  transform: scale(1.2);
}

.about-text {
  /*width: 95%;*/
  text-align: center;
  margin: 0 0 0 auto;
}

.about-text p {
  margin: 20px 0 0 0;
}

.about-text a {
  margin: 20px 0 0 0;
}

.service-box {
  width: 100%;
  text-align: center;
  background: #f2f2f2;
}

.service-flex {
  justify-content: space-between;
  flex-wrap: wrap;
}

.service {
  width: 48%;
  position: relative;
  margin: 40px 0 0 0;
}

.service-image {
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s;
}

.service:hover .service-image img {
  transform: scale(1.2);
}

.service-text {
  width: 90%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background: var(--tertiary-color);
  padding: 50px 40px;
  top: -50px;
}

.service-text h3 a {
  font-family: muli;
  font-size: 25px;
  color: var(--secondary-color);
}

.service-text h3 a:hover {
  color: var(--primary-color);
}

.service-text a.custom-btn {
  margin: 20px 0 0 0;
}

/* .service:nth-child(even) .service-text {
  top: -25%;
} */

.portfolio-box {
  width: 100%;
  text-align: center;
}

.portfolio-info {
  margin: 15px 0 0 0;
  width: 60%;
}

.portfolio {
  width: 100%;
  margin: 40px 0 0 0;
  flex-direction: column;
}

.portfolio-image {
  width: 100%;
  height: 550px;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s;
}

.portfolio:hover .portfolio-image img {
  transform: scale(1.2);
}

.portfolio-text {
  width: 100%;
  margin: 20px 0 0 0;
}

.portfolio-text h3 {
  font-family: muli;
  font-size: 25px;
}

.portfolio-row .col-lg-4:nth-child(1) .portfolio {
  flex-direction: column-reverse;
  margin: 60px 0 0 0;
}

.portfolio-row .col-lg-4:nth-child(1) .portfolio .portfolio-text {
  margin: 0 0 20px 0;
}

.portfolio-row .col-lg-4:nth-child(3) .portfolio {
  flex-direction: column-reverse;
  margin: 60px 0 0 0;
}

.portfolio-row .col-lg-4:nth-child(3) .portfolio .portfolio-text {
  margin: 0 0 20px 0;
}

.portfolio-btn {
  width: 100%;
	margin:30px 0 0 0;
}

.home-contact-box {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.6);
  background-blend-mode: multiply;
  background-position: center bottom;
  background-attachment: fixed;
}

.home-contact-box h2 {
  color: var(--tertiary-color);
  text-transform: capitalize;
  /* font-family: poppins-semibold; */
  font-size: 50px;
  line-height: 1.5;
}

.home-contact-box p {
  /* font-size: 18px; */
  color: var(--tertiary-color);
  margin: 10px auto 0 auto;
  width: 60%;
}

.home-contact-box a {
  margin: 30px 0 0 0;
}

.home-contact-box a {
  color: var(--secondary-color);
  background: var(--tertiary-color);
}

.home-contact-box a.custom-btn:hover {
  color: var(--tertiary-color);
}

.home-contact-box a.custom-btn:hover::after {
  background: var(--primary-color);
}

.blog-box {
  width: 100%;
}

.blog-box h2 {
  text-align: center;
}

.blog {
  width: 100%;
  margin: 40px 0 0 0;
}

.blog-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s;
}

.blog:hover .blog-image img {
  transform: scale(1.2);
}

.blog-text {
  width: 100%;
  position: relative;
  padding: 40px 0 0 0;
}

.blog-icon {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 0 23px 23px 0;
  background: var(--secondary-color);
  position: absolute;
  top: -20px;
  left: 0;
}

.blog-icon p {
  font-size: 15px;
  color: var(--tertiary-color);
  font-family: poppins-semibold;
}

.blog-text h3 a {
  color: var(--secondary-color);
  font-size: 22px;
}

.blog-text a.custom-btn {
  margin: 20px 0 0 0;
  padding: 5px 15px;
}

.footer {
  width: 100%;
  background: var(--secondary-color);
  padding: 80px 0 40px 0;
}

.footer-image {
  width: 100%;
  text-align: center;
}

.footer-image img {
  width: 40%;
}

.footer-image p {
  width: 100%;
  color: var(--tertiary-color);
  margin: 20px 0 0 0;
  font-size: 17px;
  /* font-family: poppins; */
}

.footer-icon {
  width: 100%;
  margin: 20px 0 0 0;
}

.footer-icon ul {
  display: inline-block;
}

.footer-icon ul li {
  display: inline-block;
  margin: 0 5px 0 0;
}

.footer-icon ul li a {
  padding: 0;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  color: var(--tertiary-color);
  font-size: 15px;
}

.footer-icon ul li a:hover {
  background: var(--tertiary-color);
  color: var(--secondary-color);
}

.footer-link {
  width: 100%;
  margin: 60px 0 0 0;
}

.footer-link h3 {
  font-size: 22px;
  color: var(--tertiary-color);
  margin: 0 0 30px 0;
  position: relative;
  text-transform: uppercase;
}

.footer-link ul li {
  margin: 0 0 10px 0;
}

.footer-link ul li:last-child {
  margin: 0;
}

.footer-link ul li a {
  position: relative;
  padding: 0 0 0 30px;
  display: inline-block;
  color: var(--tertiary-color);
  font-family: poppins;
}

.footer-link ul li a::before {
  position: absolute;
  content: "➤";
  left: 0;
  top: 0;
  color: var(--primary-color);
  transition: 0.5s;
}

.footer-link ul li a:hover {
  color: var(--primary-color);
}

.footer-link ul li a:hover::before {
  color: var(--tertiary-color);
}

.footer-contact {
  width: 100%;
  padding: 0 0 0 15%;
  margin: 60px 0 0 0;
}

.footer-contact h3 {
  font-size: 22px;
  color: var(--tertiary-color);
  margin: 0 0 30px 0;
  position: relative;
  text-transform: uppercase;
}

.foot-iconbox {
  width: 100%;
  margin: 0 0 30px 0;
}

.foot-iconbox:last-child {
  margin: 0;
}

.foot-icon {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  color: var(--tertiary-color);
  background: var(--primary-color);
}

.foot-icontext {
  width: calc(100% - 45px);
}

.foot-icontext a {
  color: var(--tertiary-color);
  font-family: poppins;
  font-size: 17px;
  text-transform: lowercase;
}

.foot-icontext a:hover {
  color: var(--primary-color);
}

.foot-icontext p {
  color: var(--tertiary-color);
  cursor: pointer;
  font-family: poppins;
  font-size: 16px;
}

.footer_copyright {
  width: 100%;
  text-align: center;
  background: var(--secondary-color);
  border-top: 2px solid #b9b8b8;
}

.footer_copyright p {
  margin: 0;
  color: var(--tertiary-color);
  font-family: poppins;
  font-size: 15px;
  padding: 10px 0;
}

.footer_copyright p a {
  font-family: poppins;
  color: var(--tertiary-color);
}

.footer_copyright p a:hover {
  color: var(--primary-color);
}

.scroll_top {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: var(--tertiary-color);
  font-size: 17px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  transition: all 0.4s;
  cursor: pointer;
  border: 1px solid transparent;
}

.scroll_top:hover {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

/* index css ends */

.inner-banner {
  width: 100%;
  height: 400px;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.about-banner-cont {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: var(--tertiary-color);
  display: flex;
  align-items: end;
}

.about-banner-cont h2 {
  text-transform: capitalize;
  font-size: 50px;
  padding-bottom: 40px;
}

.about-banner-cont .breadcrumb {
  display: inline-block;
}

.about-banner-cont .breadcrumb-item {
  display: inline-block;
  font-size: 16px;
}

.about-banner-cont .breadcrumb-item i {
  color: var(--tertiary-color);
  margin: 0 10px;
  font-size: 14px;
}

.about-banner-cont .breadcrumb-item a {
  display: inline-block;
  font-size: 15px;
}

.about-banner-cont .breadcrumb-item a:hover {
  color: var(--primary-color) !important;
}

.about-banner-cont .breadcrumb-item + .breadcrumb-item::before {
  display: none;
}

.about-banner-cont .breadcrumb-item + .breadcrumb-item {
  padding: 0;
}

.about-banner-cont .breadcrumb-item.active {
  color: var(--tertiary-color);
}

/* inner banner css ends */

.about-inner-image {
  width: 95%;
  height: 460px;
  overflow: hidden;
}

.about-inner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.about-inner-image:hover img {
  transform: scale(1.1);
}

.about-inner-text {
  text-align: left;
}

.counter-box {
  width: 100%;
  background: #f3f3f3;
}

.counter {
  width: 100%;
  border-right: 2px solid #ccc;
}

.counter-box .col-lg-3:last-child .counter {
  border-right: none;
}

.counter-head {
  width: 100%;
}

.counter-head h3 {
  font-family: poppins-bold;
  font-size: 50px;
  color: var(--primary-color);
}

.counter-head span {
  font-family: poppins-bold;
  font-size: 50px;
  margin: 0 0 0 5px;
  color: var(--primary-color);
}

.counter-text {
  width: 100%;
}

.counter-text p {
  font-family: muli;
}

.work-box {
  width: 100%;
}

.work {
  width: 32%;
  margin: 40px 0 0 0;
  position: relative;
}

.work-icon {
  width: 80px;
  height: 80px;
  background: #ddd;
  position: relative;
  transition: all 0.5s;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.work-icon img {
  width: 60%;
  transition: all 0.5s;
}

.work-icontext {
  margin: 15px 0 0 0;
}

.work-icontext h3 {
  font-size: 21px;
  color: var(--primary-color);
}

.work-icontext p {
  margin: 10px 0 0 0;
}

.work:hover .work-icon {
  background: var(--secondary-color);
  transform: rotateY(180deg);
}

.work:hover .work-icon img {
  filter: brightness(0) invert(1);
}

.faq-box {
  width: 100%;
background: #f3f3f3;

}

.faq-one {
  width: 95%;
  margin: 10px 0 0 0;
}

.faq {
  margin: 30px 0 0 0;
  padding: 0 0 20px 0;
  border-bottom: 2px solid #ddd;
}

.faq:last-child {
  border-bottom: none;
  padding: 0;
}

.question {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.question h3 {
  font-size: 20px;
  font-family: muli-semibold;
  width: calc(100% - 40px);
}

.toggle-icon {
  width: 20px;
  font-size: 15px;
  text-align: right;
}

.question.active h3 {
  color: var(--primary-color);
}

.question.active {
  color: var(--primary-color);
}

.answer {
  margin: 15px 0 0 0;
  display: none;
}

.answer p {
  font-family: poppins;
  font-size: 15px;
}

.faq-two {
  width: 100%;
  margin: 10px 0 0 0;
}

/* about css ends */

.contact-image {
  width: 90%;
}

.cont-info {
  margin: 15px 0 0 0;
}

.contact-detail {
  flex-wrap: wrap;
}

.contact-flex {
  width: 100%;
  flex-wrap: wrap;
  margin: 30px 0 0 0;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  font-size: 25px;
  transition: all 0.5s;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.contact-icontext {
  width: calc(100% - 90px);
}

.contact-icontext h3 {
  font-size: 25px;
}

.contact-icontext p {
  margin: 5px 0 0 0;
  font-family: poppins;
}

.contact-icontext a {
  margin: 5px 0 0 0;
  font-family: poppins;
  color: var(--secondary-color);
}

.contact-icontext a:hover {
  color: var(--primary-color);
}

.contact-flex:hover .contact-icon {
  background: var(--secondary-color);
  transform: rotateY(180deg);
}

.contact-form p {
  margin: 0;
}

.contact-form br {
  display: none;
}

.form-flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.form-input {
  width: 48%;
  margin: 20px 0 0 0;
}

.form-input label {
  font-size: 15px;
  font-family: poppins-semibold;
  display: block;
  margin: 0 0 10px 0;
  color: var(--primary-color);
}

.form-input input {
  width: 100%;
  padding: 0 0 10px 0;
  border: none;
  border-bottom: 1px solid #e6e6e6;
  outline: none;
  border-radius: 5px;
  transition: all 0.2s;
}

.form-input input:focus {
  border-color: var(--primary-color);
}

.form-input select {
  width: 100%;
  padding: 0 0 10px 0;
  border: none;
  border-bottom: 1px solid #e6e6e6;
  outline: none;
  border-radius: 5px;
  transition: all 0.2s;
}

.form-input
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  position: absolute;
  top: 50% !important;
  right: 1px;
  width: 20px;
  transform: translateY(-50%) !important;
  height: auto !important;
}

.form-input
  .select2-container
  .select2-selection--single
  .select2-selection__rendered {
  padding: 9px 10px !important;
  height: auto !important;
  line-height: normal !important;
  font-size: 15px;
  font-family: poppins;
}

.form-input .select2-container .select2-selection--single {
  height: auto !important;
}

.form-input .select2-container {
  width: 100% !important;
  margin: 0 0 15px 0 !important;
}

.form-input
  .select2-container--default.select2-container--open.select2-container--below
  .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below
  .select2-selection--multiple {
  border-bottom-left-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
}

.form-input .select2-container--default .select2-selection--single {
  border-radius: 0 0 5px 5px !important;
  background-color: none !important;
  border: none !important;
  border-bottom: 1px solid #e6e6e6 !important;
  transition: all 0.5s;
}

.form-input .select2-container--default .select2-selection--single:focus {
  border-color: var(--primary-color) !important;
}

.form-service {
  width: 100%;
  margin: 20px 0 0 0;
}

.form-service label {
  font-size: 15px;
  font-family: poppins-semibold;
  display: block;
  margin: 0 0 10px 0;
  color: var(--primary-color);
}

.form-service textarea {
  width: 100%;
  height: 100px;
  padding: 0 0 10px 0;
  border: none;
  border-bottom: 1px solid #e6e6e6;
  outline: none;
  border-radius: 5px;
  transition: all 0.2s;
}

.form-service textarea:focus {
  border-color: var(--primary-color);
}

.form-checkbox {
  width: 100%;
  display: flex;
  align-items: baseline;
  margin: 20px 0 0 0;
}

.form-checkbox input {
  margin: 0 10px 0 0;
  accent-color: var(--primary-color);
}

.form-checkbox label {
  font-family: poppins-light;
  color: var(--para-color);
  font-size: 15px;
  margin: 0;
}

.contact-submit {
  display: inline-block;
  padding: 8px 20px;
  background: var(--primary-color);
  color: var(--tertiary-color);
  outline: none;
  border: none;
  transition: all 0.5s;
  border-radius: 5px;
  margin: 20px 0 0 0;
}

.contact-submit:hover {
  background: var(--secondary-color);
}

.contact-map {
  width: 100%;
  height: 450px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
}

/* contact css ends */

.portfolio-inner {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
  margin: 40px 0 0 0;
}

.portfolio-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s;
}

.portfolio-inner::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 30%,
    rgba(0, 0, 0, 0.7) 100%
  );
  transition: all 0.5s;
}

.portfolio-abso {
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  padding: 20px 30px;
  position: absolute;
  bottom: -100%;
  text-align: left;
  background: var(--tertiary-color);
  transition: all 1s;
}

.portfolio-abso h5 {
  font-size: 15px;
  font-family: poppins-light;
  color: var(--para-color);
}

.portfolio-abso h3 a {
  font-size: 25px;
  color: var(--secondary-color);
  display: inline-block;
  font-family: muli-bold;
}

.portfolio-abso h3 a:hover {
  color: var(--primary-color);
}

.portfolio-inner:hover::before {
  top: 0;
}

.portfolio-inner:hover .portfolio-abso {
  bottom: 20px;
}

.portfolio-inner:hover img {
  transform: scale(1.1);
}

/* portfolio css ends */

.detail-box {
  width: 100%;
  margin: 20px 0 0 0;
  padding: 20px 0 0 0;
  border-top: 2px solid #ddd;
}

.detail-box ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.detail-box li {
  width: 18%;
}

.detail-box li h4 {
  font-size: 20px;
  font-family: poppins-medium;
}

.detail-box li h4 i {
  font-size: 15px;
  color: var(--primary-color);
  margin: 0 10px 0 0;
}

.detail-box li p {
  font-size: 14px;
  margin: 10px 0 0 0;
}

.portfolio-detail-image {
  width: 100%;
  height: 500px;
  margin: 30px 0 10px 0;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.portfolio-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.8s;
}

.portfolio-detail-image:hover img {
  transform: scale(1.1);
}

.portfolio-detail-image::before {
  content: "";
  position: absolute;
  left: -400px;
  top: 0;
  height: 100%;
  width: 20%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
  transition: all 1s ease-in-out;
  z-index: 999;
}

.portfolio-detail-image:hover::before {
  transform: translateX(2000px) skewX(-25deg);
}

.detail-text {
  width: 100%;
  margin: 30px 0 0 0;
  text-align: left;
}

.detail-text h3 {
  font-size: 25px;
  color: var(--primary-color);
}

.detail-text p {
  margin: 20px 0 0 0;
}

.detail-list-box {
  width: 100%;
  padding: 20px;
  background: #f3f3f3;
  border-radius: 10px;
  margin: 30px 0 0 0;
}

.detail-list {
  width: 24%;
  border-right: 1px solid #ddd;
  text-align: center;
}

.detail-list:last-child {
  border: none;
}

.detail-list h4 {
  font-size: 40px;
  color: var(--primary-color);
}

.detail-text h4 span {
  vertical-align: super;
}

.detail-text h5 {
  margin: 10px 0 0 0;
  font-family: poppins-light;
  font-size: 15px;
}

.portfolio-image-box {
  width: 100%;
}

.portfolio-card {
  width: 48%;
  height: 400px;
  overflow: hidden;
  margin: 30px 0 0 0;
  border-radius: 10px;
  position: relative;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.8s;
}

.portfolio-card:hover img {
  transform: scale(1.1);
}

.portfolio-card::before {
  content: "";
  position: absolute;
  left: -290px;
  top: 0;
  height: 100%;
  width: 20%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
  transition: all 1s ease-in-out;
  z-index: 999;
}

.portfolio-card:hover::before {
  transform: translateX(1110px) skewX(-25deg);
}

/* portfolio detail css ends */

.service-detail-box {
  width: 100%;
}

.service-detail-box h2 {
  text-transform: capitalize;
}

.service-detail-text h3 {
  font-size: 25px;
  margin: 30px 0 0 0;
  color: var(--primary-color);
}

.service-detail-text p {
  margin: 20px 0 0 0;
}

.service-detail-text ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.service-detail-text ul li {
  margin: 20px 0 0 0;
  padding: 0 0 0 30px;
/*   font-family: poppins-medium; */
  /*width: 48%;*/
  position: relative;
}

.service-detail-text ul li::before {
  content: url(../images/service-check.png);
  position: absolute;
  left: 0;
  top: 2px;
  width: 15px;
}

.service-list-box {
  width: 100%;
}

.service-list {
  width: 32%;
  margin: 40px 0 0 0;
}

.service-icon {
  --percentage: 0;
  width: 180px;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 0 auto;
  background: conic-gradient(
    var(--primary-color) calc(var(--percentage) * 1%),
    var(--tertiary-color) calc(var(--percentage) * 1%)
  );
}

.service-icontext {
  width: 160px;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--secondary-color);
  color: var(--tertiary-color);
  font-size: 40px;
  font-family: poppins-bold;
}

.service-list-text {
  margin: 15px 0 0 0;
  text-align: center;
}

.service-list-text h3 {
  font-size: 25px;
  color: var(--primary-color);
}

.service-list-text p {
  margin: 10px 0 0 0;
}

/* service details service ends */

.blog-detail-box {
  width: 100%;
}

.blog-detail-box h2 {
  text-transform: capitalize;
}

.blog-detail-slider {
  width: 100%;
  position: relative;
  padding: 0 0 50px 0;
}

.blog-detail-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin: 30px 0 0 0;
}

.blog-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s;
}

.blog-detail-image:hover img {
  transform: scale(1.1);
}

.blog-prev {
  position: absolute;
  content: "";
  bottom: 0;
  right: 50px;
  font-size: 40px;
  color: var(--secondary-color);
  transition: all 0.5s;
  cursor: pointer;
}

.blog-prev:hover {
  color: var(--primary-color);
}

.blog-next {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  font-size: 40px;
  color: var(--secondary-color);
  transition: all 0.5s;
  cursor: pointer;
}

.blog-next:hover {
  color: var(--primary-color);
}

.blog-detail-text {
  width: 100%;
}

.blog-detail-text ul {
  display: inline-block;
}

.blog-detail-text ul li {
  display: inline-block;
  margin: 10px 10px 0 0;
  font-family: poppins;
}

.blog-detail-text ul li:last-child {
  /* margin: 0; */
}

.blog-detail-text ul li i {
  color: var(--primary-color);
  margin: 0 10px 0 0;
}

.blog-detail-text h3 {
  font-size: 25px;
  color: var(--primary-color);
  margin: 30px 0 0 0;
}

.blog-detail-text h4 {
  font-size: 18px;
  color: var(--secondary-color);
  margin: 30px 0 0 0;
  font-family: poppins-medium;
}

.blog-detail-text p {
  margin: 20px 0 0 0;
}

.blog-detail-text p a {
  color: var(--primary-color);
  font-family: poppins-light;
  text-decoration: underline;
}

.blog-detail-text p a:hover {
  color: var(--secondary-color);
  font-family: poppins;
  text-decoration: none;
}

.bg-sec {
    background: url(../images/lets.jpg);
    padding: 90px 20px;
    background-size: cover;
    z-index: 99;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.bg-overlay {
    position: absolute;
    content: "";
    background: url(../images/bg-after.png);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-position: center center;
    z-index: -1;
    filter: brightness(0);
}

.bg-sec h3 {
    font-size: 30px;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 15px;
}

.bg-sec p {
    color: #fff;
}

.call i {
    font-size: 20px;
    color: #fff;
    background: var(--first-clr);
    padding: 15px;
    border-radius: 100%;
}

.call a {
    color: #fff;
    padding-left: 10px;
    font-size: 18px;
}

.bg-sec .custom-btn{
	cursor:pointer;
}

.bg-sec .custom-btn:hover{
	color:var(--secondary-color);
}

.bg-sec .custom-btn:hover::after{
	background:var(--tertiary-color);
}

#pop-up .form-input {
    width: 100%;
}

#pop-up .form-input label, #pop-up .form-service label {
    display: none;
}

.founder-sec {
    background-image: url(../images/founder-bg.png);
    background-repeat: no-repeat;
    background-position: right;
        background-color: #ebebeb;
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-20px);
    }

    100% {
        transform: translatey(0px);
    }
}

.founder-img {
    width: 100%;
    position: relative;
    z-index: 9;
    transition:.4s ease;
}

.founder-img img:hover {
    transform: scale(1.1);
}

.founder-img img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 100%;
    border: 3px solid #000;
     transition:.4s ease;
}

.founder-img:before {
    position: absolute;
    content: "";
    width: 250px;
    height: 250px;
    background: #000;
    border-radius: 100%;
    z-index: -1;
    right: 40px;
    bottom: 35px;
    animation: float 4s ease-in-out infinite;
}




/* blog detail css ends */

.testimonial-box{
	width:100%;
}

.testimonial-box h2{
	text-align:center;
}

.testimonial-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.testimonial-card {
  width: 48%;
  margin: 80px 0 0 0;
}

.testimonial-card:nth-child(odd) {
  padding: 0 20px 0 0;
}

.testimonial {
  width: 100%;
  background-color: #f7f7f7;
  position: relative;
  padding: 10px;
  text-align: left;
}

.next-button {
  content: "";
  position: absolute;
  top: 35%;
  z-index: 9;
  left: -35px;
  width: 55px;
  height: 55px;
  background-color: #f7f7f7;
  display: grid;
  place-items: center;
  font-size: 20px;
  cursor: pointer;
}

.prev-button {
  content: "";
  position: absolute;
  top: 35%;
  z-index: 9;
  right: -10px;
  width: 55px;
  height: 55px;
  background-color: #f7f7f7;
  display: grid;
  place-items: center;
  font-size: 20px;
  cursor: pointer;
}

.testimonial::after {
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 35px solid transparent;
  border-top: 60px solid #f8f4f4;
  content: "";
  position: absolute;
  top: 90%;
  left: 15%;
  z-index: -1;
  transform: rotate(10deg);
}

.testimonial-cont {
  width: 100%;
  background-color: #ddd;
  padding: 50px 10px 50px 40px;
}

.testimonial-cont p {
  font-size: 17px;
  margin: 0;
}

.test-icon {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  position: absolute;
  background-color: var(--secondary-color);
  right: 50px;
  top: -40px;
	font-size:35px;
	color:var(--tertiary-color);
}

.test-client {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 45px 0 0 0;
}

.client {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 0 0 8%;
}

.client img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}

.client-text {
  width: calc(100% - 140px);
  text-align: left;
}

.client-text h3 {
  font-size: 18px;
	margin:10px 0 0 0;
}

.client-text p {
  margin: 0;
  color: #858585;
  font-size: 14px;
}


/* testimonials css ends  */

/* media query starts */

@media only screen and (max-width: 1399.2px) {
	.container{
		max-width:90%;
		margin:0 auto;
	}
}

/*RESPONSIVE QUERY______*/


@media only screen and (max-width: 1280px) {
	.about-inner-image{
		height:490px;
	}
}

@media only screen and (max-width: 1255.2px) {
	.founder-img::before {
		display:none;
	}
	
	.founder-img{
		width:95%;
	}
}

@media only screen and (max-width: 1201px) {
.about-inner-image {
    height: 500px;
  }
	
	.founder-img img{
		width:350px;
		height:350px;
	}
	
	.portfolio-info{
		width:70%;
	}
	
}

@media only screen and (max-width: 1101px) {
 .about-inner-image {
    height: 570px;
  }
}

@media only screen and (max-width: 1051px) {
  .about-inner-image {
    height: 600px;
  }
}



@media only screen and (max-width: 991.2px) {
    h2 {
    font-size: 28px;
    }
    
    .custom-margin {
    margin: 40px 0;
    }
    
    .home-contact-box h2 {
    font-size: 34px;
}

.footer-contact {
    padding: 0;
}

.footer-image {
    text-align: left;
}

.footer-image img {
    width: 120px;
}

.about-banner-cont h2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 36px;
    padding: 0;
}


.about-banner-cont {
    align-items: center;
}
	
	.about-inner-image{
		height:450px;
		width:100%;
		margin:30px 0 0 0;
	}
	
	.bg-overlay{
		background-image:none;
		background-color:rgba(0,0,0,0.6);
	}
	
	.bg-sec{
		text-align:center;
	}

		.founder-img img{
		width:300px;
		height:300px;
	}
	
	.portfolio-info{
		width:90%;
	}
	
	.about-image{
		margin:30px 0 0 0;
	}

}


@media only screen and (max-width: 980px) {

}

@media only screen and (max-width: 850px) {
	.founder-img img{
		width:280px;
		height:280px;
	}
}


@media only screen and (max-width: 800px) {

}

@media only screen and (max-width: 767.2px) {
	   
    .logo {
    width: 100px;
}

.sticky .logo {
    width: 85px;
}

h2 {
    font-size: 26px;
}

.service {
    width: 100%;
    margin: 20px 0 0 0;
}

/* .service:nth-child(even) .service-text , .service-text {
    top: inherit;
} */

.home-contact-box p {
    width: 100%;
}

.footer-link , .footer-contact {
    margin: 40px 0 0 0;
}

.blog-text h3 a {
    font-size: 18px;
}

.about-image {
    width: 48%;
    height: 350px;
}

.service-image {
    width: 100%;
    height: 350px;
}

.portfolio-info {
    width: 100%;
}


.padd {
    padding: 40px 0;
}

.counter-head h3 {
    font-family: poppins-bold;
    font-size: 30px;
}

.work {
    width: 48%;
}

.faq-one {
    width: 100%;
    margin: 20px 0;
}
	
    .contact-text.wow.fadeInUp {
    margin-top: 30px;
}

	.about-inner-image{
		height:400px;
	}
	
	.founder-img{
		width:100%;
		text-align:center;
		margin:0 0 30px 0;
	}
	
	.portfolio-info{
		width:100%;
	}
	
	.portfolio-image{
		height:350px;
	}

}

@media only screen and (max-width: 667px) {

}

@media only screen and (max-width: 600px) {
.about-inner-image{
		height:350px;
	}
	
	.testimonial-card {
  width: 100%;
  margin: 80px 0 0 0;
}
	
}

@media only screen and (max-width: 575px) {
    
    h1 {
    font-size: 40px;
}

.banner {
    height: 80vh;
}

.about-image {
    width: 48%;
    height: 300px;
}

.footer-link h3 {
    font-size: 21px;
    margin: 0 0 15px 0;
}
    
.portfolio-image {
    width: 100%;
    height: 300px;
 }
    
.about-inner-image {
    width: 100%;
    height: 300px;
}

.about-text{
    width:100%;
}

.work {
    width: 100%;
}

.question h3 {
    font-size: 18px;
}

.portfolio-detail-image {
    width: 100%;
        height: 300px;
    
}
	
	.about-inner-image{
		height:300px;
	}
	
	.bg-sec h3{
		font-size:25px;
	}
	
	.portfolio-image{
		height:300px;
	}

}

@media only screen and (max-width: 480px) {
    
    h2 {
        font-size: 22px;
    }
    
    .service-text {
    padding: 30px 20px;
}

.service-text h3 a {
    font-size: 20px;
}

.footer {
    padding: 50px 0 20px 0;
}

}

@media only screen and (max-width: 414px) {
.about-inner-image{
		height:250px;
	}
	
	.portfolio-image{
		height:250px;
	}
	
}

@media only screen and (max-width: 375px) {

}

@media only screen and (max-width: 360px) {

}


@media only screen and (max-width: 320px) {

}

.about-text p {
    text-align: left;
}