/*Global css*/

:root {
  --primaryColor: #060644;
  --typographyColor: #000000;
  --backgroudColor: #fad2d2;
  --whiteColor: #fff;
  --blackColor: #000;
}

/* ==========lora font========== */

@font-face {
  font-family: 'Lora';
  src: url('../fonts/lora/Lora-Light.woff2') format('woff2'),
    url('../fonts/lora/Lora-Light.woff') format('woff'),
    url('../fonts/lora/Lora-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lora';
  src: url('../fonts/lora/Lora-Regular.woff2') format('woff2'),
    url('../fonts/lora/Lora-Regular.woff') format('woff'),
    url('../fonts/lora/Lora-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lora';
  src: url('../fonts/lora/Lora-Medium.woff2') format('woff2'),
    url('../fonts/lora/Lora-Medium.woff') format('woff'),
    url('../fonts/lora/Lora-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lora';
  src: url('../fonts/lora/Lora-SemiBold.woff2') format('woff2'),
    url('../fonts/lora/Lora-SemiBold.woff') format('woff'),
    url('../fonts/lora/Lora-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lora';
  src: url('../fonts/lora/Lora-Bold.woff2') format('woff2'),
    url('../fonts/lora/Lora-Bold.woff') format('woff'),
    url('../fonts/lora/Lora-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


/* ==========manrope font========== */
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/manrope/Manrope-Light.woff2') format('woff2'),
    url('../fonts/manrope/Manrope-Light.woff') format('woff'),
    url('../fonts/manrope/Manrope-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/manrope/Manrope-Regular.woff2') format('woff2'),
    url('../fonts/manrope/Manrope-Regular.woff') format('woff'),
    url('../fonts/manrope/Manrope-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/manrope/Manrope-Medium.woff2') format('woff2'),
    url('../fonts/manrope/Manrope-Medium.woff') format('woff'),
    url('../fonts/manrope/Manrope-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/manrope/Manrope-SemiBold.woff2') format('woff2'),
    url('../fonts/manrope/Manrope-SemiBold.woff') format('woff'),
    url('../fonts/manrope/Manrope-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/manrope/Manrope-Bold.woff2') format('woff2'),
    url('../fonts/manrope/Manrope-Bold.woff') format('woff'),
    url('../fonts/manrope/Manrope-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--whiteColor);
  font-family: 'Manrope', sans-serif;
  color: var(--typographyColor);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  min-width: 320px;
}

a,
button {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

a {
  text-decoration: none;
  color: var(--typographyColor);
  display: inline-block;
}

a:hover {
  text-decoration: none;
  outline: 0;
  color: inherit;
}

span {
  display: inline-block;
}

a,
img,
svg {
  border: none;
  outline: none;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 20px;
  padding: 0;
  color: var(--primaryColor);
  font-family: 'Lora', sans-serif;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

ul li {
  list-style: none;
}

p {
  display: block;
  line-height: 26px;
  margin: 0 0 20px;
  padding: 0;
  color: #fff;
}

p:last-child {
  margin-bottom: 0;
}

b,
strong {
  font-weight: 700;
}

.form-control {
  color: #777777 !important;
  background-color: var(--whiteColor);
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 2px solid #e9e9e9;
  outline: none;
  height: 55px;
  line-height: 55px;
  padding: 0;
  font-size: 14px;
  color: #000;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

.form-control:focus {
  color: var(--blackColor);
  background-color: var(--whiteColor);
  border-color: var(--primaryColor);
  outline: 0;
  box-shadow: none;
  outline: none;
}

select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 44px !important;
  line-height: 44px;
  background: var(--whiteColor) url(../images/select-arrow.svg) no-repeat center right 20px;
}

textarea.form-control {
  min-height: 100px;
  resize: none;
  line-height: normal;
  padding-top: 15px;
}

.form-control::placeholder {
  color: var(--blackColor);
}

.form-control::-webkit-input-placeholder {
  color: var(--blackColor);
}

.form-control::-moz-placeholder {
  color: var(--blackColor);
}

.form-control:-ms-input-placeholder {
  color: var(--blackColor);
}

.form-control:-moz-placeholder {
  color: var(--blackColor);
}

.container {
  width: 100%;
  max-width: 1280px;
  position: relative;
}

.btn-custom {
  position: relative;
  background: var(--primaryColor);
  padding: 15px 40px;
  border-radius: 50px;
  overflow: hidden;
  display: flex;
  align-items: center;
  max-width: fit-content;
  margin: auto;
  font-size: 16px;
  color: var(--whiteColor);
  font-weight: 600;
  line-height: 1.2em;
  text-align: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: none;
}

.btn-custom:hover,
.btn-custom:focus {
  background: var(--backgroudColor);
  text-decoration: none;
  color: var(--primaryColor);
  background-position: 100%;
  border: none;
}

.input-field-group {
  position: relative;
}

.input-field-group .form-label {
  font-size: 14px;
  position: absolute;
  top: 8px;
  font-weight: 500;
  margin: 0;
  transition: all ease 0.1s;
  display: block;
}

.input-field-group .form-control:focus~.form-label,
.input-field-group .form-control.has-value~.form-label {
  top: -10px;
  left: 0;
  transform: translateY(0);
  color: #000000;
}

/*Global css end*/

/*===== header css =====*/
.top-bar {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  padding: 5px 0;
  display: none;
}

.top-bar a {
  color: var(--whiteColor);
}

.social-link ul {
  display: flex;
}

.social-link ul li {
  padding-right: 14px;
}

.social-link ul li:last-child {
  padding-right: 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.location {
  font-weight: 700;
  font-size: 14px;
}

.location .media-body {
  padding-left: 8px;
}

.location i {
  font-size: 16px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 9;
  background: var(--primaryColor);
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
}

.header-main {
  background: var(--backgroudColor);
  padding: 15px 0;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-brand img {
  max-width: 70px;
}

.header-main {
  color: var(--typographyColor);
  font-weight: 700;
}

.navbar .navbar-nav li {
  padding: 0 16px;
}

.navbar .navbar-nav li .nav-link {
  font-weight: 500;
  color: var(--primaryColor);
  padding: 0;
  font-size: 18px;
}



.navbar .navbar-nav li a {
  position: relative;
}

.navbar .navbar-nav li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: var(--primaryColor);
  transition: width 0.4s ease;
}

.navbar .navbar-nav li:hover a::before {
  width: 100%;
}

/* .navbar .navbar-nav li .nav-link:hover {
  color: var(--primaryColor);
} */

.hdr-right ul {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hdr-right ul li:first-child {
  display: none;
}

.hdr-right ul li {
  padding-left: 32px;
}

.hdr-right ul li i {
  color: var(--whiteColor);
}

.hdr-right ul li:first-child {
  padding-left: 16px;
}

.search:hover {
  color: inherit;
}

.cart {
  display: inline-block;
  cursor: pointer;
  font-size: 22px;
  color: var(--primaryColor);
  position: relative;
}

.cart .counter {
  position: absolute;
  top: -2px;
  right: -14px;
  width: 20px;
  display: block;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-weight: 500;
  background-color: #f90000;
  color: var(--whiteColor);
  font-size: 14px;
  border-radius: 100%;
}

.contact-btn {
  padding: 0px 38px;
  position: relative;
  border-radius: 45px;
  line-height: 45px;
  color: var(--whiteColor);
  font-weight: 700;
  background-color: var(--primaryColor);
  overflow: hidden;
  box-shadow: none !important;
  border: 1px solid var(--primaryColor);
}


.contact-btn:hover:after,
.contact-btn:focus:after {
  left: 130%;
}

.contact-btn:hover,
.contact-btn:focus {
  border: 1px solid var(--primaryColor);
  background-color: var(--backgroudColor);
  color: var(--primaryColor);
}

.contact-btn:hover,
.contact-btn:focus {
  color: var(--primaryColor);
}

/*===== header end =====*/

/*===== banner-section  =====*/
.banner-section {
  position: relative;
  height: 100%;
}

.banner-section::before {
  content: '';
  position: absolute;
  left: 0;
  right: -7px;
  bottom: -25px;
  background: url('../images/shape.png') no-repeat;
  width: 100%;
  height: 190px;
  background-size: cover;
  z-index: 2;
}

.banner-img {
  height: 715px;
  object-fit: cover;
  width: 100%;

}

.home .banner-img {
  object-position: top
}

.banner-caption {
  top: 50%;
  left: 0;
  right: 0;
  margin-top: -40px;
  position: absolute;
  max-width: 960px;
  color: var(--whiteColor);
  text-align: center;
  transform: translateY(-50%)
}

.banner-caption h1 {
  text-align: center;
  line-height: 85px;
  letter-spacing: 0px;
  font-weight: 700;
  color: var(--whiteColor);
  margin-bottom: 25px;
  font-size: 75px;
  text-shadow: 0 3px 4px rgba(13, 13, 13, .29);
}

.banner-caption p {
  line-height: 30px;
  letter-spacing: 0px;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 35px;
}

.slider-video {
  width: 92px;
  height: 92px;
  display: inline-block;
  background-color: var(--whiteColor);
  border-radius: 92px;
  position: relative;
  line-height: 92px;
  text-align: center;
  font-size: 20px;
  color: var(--primaryColor);
  margin-bottom: 27px;
}

.slider-video:hover {
  color: var(--primaryColor);
}

.banner-carousal .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin-top: -132px;
  transform: translateY(-50%);
}

.banner-carousal .owl-nav button {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e9effb !important;
  border-radius: 100%;
  color: var(--primaryColor) !important;
  font-size: 35px !important;
  position: absolute;
  overflow: hidden;
}

.banner-carousal .owl-nav button:hover i {
  z-index: 99;
  color: var(--whiteColor);
}

.banner-carousal .owl-nav button:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-color: var(--primaryColor);
  border-radius: 100%;
  transition: .3s cubic-bezier(.24, .74, .58, 1);
  transform: scale(0);
  opacity: 0;
}

.banner-carousal .owl-nav button:hover::before {
  transform: scale(1);
  opacity: 1;
}

.banner-carousal .owl-nav .owl-prev {
  left: 25px;
}

.banner-carousal .owl-nav .owl-next {
  right: 25px;
}

.banner-inner:before {
  display: none;
}

.banner-inner img {
  width: 100%;
  display: block;
}

.banner-carousal .item {
  position: relative;
}

.banner-carousal .item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.banner-inner::after {
  top: 0px;
  content: '';
  left: 0px;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
}

.banner-inner img {
  object-fit: cover;
  height: 400px;
  object-position: 4% 10%;
}

.banner-inner .banner-caption {
  z-index: 1;
  margin-top: 0;
}

.banner-inner .banner-caption h1 {
  font-size: 50px;
  line-height: 1;
  margin-bottom: 10px;
}

.banner-breadcrumb .breadcrumb {
  background-color: transparent;
  justify-content: center;
  text-transform: capitalize;
  font-size: 16px;
  padding: 0;
  margin: 0;
  text-align: left;
}

.banner-breadcrumb .breadcrumb a,
.banner-breadcrumb .breadcrumb li.active {
  color: var(--whiteColor);
}

.banner-breadcrumb .breadcrumb a:hover {
  color: var(--primaryColor)
}

.banner-breadcrumb .breadcrumb-item+.breadcrumb-item {
  padding-left: 15px;
}

.banner-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  content: "\f054";
  font-size: 12px;
  font-weight: 900;
  color: var(--whiteColor);
  font-family: 'Font Awesome 5 Free';
  padding-right: 15px;
}

/*===== banner-section  end=====*/

/*=====service-section =====*/



.service-section {
  display: none;
  padding-left: 20px;
  padding-right: 20px;
  z-index: 3;
  margin-top: -118px;
  position: relative;
  padding-bottom: 60px;
}

.service-section .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}


.service-card {
  position: relative;
  z-index: 2;
}

/* .service-card-col .service-card::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  background-color: var(--primaryColor);
  z-index: -1;
  transition: all 0.3s ease-in-out 0s;
  transform: scaleY(1);
} */

/* .service-card-col:hover .service-icon img {
  filter: invert(1);
} */

.service-card-col:hover .service-card::before {
  z-index: 1;
  width: 100%;
  height: 100%;
}

.service-card-col .service-title {
  transition: all 0.3s ease-in-out 0s;
}

/* 
.service-card-col:hover .service-title {
  color: var(--whiteColor);
}

.service-card-col:hover p {
  color: var(--whiteColor);
}

.service-card-col:hover .read-more {
  color: var(--whiteColor);
} */

.service-card-col:hover .read-more i {
  color: var(--whiteColor);
}

.service-title {
  font-size: 22px;
  line-height: 1.363;
  margin: 0 0 14px;
  font-weight: 500;
  font-family: 'poppins', sans-serif;
}

.service-icon {
  min-height: 62px;
  margin: 0 0 15px;
  position: relative;
  z-index: 2;
}

.service-info {
  position: relative;
  z-index: 2;
}


.service-info p {
  color: var(--typographyColor);
  margin-bottom: 10px;
}

.service-card {
  height: 100%;
  background-color: var(--whiteColor);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 36, 119, 6%);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: .3s cubic-bezier(.24, .74, .58, 1);
}

.service-card:hover {
  box-shadow: 0 0 50px rgba(0, 36, 119, 0.25);
}

.read-more {
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  position: relative;
  color: var(--primaryColor);
  margin-top: auto;
  z-index: 2;
}

.read-more {}

.read-more:hover,
.read-more:focus {
  color: var(--primaryColor);
}

.read-more i {
  margin-left: 4px;
  color: var(--primaryColor);
  transition: .3s cubic-bezier(.24, .74, .58, 1);
}

.read-more:hover i {
  margin-left: 2px;
}

.read-more .more-icon-main {
  font-size: 10px;
}

.read-more .more-icon-hover {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-20px, -50%);
  opacity: 0;
  font-size: 13px
}

.read-more:hover .more-icon-main {
  opacity: 0;
}

.read-more:hover .more-icon-hover {
  transform: translate(8px, -50%);
  opacity: 1;
}

/* .service-card:hover .service-title {
  color: var(--primaryColor);
} */



.box-shape2 {
  display: none;
  top: -42px;
  position: absolute;
  width: 87px;
  height: 101px;
  right: 100%;
  margin-right: 130px;
  animation: particleToptoBottom 10s infinite linear alternate;
}

.box-shape1 {
  display: none;
  top: -149px;
  right: 0;
  left: 100%;
  width: 261px;
  height: 343px;
  position: absolute;
  margin-left: 30px;
  animation: particleToptoBottom 10s infinite linear alternate;
}

/*=====service-section end=====*/


.why-choose-us {
  display: block !important;
  margin: 0;
  padding-bottom: 100px;
  padding-top: 100px;
}

.why-choose-us .row {
  grid-template-columns: repeat(3, 1fr);
}


/*===== heading-col =====*/
.heading-col h6 {
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}

.heading-col h6 i {
  display: block;
  width: 34px;
  flex: 0 0 34px;
  margin-right: 10px;
}

.heading-col h6 i img {
  display: block;
  width: 100%;
}

.heading-col h6 span {
  color: var(--primaryColor);
  margin: 0 5px;
}

.heading-col h3 {
  font-size: 60px;
  font-weight: 700;
}

.heading-col h3 span {
  color: var(--primaryColor);
}

.heading-col-white h6,
.heading-col-white h3 {
  color: var(--whiteColor);
}

/*=====heading-col=====*/



/*=====service-company =====*/

.service-company {
  background: url(../images/h5-bg-section1.webp) no-repeat center top -271px;
  padding-top: 70px;
  padding-bottom: 70px;
}

.service-company-info {
  display: flex;
  align-items: center;
  padding-right: 40px;
}

.service-company-info-left {}

.service-company-info-left p {
  font-size: 18px;
  color: var(--typographyColor);
  line-height: 30px;
  padding: 0;
  margin: 0;
}

.service-company-info-left p a {
  color: var(--typographyColor);
  font-weight: 700;
  text-decoration: underline;
}

.service-company-info-right {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  display: none;
}

.service-company .service-company-left img {
  height: 550px;
  border-radius: 20px;
  object-fit: cover;
}

.service-company-info-right-img {
  flex: 0 0 auto;
}

.service-company-info-right a {
  color: var(--typographyColor);
  font-weight: 700;
  text-decoration: underline;
}

.contact-withUs-outer {
  position: relative;
}

.contact-withUs-outer:before {
  content: '';
  position: absolute;
  left: 30px;
  height: 100%;
  right: 30px;
  bottom: -17px;
  border-radius: 90px;
  background-color: var(--backgroudColor);
}

.contact-withUs {
  background-color: var(--primaryColor);
  padding: 18px 45px;
  border-radius: 90px;
  margin-top: 75px;
  position: relative;
}

.contact-withUs-user i {
  width: 60px;
  min-width: 60px;
  margin-right: 24px;
}

.contact-withUs-user i img {
  border-radius: 50%;
  display: block;
  width: 100%;
  height: 60px;
  object-fit: cover;
}

.contact-withUs-user span {
  font-size: 20px;
  margin-bottom: 2px;
  color: var(--whiteColor);
  display: block;
  font-weight: 600;
}

.contact-withUs-user span small {
  font-size: 15px;
  color: var(--whiteColor);
  display: block;
}

.contact-withUs-title {
  text-align: center;
  font-size: 30px;
  line-height: 1.23;
  font-family: lora, sans-serif;
  color: var(--whiteColor);
  font-weight: 500;
}

.contact-withUs .btn-custom {
  background: var(--whiteColor);
  color: var(--primaryColor);
}

.contact-withUs .btn-custom:hover {
  background-color: var(--backgroudColor);
  color: var(--primaryColor);
}

.video-play {
  margin-top: 40px;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--primaryColor);
}

.video-play .icon {
  width: 55px;
  height: 55px;
  border-radius: 55px;
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  line-height: 55px;
  text-align: center;
  flex: 0 0 55px;
  margin-right: 20px;
  position: relative;
}

.video-play .icon:after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: pulse-border2 1500ms ease-out infinite;
  opacity: .55;
  background-color: var(--primaryColor);
}

/*=====service-company=====*/

/*=====case-studies=====*/
.case-studies {
  display: none;
  background-color: var(--backgroudColor);
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.case-studies-graphic {
  position: absolute;
  top: -180px;
  left: -40px;
  animation: particleToptoBottom 10s infinite linear alternate;
}

.case-studies-graphic-bottom {
  position: absolute;
  bottom: -140px;
  right: 60px;
  animation: animationFramesFive 12s infinite linear alternate;
  z-index: 8;
}

.case-studies .heading-col {
  padding-bottom: 20px;
}

.case-studies-card {
  position: relative;
  display: block;
  width: 535px;
}

.case-studies-card span {
  display: block;
}

.case-studies-card-img {
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  transition: border-radius 0.4s ease;

}

/* .case-studies-card-img {
  border-radius: 16px;
  overflow: hidden;
} */

.case-studies-card:hover .case-studies-card-img {
  border-radius: 50px;
}

.case-studies-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  transform-origin: center center;
  transform: perspective(0) rotateX(0) rotateY(0) scaleX(1) scaleY(1);
}

.case-studies-card:hover .case-studies-card-img img {
  transform: perspective(600px) rotateX(0deg) rotateY(0.05deg) scaleX(1.1) scaleY(1.1) !important;
}

.case-studies-card-img:after,
.case-studies-card-img:before {
  border-radius: 44px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  transition: .3s cubic-bezier(.24, .74, .58, 1);
}

.case-studies-card-img:after {
  background: rgb(27, 27, 27);
  background: linear-gradient(0deg, rgba(27, 27, 27, 1) 0%, rgba(27, 27, 27, 0) 100%);
  transition: .3s cubic-bezier(.24, .74, .58, 1);
}

.case-studies-card-img:before {
  background: rgb(113, 20, 239);
  background: linear-gradient(0deg, rgba(113, 20, 239, 1) 0%, rgba(113, 20, 239, 0) 100%);
  opacity: 0;
}

.case-studies-card:hover .case-studies-card-img:before {
  opacity: 1;
}

.case-studies-card:hover .case-studies-card-img:after {
  opacity: 0;
}

.case-studies-card-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,
      rgba(113, 20, 239, 1) 0%,
      rgba(113, 20, 239, 0) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  pointer-events: none;
}

.case-studies-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  display: flex !important;
  align-items: flex-end;
  width: 100%;
  padding: 32px 50px;
  z-index: 3;
}

.item-info p {
  font-size: 15px;
  color: var(--whiteColor);
  margin-bottom: 10px;
}

.item-info h4 {
  font-size: 24px;
  margin-bottom: 0;
  color: var(--whiteColor);
  font-weight: 700;
}

.case-studies .owl-carousel .owl-item img {
  border-radius: 50px;
}

.case-studies .owl-nav {
  display: flex !important;
  align-items: center;
  gap: 5px;
  justify-content: center;
  max-width: 1120px;
  margin: 0 auto;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -20px;
}

.case-studies .owl-nav button {
  height: 46px;
  width: 46px;
  background: var(--whiteColor) !important;
  border-radius: 46px;
}

.case-studies .owl-nav button span {
  font-size: 30px;
  line-height: 30px;
  color: var(--primaryColor);
}

.case-studies .owl-dots {
  display: flex !important;
  align-items: center;
  justify-content: center;
  max-width: 980px;
  margin: 80px auto 0;
}

.case-studies .owl-dot {
  width: 16.666%;
  flex: 0 0 16.666%;
  height: 3px;
  background: #393c57 !important;
}

.case-studies .owl-dot.active {
  background: var(--primaryColor) !important;
}



/*=====case-studies=====*/

/*=====feachered-services=====*/
.feachered-services {
  padding-top: 50px;
  padding-bottom: 50px;
}

.feachered-services .row {
  gap: 30px 0;
}

.feachered-services .feachered-services-card {
  display: flex;
  flex-wrap: nowrap;
  padding: 40px 40px 33px;
  margin-bottom: 20px;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px,
    rgba(17, 17, 26, 0.1) 0px 0px 8px;
  border-radius: 10px;
  height: 100%;
  transition: all 0.3s ease;
}

.feachered-services .feachered-services-card:hover {
  box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
  transform: scale(1.02);
}

.page-template-servicepage .feachered-services-card:hover {
  box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
  transform: scale(1);
}

.feachered-services-card i {
  width: 50px;
  flex: 0 0 50px;
  margin-right: 20px;
}

.feachered-services-info {
  height: 100%;
  display: flex;
  flex-direction: column;
  height: auto;
}

.feachered-services-info h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: -2px;
  color: var(--primaryColor);

}

.feachered-services-info p {
  font-size: 16px;
  line-height: 22px;
  color: var(--typographyColor);
  margin-bottom: 17px;
}

.more-btn {
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  color: var(--primaryColor);
  margin-top: auto;
  position: relative;
  text-decoration: none;
}

.more-btn::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: var(--primaryColor);
  transition: width 0.4s ease;
}

.more-btn:hover::before {
  width: 100px;
}

.feachered-services-info .more-btn:hover::before {
  width: 70px;
}

.services-btn {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/*=====feachered-services=====*/

/*=====contact-us-block=====*/
.contact-us-block {
  background: url(../images/h5-bg-section6.webp) no-repeat center top;
  padding-top: 50px;
  padding-bottom: 100px;
}

.contact-us-block .heading-col {
  padding-bottom: 30px;
}

.contact-form {
  padding-right: 45px;
}

.contact-info {
  padding-top: 50px;
  padding-left: 0;
}

.card-contact {
  display: flex;
  margin-bottom: 30px;
}

.card-contact .icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  line-height: 46px;
  text-align: center;
  margin-right: 20px;
  background-color: var(--primaryColor);
  border-radius: 46px;
  font-size: 20px;
  color: var(--whiteColor);
}

.card-contact .icon.phone {
  font-size: 18px;
}

.card-contact-right span {
  display: block;
  color: var(--primaryColor);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
}

.card-contact-right h5 {
  font-size: 20px;
  line-height: 1.5;
  color: var(--typographyColor);
  margin-bottom: 0;
  word-break: break-word;
}

.contact-map {
  padding-top: 100px;
}

.contact-map iframe {
  min-height: 500px;
}

/*=====contact-us-block=====*/

/*=====testimonials=====*/
.testimonials {
  padding-top: 100px;
  padding-bottom: 100px;
  display: none;
}

.testimonials-left-img {
  margin-left: -120px;
}

.testimonials-user-img {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: block;
}

.testimonials-user-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials-slider-cardinfo {
  display: flex;
}

.item-icon {
  line-height: 1;
  font-size: 150px;
  font-weight: 700;
  color: var(--primaryColor);
}

.testimonials-slider-card p {
  font-size: 24px;
  color: var(--typographyColor);
  line-height: 1.41;
  margin-bottom: 34px;
  padding: 0 50px;
}

.testimonials-title {
  display: block;
  font-size: 24px;
  color: var(--typographyColor);
  font-weight: 700;
}

.testimonials-title small {
  display: block;
  font-size: 16px;
  color: var(--primaryColor);
  font-weight: 700;
}

.testimonials-slider .owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  height: 19px;
}

.testimonials-slider .owl-dots .owl-dot {
  height: 13px;
  width: 13px;
  background-color: rgba(113, 20, 239, .18);
  border-radius: 25px;
  margin: 0 5px;
}

.testimonials-slider .owl-dots .owl-dot.active {
  transform: scale(1.45);
  background-color: var(--primaryColor);
}

/*=====testimonials=====*/

/*=====footer-section =====*/
.footer {
  background-color: var(--backgroudColor);
  color: #9D9D9D;
  font-size: 16px;
}

.footer a {
  color: #fff;
}

/* .footer a:hover,
.footer a:focus {
  color: #089BFF;
} */

.ftr-top {
  padding: 80px 0 60px;
}

.btn-custom.about-link {
  padding: 0px 16px;
  border-radius: 36px;
  font-size: 13px;
  text-transform: uppercase;
  line-height: 35px;
  height: 36px;
  color: var(--whiteColor);
  font-family: 'Roboto', sans-serif;
}

.btn-custom.about-link:hover,
.btn-custom.about-link:focus {
  color: var(--whiteColor);
}

.ftr-logo-img {
  max-width: 100px;
}

.ftr-logo p {
  font-size: 16px;
  line-height: 27px;
  margin: 20px 0 30px;
}

.ftr-title {
  font-size: 24px;
  font-weight: 700;
  position: relative;
  color: var(--primaryColor);
  padding-bottom: 11px;
  margin-bottom: 16px;
}

/* .ftr-title::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 28px;
  background-color: var(--primaryColor);
} */


.footer .ftr-box p,
.footer .ftr-box a {
  color: #000;
}

.newsletter p {
  font-size: 15px;
  line-height: 26px;
  margin-bottom: 32px;
}

.search-dropdown,
.newsletter-form {
  display: none;

}

.newsletter-form {
  position: relative;
  margin-bottom: 15px;
}

.newsletter-form .form-control {
  color: var(--whiteColor);
  padding-left: 24px;
  border: none;
  background-color: #0f0f35;
  border-radius: 0;
  padding-right: 70px;
}

.newsletter-btn {
  position: absolute;
  width: 62px;
  height: 55px;
  font-size: 17px;
  top: 0;
  padding: 0px 5px;
  right: 0;
  border-radius: 0;
  line-height: 1;
}

.newsletter-form .form-control::-webkit-input-placeholder {
  font-size: 14px;
  opacity: 1;
  color: var(--whiteColor);
  font-family: 'Roboto', sans-serif;
}

.newsletter-form .form-control:-ms-input-placeholder {
  font-size: 14px;
  opacity: 1;
  color: var(--whiteColor);
  font-family: 'Roboto', sans-serif;
}

.newsletter-form .form-control::placeholder {
  font-size: 14px;
  opacity: 1;
  color: var(--whiteColor);
  font-family: 'Roboto', sans-serif;
}

.contact-box .icon {
  width: 25px;
}

.contact-box i {
  color: var(--blackColor);
}

.contact-box {
  margin-bottom: 10px;
}

.footer .contact-box:last-child {
  display: flex;
  gap: 20px;
}

.ftr-box .contact-box a[href^="mailto"] {
  padding-left: 1px;
  word-break: break-word;
}

.contact-box p {
  line-height: 24px;
}

.open-hrs span {
  font-family: "poppins", Sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--blackColor);
  padding-bottom: 3px;
}

.open-hrs p {
  margin-bottom: 0;
  line-height: 24px;
  font-size: 14px;
}

.ftr-gallery {
  margin-top: 21px;
}

.ftr-gallery ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}

.ftr-gallery ul li {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  padding: 0 5px;
}

.ftr-gallery-box {
  margin-bottom: 10px;
}

.ftr-gallery-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.ftr-btm {
  padding: 18px 0;
  letter-spacing: .12px;
  text-align: center;
  font-size: 15px;
  border-top: 1px solid #06064414;
}

.ftr-btm a {
  position: relative;
  display: inline-block;
  color: var(--primaryColor);
  text-decoration: none;
}

.ftr-btm a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: var(--primaryColor);
  transition: width 0.4s ease;
}

.ftr-btm a:hover::before {
  width: 100%;
}

.ftr-btm,
.ftr-btm a {
  color: var(--primaryColor);
}

.ftr-btm p {
  color: var(--blackColor);
}


.ftr-btm p {
  line-height: 24px;
}

.newsletter-ftr-box {
  max-width: 370px;
  margin-left: 19%;
}

.official-ftr-box {
  max-width: 160px;
  margin-left: auto;
}


.footer-menu-list li a {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  line-height: 30px;
}

/*=====footer-section end =====*/

/*=====quote-section =====*/
.quote-section {
  background-color: #0F0F35;
  color: var(--whiteColor)FFF;
  padding: 38px 0;
}

.quote-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.quote-disc {
  flex: 1;
  font-size: 30px;
  line-height: 1.1428;
  padding-right: 15px;
  font-family: 'poppins', sans-serif;
}

.quote-btn .btn-custom {
  padding-left: 48px;
  padding-right: 48px;
}

/*=====quote-section end =====*/

@keyframes particleToptoBottom {
  0% {
    transform: translateY(0)
  }

  25% {
    transform: translateY(40px)
  }

  50% {
    transform: translateY(0)
  }

  75% {
    transform: translateY(-40px)
  }

  100% {
    transform: translateY(0)
  }
}

@keyframes animationFramesFive {
  0% {
    transform: translateY(0)
  }

  25% {
    transform: translateY(-40px)
  }

  50% {
    transform: translateY(0)
  }

  75% {
    transform: translateY(40px)
  }

  100% {
    transform: translateY(0)
  }
}

@keyframes pulse-border2 {
  0% {
    transform: scale(1);
    opacity: .67
  }

  100% {
    transform: scale(2.2);
    opacity: 0
  }
}

/*=====chkbox css =====*/
.check-custom {
  display: inline-block;
  position: relative;
  vertical-align: top;
  font-family: 'Inter', sans-serif;
}

.check-custom input[type="checkbox"] {
  bottom: 0;
  display: block;
  left: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 5px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  z-index: 1;
}

.check-custom input[type="checkbox"]+label {
  color: var(--blackColor);
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  margin: 0;
  min-height: 25px;
  padding: 0 0 0 28px;
  position: relative;
  cursor: auto;
  z-index: -1;
}

.check-custom input[type="checkbox"]+label:before,
.check-custom input[type="checkbox"]+label:after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0;
  top: 3px;
  cursor: pointer;
}

.check-custom input[type="checkbox"]+label:before {
  background-color: #e9e9e9;
}

.check-custom input[type="checkbox"]+label:after {
  border-bottom: 1px solid var(--blackColor);
  border-left: 1px solid var(--blackColor);
  width: 10px;
  margin-top: 4px;
  height: 6px;
  opacity: 0;
  transform: rotate(-45deg);
  margin-left: 4px;
}

.check-custom input[type="checkbox"]:checked+label:after {
  opacity: 1;
}

/*=====chkbox css =====*/

/*=====middle section =====*/
.middle-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

/*=====middle section =====*/

/*=====blog page =====*/
.blog-middle-section {
  background: url("../images/bg-blog.jpg");
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  background-size: cover;
  position: relative;
}

.blog-middle-section::before {
  content: "";
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  opacity: 0.5;
}

.blog-card {
  padding: 20px 20px 25px;
  border: 1px solid #ececf0;
  background: #fff;
  border-radius: 20px;
}

.blog-image {
  margin: 0 0 20px;
  overflow: hidden;
  border-radius: 20px;
}

.blog-image img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.4s ease;
}

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


.blog-image a {
  display: block;
}

.category-content-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.blog-card-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;

  margin-bottom: 50px;
}

.blog-card-title {
  font-size: 25px;
  margin-bottom: 15px;
}

.blog-card-info p {
  margin: 0 0 26px;
  color: #000;
}

.blog-card-title a:hover,
.blog-card-title a:focus {
  color: var(--primaryColor);
}

.blog-entry-meta {
  margin-bottom: 18px;
  font-size: 14px;
  color: #707070;
  border-bottom: 1px solid #ececf0;
  position: relative;
  padding-bottom: 8px;
}

.blog-entry-meta:before {
  content: '';
  width: 40px;
  height: 3px;
  position: absolute;
  bottom: -1px;
  left: 0;
  background-image: linear-gradient(to right, var(--primaryColor), var(--backgroudColor));
  transition: width 0.5s ease-in-out;
}

.blog-card-list .blog-card:hover .blog-entry-meta:before {
  width: 100%;
}


.blog-entry-meta ul {
  display: flex;
  flex-wrap: wrap;
}

.blog-entry-meta ul li {
  padding-right: 26px;
  margin-bottom: 5px;
}

.entry-meta-icon {
  font-size: 16px;
  margin-right: 10px;
  color: var(--primaryColor);
  display: none;
}

.blog-entry-meta a,
.blog-entry-meta a:hover {
  color: var(--primaryColor);
}

.blog-entry-meta strong a,
.blog-entry-meta strong a:hover {
  color: var(--typographyColor);
}

.price-icon {
  transform: rotate(90deg);
}

.widget-content ul.cat-item {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget-search-frm {
  position: relative;
}

.widget-search-frm input {
  padding-right: 45px;
  height: 50px;
  line-height: 50px;
  border: 1px solid #ececf0;
  border-radius: 50px;
  padding: 10px 20px;
}

.widget-search-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  background: transparent;
  outline: none;
  border: 0;
  color: #222;
  font-size: 14px;
  font-weight: 400;
  padding: 0;
  margin: 0;
}

.widget-search-btn:hover,
.widget-search-btn:focus {
  color: var(--primaryColor);
}

.widget {
  margin-bottom: 45px;
}

.widget-title {
  position: relative;
  font-size: 22px;
  font-weight: 600;
  padding-bottom: 30px;
  margin: 0;
}

/* .widget-title:before {
  content: '';
  width: 40px;
  height: 3px;
  position: absolute;
  bottom: -1px;
  left: 0;  
  background-image: linear-gradient(to right, var(--primaryColor), var(--backgroudColor));
} */

.count {
  width: 27px;
  height: 27px;
  display: inline-block;
  background-color: #eee;
  text-align: center;
  line-height: 27px;
  font-size: 12px;
  font-weight: 500;
  color: #222;
  transition: 0.5s ease;
  display: none;
}

.cat-item li {
  border: 1px solid #ececf0;
  border-radius: 50px;
  background: #fff;
}

.cat-item li:hover {
  background-color: var(--backgroudColor);
  color: var(--whiteColor);
}

.cat-item li:hover a {
  color: var(--whiteColor);
}

.cat-item li:last-child {
  border-bottom: 0;
}

.cat-item li a {
  color: #222;
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  padding: 12px 25px;
  position: relative;
}


.cat-item li a:hover .count {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}

.recent-posts-img a {
  position: relative;
  overflow: hidden;
  display: block;
}

.recent-posts-img a:before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, .3) 100%);
  transform: skewX(-25deg);
  transition: 0.5s ease;
}

.recent-posts-img a:hover:before {
  left: 130%;
}

.recent-posts-img {
  margin-top: 2px;
  height: 100%;
  width: 100%;
}

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

.recent-posts-info {
  padding-left: 10px;
}

.recent-posts-title {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 10px;
}

.recent-posts-title a:hover {
  color: var(--primaryColor);
}

.recent-date {
  font-size: 14px;
  line-height: 1;
  color: #8a8989;
  display: flex;
  align-items: center;
}

.recent-date i {
  color: var(--primaryColor);
  margin-right: 5px;
  margin-top: -1px;
}

.recent-posts-list li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.recent-posts-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.recent-posts-list .media {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.recent-posts-list li {
  padding: 20px;
  border: 1px solid #ececf0;
  padding-bottom: 25px;
  border-radius: 20px;
  background-color: #fff;
}

.widget-gallery-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}

.widget-gallery-list li {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  padding: 0 5px;
}

.widget-gallery-box {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
}

.widget-gallery-box img {
  width: 100%;
  min-height: 75px;
  object-fit: cover;
}

.widget-gallery-box a {
  display: block;
  position: relative;
}

.widget-gallery-box a::before {
  top: 0px;
  content: '';
  left: 0px;
  width: 100%;
  height: 100%;
  position: absolute;
  transform: scale(0);
  transition: 0.5s ease;
  background: rgba(0, 0, 0, 0.5);
}

.gallery-search {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--whiteColor);
  opacity: 0;
  transition: 0.5s ease;
}

.widget-gallery-box a:hover .gallery-search {
  opacity: 1;
}

.widget-gallery-box a:hover:before {
  transform: scale(1);
}

.tagcloud-list {
  display: flex;
  flex-wrap: wrap;
}

.tagcloud-list li {
  padding: 0 10px 10px 0;
}

.tagcloud-list li a {
  border: 1px solid #eeecec;
  padding: 0 16px;
  display: inline-block;
  font-size: 14px;
  line-height: 27px;
  font-weight: 700;
  text-transform: capitalize;
}

.tagcloud-list li a:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  border-color: var(--primaryColor);
}

.widget.widget_categories {
  margin-bottom: 35px;
}

.widget.widget_categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 100%;
  align-items: center;
  padding: 0;
}

.widget-title.tagcloud-title {
  margin-bottom: 35px;
}

.comment-form .form-group {
  margin-bottom: 25px;
}

.contact-form.comment-form {
  padding: 20px 30px 35px;
  box-shadow: 0 0 35px rgba(12, 12, 12, 0.05);
}

.comment-title {
  margin-bottom: 30px;
}

.comment-form .btn-custom {
  margin-top: 10px;
}

.blog-dtl-image img {
  max-height: 600px;
  object-fit: cover;
}

.single-post .comment-form h2.comments-title {
  font-size: 30px;
}

.single-post .comment-author.vcard img {
  margin-right: 10px;
}

.single-post .comment-form .btn-custom {
  margin-bottom: 20px;
}

.single-post .comment-respond .comment-reply-title {
  font-size: 25px;
  width: 100%;
  display: inline-block;
}

.single-post .comment-metadata {
  font-weight: 500;
}

.single-post .comment-form ol.comment-list {
  list-style: none;
}

.single-post .comment-form-cookies-consent label {
  flex: 1;
  padding-left: 10px;
}

.single-post .comment-form-cookies-consent input {
  margin-top: 5px;
}

.single-post .comment-form-cookies-consent {
  display: flex;
  align-items: flex-start;
  padding-left: 15px;
}

/*=====blog page end=====*/

/*=====pagination =====*/
.custom-pagination {
  justify-content: center;
  margin: auto;
}

.custom-pagination .page-item {
  padding: 7.5px;
}

.custom-pagination .page-link {
  width: 40px;
  height: 40px;
  background-color: #eaeaea;
  line-height: 42px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  color: #191919;
  position: relative;
  z-index: 1;
  padding: 0;
  border-radius: 0 !important;
  border: none;
  box-shadow: none;
  outline: none;
}

.custom-pagination .page-link:hover {
  color: var(--whiteColor);
}

.custom-pagination .page-link::before {
  content: '';
  height: 0;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--primaryColor);
  background-image: linear-gradient(to right, var(--primaryColor), var(--backgroudColor));
  z-index: -1;
  transition: 0.5s ease;
}

.custom-pagination .page-item.active .page-link:before,
.custom-pagination .page-link:hover:before {
  height: 100%;
}

/*=====pagination end=====*/

/*=====about page=====*/

.founder-section {
  padding-top: 100px !important;
  padding-bottom: 0 !important;
}

/* .founder-section .designation {
  text-transform: capitalize;
} */

.founder-section p {
  color: #000;
}

.section-about-us-btn {
  margin-top: 30px;
}

.about-contain-box {
  padding-right: 50px;
}

.about-heading {
  font-weight: 700;
  font-size: 42px;
}

.about-heading span {
  color: var(--primaryColor);
}

.about-small-heading {
  font-size: 18px;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
  color: var(--primaryColor);
  text-transform: uppercase;
}

.about-heading-text {
  font-size: 18px;
  line-height: 29px;
  color: #1B1B1B;
  margin: 30px 0;
}

.about-tab {
  border-bottom: 3px solid #ebebeb;
  margin-bottom: 20px;
}

.about-tab {
  font-size: 17px;
  line-height: 1.55;
}

.about-tab .nav-link.active,
.about-tab .nav-link {
  border: 0;
  font-size: 17px;
  font-weight: 700;
  padding: 9px 15px;
  color: #1a1a1a;
  text-transform: capitalize;
  margin: 0 15px -3px 0;
  border-bottom: 3px solid #ebebeb;
  position: relative;
}

.about-tab .nav-link::before {
  content: '';
  transform: scale(0);
  width: 0;
  height: 3px;
  position: absolute;
  bottom: -3px;
  left: 0;
  background-color: var(--primaryColor);
  transition: 0.5s ease;
}

.about-tab .nav-link.active,
.about-tab .nav-link:hover {
  color: var(--primaryColor);
}

.about-tab .nav-link.active:before,
.about-tab .nav-link:hover:before {
  transform: scale(1);
  width: 100%;
}

.about-tab-contain {
  color: #888888;
}

.about-image img {
  height: 550px;
  object-fit: cover;
  border-radius: 20px;
}

.about-card-info {
  display: none;
  background: #fff;
  margin: -83px 25px 0;
  position: relative;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
}

.about-card-desc h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.about-card-desc {
  flex: 1;
  font-size: 15px;
  color: #888;
  line-height: 22px;
}

.about-card-desc p {
  line-height: inherit;
}

.about-card-info .icon {
  margin-right: 15px;
}

.our-history-box {
  max-width: 180px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.our-history-section {
  color: var(--whiteColor);
  padding: 100px 0 0;
}

.our-history-inner {
  padding: 70px 15px;
  overflow: hidden;
  position: relative;
  border-radius: 15px;
  background-color: var(--primaryColor);
}

.our-history-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .1;
  position: absolute;
  object-fit: cover;
  object-position: top;
}

.history-count-box {
  align-items: center;
  margin-bottom: 5px;
}

.history-count-number {
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
}

.history-count-icon {
  margin-right: 10px;
}

.history-count-text {
  color: #E7E7E7;
  font-size: 18px;
}

/* .our-history-inner::before {
  content: '';
  height: 226px;
  width: 161px;
  position: absolute;
  top: -122px;
  transform: rotate(54deg);
  left: -61px;
  background-color: var(--primaryColor);
  background-image: linear-gradient(to left, var(--primaryColor), var(--backgroudColor));
}

.our-history-inner::after {
  content: '';
  height: 185px;
  width: 131px;
  position: absolute;
  bottom: -88px;
  right: -46px;
  transform: rotate(49deg);
  background-color: var(--primaryColor);
  background-image: linear-gradient(to right, var(--primaryColor), var(--backgroudColor));
} */

.history-count-icon {
  font-size: 25px;
}

.project-icon {
  font-size: 22px;
}

.team-icon {
  font-size: 29px;
}

.testimonials.about-testimonials {
  padding-bottom: 0;
}

/*=====about page end=====*/

/*=====service page =====*/
.service-middle-section {
  padding-bottom: 70px;
  /* background: url(../images/bg-blog.jpg); */
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  background-size: cover;
  position: relative;
}

.feachered-services-card.services-list-card {
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 20px;
  background-color: var(--whiteColor);
  height: 100%;
  margin: 0
}

.service-middle-section .services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feachered-services-card.services-list-card figure {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  max-height: 220px;
  width: 100%;
}

.feachered-services-card.services-list-card figure img {
  overflow: hidden;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.feachered-services-card.services-list-card:hover figure img {
  transition: all 0.3s ease;
  transform: scale(1.1);
  overflow: hidden;
}

.feachered-services-card.services-list-card .feachered-services-info {
  padding: 20px 0px 0;
}

.feachered-services-info h4 a {
  color: inherit;
}

.feachered-services-card.services-dtl-card {
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
  box-shadow: none;
}

.feachered-services-card.services-dtl-card figure {
  width: 100%;
  margin-bottom: 20px;
}

.feachered-services-card.services-dtl-card figure img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.9s ease-in-out;
  transform: scale(1);
}

.feachered-services-card.services-dtl-card .feachered-services-info {
  padding: 0;
}


.feachered-services-card.services-dtl-card p:last-child {
  margin-bottom: 0;
}

.services-link ul li {
  margin-bottom: 15px;
}

.services-link ul li a {
  background: var(--backgroudColor);
  color: var(--blackColor);
  padding: 15px 20px;
  display: block;
  font-weight: 600;
  font-size: 18px;
  border-radius: 5px;
  transition: 0.5s ease;
  position: relative;
  text-transform: capitalize;
}

.services-link ul li a:hover {
  padding-left: 35px;
  background: var(--primaryColor);
  color: var(--whiteColor);
}

.services-link ul li a::before {
  content: '';
  position: absolute;
  height: 0;
  transform: scale(0);
  width: 5px;
  left: 0px;
  background: #d89cfd;
  top: 0;
  z-index: 1;
  border-radius: 0;
  transition: 0.5s ease;
}

.services-link ul li a:hover:before {
  height: 100%;
  transform: scale(1);
}

h4.services-dtl-title {
  font-size: 30px;
}

.single-service .middle-section {
  background: #ffffff13;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  background-size: cover;
  position: relative;
}

.help-box-caption {
  display: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  padding: 15px;
  transform: translateY(-50%);
  text-align: center;
  color: var(--whiteColor);
}

.help-box-caption span {
  font-size: 30px;
  font-family: 'poppins', sans-serif;
  font-weight: 600;
}

.contact-text {
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  font-size: 40px;
  display: block;
  line-height: 1.2;
  padding: 20px 0 25px;
  font-weight: 700;
  font-family: 'poppins', sans-serif;
  letter-spacing: 1.5px;
}

.help-box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  display: none;
}

.help-box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.help-box img {
  max-height: 500px;
  object-fit: cover;
}

.help-box .btn-custom {
  font-size: 20px;
  width: 250px;
  line-height: 50px;
  height: 52px;
}

/*=====service page end=====*/
.custom-contact-form {
  padding-right: 50px;
  padding-left: 10px;
}

.custom-contact-form input:focus,
.custom-contact-form textarea:focus {
  outline: none;
  box-shadow: none;
  border: none;
  border-bottom: 1px solid #060644;
  /* clean underline focus */
}

.custom-contact-form .form-row {
  display: flex;
  gap: 30px;
  flex-wrap: unset;
}

.custom-contact-form .wpcf7-form-control-wrap {
  width: 100%;
}

.custom-contact-form,
.custom-contact-form label,
.custom-contact-form input,
.custom-contact-form textarea {
  color: #000;
  margin: 0;
  fant-family: 'Manrope', sans-serif;
}

.custom-contact-form textarea {
  height: 100px;
}

/* Placeholder color */
.custom-contact-form input::placeholder,
.custom-contact-form textarea::placeholder {
  color: #060644;
  opacity: 0.6;
}

.custom-contact-form .form-group.half {
  width: 50%;
}

.custom-contact-form .form-group {
  margin-bottom: 25px;
}

/* Input style */
.custom-contact-form input,
.custom-contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 8px 0;
  background: transparent;
}

/* Button */
.custom-contact-form input[type="submit"] {
  background: #0b0b5c;
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  width: 250px;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  transition: all 0.3s ease;
}

.custom-contact-form input[type="submit"]:hover {
  background: var(--backgroudColor);
  color: var(--primaryColor);
}

/* Responsive */
@media (max-width: 767px) {
  .custom-contact-form .form-row {
    flex-direction: column;
  }

  .custom-contact-form .form-group.half {
    width: 100%;
  }
}

form .error {
  color: #ff0000;
}

.mc4wp-error {
  color: #ff0000;
}

div#form-message-success {
  color: green;
  font-weight: 500;
}

.loader {
  height: auto;
  width: 45px;
  float: left;
}

.navbar .search-dropdown .dropdown-toggle::after {
  display: none;
}

.search-dropdown .dropdown-menu {
  border-radius: 1px;
  border-color: #e5e5e5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}

.search-dropdown .dropdown-menu a {
  padding: 6px 20px;
}

.search-dropdown .dropdown-menu {
  width: 500px;
  padding: 10px 10px;
  left: auto;
  right: 0;
  font-size: 14px;
  position: absolute;
  top: 100%;
  margin-top: 39px;
  border-radius: 30px;
  box-shadow: 1px 1px 20px rgb(0, 0, 0, 0.2);
}

.search-dropdown .dropdown-menu .input-group.search-box {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid #ddd;
}

.search-box .form-control {
  border-radius: 20px;
  height: 40px;
  padding: 0 15px;
  line-height: 38px;
  font-size: 14px;
  border: 0 !important;
}

.header-search-btn {
  display: inline-block !important;
  padding: 0;
}

.search-box .btn {
  background: var(--primaryColor);
  border-color: var(--primaryColor);
}

.mc4wp-alert.mc4wp-success {
  color: #00a600;
  font-weight: bold;
}

/*video-modal-dialog css*/
.video-modal-dialog {
  max-width: 1000px;
}

.video-modal-dialog iframe.youtube-video {
  width: 100%;
  height: auto;
  min-height: 400px;
  border-radius: 4px;
}

/*video-modal-dialog css end*/

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: var(--whiteColor);
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

.mfp-gallery button.mfp-close,
.mfp-gallery button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

.mfp-gallery button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: var(--whiteColor);
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid var(--whiteColor);
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 0;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid var(--whiteColor);
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 0;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
.mfp-gallery img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

.mfp-figure figcaption {
  display: none;
}

/*Magnific Popup CSS end*/

.services-link ul li.active a {
  padding-left: 35px;
  background: var(--primaryColor);
  color: var(--whiteColor);
}

/* testimonial page css */
.middle-testimonial {
  padding-bottom: 70px;
  background: url(../images/bg-blog.jpg);
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  background-size: cover;
  position: relative;
}

.testimonail-box {
  color: #837f7f;
  padding: 30px;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.08);
  border-radius: 30px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.testimonail-media {
  margin-bottom: 30px;
}

.testimonail-img {
  width: 75px;
  height: 75px;
  border-radius: 100%;
  border: 3px solid var(--primaryColor);
  margin-right: 20px;
}

.testimonail-media h3 {
  margin-bottom: 6px;
  font-size: 20px;
  line-height: 1.2;
}

.testimonail-media span {
  font-size: 16px;
  color: #514f4f;
  margin-bottom: 5px;
}

.testimonail-box p {
  color: #000;
}

.rating {
  color: #ffd40b;
  font-size: 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.rating i {
  margin-right: 3px;
}

.comment-icon {
  font-size: 50px;
  color: var(--primaryColor);
}

.testimonail-media .media-body {
  padding-right: 10px;
}

/*testimonial page css end*/

/*protfolio page css*/
.protfolio-image {
  margin: 0 0 30px;
}

.protfolio-image img {
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.protfolio-heading {
  font-weight: 600;
  font-size: 30px;
}

.protfolio-dtl-card {
  border-radius: 10px;
  background: #fff;
  padding: 25px;
  box-shadow: 1px 2px 30px rgb(132, 0, 215, 0.11);
}

.protfolio-dtl-box {
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
  font-size: 16px;
}

.protfolio-dtl-box:last-child {
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 0;
}

.protfolio-dtl-box span {
  display: block;
  margin-bottom: 5px;
}

.protfolio-dtl-box p {
  display: block;
  font-weight: 600;
}

/*protfolio page css end*/

.comment-reply-link {
  font-family: poppins, sans-serif;
  position: relative;
  background-image: linear-gradient(90deg, #9700f2 0%, #ca72ff 50%, #30004e);
  padding: 0px 25px;
  border-radius: 30px;
  overflow: hidden;
  border: 0;
  box-shadow: 0px 6px 27px 0px rgba(0, 64.00000000000003, 190, 0.34);
  display: inline-block;
  font-size: 14px;
  color: var(--whiteColor);
  font-weight: 700;
  outline: none !important;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background-size: 200%, 1px;
  background-position: 0;
  justify-content: center;
  transition: all 0.3s ease;
}

.comment-reply-link:hover,
.comment-reply-link:focus {
  text-decoration: none;
  color: var(--whiteColor);
  background-position: 100%;
  background-image: linear-gradient(90deg, #004ABD 0%, #00A3F7 50%, #004ABD) !important;
}

.cancel_reply {
  text-align: center;
  font-size: 16px;
  padding: 14px 25px;
  line-height: 1;
  background-color: #dc3545;
  border: 0;
  color: #fff;
  border-radius: 30px;
  font-family: poppins, sans-serif;
  font-weight: 600;
  text-transform: capitalize;
}

.cancel_reply:hover,
.cancel_reply:focus {
  background: #bf2e3c;
  color: #fff;
}

#cancel-comment-reply-link {
  float: right;
}

.comment-reply-link {
  margin-top: 10px;
}

.comment-author.vcard {
  margin-bottom: 15px;
}

.reply {
  margin-bottom: 20px;
}

.search-no-results .no-results.not-found {
  margin: 0 auto;
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
}

.search-no-results .search-box .form-control {
  border: 1px solid #ddd !important;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  height: 40px;
  line-height: 38px;
}

span.loder-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: relative;
  animation: rotate 1s linear infinite;
  margin-top: 20px;
  margin-right: 15px;
}

.loader::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 5px solid #8400d7;
  animation: prixClipFix 2s linear infinite;
}

.about-btn-wrapper .btn-custom {
  margin: 0 !important;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg)
  }
}

@keyframes prixClipFix {
  0% {
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0)
  }

  25% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0)
  }

  50% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%)
  }

  75% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%)
  }

  100% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0)
  }
}

.input-field-group textarea.form-control:focus~.form-label {
  top: -20px;
}

.input-field-group textarea.form-control.has-value~.form-label {
  top: -20px;
}


/* media query */

@media (max-width: 1024px) {
  .banner-inner img {
    height: 300px;
  }

  .service-middle-section .services-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-card-list {
    grid-template-columns: repeat(2, 1fr);
  }


  .service-section .row {
    grid-template-columns: repeat(2, 1fr);
  }

  .recent-posts-list {
    grid-template-columns: repeat(2, 1fr);
  }


  .about-image img {
    height: 350px;
  }

  .service-company .service-company-left img {
    height: 350px;
    display: flex;
  }

  .feachered-services .feachered-services-card {
    padding: 20px 20px 20px;
  }

  .service-middle-section {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  .why-choose-us {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .founder-section {
    padding-top: 50px !important;
  }

  .banner-inner .banner-caption h1 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .service-middle-section .services-list {
    grid-template-columns: repeat(1, 1fr);
  }

  .blog-card-list {
    grid-template-columns: 1fr;
  }

  .service-section .row {
    grid-template-columns: repeat(1, 1fr);
  }

  .recent-posts-list {
    grid-template-columns: repeat(1, 1fr);
  }

  .banner-inner img {
    height: 220px;
  }

  .custom-contact-form {
    padding-right: 0;
  }

  .banner-inner .banner-caption h1 {
    font-size: 30px;
    line-height: 40px;
  }
}

@media (max-width: 767px) {
  .hdr-right ul li {
    padding-left: 0;
    border-radius: 50px;
    /* background: #fff; */
    height: 40px;
    width: 40px;
    align-items: center;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hdr-right ul li:first-child {
    padding-left: 0;
  }

  .hdr-right ul li i {
    color: var(--backgroudColor);
  }

  .contact-btn {
    border: 0;
  }

  .hdr-right {
    margin-right: 5px;
  }

  .navbar-toggler {
    padding: 9px;
    height: 40px;
    width: 40px;
    background: #fff;
    border-radius: 50px;
    right: 0 !important;
  }

  .navbar-collapse {
    background-color: #fff;
    height: 100vh;
  }

  .navbar .navbar-nav li .nav-link {
    color: var(--primaryColor);
  }

  .services-btn {
    margin-top: 40px !important;
  }

  .footer {
    font-size: 14px;
  }

  .footer-menu-list li a {
    font-size: 14px;
  }
}





















/* RESPONSIVE CSS */
@media screen and (max-width:1800px) {

  /*=====banner-section =====*/
  .banner-section::before {
    background-size: contain;
  }

  /*=====banner-section end =====*/

  /*=====service-section =====*/
  .box-shape2 {
    top: -42px;
    width: 87px;
    height: 101px;
    margin-right: 90px;
  }

  .box-shape1 {
    width: 246px;
    height: 323px;
    margin-left: 0;
  }

  /*=====service-section end=====*/
}

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

  /*=====service-section =====*/
  .box-shape2 {
    top: -54px;
    margin-right: 50px;
  }

  .box-shape1 {
    width: 186px;
    height: 244px;
    top: -96px;
  }

  /*=====service-section end =====*/

  /*=====case-studies  =====*/
  .case-studies-graphic {
    top: -140px;
    left: -9px;
  }

  .case-studies-graphic img {
    max-width: 300px;
  }

  /*=====case-studies end =====*/
}

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

  .heading-col h3 {
    font-size: 55px;
  }

  /*===== banner-section  =====*/
  .banner-caption h1 {
    line-height: 75px;
    font-size: 65px;
  }

  .banner-section::before {
    bottom: -42px;
  }

  /*===== banner-section  end=====*/

  /*=====service-section =====*/
  .box-shape2 {
    margin-right: 0;
  }

  .box-shape1 {
    width: 162px;
    top: -100px;
    margin-left: -64px;
  }

  /*=====service-section end=====*/
}

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

  /*===== banner-section  =====*/
  .banner-img {
    height: 615px;
  }

  .slider-video {
    width: 75px;
    height: 75px;
    line-height: 75px;
  }

  .banner-section::before {
    bottom: -69px;
  }

  .banner-carousal .owl-nav button {
    width: 70px;
    height: 70px;
  }

  /*===== banner-section  end=====*/

  .middle-section {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  /*=====service-section =====*/
  .box-shape2 {
    margin-right: -94px;
    z-index: 1;
  }

  .box-shape1 {
    margin-left: -164px;
    z-index: 1;
  }

  /*=====service-section end=====*/

  /*=====case-studies-section =====*/
  .case-studies {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  /*=====case-studies-section end =====*/

  /*=====feachered-services =====*/
  .feachered-services {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  /*=====feachered-services  end=====*/

  /*=====contact-us =====*/
  .contact-us-block {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .contact-map {
    padding-top: 60px;
  }

  .contact-map iframe {
    min-height: 400px;
  }

  /*=====contact-us end=====*/

  /*=====testimonials =====*/
  .testimonials {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  /*=====testimonials end=====*/

  /*=====quote-section=====*/
  .quote-section {
    padding: 30px 0;
  }

  /*=====quote-section end=====*/

  /*=====footer=====*/
  .ftr-top {
    padding: 70px 0 60px;
  }

  /*=====footer end=====*/

  /*=====aboutus page =====*/
  .our-history-section {
    color: var(--whiteColor);
    padding: 75px 0 0;
  }

  /*=====aboutus page end=====*/

  /*=====service page =====*/
  .service-middle-section {
    padding-bottom: 50px;
  }

  /*=====service page =====*/

  /*=====testimonial page =====*/
  .middle-testimonial {
    padding-bottom: 45px;
  }

  /*=====testimonial page =====*/
}

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

  .heading-col h3 {
    font-size: 40px;
  }

  .heading-col h6 {
    margin-bottom: 10px;
  }

  /*===== header css =====*/
  .navbar-brand img {
    max-width: 80px;
  }

  /*===== header css end=====*/

  /*===== banner-section  =====*/
  .banner-caption {
    max-width: 700px;
  }

  .banner-caption h1 {
    line-height: 60px;
    font-size: 50px;
  }

  .banner-section::before {
    bottom: -67px;
  }

  .banner-caption p {
    margin-bottom: 20px;
  }

  .banner-section::before {
    bottom: -88px;
  }

  .banner-img {
    height: 550px;
  }

  .banner-inner .banner-caption h1 {
    font-size: 40px;
    margin-bottom: 5px;
  }

  /*===== banner-section  end=====*/

  /*=====service-section =====*/
  .service-card {
    padding: 37px 20px 25px;
  }

  /*=====service-section end=====*/

  /*=====service-company=====*/
  .service-company {
    padding-top: 0;
  }

  .contact-withUs {
    margin-top: 56px;
  }

  /*=====service-company end  =====*/

  /*=====case-studies=====*/
  .case-studies {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .case-studies-graphic img {
    max-width: 235px;
  }

  /*=====case-studies end=====*/

  /*=====feachered-services =====*/
  .feachered-services {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .feachered-services-card {
    padding: 30px 30px 30px;
    margin-bottom: 15px;
  }

  .single-service .feachered-services-card:hover {
    transform: scale(0) !important;
  }

  /*=====feachered-services  end=====*/

  /*=====contact us =====*/
  .contact-us-block {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  /*=====contact us end=====*/


  /*=====testimonials =====*/
  .testimonials {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  /*=====testimonials end=====*/

  /*=====quote-section=====*/
  .quote-section {
    padding: 25px 0;
  }

  .quote-disc {
    font-size: 25px;
  }

  /*=====quote-section end=====*/

  /*=====footer-section=====*/
  .ftr-top {
    padding: 55px 0;
  }

  .newsletter-ftr-box {
    margin-left: 15%;
    margin-right: 5%;
  }

  /*=====footer-section end=====*/

  /*=====middle-section=====*/
  .middle-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  /*=====middle-section=====*/

  /*=====blog page=====*/
  .blog-card-title {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .blog-card {
    margin-bottom: 30px;
  }

  .widget {
    margin-bottom: 35px;
  }

  .widget.widget_categories {
    margin-bottom: 24px;
  }

  .widget.widget-archice {
    margin-bottom: 24px;
  }

  .widget.widget-gallery {
    margin-bottom: 25px;
  }

  .widget-title.tagcloud-title {
    margin-bottom: 25px;
  }

  .widget.widget_categories .widget-title {
    margin-bottom: 10px;
  }

  .widget.widget-archice .widget-title {
    margin-bottom: 10px;
  }

  /*=====blog page end=====*/

  /*=====aboutus page=====*/
  .about-heading {
    font-size: 35px;
  }

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

  .our-history-section {
    padding: 60px 0 0;
  }

  /*=====aboutus page end=====*/

  /*=====service page =====*/
  .service-middle-section {
    padding-bottom: 50px;
  }

  /*=====service page =====*/

  /*=====testimonial page =====*/
  .middle-testimonial {
    padding-bottom: 30px;
  }

  .comment-icon {
    font-size: 40px;
  }

  .protfolio-dtl-box {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  /*=====testimonial page =====*/
}

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

  /*=====header-section=====*/
  .heading-col h3 {
    font-size: 30px;
  }

  header.header {
    font-size: 15px;
  }

  .header-main {
    padding: 15px 0;
  }

  .navbar-brand img {
    max-width: 70px;
  }

  .navbar .navbar-nav li {
    padding: 0 11px;
  }

  .cart .counter {
    right: -12px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    font-size: 11px;
  }

  .contact-btn {
    padding: 0px 15px;
    border-radius: 40px;
    line-height: 33px;
  }

  .hdr-right ul li {
    padding-left: 0;
  }

  .search-dropdown .dropdown-menu {
    margin-top: 25px;
  }

  /*=====header-section end=====*/


  /*===== banner-section  =====*/
  .banner-caption {
    max-width: 600px;
  }

  .banner-caption h1 {
    line-height: 45px;
    font-size: 40px;
    margin-bottom: 10px;
  }

  .banner-carousal .owl-nav button {
    width: 55px;
    height: 55px;
    font-size: 30px !important;
  }

  .slider-video {
    width: 55px;
    height: 55px;
    line-height: 57px;
    font-size: 16px;
  }

  .banner-section::before {
    bottom: -115px;
  }

  .banner-inner .banner-caption h1 {
    font-size: 35px;
  }

  /*===== banner-section end =====*/

  /*=====service-section =====*/
  .service-section {
    padding-bottom: 30px;
  }

  .box-shape1 {
    top: -125px;
  }

  .box-shape2 {
    top: -88px;
  }

  .service-card {
    margin-bottom: 25px;
    padding: 28px 20px 25px;
  }

  .video-play {
    margin-top: 20px;
  }

  /*=====service-section end =====*/

  /* service-company */
  .service-company {
    padding-bottom: 80px;
    padding-top: 80px;
  }

  .service-company-left {
    text-align: center;
    margin-bottom: 30px;
  }

  .contact-withUs {
    padding: 13px 15px;
    margin-top: 40px;
  }

  .contact-withUs-title {
    font-size: 26px;
  }

  /* service-company */

  /*=====case-studies=====*/
  .case-studies .heading-col {
    padding-bottom: 5px;
  }

  .case-studies {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .case-studies-card-info {
    padding: 25px 30px;
  }

  /*=====case-studies end=====*/

  /*===== feachered =====*/
  .feachered-services {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .feachered-services-card {
    padding: 25px 16px;
  }

  /*===== feachered =====*/

  /*=====contact us =====*/
  .contact-us-block {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .contact-us-block .heading-col {
    padding-bottom: 20px;
  }

  .contact-info {
    padding-top: 30px;
  }

  .contact-form {
    padding-right: 0;
  }

  .contact-form .btn-custom {
    margin-top: 15px;
  }

  .card-contact-right h5 {
    font-size: 18px;
  }

  .contact-map {
    padding-top: 40px;
  }

  /*=====contact us end=====*/

  /*=====testimonials =====*/
  .testimonials {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .testimonials-left-img {
    margin-left: 0;
  }

  .testimonials-left-img img {
    max-width: 500px;
    display: block;
    width: 100%;
    margin: 0 auto;
  }

  .item-icon {
    font-size: 90px;
  }

  .testimonials-slider-card p {
    font-size: 20px;
  }

  .testimonials-slider .owl-dots {
    margin-top: 20px;
  }

  /*=====testimonials end=====*/

  /*===== footer *=====*/
  .ftr-top {
    padding: 50px 0 15px;
  }

  .newsletter-ftr-box {
    margin-left: 5%;
    margin-right: 5%;
  }

  /**===== footer *=====*/

  /*=====middle-section=====*/
  .middle-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  /*=====middle-section=====*/

  /*=====service page =====*/


  /*=====service page =====*/

  /*=====blog page=====*/
  .blog-card-title {
    font-size: 25px;
  }

  .blog-card-info p {
    margin: 0 0 15px;
  }

  .widget {
    margin-bottom: 30px;
  }

  .recent-posts-list li {
    padding-bottom: 18px;
    margin-bottom: 18px;
  }

  .contact-form.comment-form .btn-custom {
    margin-top: 0;
  }

  .contact-form.comment-form {
    padding: 10px 25px 25px;
  }

  .single-post .comment-form h2.comments-title {
    margin-top: 10px;
  }

  /*=====blog page end=====*/

  /*=====aboutus page=====*/
  .our-history-section {
    padding: 50px 0 0;
  }

  .about-heading {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .about-small-heading {
    margin-bottom: 5px;
  }

  .about-heading-text {
    margin: 10px 0;
    line-height: 24px;
  }

  .about-tab .nav-link.active,
  .about-tab .nav-link {
    font-size: 16px;
    padding: 7px 5px;
    margin: 0px 10px -3px 0;
  }

  .about-btn-wrapper .btn-custom {
    padding: 0px 30px;
  }

  .about-card-info .icon {
    margin-right: 10px;
  }

  .about-card-info .icon img {
    max-width: 40px;
  }

  .about-card-info {
    margin: -70px 25px 0;
    padding: 20px 15px;
  }

  .about-card-desc h3 {
    font-size: 22px;
  }

  .about-contain-box {
    padding-right: 0;
  }

  .history-count-number {
    font-size: 28px;
  }

  .our-history-box {
    max-width: 132px;
  }

  .history-count-text {
    font-size: 16px;
  }

  .our-history-inner::after {
    bottom: -111px;
  }

  .our-history-inner::before {
    top: -148px;
  }

  .our-history-inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .our-history-box {
    margin: 20px auto;
  }

  /*=====aboutus page end=====*/

  /*=====testimonial page =====*/
  .middle-testimonial {
    padding-bottom: 20px;
  }

  .testimonail-media {
    margin-bottom: 20px;
  }

  .comment-icon {
    font-size: 35px;
  }

  /* testimonial page css end*/

  /* protfolio page css*/
  .protfolio-image {
    margin: 0 0 20px;
  }

  .protfolio-heading {
    font-size: 28px;
    margin-bottom: 10px;
  }

  /* protfolio page css end*/
}

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

  body {
    font-size: 14px;
    line-height: 24px;
  }

  p {
    line-height: 24px;
    margin: 0 0 15px;
  }

  .heading-col h3 {
    font-size: 26px;
  }

  .heading-col h6 {
    font-size: 17px;
    flex-wrap: wrap;
  }

  .btn-custom,
  .custom-contact-form input[type="submit"] {
    padding: 10px 25px;
    font-size: 14px;
    width: auto;
  }

  /*===== header =====*/
  .navbar-toggler {
    margin: 0;
    position: absolute;
    right: -12px;
    margin-top: -5px;
  }

  .navbar-toggler span {
    width: 20px;
    height: 2px;
    background-color: var(--primaryColor);
    display: block;
  }

  .navbar-toggler span:nth-child(2) {
    margin: 5px 0;
  }

  .navbar-collapse {
    position: absolute;
    top: 100%;
    background: #f7f7f7;
    left: -15px;
    right: -15px;
    z-index: 9;
    margin-top: 15px;
    padding-bottom: 10px;
    padding-top: 5px;
  }

  .navbar .navbar-nav li {
    padding: 5px 11px;
  }

  .contact-btn {
    padding: 3px 12px;
  }

  .header {
    position: inherit;
  }

  .header .navbar {
    padding-right: 40px !important;
  }

  .header-search {
    position: static;
  }

  .search-dropdown .dropdown-menu {
    margin-top: 15px;
    width: 100%;
    left: 0;
    right: 0;
  }

  .search-box .form-control {
    height: 35px;
    padding: 0 15px;
    line-height: 33px;
  }

  .navbar-brand img {
    max-width: 65px;
  }

  /*===== header =====*/

  /*===== banner-section  =====*/
  .banner-section::before {
    bottom: -150px;
  }

  .banner-img {
    height: 450px;
  }

  .banner-caption {
    margin-top: -15px;
    padding-left: 50px;
    padding-right: 50px;
  }

  .banner-caption p {
    line-height: 22px;
    font-size: 17px;
  }

  .banner-caption h1 {
    line-height: 40px;
    font-size: 35px;
  }

  .banner-carousal .owl-nav button {
    width: 40px;
    height: 40px;
    font-size: 24px !important;
  }

  .slider-video {
    height: 45px;
    width: 45px;
    line-height: 48px;
    font-size: 14px;
    margin-bottom: 15px;
  }

  .banner-carousal .owl-nav .owl-prev {
    left: 10px;
  }

  .banner-carousal .owl-nav .owl-next {
    right: 10px;
  }

  .banner-carousal .owl-nav {
    margin-top: -48px;
  }

  .banner-breadcrumb .breadcrumb {
    font-size: 15px;
  }

  .banner-breadcrumb .breadcrumb-item+.breadcrumb-item {
    padding-left: 10px;
  }

  .banner-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    padding-right: 10px;
  }

  .banner-inner .banner-caption h1 {
    font-size: 28px;
  }

  /*===== banner-section  =====*/

  /*=====service-section =====*/
  .box-shape2 {
    top: -51px;
    width: 57px;
    height: 67px;
    margin-right: -66px;
  }

  .box-shape1 {
    top: -74px;
    margin-left: -91px;
    height: 118px;
    width: 90px;
  }



  .service-card {
    padding: 20px 15px;
  }

  .service-title {
    font-size: 20px;
    margin: 0 0 12px;
  }

  .service-icon {
    min-height: 50px;
  }

  .service-icon img {
    max-width: 46px;
    min-height: auto;
  }

  /*=====service-section end =====*/

  /*===== service-company =====*/
  .service-company {
    padding-bottom: 50px;
  }

  .service-company-info {
    padding-right: 0;
    flex-wrap: wrap;
  }

  .service-company-info-left p {
    font-size: 15px;
    line-height: 20px;
  }

  .video-play {
    margin-top: 20px;
  }

  .video-play .icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    line-height: 40px;
    font-size: 12px;
    margin-right: 20px;
  }

  .contact-withUs {
    padding: 20px 30px;
    flex-wrap: wrap;
  }

  .contact-withUs-title {
    font-size: 22px;
  }

  .contact-withUs-user {
    flex: 0 0 100%;
    margin-bottom: 5px;
    max-width: 100%;
  }

  /*===== service-company =====*/

  /*=====case-studies=====*/
  .case-studies .owl-dots {
    margin: 50px auto 0;
  }

  .case-studies {
    padding-top: 40px;
  }

  .case-studies-graphic {
    top: -42px;
  }

  .case-studies-graphic img {
    max-width: 120px;
  }

  .case-studies-graphic-bottom {
    bottom: -90px;
    right: 10px;
    width: 120px;
  }

  .item-info h4 {
    font-size: 21px;
  }

  .case-studies-card-info {
    padding: 20px;
  }

  /*=====case-studies end=====*/

  /*=====feachered-services =====*/
  .feachered-services {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .feachered-services-info h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .feachered-services-card i {
    width: 45px;
    flex: 0 0 45px;
  }

  .feachered-services-card i img {
    max-width: 40px;
  }

  .services-btn {
    margin-top: 0;
  }

  .feachered-services-card {
    padding: 15px;
    margin-bottom: 10px;
  }

  /*=====feachered-services end =====*/

  /*=====testimonials =====*/
  .testimonials {
    padding-top: 0;
    padding-bottom: 40px;
  }

  .testimonials-slider-card p {
    font-size: 15px;
    margin-bottom: 15px;
    padding: 0 15px;
  }

  .item-icon {
    font-size: 47px;
  }

  .testimonials-title small {
    font-size: 14px;
  }

  .testimonials-title {
    font-size: 20px;
  }

  .testimonials-slider .owl-dots {
    margin-top: 12px;
  }

  .testimonials-slider .owl-dots .owl-dot {
    height: 10px;
    width: 10px;
  }

  /*=====testimonials =====*/

  /* quote */
  .quote-section {
    padding: 20px 0;
  }

  .quote-disc {
    font-size: 20px;
  }

  .quote-btn .btn-custom {
    padding-left: 30px;
    padding-right: 30px;
  }

  /* quote */
  /*=====contact us =====*/
  .contact-us-block .heading-col {
    padding-bottom: 0;
  }

  .contact-us-block {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .card-contact {
    margin-bottom: 20px;
  }

  .contact-map {
    padding-top: 30px;
  }

  .contact-map iframe {
    min-height: 300px;
  }

  /*=====contact us end=====*/

  /*===== footer =====*/
  .ftr-logo-img {
    max-width: 80px;
  }

  .ftr-logo p {
    margin: 12px 0 20px;
  }

  .ftr-title {
    font-size: 21px;
    margin-bottom: 10px;
  }

  .ftr-top {
    padding: 40px 0 0;
  }

  .newsletter-ftr-box {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }

  .official-ftr-box {
    max-width: 100%;
    margin-left: 0;
  }

  .newsletter-btn {
    height: 55px;
  }

  /*===== footer end =====*/

  /*=====middle-section=====*/
  .middle-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  /*=====middle-section=====*/

  /*=====service page =====*/


  /*=====service page =====*/

  /*=====blog page=====*/
  .blog-card-title {
    font-size: 22px;
  }

  .blog-card {
    margin-bottom: 20px;
  }

  .widget-title {
    font-size: 20px;
  }

  .entry-meta-icon {
    font-size: 13px;
    margin-right: 8px;
  }

  .blog-entry-meta ul li {
    padding-right: 20px;
    margin-bottom: 5px;
  }

  .widget {
    margin-bottom: 25px;
  }

  .widget.widget_categories {
    margin-bottom: 15px;
  }

  .widget.widget-archice {
    margin-bottom: 15px;
  }

  .widget.widget-gallery {
    margin-bottom: 15px;
  }

  .recent-posts-img img {
    height: 60px;
  }

  .contact-form.comment-form {
    padding: 2px 20px 20px
  }

  .comment-form .form-group {
    margin-bottom: 15px;
  }

  .comment-title {
    margin-bottom: 25px;
  }

  .single-post .comment-form h2.comments-title {
    margin-top: 15px;
  }

  /*=====blog page end=====*/

  /*=====aboutus page=====*/
  .our-history-section {
    padding: 40px 0;
  }

  .about-heading {
    font-size: 26px;
  }

  .about-heading-text {
    font-size: 16px;
  }

  .about-contain-box {
    padding-bottom: 20px;
  }

  .about-tab {
    margin-bottom: 15px;
  }

  .about-tab .nav-link.active,
  .about-tab .nav-link {
    font-size: 15px;
  }

  .about-card-info {
    margin: -50px 15px 0;
    padding: 15px 10px;
  }

  .about-card-desc h3 {
    font-size: 20px;
  }

  .about-image img {
    border-radius: 10px;
  }

  .about-card-info {
    border-radius: 10px;
  }

  .our-history-inner {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .our-history-box {
    margin: 15px auto;
  }

  /*=====aboutus page end=====*/

  /*=====service page =====*/
  .feachered-services-card.services-list-card .feachered-services-info {
    padding: 20px 10px 0;
  }

  .services-link ul li a {
    padding: 12px 15px 10px;
    font-size: 16px;
  }

  .services-link ul li a:hover {
    padding-left: 26px;
  }

  h4.services-dtl-title {
    font-size: 26px;
  }

  .help-box-caption span {
    font-size: 25px;
  }

  .contact-text {
    font-size: 35px;
    padding: 12px 0 20px;
  }

  .help-box .btn-custom {
    font-size: 18px;
    width: 200px;
    line-height: 45px;
    height: 45px;
  }

  /*=====service page end=====*/

  /*video-modal-dialog css*/
  .video-modal-dialog iframe.youtube-video {
    min-height: 250px;
  }

  /*video-modal-dialog css*/

  /* testimonial page css */
  .testimonail-media h3 {
    margin-bottom: 4px;
    font-size: 18px;
  }

  .testimonail-box {
    padding: 20px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.08);
    height: calc(100% - 20px);
    margin-bottom: 20px;
  }

  .testimonail-img {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primaryColor);
    margin-right: 15px;
  }

  .testimonail-media span {
    font-size: 15px;
  }

  .middle-testimonial {
    padding-bottom: 10px;
  }

  .rating {
    font-size: 14px;
  }

  .testimonail-media {
    margin-bottom: 15px;
  }

  .comment-icon {
    font-size: 30px;
  }

  /* testimonial page css end*/

  /* protfolio page css*/

  .protfolio-heading {
    font-size: 25px;
  }

  .protfolio-dtl-card {
    padding: 20px;
    margin-bottom: 30px;
  }

  .protfolio-dtl-box {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  /* protfolio page css end*/
  .cancel_reply {
    font-size: 14px;
    padding: 13px 20px;
  }

  .comment-reply-link {
    height: 40px;
    line-height: 40px;
    padding: 0px 25px;
  }

  .single-post .comment-respond .comment-reply-title {
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .single-post .comment-form h2.comments-title {
    font-size: 25px;
  }

  .custom-contact-form .form-row {
    gap: 0;
  }
}

@media screen and (max-width:600px) {
  .case-studies-card {
    width: 100%;
  }
}

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

  /*===== quote =====*/
  .quote-section {
    text-align: center;
  }

  .quote-disc {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .quote-btn {
    margin: 15px auto 0;
  }

  /*===== quote end =====*/

  /*===== service-company =====*/
  .contact-withUs {
    border-radius: 20px;
    padding: 20px
  }

  .contact-withUs-outer:before {
    border-radius: 20px;
    background-color: #ccd3de;
  }

  .contact-withUs-title {
    flex: 0 0 100%;
    text-align: left;
    margin-bottom: 15px;
  }

  /*===== service-company end=====*/
  .banner-inner .banner-caption {
    padding: 0px 15px;
  }
}

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

  /*===== header=====*/
  .top-bar {
    font-size: 12px;
  }

  .location {
    font-weight: 700;
    font-size: 12px;
  }

  .location i {
    font-size: 14px;
  }

  /*===== header =====*/
}