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

html {
  scroll-behavior: smooth;
  scroll-padding: 100px 0 0 0;
}


body {
  padding: 0 !important;
}

@font-face {
  font-family: albrabooktrial;
  src: url(../fonts/AlbraBookTRIAL-Regular.woff);
}

@font-face {
  font-family: albrabooktrial-medium;
  src: url(../fonts/AlbraBookTRIAL-Medium.woff);
}

@font-face {
  font-family: albrabooktrial-light;
  src: url(../fonts/AlbraBookTRIAL-Light.woff);
}

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

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

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

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

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

:root {
  --primary-color: #c69342;
  --secondary-color: #454545;
  --tertiary-color: #fff;
  --fourth-color: #000;
  --box-bg-color: #ffeac8;
  --form-bg-color: #ebebeb;
}

a,
button,
input[type="submit"] {
  transition: all 0.5s;
  text-decoration: none;
  font-family: poppins-medium;
  font-size: 15px;
}

h1 {
  font-family: albrabooktrial-medium;
  font-size: 44px;
  margin: 0;
}

h2 {
  font-family: albrabooktrial-medium;
  font-size: 42px;
  margin: 0;
  color: var(--secondary-color);
}

h3,
h4,
h6 {
  font-family: albrabooktrial-medium;
  margin: 0;
}

h5 {
  font-family: albrabooktrial-light;
  font-size: 18px;
  margin: 0 0 15px 0;
  position: relative;
  display: inline-block;
}

.subhead {
  display: inline-block;
  padding: 10px;
  color: var(--tertiary-color);
  background: var(--primary-color);
}

.custom-btn {
  padding: 10px 20px;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  transition: all 0.5s ease;
  z-index: 0;
  display: inline-block;
}

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

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

p,
li,
input,
select,
textarea {
  color: #454545;
  font-family: poppins;
  font-size: 15px;
}

p {
  margin-bottom: 0;
}

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

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

img {
  height: auto;
}

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

.padd {
  padding: 60px 0;
}

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

.icon {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  background: var(--box-bg-color);
  margin: 0 10px 0 0;
}

.icon img {
  width: 15px;
}

.header {
  width: 100%;
  position: relative;
}

.nav-bar {
  width: 100%;
  padding: 5px 0;
}

.nav-flex {
  width: 100%;
}

.logo {
  width: 20%;
}

.logo img {
  width: 60%;
}

.menu {
  width: 60%;
	text-align: center;
}

.menu ul {
  display: inline-block;
}

.menu ul li {
  position: relative;
  display: inline-block;
  margin: 0 30px 0 0;
  padding: 15px 0;
  transition: all 0.5s;
}

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

.menu ul li a {
  color: var(--fourth-color);
  display: inline-block;
}

.menu ul li:hover {
  color: var(--secondary-color);
}

.menu ul li a:hover {
  color: var(--secondary-color);
}

.menu ul li.active {
  color: var(--secondary-color);
}

.menu ul li.active a {
  color: var(--primary-color);
  font-family: poppins-medium;
}

.click-btn {
  position: absolute;
  top: 17px;
  right: -20px;
  cursor: pointer;
}

ul.sub-menu {
  position: absolute;
  z-index: 999;
  display: flex;
  flex-direction: column;
  width: 300px;
  overflow-y: scroll;
  text-align: left;
  align-items: flex-start;
  left: 0;
  top: 100%;
  border-radius: 5px;
  display: none;
  background: var(--tertiary-color);
  animation: slideSubMenu 0.3s ease forwards;
}

ul.sub-menu li {
  margin: 0;
  width: 100%;
  padding: 0;
  display: block;
  cursor: pointer;
}

ul.sub-menu li:last-child {
  margin: 0;
}

.menu ul li.active ul.sub-menu li a {
  color: var(--tertiary-color);
  font-family: poppins;
}

ul.sub-menu li a {
  color: var(--tertiary-color);
  padding: 10px 0 10px 15px;
  display: block;
  width: 100%;
  border-bottom: 1px solid #ddd;
  background-color: var(--primary-color);
  font-size: 14px;
}

ul.sub-menu li:last-child a {
  border-bottom: none;
}

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

.menu-btn-box {
  width: 20%;
/*   padding: 0 0 0 30px;
  border-left: 2px solid #b7b7b7; */
	justify-content: flex-end;
}

.menu-btn {
  width: 50%;
}

.menu-icon {
  width: 30px;
  font-size: 30px;
  color: var(--primary-color);
}

.menu-icon i {
  transform: rotate(30deg);
}

.menu-btn-text {
  margin: 0 0 0 10px;
}

.menu-btn-text h5 {
  margin: 0;
  font-family: poppins-light;
  text-transform: capitalize;
}

.menu-btn-text a {
  color: var(--fourth-color);
  font-size: 14px;
}

.menu-btn-text a:hover {
  color: var(--secondary-color);
}

.menu-btn-link {
  width: 50%;
  text-align: right;
}

.menu-btn-link a {
  display: flex;
  align-items: center;
  padding: 8px 20px;
  color: var(--tertiary-color);
  background: var(--primary-color);
  font-family: poppins-semibold;
  font-size: 14px;
  width: max-content;
}

.menu-btn-link a i {
  color: var(--secondary-color);
  margin: 0 0 0 15px;
  font-size: 18px;
}

.menu-btn-link a:hover i {
  color: var(--tertiary-color);
}

.mobile-menu {
  display: none;
}

.sticky {
  width: 100%;
  left: 0;
  top: 0;
  position: fixed;
  animation: slidetop 1s linear;
  z-index: 9999;
  background: var(--tertiary-color);
  box-shadow: 0 2px 5px rgba(132, 132, 132, 0.3);
}

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

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

/* header ends */

.slider {
  width: 100%;
  height: 600px;
}

.banner {
  width: 100%;
  position: relative;
  height: 100%;
  background: var(--box-bg-color);
}

.banner-image {
  width: 50%;
  height: 600px;
  overflow: hidden;
  margin: 0 0 0 auto;
}

.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoom-in 10s infinite forwards ease-in;
}

/* .zoom-in-effect {
    animation: zoom-in 10s infinite forwards ease-in;
  } */

@keyframes zoom-in {
  from {
    transform: scale(1, 1);
  }

  to {
    transform: scale(1.5, 1.5);
  }
}

.banner-cont {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 5% 0 0 0;
  display: flex;
  align-items: center;
}

.banner-cont h5 {
  color: var(--primary-color);
  font-family: Arial;
  font-size: 25px;
  text-transform: capitalize;
}

.banner-cont h1 {
  color: var(--secondary-color);
  width: 50%;
}

.banner-cont h1 span {
  font-family: poppins-semibold;

}

.banner-cont p {
  margin: 15px 0 0 0;
  width: 40%;
}

.banner-cont a {
  display: inline-block;
  padding: 10px 15px;
  background: var(--primary-color);
  margin: 20px 0 0 0;
  font-size: 15px;
}

.counter-box {
  background: var(--secondary-color);
}

.counter-head {
  width: 100%;
}

.counter-tab {
  width: 100%;
}

.counter-tab .list-group {
  flex-wrap: wrap;
  flex-direction: row;
  text-align: center;
  justify-content: space-between;
}

.counter-tab .list-group-item-action {
  border-radius: 0;
  width: 33.3%;
  border: none;
  font-family: albertbooktrial;
  font-size: 20px;
  background: var(--primary-color);
  color: var(--tertiary-color);
}

.counter-tab .list-group-item-action.active {
  background: var(--tertiary-color);
  color: #454545;
  border: none;
  margin: 0;
}

.counter-tab .list-group-item-action {
  border-right: 1px solid var(--fourth-color);
}

.counter-tab .list-group-item-action:last-child {
  border-right: none;
}

.counter-tab .tab-content {
  margin: 20px 0 0 0;
}

.counter-tab .tab-content p {
  margin: 0;
  color: var(--tertiary-color);
}

.counter-flex {
  width: 100%;
  margin: 50px 0 0 0;
}

.counter {
  width: 22%;
  padding: 30px;
  background: var(--primary-color);
}

.counter-icon {
  width: 65px;
}

.counter-icon img {
  width: 100%;
  filter: invert(1);
}

.counter-text {
  margin: 10px 0 0 0;
}

.count-headbox h2 {
  font-size: 38px;
  font-family: Arial;
  font-weight: bold;
}

.count-headbox h2 {
  font-size: 38px;
  font-family: Arial;
  font-weight: bold;
}

.count-headbox span {
  font-size: 38px;
  font-family: Arial;
  font-weight: bold;
  margin: 0 0 0 5px;
}

.counter-text p {
  margin: 10px 0 0 0;
  font-size: 19px;
  font-family: alberbooktrial;
}

.expert-text {
  width: 100%;
}

.expert-text p {
  margin: 15px 0 0 0;
}

.expert-text ul li {
  margin: 15px 0 0 0;
  position: relative;
  padding: 0 0 0 30px;
}

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

.expert-text ul li p {
  margin: 0;
}

.expert-text a {
  margin: 40px 0 0 0;
  background: var(--primary-color);
  display: inline-block;
  font-size: 15px;
}

.expert-image {
  width: 90%;
  height: 450px;
  box-shadow: 40px 40px var(--box-bg-color);
  transition: all 0.5s;
  overflow: hidden;
}

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

.expert-image:hover {
  box-shadow: none;
}

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

.strategy-box {
  margin: 100px 0 0 0;
}

.strategy-text {
  width: 90%;
}

.story-box {
  width: 100%;
  background: var(--secondary-color);
  margin: 60px 0 0 0;
}

.story-head {
  width: 100%;
}

.story-head-text {
  width: 100%;
}

.story-head-para {
  width: 65%;
}

.story-head-para p {
  margin: 0;
}

.story-btn a {
  font-size: 15px;
  font-family: albertbooktrial-light;
  color: var(--secondary-color);
}

.story-btn a.custom-btn:hover::after {
  background: var(--primary-color) !important;
}

.story-btn a.custom-btn:hover {
  color: var(--tertiary-color);
}

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

.story-image {
  width: 100%;
  height: 285px;
  overflow: hidden;
}

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

.story:hover img {
  transform: scale(1.2);
}

.story-text {
  margin: 20px 0 0 0;
}

.story-text h4 a {
  font-family: albrabooktrial-light;
  font-size: 22px;
}

.story:hover h4 a {
  color: var(--primary-color) !important;
}

.story-text p {
  margin: 15px 0 0 0;
}

.story-text a.custom-btn {
  margin: 20px 0 0 0;
  font-size: 15px;
  background: var(--primary-color);
}

.story-text a.custom-btn:hover {
  color: var(--secondary-color) !important;
}

.story-text a.custom-btn:hover::after {
  background: var(--tertiary-color);
}

.testimonial-box {
  width: 100%;
  background: var(--box-bg-color);
}

.test-headtext p {
  margin: 0;
}

.testimonial-flex {
  width: 100%;
  margin: 60px 0 0 0;
  display: flex;
  justify-content: space-between;
}

.testimonial-flex .item {
  width: 90%;
  margin: 0 auto;
}

.testimonial-card {
  width: 100%;
  padding: 30px;
  background: var(--tertiary-color);
  height: 300px;
}

.test-info {
  color: var(--fourth-color);
  font-size: 18px;
  margin: 0;
  font-family: albrabooktrial-medium;
}

.test-client {
  margin: 50px 0 0 0;
}

.client-image {
  width: 65px;
  height: 65px;
  margin: 0 20px 0 0;
  box-shadow: 0 15px 20px rgba(132, 132, 132, 0.3);
}

.client-image img {
  width: 100%;
  height: 100%;
  object-position: top;
}

.client-text h4 {
  font-family: Arial;
  font-weight: bold;
  font-size: 15px;
  color: var(--secondary-color);
}

.client-text p {
  color: #3a3a3a;
}

hr.divider {
  width: 100%;
  height: 1px;
  background: #d7d7d7;
  margin: 30px 0;
}

.test-bottom {
  width: 100%;
}

.test-headbox h2 {
  margin: 0 10px;
  font-family: poppins-medium;
}

.test-headbox span {
  color: var(--secondary-color);
  font-family: poppins-medium;
  font-size: 40px;
}

.test-bottom p {
  color: var(--primary-color);
  margin: 0;
}

.cer-info {
  width: 40%;
  margin: 10px 0 0 0;
}

.certificate-row {
	justify-content: center;
}

.certificate-infobox {
  width: 100%;
}

.certificate {
  width: 230px;
  height: 230px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 40px auto 0 auto;
  padding: 40px;
  transition: all 0.5s;
  cursor: pointer;
}

.certificate::before {
  width: 100%;
  height: 100%;
  content: "";
  border: 3px dashed var(--secondary-color);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s;
}

.certificate-image {
  width: 200px;
  margin: auto;
}

.certificate-image img {
  width: 100%;
  transition: all 0.5s;
}

.certificate-icon {
  position: absolute;
  width: 38px;
  height: 38px;
  background: var(--primary-color);
  left: 50%;
  transform: translateX(-50%);
  bottom: -19px;
  transition: all 0.5s;
}

.certificate-icon p {
  font-size: 17px;
  margin: 0;
}

.certificate-text {
  margin: 40px 0 0 0;
  text-align: center;
  padding: 0 40px;
}

.certificate-text h4 {
  color: var(--secondary-color);
  font-size: 20px;
  transition: 0.5s;
}

.certificate-infobox:hover .certificate::before {
  animation: rotateBorder 5s linear infinite;
}

@keyframes rotateBorder {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.certificate-infobox:hover .certificate-icon {
  background: var(--secondary-color);
}

.certificate-infobox:hover .certificate-text h4 {
  color: var(--primary-color);
}

.footer-formbox {
  width: 100%;
  margin: 0 0 -200px 0;
  position: relative;
  z-index: 9;
}

.footer-formbox .container {
  background: var(--box-bg-color);
  padding: 0;
}

.footer-formtext {
  width: 100%;
  padding: 60px;
}

.footer-form-info {
  margin: 10px 0 0 0;
  position: relative;
  padding: 0 0 20px 0;
}

.footer-form-info::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 90px;
  height: 1px;
  background: var(--primary-color);
}

.footer-form {
  margin: 30px 0 0 0;
}

.footer-form p {
  margin: 0;
}

.footer-form br {
  display: none;
}

.footer-form input {
  width: 100%;
  padding: 10px;
  border: 1px solid transparent;
  outline: none;
  border-radius: 5px;
  background: var(--tertiary-color);
  margin: 0 0 15px 0;
  font-size: 14px;
  transition: all 0.5s;
}

.footer-form input:focus {
  border: 1px solid var(--secondary-color);
}

.footer-form textarea {
  width: 100%;
  height: 120px;
  padding: 10px;
  border: 1px solid transparent;
  outline: none;
  border-radius: 5px;
  background: var(--tertiary-color);
  margin: 0 0 15px 0;
  font-size: 14px;
  transition: all 0.5s;
}

.footer-form textarea:focus {
  border: 1px solid var(--secondary-color);
}

.footer-checkbox {
  display: flex;
  align-items: center;
  margin: 0 0 20px 0;
}

.footer-checkbox input {
  margin: 0 10px 0 0;
  width: 15px;
  height: 15px;
}

.footer-checkbox input:checked {
  accent-color: var(--secondary-color);
  color: var(--tertiary-color);
}

.footer-checkbox label {
  font-family: poppins;
  color: #454545;
  font-size: 13px;
}

.footer-submit input {
  display: inline-block;
  width: auto;
  padding: 10px 30px;
  color: var(--tertiary-color);
  background: var(--primary-color);
  border-radius: 5px;
  font-size: 14px;
  text-transform: uppercase;
  border: none;
  outline: none;
  margin: 0;
}

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

.footer-checkbox .wpcf7-list-item {
  margin-left: 0 !important;
}

.footer-form-image {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer-form-bottom-box {
  width: 100%;
  background: var(--secondary-color);
  padding: 200px 0 0 0;
}

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

.footer .col-lg-2 {
  padding: 0;
}

.footer-image {
  width: 100%;
}

.footer-image img {
  width: 80%;
  filter: brightness(0) invert(1);
}

.footer-image p {
  color: var(--tertiary-color);
  margin: 10px 0 0 0;
  font-size: 13px;
  line-height: 2.2;
}

.footer-icon {
  width: 100%;
  margin: 30px 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: 32px;
  height: 32px;
  background: var(--primary-color);
  color: var(--tertiary-color);
  font-size: 15px;
}

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

.footer-link {
  width: 100%;
}

.footer-link h3 {
  font-size: 21px;
  color: var(--primary-color);
  margin: 0 0 20px 0;
  position: relative;
  display: inline-block;
}

.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;
  font-size: 13px;
}

.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-second {
  padding: 0 0 0 15%;
}

.footer-contact h3 {
  font-size: 21px;
  color: var(--primary-color);
  margin: 0 0 20px 0;
  position: relative;
  display: inline-block;
}

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

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

.foot-icon {
  width: 27px;
  height: 27px;
  background: var(--primary-color);
  font-size: 13px;
}

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

.foot-icontext a {
  font-family: poppins;
  font-size: 13px;
}

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

.foot-icontext p {
  font-size: 13px;
}

.footer-input-box {
  width: 100%;
  position: relative;
  transition: all 0.1s;
}

.footer-input-box br {
  display: none;
}

.footer-input-box .wpcf7-not-valid-tip{
	margin:10px 0 0 0 !important;
}

.footer-input-box .wpcf7-response-output{
	color:var(--tertiary-color);
}

.footer-input {
  width: 100%;
  outline: none;
  border: none;
  background: none;
  font-size: 13px;
  color: var(--tertiary-color);
  padding: 0 0 10px 0;
  border-bottom: 1px solid var(--tertiary-color);
}

.footer-input input::placeholder {
  opacity: 1;
  color: var(--tertiary-color);
}

.footer-submit-btn {
  border: none;
  outline: none;
  font-size: 20px;
  color: var(--primary-color);
  background: var(--tertiary-color);
  transition: all 0.1s;
  z-index: 9;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 4px;
  margin: 15px 0 0 0;
}

.footer-submit-btn:hover {
  background: var(--primary-color);
  color: var(--tertiary-color);
}

.footer_copyright {
  width: 100%;
  padding: 15px 0;
  text-align: center;
  border-top: 2px solid rgba(255, 255, 255, 0.4);
  background: var(--secondary-color);
}

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

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

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

.scroll_top {
  width: 40px;
  height: 40px;
  background: var(--fourth-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;
}

.scroll_top:hover {
  background: var(--primary-color);
  color: var(--tertiary-color);
}

/* index css ends */

/* form popup-css starts */

.form-popup-box {
  background: var(--box-bg-color);
}

.form-popup-box .modal-header {
  padding: 20px 20px 0 20px;
  border-bottom: none;
}

.form-popup-box .modal-header h2 {
  font-size: 30px;
}

.form-popup-box .modal-body {
  padding: 15px 20px;
}

.form-popup-box .modal.show .modal-dialog {
  margin: 50px auto 0 auto;
}

.form-popup {
  width: 100%;
}

.close-popup {
  border: none;
  outline: none;
  color: var(--primary-color);
  background: none;
  font-size: 18px;
  transition: all 0.5s;
}

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

.form-popup p {
  margin: 0;
}

.form-popup br {
  display: none;
}

.popup-input {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid transparent;
  outline: none;
  background-color: var(--form-bg-color);
  border-radius: 5px;
  transition: all 0.5s;
  margin: 0 0 15px 0;
}

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

.popup-select {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid transparent;
  outline: none;
  background-color: var(--form-bg-color);
  border-radius: 5px;
  transition: all 0.5s;
}

.form-popup .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-popup .select2-container .select2-selection--single .select2-selection__rendered {
  padding: 8px 10px !important;
  height: auto !important;
  line-height: normal !important;
}

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

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

.form-popup .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-popup .select2-container--default .select2-selection--single {
  border-radius: 5px !important;
  background-color: var(--form-bg-color) !important;
  border: 1px solid transparent !important;
  transition: all 0.5s;
}

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

.popup-area {
  width: 100%;
  height: 70px;
  padding: 10px;
  font-size: 14px;
  border: 1px solid transparent;
  outline: none;
  background-color: var(--form-bg-color);
  border-radius: 5px;
  transition: all 0.5s;
  margin: 0 0 15px 0;
}

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

.popup-submit {
  display: inline-block;
  width: 100%;
  padding: 10px 0;
  border: none;
  outline: none;
  font-size: 14px;
  background-color: var(--primary-color);
  color: var(--tertiary-color);
  cursor: pointer;
  transition: all 0.5s;
  border-radius: 10px;
}

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

/* form popup 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%;
  display: flex;
  align-items: center;
  background-color: rgba(198, 147, 66, 0.5);
  color: var(--tertiary-color);
}

.about-banner-cont h1 {
  font-size: 42px;
}

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

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

.about-banner-cont .breadcrumb-item i {
  color: var(--secondary-color);
  margin: 0 5px;
  font-size: 14px;
  vertical-align: middle;
}

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

.about-banner-cont .breadcrumb-item a:hover {
  color: var(--fourth-color) !important;
  font-family: poppins-semibold;
}

.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-box {
  width: 100%;
}

.about-image {
  width: 95%;
  position: relative;
}

.about-image-one {
  width: 75%;
  height: 630px;
  border-radius: 10px;
}

.about-image-one img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.about-image-two {
  width: 50%;
  height: 300px;
  border-radius: 10px 10px 10px 0;
  position: absolute;
  left: 50%;
  bottom: 0;
}

.about-image-two img {
  width: 100%;
  height: 100%;
  border-radius: 10px 10px 10px 0;
  object-fit: cover;
}

.about-text {
  width: 100%;
}

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

.process-box {
  width: 100%;
  position: relative;
  margin: 40px 0 0 0;
}

.process-shape {
  position: absolute;
  top: 50px;
  right: -70px;
  width: 150px;
  transform: rotateX(180deg) rotate(-15deg);
}

.process {
  position: relative;
  background-color: var(--box-bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  border: 5px solid rgba(238, 238, 238, 0.5);
  padding: 0;
  margin: 0 auto;
  border-radius: 50%;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
}

.process img {
  width: 100px;
  transition: all 0.8s;
  transform-style: preserve-3d;
}

.process-box:hover .process img {
  transform: rotateY(180deg);
  filter: brightness(0) invert(0);
}

.process-box:hover .process {
  border-color: var(--secondary-color);
}

.process-icon {
  width: 50px;
  height: 50px;
  font-size: 25px;
  background: var(--fourth-color);
  color: var(--tertiary-color);
  font-family: poppins;
  position: absolute;
  bottom: 20px;
  right: -20px;
}

.process-box:hover .process-icon {
  background: var(--primary-color);
}

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

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

.value-list {
  width: 100%;
  flex-direction: row;
	column-gap:20px;
  margin: 40px 0 0 0;
}

.value-list .list-group-item {
  border: 1px solid var(--secondary-color);
  border-collapse: collapse;
  border-radius: 5px 5px 0 0;
  font-size: 18px;
}

.value-list .list-group-item.active {
  background: var(--primary-color);
  border: none;
}

.value-text .tab-pane {
  margin: 30px 0 0 0;
}

.value-text .tab-pane img {
  width: 80px;
}

.value-text .tab-pane p {
  margin: 20px 0 0 0;
}

.team-box {
  width: 100%;
}

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

.team-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

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

.team-image::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 100%;
  right: 0;
  box-shadow: inset 0px -180px 100px -40px rgba(198, 147, 66, 0.7);
  z-index: 1;
  transition: all 900ms ease;
  border-radius: 10px;
}

.team-icon {
  width: 100%;
  padding: 20px 30px 30px 30px;
  bottom: -100%;
  left: 0;
  transition: all 1s ease;
  position: absolute;
  z-index: 2;
}

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

.team-icon ul li {
  display: inline-block;
  margin: 0 15px 0 0;
}

.team-icon ul li:last-child {
  margin: 0;
}

.team-icon ul li a {
  width: 45px;
  height: 45px;
  border-radius: 5px;
  color: var(--primary-color);
  background: var(--tertiary-color);
  font-size: 22px;
}

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

.team:hover .team-image::before {
  top: 0;
}

.team:hover .team-icon {
  bottom: 0;
}

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

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

.team-text h3 a {
  font-size: 22px;
  font-family: albrabooktrial-medium;
  color: var(--secondary-color);
}

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

.team-text p {
  margin: 5px 0 0 0;
}

.quote-box {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  padding: 100px 0;
  background-color: rgba(198, 147, 66, 0.9);
  background-blend-mode: multiply;
}

.quote-text {
  width: 100%;
}

.quote-text h2 {
  color: var(--tertiary-color);
}

.quote-text p {
  margin: 20px auto 0 auto;
  width: 70%;
  color: var(--tertiary-color);
}

.quote-text a {
  color: var(--primary-color);
  display: inline-block;
  margin: 20px 0 0 0;
  background: var(--tertiary-color);
}

.quote-text a i {
  margin: 0 0 0 10px;
}

.quote-text a:hover {
  color: var(--tertiary-color);
}

.faq-text-box {
  width: 95%;
}

.faq-item {
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin: 30px 0 0 0;
  background: var(--tertiary-color);
}

.faq-item .question {
  position: relative;
  padding: 10px 20px;
  cursor: pointer;
}

.faq-item .question:hover {
  background: var(--box-bg-color);
}

.faq-item .question h3 {
  font-size: 16px;
	width:calc(100% - 30px);
}

.toggle-icon {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  font-size: 12px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

.faq-item .answer p {
  margin: 0;
}

.faq-item .answer {
  padding: 20px;
  display: none;
}

.faq-item .question.clicked {
  color: var(--tertiary-color);
  background: var(--primary-color);
}

/* about css ends */

.contact-image {
  width: 100%;
}

.contact-detail{
	justify-content: space-between;
}

.contact-flex {
  width: 48%;
  padding: 20px;
  flex-wrap: wrap;
  border: 1px solid #e5e5e5;
  margin: 40px 0 0 0;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  border-radius: 50%;
  transition: all 0.8s;
  font-size: 30px;
}

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

.contact-flex:hover {
  background: #bdd1ee;
}

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

.contact-flex:hover .contact-icontext h3 {
  color: var(--secondary-color);
}

.contact-icontext a {
  color: #454545;
  font-family: poppins;
  font-size: 16px;
}

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

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

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

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

.contact-form-box {
  width: 100%;
  background: var(--box-bg-color);
}

.contact-form {
  background: var(--tertiary-color);
  border-radius: 10px;
  border-top: 13px solid var(--primary-color);
  padding: 30px;
  margin: 30px 0 0 0;
}

.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%;
}

.form-input label {
  font-size: 15px;
  font-family: albrabooktrial-medium;
  display: block;
  margin: 0 0 10px 0;
  color: var(--secondary-color);
}

.form-input input {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #e6e6e6;
  outline: none;
  background-color: #f5f5f5;
  border-radius: 5px;
  transition: all 0.5s;
  margin: 0 0 20px 0;
}

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

.form-input select {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #e6e6e6;
  outline: none;
  background-color: #f5f5f5;
  border-radius: 5px;
  transition: all 0.5s;
  color: #bfbfbf;
  appearance: none;
  margin: 0 0 20px 0;
}

.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;
}

.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: 5px !important;
  background-color: #f5f5f5 !important;
  border: 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%;
}

.form-service label {
  font-size: 15px;
  font-family: albrabooktrial-medium;
  display: block;
  margin: 0 0 10px 0;
  color: var(--secondary-color);
}

.form-service textarea {
  width: 100%;
  height: 100px;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #e6e6e6;
  outline: none;
  background-color: #f5f5f5;
  border-radius: 5px;
  transition: all 0.5s;
  margin: 0 0 20px 0;
}

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

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

.form-checkbox input {
  margin: 0 10px 0 0;
}

.form-checkbox label {
  font-family: poppins;
  color: #333;
  font-size: 15px;
  margin: 0;
}

.form-checkbox .wpcf7-list-item {
  margin: 0 0 10px 0 !important;
}

.contact-submit {
  display: inline-block;
  padding: 10px 30px;
  background: var(--primary-color);
  color: var(--tertiary-color);
  font-size: 18px;
  outline: none;
  border: none;
  transition: all 0.5s;
  border-radius: 5px;
}

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

/* contact css ends */

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

.blog {
  width: 100%;
  height: 400px;
  margin: 40px 0 0 0;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.blog-image {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

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

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

.blog-image::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  box-shadow: inset 0px -180px 100px -40px rgba(198, 147, 66, 0.7);
  z-index: 1;
  transition: all 900ms ease;
}

.blog-text {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 20px 30px 30px 30px;
  z-index: 2;
  transition: all 900ms ease;
  text-align: left;
  border-radius: 10px;
}

.blog-text h3 a {
  font-size: 28px;
  font-family: albrabooktrial-medium;
  font-weight: 600;
}

.blog-text ul {
  display: inline-block;
  margin: 10px 0 0 0;
}

.blog-text ul li {
  display: inline-block;
  margin: 0 10px 0 0;
  color: var(--tertiary-color);
}

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

.blog-text ul li i {
  margin: 0 10px 0 0;
}

.blog-text ul li span {
  font-size: 8px;
  color: var(--secondary-color);
}

.blog-text ul li span i {
  margin: 0;
  vertical-align: super;
}

.blog-btn-box {
  width: 100%;
  height: 100%;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  transition: all 900ms ease;
}

.blog-btn-box .blog-btn {
  position: absolute;
  bottom: -100%;
  left: 30px;
  text-align: left;
  transition: all 900ms ease;
}

.blog-btn-box .blog-btn a {
  font-size: 18px;
  display: flex;
  align-items: center;
}

.blog-btn-box .blog-btn a i {
  margin: 0 0 0 10px;
  font-size: 15px;
}

.blog-btn-box .blog-btn a:hover {
  color: var(--fourth-color) !important;
}

.blog:hover .blog-text {
  bottom: -100%;
}

.blog:hover .blog-btn-box {
  background: rgba(198, 147, 66, 0.7);
}

.blog:hover .blog-btn-box .blog-btn {
  bottom: 30px;
}

/* blog css ends */

.blog-detail {
  width: 95%;
  text-align: left;
}

.blog-detail ul {
  margin: 10px 0 0 0;
  display: inline-block;
}

.blog-detail ul li {
  display: inline-block;
  margin: 0 15px 0 0;
}

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

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

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

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

.blog-detail-image::before {
  top: 0;
  left: -50%;
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  transition: all 0.5s;
  opacity: 0;
}

.blog-detail-image::after {
  top: 0;
  right: -50%;
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  transition: all 0.5s;
  opacity: 0;
}

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

.blog-detail-image:hover::before {
  opacity: 1;
  left: 0;
  z-index: 1;
}

.blog-detail-image:hover::after {
  opacity: 1;
  right: 0;
}

.blog-detail-text h4 {
  margin: 20px 0 0 0;
  color: var(--secondary-color);
  font-size: 25px;
}

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

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

.blog-detail-text ul li {
  margin: 0 0 10px 0;
/*   position: relative;
  padding: 0 0 0 30px; */
  display: block;
}

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

.blog-detail-text ul li strong {
  color: var(--primary-color);
}

.blog-sidebar {
  width: 100%;
  position: sticky;
  top: 80px;
  text-align: left;
}

.blog-list {
  width: 100%;
  padding: 30px;
  box-shadow: 0 0 70px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
}

.blog-list h3 {
  color: var(--secondary-color);
  font-size: 35px;
}

.blog-list-flex {
  margin: 30px 0 0 0;
  padding: 0 0 20px 0;
  border-bottom: 1px solid #d7d7d7;
}

.blog-list-flex:last-child {
  padding: 0;
  border-bottom: none;
}

.blog-icon {
  width: 80px;
  height: 80px;
  margin: 0 30px 0 0;
}

.blog-icontext a {
  color: var(--fourth-color);
  font-size: 17px;
  display: inline-block;
}

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

.blog-icontext ul {
  display: inline-block;
  margin: 10px 0 0 0;
}

.blog-icontext ul li {
  display: inline-block;
  margin: 0 10px 0 0;
}

.blog-icontext ul li:last-child {
  margin: 0;
}

.blog-icontext ul li i {
  color: var(--secondary-color);
  margin: 0 5px 0 0;
}

.blog-form-sidebar {
  width: 100%;
  height: 300px;
  position: relative;
  border-radius: 10px;
  margin: 40px 0 0 0;
}

.blog-sidebar-image {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.blog-sidebar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.blog-sidebar-image::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  box-shadow: inset 0px -220px 100px -40px rgba(198, 147, 66, 0.7);
  z-index: 1;
}

.blog-sidebar-form-text {
  position: absolute;
  padding: 20px 30px 30px 30px;
  left: 0;
  bottom: 0;
  z-index: 2;
}

.blog-sidebar-form-text h3 {
  color: var(--fourth-color);
}

.blog-sidebar-form-text p {
  margin: 10px 0 0 0;
}

.blog-sidebar-form-text p a {
  font-family: poppins;
}

.blog-sidebar-form-text p a i {
  margin: 0 10px 0 0;
  color: var(--secondary-color);
}

.blog-sidebar-form-text p a:hover {
  font-family: poppins-medium;
  color: var(--fourth-color) !important;
}

/* blog-detail css ends */

.service-sidebar {
  width: 100%;
  position: sticky;
  top: 80px;
}

.service-list {
  width: 100%;
  padding: 20px;
  border-radius: 6px;
  background: var(--box-bg-color);
  position: static;
  z-index: -3;
}

.service-list h3 {
  font-size: 35px;
  margin: 0;
  color: var(--secondary-color);
}

.service-list ul {
  margin: 20px 0 0 0;
}

.service-list ul li a {
  background: var(--tertiary-color);
  padding: 15px;
  width: 100%;
  display: inline-block;
  margin: 0 0 10px 0;
  font-size: 17px;
  position: relative;
  z-index: 1;
  border-radius: 6px;
  color: var(--secondary-color);
}

.service-list ul li:last-child a {
  margin: 0;
}

.service-list ul li a::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 100%;
  background: var(--secondary-color);
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.5s;
  border-radius: 6px;
}

.service-list ul li a:hover::before {
  width: 100%;
}

.service-list ul li a:hover {
  color: var(--tertiary-color);
}

.service-list ul li a i {
  margin: 0 10px 0 0;
  transform: rotate(45deg);
}

.service-formbox {
  margin: 40px 0 0 0;
  padding: 20px;
  background: #f5f5f5;
}

.service-formbox h3 {
  font-size: 35px;
  margin: 0;
  color: var(--secondary-color);
}

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

.service-formbox p {
  margin: 0;
}

.service-formbox br {
  display: none;
}

.service-input {
  width: 100%;
  height: 40px;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #e6e6e6;
  outline: none;
  background-color: var(--tertiary-color);
  border-radius: 5px;
  transition: all 0.5s;
  margin: 0 0 10px 0;
  color: var(--fourth-color);
}

.service-input::placeholder {
  color: var(--fourth-color);
  opacity: 1;
}

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

.service-select {
  width: 100%;
  height: 40px;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #e6e6e6;
  outline: none;
  background-color: var(--tertiary-color);
  border-radius: 5px;
  transition: all 0.5s;
  margin: 0 0 10px 0;
  color: var(--fourth-color);
}

.service-select option {
  color: var(--secondary-color);
}

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

.service-area {
  width: 100%;
  height: 70px;
  padding: 10px;
  font-size: 14px;
  color: var(--secondary-color);
  border: 1px solid #e6e6e6;
  outline: none;
  background-color: var(--tertiary-color);
  border-radius: 5px;
  transition: all 0.5s;
  margin: 0 0 10px 0;
  color: var(--fourth-color);
}

.service-area::placeholder {
  color: var(--fourth-color);
  opacity: 1;
}

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

.service-checkbox {
  width: 100%;
  display: flex;
  align-items: baseline;
}

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

.service-checkbox label {
  font-family: poppins;
  color: #333;
  font-size: 15px;
  margin: 0;
}

.service-checkbox .wpcf7-list-item {
  margin: 0 !important;
}

.service-submit {
  margin: 20px 0 0 0;
  display: inline-block;
  font-family: poppins-bold;
  color: var(--tertiary-color);
  background: var(--primary-color);
  padding: 10px 20px;
  transition: all 0.5s;
  border: none;
  outline: none;
  border-radius: 5px;
}

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

.service-detail-text {
  width: 95%;
  margin: 0 0 0 auto;
}

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

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

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

.detail-image::before {
  top: 0;
  left: -50%;
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  transition: all 0.5s;
  opacity: 0;
}

.detail-image::after {
  top: 0;
  right: -50%;
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  transition: all 0.5s;
  opacity: 0;
}

.detail-image:hover::before {
  opacity: 1;
  left: 0;
  z-index: 1;
}

.detail-image:hover::after {
  opacity: 1;
  right: 0;
}

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

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

.service-detail-text h4 {
  font-size: 22px;
  color: var(--secondary-color);
  margin: 20px 0 0 0;
}

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

.service-detail-text ul li {
  margin: 0 0 10px 0;
/*   position: relative;
  padding: 0 0 0 30px; */
}

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

.service-detail-text ul li b {
  color: var(--primary-color);
}

.service-detail-text ul li:last-child {
  margin: 0;
}

/* servicedetail css ends */

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

.case-box .story {
  text-align: left;
}

.case-box .story h4 a {
  color: var(--fourth-color);
  font-family: albrabooktrial-medium;
}

.case-box .story h4 a:hover {
  color: var(--primary-color);
}

.case-box .story a.custom-btn:hover {
  color: var(--tertiary-color) !important;
}

.case-box .story a.custom-btn::after {
  background: var(--secondary-color);
}

.case-slider-box {
  margin: 60px 0 0 0;
  text-align: center;
}

.case-slider .blog-text h3 a {
  font-size: 22px;
}

/* .case-slider-box .blog-image::before{
    display: none;
  } */

/* case detail css ends */

.resource-box {
  width: 100%;
}

.resource-box .row {
  padding: 0 0 20px 0;
  border-bottom: 1px solid #ddd;
  align-items: center;
}

.resource-box .row:last-child {
  padding: 0;
  border: none;
}

.resource-image {
  width: 100%;
  height: 300px;
  margin: 40px 0 0 0;
}

.resource-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resource-text {
  width: 95%;
  margin: 40px 0 0 auto;
  text-align: left;
}

.resource-text h3 a {
  font-size: 25px;
  color: var(--fourth-color);
  font-family: albrabooktrial-medium;
}

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

.resource-text p {
  margin: 15px 0 0 0;
}

.resource-btn {
  display: inline-block;
  margin: 20px 0 0 0;
  color: var(--secondary-color);
}

.resource-btn:hover {
  color: var(--primary-color);
}

.resource-btn i {
  margin: 0 0 0 10px;
}

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

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

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

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

.resource-detail-image::before {
  top: 0;
  left: -50%;
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  transition: all 0.5s;
  opacity: 0;
}

.resource-detail-image::after {
  top: 0;
  right: -50%;
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  transition: all 0.5s;
  opacity: 0;
}

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

.resource-detail-image:hover::before {
  opacity: 1;
  left: 0;
  z-index: 1;
}

.resource-detail-image:hover::after {
  opacity: 1;
  right: 0;
}

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

.resource-detail-text h3 {
  color: var(--primary-color);
  font-size: 24px;
  margin: 20px 0 0 0;
}

.resource-detail-text h4 {
  color: var(--secondary-color);
  font-size: 22px;
  margin: 20px 0 0 0;
}


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

.resource-detail-text ul li {
  margin: 0 0 10px 0;
  position: relative;
  padding: 0 0 0 30px;
}

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

.resource-detail-text ul li b {
  color: var(--primary-color);
}

.resource-detail-text ul li ul li {
  padding: 0 0 0 0;
  list-style: square;
  list-style-position: inside;
}

.resource-detail-text ul li ul {
  margin: 10px 0 0 0;
}

.resource-detail-text ul li ul li::before {
  display: none;
}

.resource-detail-text ul li ul li b {
  color: var(--fourth-color);
}

.service-detail-text ul li:last-child {
  margin: 0;
}

.resource-slider-box {
  width: 100%;
}

.resource-slide-box {
  width: 100%;
}

.resource-slide {
  margin: 40px 0 0 0;
  padding: 0 10px;
}

.resource-slide-image {
  width: 100%;
  margin: 0 auto;
  border-radius: 10px;
  height: 400px;
  position: relative;
  overflow: hidden;
}

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

.resource-slide-image:hover img {
  transform: scale(1.2);
  filter: grayscale(1);
}

.resource-slide-abso {
  position: absolute;
  background: var(--tertiary-color);
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  left: 50%;
  bottom: -100%;
  transform: translateX(-50%);
  transition: all 900ms ease;
}

.resource-slide-abso h3 a {
  font-size: 22px;
  color: var(--fourth-color);
  font-family: albrabooktrial-medium;
}

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

.resource-slide-image:hover .resource-slide-abso {
  bottom: 30px;
}

.wpcf7-not-valid-tip {
  margin: 0 0 10px 0 !important;
}

.case-row {
  justify-content: center;
}

/* Responsive Starts */

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

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 40px;
  }

  .logo img {
    width: 80%;
  }

  .menu-btn-box {
    padding: 0 0 0 10px;
  }
	
	.menu-btn-text {
    margin: 0 0 0 5px;
}

  .cer-info {
    width: 50%;
  }

  .process-shape {
    width: 120px;
    right: -50px;
  }

  .team-icon {
    padding: 20px;
  }

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

  .about-banner-cont h1 {
    font-size: 40px;
  }

	.faq-item .question h3 {
    font-size: 14px;
	}

}

@media only screen and (max-width:1378px){
	.about-image-one{
		height:700px;
	}
}

@media only screen and (max-width:1351px) {
  .process-shape {
    width: 100px;
    right: -40px;
  }

  .about-image-one {
    height: 700px;
  }

}

@media only screen and (max-width:1300.2px) {
  .counter-tab .list-group-item-action {
    font-size: 19px;
  }

  .menu-btn-link a {
    font-size: 13px;
  }

  .menu-btn-link a i {
    font-size: 13px;
  }

  .cer-info {
    width: 60%;
  }

}

@media only screen and (max-width: 1275.2px) {
  .menu-btn-link a {
    padding: 8px 15px;
  }
}

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

  h2 {
    font-size: 38px;
  }

  h5 {
    font-size: 16px;
  }

  .menu-btn-text a {
    font-size: 13px;
  }
	
	.menu-icon {
    width: 20px;
    font-size: 20px;
	}

  .banner-cont h5 {
    font-size: 20px;
  }

  .counter-tab .list-group-item-action {
    font-size: 18px;
  }

  .footer-contact h3 {
    font-size: 20px;
  }

  .padd {
    padding: 40px 0;
  }

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

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

  .footer {
    padding: 40px 0 30px 0;
  }

  .footer-formtext {
    padding: 40px;
  }

  .cer-info {
    width: 70%;
  }

  .expert-image {
    width: 95%;
    box-shadow: 30px 30px var(--box-bg-color);
  }

  .strategy-box {
    margin: 40px 0 0 0;
  }

  .strategy-text {
    width: 95%;
  }

  .story-box {
    margin: 40px 0 0 0;
  }

  .certificate-text h4 {
    font-size: 18px;
  }

  .counter-icon {
    width: 60px;
  }

  .counter-text p {
    font-size: 18px;
  }

  .testimonial-flex {
    margin: 40px 0 0 0;
  }

  .testimonial-card {
    height: 350px;
  }

  .counter-flex {
    margin: 40px 0 0 0;
  }

  .process-text h3 {
    font-size: 24px;
  }

  .process {
    width: 150px;
    height: 150px;
  }

  .process img {
    width: 50%;
  }

  .process-icon {
    font-size: 20px;
  }

  .process-shape {
    right: -25px;
  }

  .inner-banner {
    height: 350px;
  }

  .about-banner-cont h1 {
    font-size: 38px;
  }

  .team-image {
    height: 300px;
  }

  .quote-box {
    padding: 40px 0;
  }

  .quote-text p {
    width: 80%;
  }

/*   .faq-item .question h3 {
    font-size: 18px;
  } */

  .about-image-one {
    height: 720px;
  }

  .resource-image {
    height: 250px;
  }

  .resource-text h3 a {
    font-size: 24px;
  }

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

  .blog {
    height: 300px;
  }

  .blog-text {
    padding: 20px;
  }

  .blog-text ul li {
    margin: 0 5px 0 0;
  }

  .blog-text ul li i {
    margin: 0 5px 0 0;
  }

  .blog-image::before {
    box-shadow: inset 0px -200px 100px -40px rgba(198, 147, 66, 0.7);
  }

  .contact-icontext p {
    font-size: 14px;
  }

  .contact-icontext a {
    font-size: 14px;
  }

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

  .resource-slide-image {
    height: 300px;
  }

  .service-detail-text h3 {
    font-size: 24px;
  }

  .service-list h3 {
    font-size: 30px;
  }

  .service-formbox h3 {
    font-size: 30px;
  }

  .service-list ul li a {
    font-size: 15px;
  }

  .blog-detail-text h4 {
    font-size: 24px;
  }

  .blog-list h3 {
    font-size: 30px;
  }

  .blog-list-flex {
    flex-wrap: wrap;
  }

  .blog-icon {
    margin: 0;
  }

  .blog-icontext {
    width: 100%;
    margin: 15px 0 0 0;
  }

}

@media only screen and (max-width:1230.2px) {
/*   .menu ul li {
    margin: 0 20px 0 0;
  } */

}

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

  h2 {
    font-size: 35px;
  }

  .count-headbox h2 {
    font-size: 35px;
  }

  .count-headbox span {
    font-size: 35px;
  }

  .counter-tab .list-group-item-action {
    font-size: 17px;
  }

  .banner-cont p {
    width: 50%;
  }

  .certificate {
    width: 200px;
    height: 200px;
  }

  .about-image-two {
    width: 60%;
    height: 250px;
    left: 40%;
  }

  .about-banner-cont h1 {
    font-size: 35px;
  }


}

@media only screen and (max-width: 1175.2px) {
  .menu-btn-link a {
    padding: 6px 13px;
  }

  .counter-tab .list-group-item-action {
    padding: 10px 15px;
  }

}

@media only screen and (max-width: 1130.2px) {
  .counter-tab .list-group-item-action {
    padding: 10px 12px;
  }

/*   .menu ul li {
    margin: 0 10px 0 0;
    padding: 0;
  } */

}

@media only screen and (max-width: 1101px) {
/*     .menu-btn-box {
        padding: 0 0 0 4px;
    } */
	
	    .menu-btn-text a {
        font-size: 12px;
    }
}

@media only screen and (max-width: 1086px) {
  .counter-tab .list-group-item-action {
    padding: 8px 10px;
  }

  .menu-btn-link a {
    padding: 5px 10px;
  }

  .menu-btn-link a i {
    margin: 0 0 0 5px;
  }

  .menu-btn-text {
    margin: 0 0 0 5px;
  }

}

@media only screen and (max-width: 1060.2px) {
  .counter-tab .list-group-item-action {
    font-size: 16px;
  }

  .process-icon {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

}

@media only screen and (max-width: 1026px) {
/*   .menu ul li {
    margin: 0 10px 0 0;
  } */

  .counter-tab .list-group-item-action {
    padding: 8px 8px;
  }
	
	.menu-btn-text{
		margin:0 0 0 2px;
	}

}

@media only screen and (max-width:1023.2px) {
  .testimonial-card {
    height: 300px;
  }

  .menu ul li {
    margin: 0 20px 0 0;
  }
	
	.click-btn {
		right: -14px;
		font-size: 13px;
	}

}

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

  h1 br {
    display: none;
  }

  h2 {
    font-size: 30px;
  }

  h2 br {
    display: none;
  }

  .count-headbox h2 {
    font-size: 30px;
  }

  .count-headbox span {
    font-size: 30px;
  }

  .mobile-menu {
    display: block;
    width: 30px;
    font-size: 30px;
    color: var(--primary-color);
  }

  .mobile-menu:hover {
    color: var(--secondary-color);
  }

  .offcanvas-header {
    width: 100%;
    justify-content: space-between;
  }

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

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

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

  .offcanvas-header .close-sidebar:hover {
    color: var(--secondary-color);
    border: 2px solid var(--primary-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;
	  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%;
    color: var(--tertiary-color);
    background-color: var(--secondary-color);
    border-bottom: 1px solid #ddd;
    display: block;
    padding: 10px;
  }

  .offcanvas-body .menu ul li a:hover {
    background: var(--primary-color);
  }

  .offcanvas-body .menu ul li:last-child a {
    border-bottom: none;
  }

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

  .offcanvas-body .click-btn {
    right: 20px;
    top: 10px;
  }

  .offcanvas-body .click-btn2 {
    right: 20px;
    top: 10px;
  }

  .offcanvas-body .menu ul li {
    color: var(--tertiary-color);
  }

  .offcanvas-body .menu ul li:hover {
    color: var(--tertiary-color);
  }

  .offcanvas-body ul.sub-menu {
    padding: 0 0 0 0;
    top: 0;
    position: static;
    border-radius: 0;
    width: 100%;
    height: auto;
    overflow: visible;
  }

  .offcanvas-body ul.sub-menu li a:hover {
    background: var(--fourth-color);
  }

  .offcanvas-body .menu ul li:hover ul.sub-menu {
    display: none;
    width: 100%;
  }

  .offcanvas-body ul.sub-menu li a {
    color: var(--tertiary-color);
    background: var(--primary-color);
  }

  .offcanvas-body ul.sub-menu-2 {
    padding: 0 0 0 0;
    top: 0;
    position: static;
    border-radius: 0;
    width: 100%;
    overflow: visible;
  }

  .offcanvas-body .menu ul li:hover ul.sub-menu-2 {
    display: none;
    width: 100%;
  }

  .offcanvas-body ul.sub-menu-2 li a {
    color: var(--tertiary-color);
    background: var(--primary-color);
  }

  .menu ul li.active ul.sub-menu li a {
    color: var(--tertiary-color);
    font-family: poppins;
  }

  .offcanvas-body ul.sub-menu-2 li a:hover {
    background: var(--fourth-color);
  }

  @keyframes slideSubMenu {
    from {
      transform: translateY(0);
    }

    to {
      transform: translateY(0);
    }
  }

  .menu-btn-box {
    display: none !important;
  }

  .offcanvas-body .menu-btn-box {
    width: 100%;
    padding: 0;
    border-left: none;
    display: block !important;
    margin: 20px 0 0 0;
  }

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

  .offcanvas-body .menu-btn-link {
    width: 100%;
    margin: 15px 0 0 0;
    text-align: left;
  }

  .offcanvas-body .menu-btn-link a {
    font-size: 16px;
    padding: 10px 20px;
  }

  .offcanvas-body .menu-btn-link a i {
    margin: 0 0 0 10px;
    font-size: 16px;
  }

  .menu-btn-text a {
    font-size: 16px;
  }
	
	.menu-icon {
        width: 30px;
        font-size: 30px;
    }
	
	.menu-btn-text {
    margin: 0 0 0 10px;
}

  .slider {
    height: 500px;
  }

  .banner-image {
    width: 100%;
    height: 500px;
    margin: 0 0 0 0;
  }

  .banner-cont {
    padding: 0;
    background: rgba(0, 0, 0, 0.5);
  }

  .banner-cont h5 {
    color: var(--tertiary-color);
    font-size: 16px;
  }

  .banner-cont h1 {
    width: 100%;
    color: var(--primary-color);
  }

  .banner-cont p {
    width: 100%;
    color: var(--tertiary-color);
  }

  .counter-tab {
    margin: 40px 0 0 0;
  }

  .counter-tab .list-group-item-action {
    font-size: 18px;
  }

  .counter-flex {
    margin: 0;
    flex-wrap: wrap;
  }

  .counter {
    width: 48%;
    margin: 40px 0 0 0;
    padding: 20px;
  }

  .counter-text p {
    font-size: 16px;
  }

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

  .story-head-text {
    margin: 40px 0 0 0;
  }

  .story-row .col-lg-4:last-child {
    margin: 0 auto;
  }

  .test-head {
    text-align: center;
  }

  .test-headtext {
    text-align: center;
  }

  .test-headtext p {
    margin: 30px 0 0 0;
  }

  .cer-info {
    width: 90%;
  }

  .footer-formbox {
    margin: 0;
    padding: 40px 0;
    background: var(--box-bg-color);
  }

  .footer-formtext {
    padding: 0;
  }

  .footer-form-image {
    display: none;
  }

  .footer-form-bottom-box {
    display: none;
  }

  .footer {
    padding: 10px 0 30px 0;
  }

  .footer-image {
    margin: 30px 0 0 0;
  }

  .footer-link {
    margin: 30px 0 0 0;
  }

  .footer-four {
    padding: 0 0 0 15%;
  }

  .footer-contact {
    margin: 30px 0 0 0;
  }

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

  .logo img {
    width: 100%;
  }

  .about-image {
    width: 100%;
  }

  .about-image-one {
    height: 500px;
  }

  .about-image-one img {
    object-position: top;
  }

  .about-image-two {
    width: 40%;
    height: 250px;
    left: 60%;
  }

  .about-image-two img {
    object-position: top;
  }

  .about-text {
    margin: 40px 0 0 0;
  }

  .process-text h3 {
    font-size: 22px;
  }

  .process-shape {
    right: 35px;
    top: 40px;
    width: 150px;
  }

  .work-box .col-md-6:nth-child(2) .process-shape {
    display: none;
  }

  .team-image {
    height: 350px;
  }

  .team-image img {
    object-position: top;
  }

  .quote-text p {
    width: 90%;
  }

  .faq-text-box {
    width: 100%;
  }

  .inner-banner {
    height: 300px;
  }

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

  .resource-text h3 a {
    font-size: 22px;
  }

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

  .blog-row .col-lg-4:last-child {
    margin: 0 auto;
  }

  .blog-btn-box .blog-btn a {
    font-size: 16px;
  }

  .story-image {
    height: 250px;
  }
	
	.contact-detail{
	justify-content: center;
		column-gap: 20px;
}

  .contact-flex {
    width: 47%;
  }


  .contact-form-row {
    flex-direction: column-reverse;
  }

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

  .contact-form {
    padding: 20px;
  }

  .contact-map {
    width: 100%;
    height: 350px;
    margin: 40px 0 0 0;
  }

  .resource-detail-image {
    height: 400px;
  }

  .service-list h3 {
    font-size: 28px;
  }

  .service-formbox h3 {
    font-size: 28px;
  }

  .service-detail-row {
    flex-direction: column-reverse;
  }

  .service-sidebar {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
  }

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

  .service-formbox {
    width: 48%;
  }

  .service-detail-text {
    width: 100%;
    margin: 0 0 0 0;
  }

  .detail-image {
    height: 400px;
  }

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

  .service-detail-text ul {
    margin: 15px 0 0 0;
  }

  .blog-detail {
    width: 100%;
  }

  .blog-detail-text h4 {
    font-size: 22px;
  }

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

  .blog-detail-text ul {
    margin: 15px 0 0 0;
  }

  .blog-sidebar {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .blog-list {
    margin: 40px 0 0 0;
  }

  .blog-list h3 {
    font-size: 28px;
  }

  .blog-icontext {
    width: calc(100% - 120px);
    margin: 0;
  }

  .blog-icontext ul li {
    margin: 0 5px 0 0;
  }

  .blog-form-sidebar {
    height: 300px;
  }

  .about-banner-cont h1 {
    font-size: 30px;
  }

  .story-box {
    margin: 50px 0 0 0;
  }
	
	    .faq-item .question h3 {
        font-size: 16px;
    }


}

@media only screen and (max-width:851px) {
  .testimonial-card {
    height: 320px;
  }

  .about-image-two {
    left: 50%;
    width: 50%;
  }

  .process-shape {
    right: 0;
  }

  .resource-slide-image {
    height: 250px;
  }
}

@media only screen and (max-width:821px) {
  .testimonial-card {
    height: 350px;
  }
}

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

  h2 {
    font-size: 28px;
  }

  .count-headbox h2 {
    font-size: 28px;
  }

  .count-headbox span {
    font-size: 28px;
  }

  .expert-box .row {
    flex-direction: column-reverse;
  }

  .expert-image {
    width: 100%;
    height: 400px;
    box-shadow: 15px 15px var(--box-bg-color);
  }

  .expert-text {
    margin: 50px 0 0 0;
  }

  .strategy-text {
    width: 100%;
    margin: 50px 0 0 0;

  }

  .story-head-para {
    width: 100%;
  }

  .story-btn {
    width: 100%;
    margin: 20px 0 0 0;
  }

  .story-head-text {
    margin: 20px 0 0 0;
    flex-wrap: wrap;
  }

  .test-headtext p {
    margin: 20px 0 0 0;
  }

  .cer-info {
    width: 100%;
  }

  .logo {
    width: 25%;
  }

  .testimonial-card {
    padding: 20px;
  }

  .quote-text p {
    width: 100%;
  }

  .inner-banner {
    height: 250px;
  }

  .about-image-one {
    height: 400px;
  }

  .team-image {
    height: 300px;
  }

  .team-icon ul li a {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .process-shape {
    right: -50px;
    top: 0;
    width: 200px;
  }

  .resource-image {
    height: 400px;
  }

  .resource-text {
    width: 100%;
    margin: 30px 0 0 0;
  }

  .blog {
    height: 250px;
  }

  .blog-text ul li {
    font-size: 13px;
  }

  .contact-map {
    height: 300px;
  }

  .blog-detail-image {
    height: 450px;
  }

  .about-banner-cont h1 {
    font-size: 28px;
  }


}

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

  .service-sidebar {
    flex-direction: column-reverse;
  }

  .service-list {
    width: 100%;
  }

  .service-formbox {
    width: 100%;
  }

  .blog-detail-image {
    height: 400px;
  }

}

@media only screen and (max-width:650.2px) {
  .testimonial-card {
    height: auto;
  }

  .slider {
    height: 400px;
  }

  .banner-image {
    height: 400px;
  }

  .logo {
    width: 30%;
  }

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

  .about-image-two {
    left: 45%;
    width: 55%;
  }

  .resource-image {
    height: 350px;
  }

  .contact-map {
    height: 275px;
  }

  .resource-detail-image {
    height: 350px;
  }

  .detail-image {
    height: 350px;
  }

  .blog-detail-image {
    height: 350px;
  }


}

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

  h2 {
    font-size: 25px;
  }

  .count-headbox h2 {
    font-size: 25px;
  }

  .count-headbox span {
    font-size: 25px;
  }

  .counter-icon {
    width: 50px;
  }

  .banner-image {
    height: 400px;
  }

  .slider {
    height: 400px;
  }

  .counter-tab .list-group-item-action {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--tertiary-color);
  }

  .counter-tab .list-group-item-action:last-child {
    border: none;
  }

  .expert-image {
    height: 300px;
  }

  .footer-second {
    padding: 0 0 0 0;
  }

  .footer-four {
    padding: 0 0 0 0;
  }

  .footer_copyright p {
    font-size: 13px;
  }

  .process-shape {
    display: none;
  }

  .team-image {
    height: 350px;
  }

  .inner-banner {
    height: 200px;
  }

  .faq-item .question {
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .faq-item .question h3 {
    width: calc(100% - 30px);
  }

  .toggle-icon {
    position: static;
    transform: translateY(0);
  }

  .blog {
    height: 350px;
  }

  .story-image {
    height: 300px;
  }

  .form-input {
    width: 100%;
  }

  .form-input input {
    margin: 0 0 15px 0;
  }

	.contact-detail{
	justify-content: space-between;
		column-gap: 0;
}

  .contact-flex {
    width: 100%;
  }

  .contact-flex:last-child {
    margin: 40px 0 0 0;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .resource-detail-image {
    height: 300px;
  }

  .detail-image {
    height: 300px;
  }

  .about-banner-cont h1 {
    font-size: 25px;
  }

	.value-list .list-group-item{
		font-size:16px;
	}

}

@media only screen and (max-width:501.2px) {
  .logo {
    width: 35%;
  }

  h1 {
    font-size: 25px;
  }

  .expert-image {
    height: 250px;
  }

  .counter {
    width: 100%;
  }

  .value-list {
    flex-wrap: wrap;
	  column-gap:0;
  }

  .value-list .list-group-item {
    border-radius: 0;
  }

  .value-list .list-group-item:nth-child(2) {
    border-width: 0 1px;
  }

  .team-image {
    height: 300px;
  }

  .about-image-two {
    height: 200px;
  }

  .resource-image {
    height: 300px;
  }

  .blog {
    height: 300px;
  }

  .blog-icontext {
    width: 100%;
    margin: 15px 0 0 0;
  }

}

@media only screen and (max-width:461px) {
  .single-blog-banner {
    height: 250px;
  }
}

@media only screen and (max-width:451px) {
  .banner-image {
    height: 450px;
  }

  .slider {
    height: 450px;
  }

  .logo {
    width: 40%;
  }

}

@media only screen and (max-width:401px) {
  .banner-image {
    height: 500px;
  }

  .slider {
    height: 500px;
  }

  .logo {
    width: 45%;
  }

  .team-image {
    height: 250px;
  }

  .about-image-two {
    left: 38%;
    width: 60%;
  }

  .resource-image {
    height: 250px;
  }

  .blog {
    height: 250px;
  }

  .story-image {
    height: 250px;
  }

  .contact-map {
    height: 250px;
  }

  .resource-detail-image {
    height: 250px;
  }

  .detail-image {
    height: 250px;
  }

}

@media only screen and (max-width:351px) {
  .logo {
    width: 50%;
  }
}

@media only screen and (max-width:341px) {
  .single-blog-banner {
    height: 280px;
  }
}

@media only screen and (max-width:331px) {
  .banner-image {
    height: 550px;
  }

  .slider {
    height: 550px;
  }

}