/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@property --progress {
  syntax: '<integer>';
  inherits: true;
  initial-value: 0;
}
@keyframes load {
  to {
    --progress: var(--value)
  }
}
@keyframes background_animation {
  from {
    background-size: 100%;
  }
  to {
    background-size: 110%;
  }
}
@keyframes ripple {
  from {
    opacity: 1;
    transform: scale3d(1, 1, 1);
    transform-origin: center;
    border-width: 0px;
  }
  to {
    opacity: 0;
    transform: scale3d(1.7, 1.7, 1.8);
    transform-origin: center;
    border-width: 13px;
  }
}
:root {
  --dark-color: #0b1f23;
  --light-color: #fff;
  --secondary-color: #151515;
  --text-color: #000000;
  --gray-color: #adadad;
  --accent-color: #006AB8;
  --font-1: "Raleway", sans-serif;
  --font-2: "Poppins", sans-serif;
}
.theme-btn {
  padding: 15px 50px;
  background: #ffffff;
  color: #006AB8;
  border-radius: 0px;
  border: 2px #006AB8 solid;
  line-height: 20px;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
  display: inline-block;
}
.theme-btn:hover {
  background-color: #006AB8;
  color: #fff;
  text-decoration: none;
  border: 2px #006AB8 solid;
}
body {
  font-family: var(--font-2);
  color: var(--text-color);
  background: #fcfcfc;
  font-size: 14px;
  line-height: 26px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-1);
}
h1 {
  font-size: 50px;
}
h2 {
  font-size: 44px;
}
h3 {
  font-size: 30px
}
h4 {
  font-size: 24px;
}
h5 {
  font-size: 18px;
}
h6 {
  font-size: 16px;
}
span, button, a {
  font-size: 1rem;
}
p {
  font-family: var(--font-2);
  font-size: 14px;
  line-height: 26px;
}
ul {
  list-style: disc;
    line-height: 26px;
}
ul li.col {
  display: flex;
  align-items: center;
}
ul li a {
  font-size: 15px;
}
button {
  padding-inline: 1rem;
  padding-block: 0.5rem;
  text-decoration: none;
  transition: all 0.5s;
}
.hover-transform:hover {
  transform: translateY(-10px);
}
button:hover {
  color: black;
}
a {
  text-decoration: none;
}
.w-max-content {
  width: max-content !important;
}
.banner-heading {
  font-size: 5.5rem;
}
.font-1 {
  font-family: var(--font-1);
}
.font-2 {
  font-family: var(--font-2);
}
.ls-2 {
  letter-spacing: 2px;
}
.fs-7 {
  font-size: 0.8rem !important;
}
.fw-black {
  font-weight: 900 !important;
}
.video-e119 {
  width: 60%;
  margin-bottom: -3rem;
  margin-left: -3rem;
}
.form input, .form textarea, .form select {
  background-color: #ffffff;
    padding: 0.5em 1.3em 0.5em 1.3em;
    border-color: gray;
    border-radius: 6px;
    color: #000000;
}
.form textarea{
    max-height: 120px;
}
.form input:focus, .form textarea:focus, .form select:focus {
  box-shadow: none;
  border: solid 1px var(--gray-color);
  background-color: transparent;
  color: currentColor;
}
.form input::placeholder, .form textarea::placeholder {
  color: var(--gray-color);
  font-family: var(--font-2);
  font-size: small;
}
.form .form-select {
  color: #131313;
}
.form-check-input:checked[type=checkbox] {
  --bs-form-check-bg-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="blue" class="bi bi-check-lg" viewBox="0 0 16 16"><path d="M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425a.247.247 0 0 1 .02-.022Z"/></svg>');
}
.form input.form-check-input {
  background-color: transparent;
  border: 1px solid gray;
}
.form input.form-check-input:checked {
  border: 1px solid blue;
  color: blue;
}
.form-control.bg-light {
  color: #3a3a3a;
}
.form-control:focus {
  box-shadow: none;
}
.submit_form-subscribe {
  padding-inline: 2rem;
  padding-block: 0.7rem;
  text-decoration: none;
  transition: all 0.5s;
  color: white;
  background-color: var(--accent-color-1);
  border-radius: 5px;
}
.submit_form-subscribe:hover {
  background-color: var(--dark-bg);
  color: white;
  filter: none;
}
.maps {
  width: 100%;
  height: 480px;
  transition: filter 0.5s;
  display: block;
  filter: grayscale();
}
.maps:hover {
  filter: none;
}
#header {
  transition: all 0.5s ease;
}
header {
  background: #fff;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.1);
}


/* Hero style */
.hero {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  height: 91vh;
  z-index: 1;
}
.hero .caption {
  padding-top: 18rem;
}
.hero .caption h1 {
  font-weight: 800;
  font-size: 50px;
  color: var(--light-color);
  text-transform: uppercase;
  line-height: 1;
}
.hero .caption img {
  height: 140px;
  padding-right: 2rem;
}
.hero .caption hr {
  color: #c7c7c7;
  opacity: 1;
  border-block-width: 3px;
}
.hero .caption p {
  color: var(--light-color);
  font-size: 19px;
  font-weight: 600;
}
/* Intro style */
.intro-sec {
  position: relative;
  border-bottom: 10px #006ab8 solid;
}
.intro-sec hr {
  color: #29ABE2;
    opacity: 1;
    border-block-width: 5px;
    margin-bottom: 30px;
    max-width: 50%;
}
.theme-btn {
  margin-top: 20px;
}
.text-block-1 {
  padding-left: 40px;
}
.journey-block{
	padding:70px 0 30px;
	background: #ffffff;
}
.journey-block .title-block {
    padding-top: 0;
}
.journey-block h2, .journey-block h3, .journey-block h4, .journey-block h5{
    margin:0 0 1rem;
	padding:0;
}
.journey-block h2, .journey-block h3, .journey-block h4, .journey-block h5{
    font-weight: 700;
    color: #006ab8;
}
.j-cta{background-color: #dbdbdb; padding: 15px; margin-bottom:70px;}
.j-cta h4{
	font-family: var(--font-2);
	margin: 0;
}
/* What we do */
.what-we-do {
  position: relative;
}
.head-block {
  background: #006ab8;
  padding: 250px 20px 70px 50px;
  min-height: 790px;
}
.head-block h1 {
  font-weight: 700;
  font-size: 60px;
  color: var(--light-color);
  text-transform: uppercase;
  line-height: 1;
}
.head-block img {
  height: 100px;
  padding-bottom: 1rem;
}
.head-block hr {
  color: #ffffff;
  opacity: 1;
  border-block-width: 5px;
  max-width:50%;
}
/*.head-phn{
	font-size: 26px;
    font-weight: 700;
    text-align: center;
    margin-left: 30px;
    line-height: 1.3;
    background: #f7f7f7;
    padding: 5px 15px;
    border-radius: 4px;
    border: 1px #ddd solid;
}*/
.head-phn{
	font-size: 26px;
    font-weight: 700;
    text-align: center;
    margin-left: 30px;
    line-height: 1.3;
    border-left: 2px #ddd solid;
    padding-left: 15px;
}
.head-phn i{
	display: inline-block;
    font-size: 30px;
    font-weight: 600;
    vertical-align: top;
	margin-right: 10px;
}

/* Num Block */
.num-block {
  background: #f2f2f2;
  padding: 30px 15px;
  min-height: 790px;
}
.num-block .icon{
	display: flex;
    margin-bottom: 30px;
}
.num-block .icon img{
	    width: 64px;
}
.num-block .num, .why-choose .num {
  font-weight: 400;
  font-size: 48px;
  color: #000;
  text-transform: uppercase;
  line-height: 1;
  display: block;
  margin-bottom: 70px;
}
.num-block h3 {
  font-weight: 700;
  font-size: 28px;
  color: var(--accent-color);
  text-transform: uppercase;
  line-height: 1;
}
.num-block hr {
  color: #29ABE2;
  opacity: 1;
  border-block-width: 5px;
  margin-bottom: 30px;
  max-width: 50%;
}
.num-block p {
  color: var(--text-color);
}
/* Why Choose */
.why-choose {
  position: relative;
  background: #f4f4f4;
}
.why-choose .title-block hr {
    max-width: 10%;
}
.title-block {
  padding-top: 15%;
}
.title-block hr {
  color: #006ab8;
  opacity: 1;
  border-block-width: 5px;
  margin-bottom: 30px;
  max-width: 35%;
}
.title-block h1 {
  font-weight: 800;
  font-size: 48px;
  color: #006ab8;
  text-transform: uppercase;
  line-height: 1;
}
.card-block {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
  min-height: 260px;
}
.card-block .num {
  margin-bottom: 30px;
}
.card-block h4 {
  font-size: 24px;
  color: #006ab8;
  font-weight: 700;
}
.card-block p {
  margin-bottom: 0;
}
/* Our value */
.our-value {
  position: relative;
  background: #fcfcfc;
}
.our-value .title-block hr {
    max-width: 20%;
}
.our-value .card-block .icon {
  display: inline-block;
  width: 70px;
  height: 70px;
  margin-bottom: 30px;
}
.our-value .card-block {
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 0;
  margin-bottom: 30px;
  min-height: 320px;
  border: 2px #006ab8 solid;
}
.our-value .card-block h5 {
  font-size: 18px;
  color: #006ab8;
  font-weight: 700;
}
/* Partnerlogo */
.sponser-sec {
  position: relative;
  background: #fcfcfc;
}
.sponser-sec .title-block hr {
  max-width: 10%;
}
.logo-wrap {
  background: #f4f4f4;
  padding: 30px 0;
}
.sponser-sec .title-block {
  padding-top: 0;
  margin-bottom: 30px;
}
/* CTA style */
.cta-outter {
  position: relative;
  padding-bottom: 10em;
}
.cta-sec {
  background: #006ab8;
  position: relative;
  padding: 30px 0;
}
.cta-img {
  position: absolute;
  width: 400px;
  left: auto;
  top: -40px;
}
.cta-img img {
  border: 10px #fff solid;
}
.cta-sec .head-block h1 {
  font-size: 52px;
}
.cta-sec .head-block {
  min-height: auto !important;
  padding: 0px 20px 0px 50px !important;
}
.text-block-2 {
  padding-top: 50px;
}
.text-block-2 p {
  color: #fff;
}
.text-block-2 .theme-btn {
  margin-top: 0px;
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}
.text-block-2 .theme-btn:hover {
    background-color: #fff;
    color: #006ab8;
}
.text-block-2 .head-phn {
    margin-left: 0;
    border-left: none;
    padding-left: 0;
    display: block;
    padding-top: 15px;
    color: #fff;
}
/* sub banner */
.sub-banner {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  padding: 8em 0;
}
.sub-banner .image-overlay {
  background-color: #102535;
  opacity: 0.35;
}
.sub-banner h1 {
  font-weight: 800;
  color: var(--light-color);
  text-transform: uppercase;
  line-height: 1;
}
.sub-banner hr {
  color: #c7c7c7;
  opacity: 1;
  border-block-width: 2px;
  max-width: 88%;
}
.sub-banner p {
  color: var(--light-color);
  font-size: 18px;
  font-weight: 500;
}
/* ABOUT style */
.about-block {
  background-image: url("../image/pattern.jpg");
  background-repeat: repeat;
  background-position: center;
  margin: 70px 0;
}
.about-info {
  background: #fcfcfc;
  padding: 6em;
}
.about-info .title-block {
  padding-top: 0;
  text-align: center;
  margin-bottom: 30px;
}
.about-info .title-block h3 {
  color: #006ab8;
  font-weight: 700;
}
.about-info .title-block hr {
  color: #29abe2;
  max-width: 30%;
  margin: auto;
}
/* Mission & Vision */
.mv-sec {
  position: relative;
  z-index: 1;
  margin-bottom: 6em;
}
.mv-sec .project-card .thumb-img {
  height: 200px;
}
.mv-sec .title-block {
  padding-top: 29%;
}
.mv-sec .title-block hr {
  color: #fff;
  margin-bottom: 10px;
  max-width: 25%;
}
.mv-sec .title-block h1 {
  color: #fff;
}
.mv-sec:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 30%;
  height: 100%;
  background: #257ec0;
  z-index: -1;
}
/* Works */
.works {
  position: relative;
  background: #f4f4f4;
}
.works .title-block hr {
  max-width: 10%;
  margin: 0 auto 15px;
}
.works .title-block p {
  font-size: 16px;
}
.works .project-card .thumb-img {
  height: 200px;
}
.portfolio-cta {
  background: #257ec0;
  padding: 3em 0;
}
.portfolio-cta .title-block {
  padding-top: 0;
  margin-bottom: 30px;
}
.portfolio-cta .title-block hr {
  color: #fff;
  margin-bottom: 10px;
  max-width: 10%;
}
.portfolio-cta .title-block h1, .portfolio-cta p {
  color: #fff;
}
/* Contact style */
.contact-info{margin-bottom:5em;}
.contact-info .title-block {
        padding-top: 0;
    margin-bottom: 70px;
}
.contact-info .card{}
.contact-info .card img{display:block;}
.contact-info .card h3{
	font-family: var(--font-2);
	font-weight: 600;
    color: #006ab8;
    margin-top: 1rem;
    font-size: 24px;
}
.contact-info .card p{
	font-size: 16px;
    margin: 0;
}
.contact-page {
 position: relative;
    background: #006ab8;
    margin: 5em 0;
    padding:0;
}
.contact-page .title-block {
  padding-top: 35%;
}
.contact-page .title-block h1 {
    color: #fff;
}
#map{padding-bottom:30px;}
.contact-page .title-block hr {
    color: #ffffff;
    max-width: 30%;
}
.text-block-3 {
  padding-right: 150px;
  padding-top: 30px;
}
.info-block {
  display: block;
  margin-top:40px;
}
.info-block h5 {
  font-family: var(--font-1);
  font-size: 16px;
    color: #fff;
    font-weight: 600;
    margin: 0;
}
.info-block p, .info-block p a {
  font-family: var(--font-2);
  color: #fff;
}
.info-block a{
	font-size: 36px;
    font-weight: 700;
    line-height: initial;
}

/* portfolio style */
.portfolio {
  position: relative;
	padding: 3em 0em;
	background:#f4f4f4;
}
.portfolio .title-block {
  padding-top: 0;
}
.txt-block {
  display: block;
}
.thumb-img {
  height: 170px;
  overflow: hidden;
  border: 10px #eaeaea solid;
  margin-top: 30px;
}
.project {
  position: relative;
  padding-top: 0 !important;
}
.project .title-block {
  padding: 30px 0;
  background: #257ec0;
}
.project .title-block hr {
  color: #ffffff;
  max-width: 8%;
}
.project .title-block h1 {
  color: #fff;
}
.project-card {
  display: block;
  padding-top: 50px;
}
.project-card h3 {
  font-weight: 700;
  font-size: 24px;
  color: var(--accent-color);
  text-transform: capitalize;
  line-height: 1;
}
.project-card hr {
  color: #29ABE2;
  opacity: 1;
  border-block-width: 5px;
  margin-bottom: 30px;
  max-width: 50%;
}
.project-card .thumb-img {
  height: 270px;
}
/* Success Story */
.success-story {
  background: #f4f4f4;
}
.success-story .title-block hr {
  max-width: 10%;
}
/* Services style */
.services-sec {
  position: relative;
  z-index: 1;
  padding: 6em 0;
}
.services-sec:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 40%;
  background: #257ec0;
  z-index: -1;
}
.services-sec .title-block {}
.services-sec .title-block h3 {
  font-weight: 700;
  font-size: 30px;
  color: #fff;
  text-transform: capitalize;
  line-height: 1;
}
.services-sec h5 {
  font-weight: 600;
  color: #006ab8;
}
.services-sec .title-block hr {
  color: #fff;
  opacity: 1;
  border-block-width: 3px;
  margin-bottom: 30px;
  max-width: 25%;
}
.services-sec .thumb-img {
  height: auto;
}
.navbar-nav {
  text-align: center;
}
.navbar-nav .nav-link {
  border-bottom: 2px solid transparent;
  font-size: 0.9rem;
  font-family: var(--font-2);
  padding-block: 1.2rem;
  color: #000000;
  font-weight: 500;
}
.navbar-nav .nav-link:hover {
  color: #006ab8;
}
.navbar-nav .nav-link.active {
  color: #006ab8;
}
.navbar-nav .nav-link:focus {
  color: #006ab8;
}
.navbar-nav .nav-link {
  position: relative;
}
.navbar-nav .nav-link.active::after {
  opacity: 1;
  content: "";
  width: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  height: 2px;
  background: #29abe2;
  position: absolute;
  bottom: 10px;
}
.navbar-toggler {
  border: none;
  color: var(--accent-color);
}
.navbar-toggler:focus {
  box-shadow: none;
  background-color: transparent;
  color: var(--accent-color);
}
.dropdown-menu {
  background-color: white;
  border-radius: 0;
  border: none;
  padding: 0;
  width: 200px;
  -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.3);
  text-align: center;
}
.dropdown-item {
  padding-block: 0.75rem;
  color: var(--dark-color);
  font-family: var(--font-2);
  font-size: 1rem;
  font-weight: 500;
  padding-inline: 0.75rem;
}
.dropdown-item.active {
  color: var(--accent-color);
  background-color: white;
}
.dropdown-item:hover {
  background-color: var(--accent-color);
  color: white;
}
.dropdown-item:focus {
  color: var(--accent-color);
}
.dropdown-toggle::after {
  border-top: 0.3em solid var(--accent-color);
  vertical-align: 0.1em;
}
.section {
  padding: 6em 0em;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.heading-title {
  margin-bottom: 40px;
}
.heading-title h1 {
  font-size: 40px;
  color: var(--accent-color);
  font-weight: 700;
}
.subheading {
  font-family: var(--font-1);
  font-weight: 600;
  font-size: 23px;
  color: var(--accent-color);
}
/*.r-container {
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
}*/
.container {
  max-width: 1240px;
}
.bg-dark-color {
  background-color: var(--dark-color);
}
.bg-light-color {
  background-color: var(--light-color);
}
.bg-secondary-color {
  background-color: var(--secondary-color);
}
.bg-accent-color {
  background-color: var(--accent-color);
}
.bg-accent-2 {
  background-color: var(--accent-color-2);
}
.bg-accent-opacity {
  background-color: #a55950d5;
}
.accent-color {
  color: var(--accent-color);
}
.accent-color-2 {
  color: var(--accent-color-2);
}
.border-accent-color {
  border-color: var(--accent-color) !important;
}
.border-accent-2 {
  border-color: var(--accent-color-2) !important;
}
.border-6 {
  border-width: 0.6rem !important;
}
.text-gray {
  color: var(--gray-color) !important;
}
.text-secondary-color {
  color: var(--secondary-color);
}
.bg-accent-color-hover:hover {
  background-color: var(--accent-color);
  color: white;
}
.bg-dark-transparent {
  background-color: #232323b7;
}
.btn {
  font-size: 1.1rem;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 48px 14px 48px;
}
.btn-accent {
  background-color: var(--accent-color);
  color: white;
  transition: all 0.5s;
}
.btn.btn-accent:disabled {
  background-color: var(--accent-color);
}
.btn-accent:hover {
  background-color: var(--dark-color);
  color: white;
  border: 1px solid white;
}
.btn-dark-color {
  background-color: var(--dark-color);
  color: white;
  border: 1px solid white;
  transition: all 0.5s;
}
.btn-dark-color:hover {
  background-color: var(--accent-color);
  color: white;
}
.btn-accent-outline {
  background-color: transparent;
  border: 3px solid var(--accent-color);
  color: var(--accent-color);
}
.btn-accent-outline:hover {
  background-color: var(--accent-color);
  color: white;
}
.btn-white-accent {
  background-color: white;
  color: var(--accent-color);
  border: 3px solid transparent;
}
.btn-white-accent:hover {
  background-color: transparent;
  border-color: white;
  color: white;
}
.btn-white-outline {
  background-color: transparent;
  border-color: white;
  color: white;
  border-width: 3px;
}
.btn-white-outline-hover:hover {
  background-color: transparent;
  border-color: white;
  color: white;
}
.btn-white-outline:hover {
  background-color: white;
  color: var(--accent-color);
}
.image-overlay {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: #0b1f23;
  opacity: 0.3;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  z-index: -1;
}
.image-overlay-gradient {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: transparent;
  background-image: linear-gradient(0deg, var(--accent-color) 2%, #00000027 69%);
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  opacity: 0.655;
}
.overlay {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: #29292987;
  opacity: 0.5;
  z-index: -1;
}
.bg-overlay {
  background-color: #2d222778;
}
.logo-container {
  max-width: 270px;
}
.logo-image {
  max-width: 300px;
}
.divider {
  display: flex;
  align-items: center;
}
.divider::after {
  display: block;
  content: "";
  border-bottom: 0;
  flex-grow: 1;
  border-top: 3px solid #8692af;
  max-width: 30px;
  min-width: 30px;
}
.divider-element {
  letter-spacing: 2px;
  flex-shrink: 0;
  flex-grow: 1;
  margin: 0;
  margin-left: 1rem;
  font-weight: 400;
}
.text-title {
  font-size: 5.6rem;
}
.image-infinite-bg {
  height: 90vh;
}
.animation-bg {
  animation: background_animation 10s forwards;
}
.bg-attach-fixed {
  background-attachment: fixed;
}
.social-container {
  display: block;
}
.social-container.social-large .social-item {
  width: 35px;
  height: 35px;
  font-size: 23px;
}
.social-item {
  font-size: 16px;
  color: #fff;
  border: 1px solid transparent;
  margin-bottom: 10px;
  display: block;
}
.social-item i {
  margin-right: 10px;
}
.social-container.accent .social-item {
  background-color: var(--accent-color);
  color: white;
}
.social-container.accent .social-item:hover {
  text-decoration: underline;
}
.social-container.share .social-item {
  background-color: var(--accent-color);
  color: white;
}
.social-container.share .social-item:hover {
  background-color: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
}
.social-container.team .social-item {
  width: 1.8rem;
  height: 1.8rem;
  font-size: 16px;
}
.social-item:hover {
  text-decoration: underline;
}
.social-container .share-button {
  background-color: var(--accent-color-1);
  aspect-ratio: 1/1;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.team-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.team-container .team-description {
  background-color: var(--dark-color);
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 1rem;
  color: white;
}
.team-container .team-name {
  font-weight: 600;
  font-family: var(--font-1);
  font-size: 1.3rem;
}
.team-container .team-designation {
  color: var(--accent-color);
  font-size: 14px;
}
.team-container .team-social {
  position: absolute;
  left: 5px;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  transition: all 0.5s;
  justify-content: center;
  transform: translateX(-3rem);
  gap: .7rem;
}
.team-social .social-item {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
}
.team-container:hover .team-social {
  transform: translateX(0);
}
.share-button:hover {
  background-color: var(--accent-color);
}
.nav-tabs {
  border-bottom: none;
}
.nav-tabs .nav-link {
  background-color: transparent;
  color: var(--accent-color);
  border: none;
  position: relative;
}
.nav-tabs .nav-link:hover {
  border: none;
  color: white;
}
.nav-tabs .nav-link.active {
  background-color: transparent;
  border: none;
}
.nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-color);
}
.breadcrumb {
  align-items: center;
}
.breadcrumb .breadcrumb-item > a {
  color: white;
}
.breadcrumb .breadcrumb-item.active {
  color: var(--accent-color);
}
.breadcrumb-item + .breadcrumb-item::before {
  color: white;
}
.swiper-pagination {
  margin-block: 1rem;
  position: relative;
}
.swiper-slide {
  padding: 0.5rem;
}
.swiper-pagination .swiper-pagination-bullet {
  background-color: white;
  opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}
.swiper-navigation {
  position: absolute;
  right: 0;
  left: 30%;
  bottom: 1.5rem;
  z-index: 10;
  padding-inline: 1rem;
}
.swiper-prev-btn, .swiper-next-btn {
  color: white;
  font-size: 2rem;
  background: transparent;
  border: none;
}
.swiper-prev-btn:hover, .swiper-next-btn:hover {
  color: #fff;
}
.swiper-prev-btn:disabled, .swiper-next-btn:disabled, .swiper-button-disabled {
  border: none;
  opacity: 0.4;
}
.video-container {
  aspect-ratio: 3/2;
  background-size: cover;
  background-position: center;
  position: relative;
  border: 5px solid white;
  border-radius: 10px;
}
.video-iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.video-btn {
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: 4rem;
  background-color: var(--accent-color);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  font-size: 2rem;
  color: white;
  border: none;
  opacity: 0.7;
}
.video-btn:hover {
  opacity: 1;
  color: white;
}
.border-custom {
  border-width: 0px 1px 0px 0px;
  border-color: var(--accent-color);
  border-style: solid;
}
.card {
  border: none;
  border-radius: 10px;
  transition: all 0.5s;
  position: relative;
  transition: all 0.5s;
  color: var(--text-color);
}
.card.card-dark, .card.bg-dark-color {
  background-color: var(--dark-color);
  color: white;
}
.card.card-dark:hover {
  background-color: var(--accent-color);
}
.card.card-accent, .card.bg-accent-color {
  background-color: var(--accent-color);
  color: white;
}
.card.card-accent:hover {
  background-color: var(--dark-color);
}
.card-hover-border-bottom.bg-dark-color {
  border-bottom: 0.6rem solid var(--dark-color);
}
.card-hover-border-bottom:hover {
  border-bottom: 0.6rem solid var(--accent-color);
}
.icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 2rem;
  transition: all 0.5s;
}
.image-box {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.5s;
  padding: 3em 2em;
  font-size: 14px;
}
.image-box img {
  width: 5rem;
}
.icon-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.icon-list .list-item {
  display: flex;
  flex-direction: row;
}
.icon-list .list-item span {
  font-size: 3.7rem;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--font-1);
  line-height: 1;
  opacity: 0.2;
  margin-right: -1rem;
}
.icon-list .list-item p {
  font-size: 14px;
}
.card.icon-box {
  padding: 1em;
}
.card.icon-box h3 {
  font-size: 52px;
}
.icon-box i {
  font-size: 50px;
}
.list .icon-box {
  width: 4.3rem;
  height: 4.3rem;
}
.card .card-title {
  font-size: 1.3rem;
  font-family: var(--font-1);
  font-weight: 600;
  line-height: 1;
  color: white;
  transition: all 0.5s;
}
.card .card-title:hover {
  color: var(--accent-color);
}
.card .icon-box.bg-accent-color {
  background-color: var(--accent-color);
  color: white;
}
.card .icon-box.accent-color-2 {
  color: var(--accent-color-2);
  font-size: 4rem;
}
.card:hover .icon-box.accent-color-2 {
  color: white;
}
.card.card-outline-hover {
  border: 3px solid transparent;
}
.card.card-outline-hover:hover {
  background-color: transparent;
  border: 3px solid var(--accent-color);
  transform: none;
  color: #131313;
}
.card-overlay:hover {
  transform: translateY(-20px);
}
.card:hover .icon-box.bg-accent-color {
  background-color: white;
  color: var(--accent-color);
}
.card-overlay .card-body {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /* background-color: #f1260280; */
  background: linear-gradient(0deg, #f1260280 60%, #00000082 100%);
  opacity: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: all 0.5s;
}
.card-overlay:hover .card-body {
  opacity: 1;
  transform: scaleY(1);
}
.card:hover .card-image img {
  transform: scale(1.2);
}
.request-loader {
  position: relative;
  height: 70px;
  width: 70px;
  border-radius: 50% !important;
  /* border: solid 1px rgba(255, 255, 255, 0.5); */
  background-color: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent-color);
  font-size: 25px;
}
.request-loader:hover {
  border: solid 1px rgba(255, 255, 255, 0.5);
  color: var(--accent-color);
  background-color: transparent;
}
.request-loader::after, .request-loader::before {
  opacity: 0.2;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  color: rgba(255, 255, 255, 0.5);
  border: 0px solid currentColor;
  border-radius: 50%;
  animation-name: ripple;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(.65, 0, .34, 1);
  z-index: 0;
}
.request-loader::after {
  animation-delay: 0.4s;
  animation-duration: 3s;
}
.request-loader::before {
  animation-delay: 0.1s;
  animation-duration: 2.5s;
}
.r-progress {
  --value: 17;
  --progress-color: var(--accent-color);
  --secondary-progress-color: var(--gray-color);
  --animation-duration: 2000;
}
.r-progress-bar {
  position: relative;
  height: 8px;
  background-color: var(--secondary-progress-color);
  display: flex;
  border-radius: 10px;
  /* overflow: hidden; */
}
.r-progress-bar .progress-value {
  height: 100%;
  width: calc(var(--progress) * 1%);
  background-color: var(--progress-color);
  position: relative;
  border-radius: 8px;
  animation: load;
  animation-fill-mode: forwards;
  animation-duration: calc(var(--animation-duration) * 1ms);
  animation-timing-function: linear;
  animation-delay: 500ms;
  color: black;
}
.r-progress-bar.percentage-label::after {
  counter-reset: percentage var(--progress);
  content: counter(percentage) '%';
  display: block;
  position: absolute;
  left: calc((var(--progress) * 1%));
  animation: load;
  animation-fill-mode: forwards;
  animation-duration: calc(var(--animation-duration) * 1ms);
  animation-timing-function: linear;
  animation-delay: 500ms;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  font-family: var(--font-2);
  bottom: calc(100% + 0.5rem);
}
.circular-progress {
  position: relative;
  width: 10rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: conic-gradient(var(--progress-color) calc(var(--progress) * 3.6deg), var(--secondary-progress-color) 0deg);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: load;
  animation-fill-mode: forwards;
  animation-duration: calc(var(--animation-duration) * 1ms);
  animation-timing-function: linear;
  animation-delay: 500ms;
}
.circular-progress .progress-value {
  background-color: var(--secondary-color);
  position: absolute;
  width: calc(100% - 15px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  flex-direction: column-reverse;
  animation: load;
  animation-fill-mode: forwards;
  animation-duration: calc(var(--animation-duration) * 1ms);
  animation-timing-function: linear;
  animation-delay: 500ms;
}
.circular-progress.percentage-label::after {
  counter-reset: percentage var(--progress);
  content: counter(percentage) '%';
  animation: load;
  animation-fill-mode: forwards;
  animation-duration: calc(var(--animation-duration) * 1ms);
  animation-timing-function: linear;
  animation-delay: 500ms;
  z-index: 2;
  position: relative;
  font-family: var(--font-1);
  font-size: 2.8rem;
  font-weight: 700;
}
.circular-progress .progress-value::before {
  content: var(--title);
}
.ifr-video {
  aspect-ratio: 16/9;
  width: 100%;
}
.post-button {
  background-color: transparent;
  color: var(--accent-color) !important;
  border: none !important;
}
.post-button:hover {
  background-color: transparent !important;
  color: var(--accent-color) !important;
  transform: scale(1.15);
}
.card.with-border-bottom {
  border-bottom: 5px solid var(--accent-color) !important;
}
.list.list-style-accent i {
  color: var(--accent-color);
  font-size: 1.6rem;
}
.list-flush-horizontal {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin: 0;
  padding: 1rem;
}
.list-flush-horizontal .list-item:first-child, .list-flush-horizontal .list-item {
  border-right: 1px solid #d1d1d1;
}
.list-flush-horizontal .list-item:last-child {
  border-left: 1px solid #d1d1d1;
  border-right: none;
}
.list-flush-horizontal .list-item:nth-last-child(2) {
  border: none;
}
.list-group .list-group-item {
  background-color: transparent;
  border-color: #d1d1d1;
  color: var(--text-color);
}
.list-group .list-group-item .link {
  color: var(--text-color);
}
.list-group .list-group-item .link:hover {
  color: var(--accent-color);
}
.list-group .list-group-item.active {
  background-color: var(--accent-color);
}
.list-group .list-group-item.list-group-item-action:hover {
  background-color: var(--accent-color);
  color: white;
}
.list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  padding-inline: 0.5rem;
}
a.link:hover {
  color: var(--accent-color);
}
.list .link {
  font-weight: 400;
}
.list li {
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
}
.list li .link {
  transition: all 0.5s;
}
.bg-dark-color .list .link {
  color: white;
}
.list.text-black i {
  color: #131313;
}
.list li .link:hover, .list li .link:hover i {
  color: var(--accent-color);
}
.card .link {
  color: var(--text-color);
  transition: color 0.5s;
}
.card .link:hover {
  color: var(--accent-color);
}
.link.accent-color {
  color: var(--accent-color);
  transition: color 0.5s;
}
.link.accent-color:hover {
  color: var(--dark-bg);
}
.link {
  color: #131313;
  cursor: pointer;
}
.link:hover {
  color: #3a3a3a;
}
.link-white {
  color: white;
}
.link-white:hover {
  color: var(--accent-color);
}
.glass-effect {
  background: #a55950d5;
  backdrop-filter: blur(11px);
  -webkit-backdrop-filter: blur(11px);
}
.fs-very-large {
  font-size: 4.125rem;
}
.fs-404 {
  font-size: 15rem;
}
.border-bottom-hover:hover {
  border-bottom: 2px solid var(--accent-color);
}
.testimonial-container {
  background-color: #1c2326b3;
  border-radius: 5px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.rating {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}
.rating li {
  color: #f0ad4e;
}
.rating li.inactive {
  color: #d9d9d9;
}
.logo-partner {
  filter: brightness(200%) contrast(0%) saturate(0%) blur(0px) hue-rotate(0deg);
  transition-duration: 0.5s;
}
.logo-partner:hover {
  filter: none;
}
.faq {}
.faq-wrap .title-block {
    padding-top: 0;
    margin-bottom: 50px;
}
.faq-wrap .title-block hr {
    max-width: 10%;
}
.faq .accordion-item {
  border: none;
}
.faq .accordion-header {
    background: #F6F6F6;
}
.faq .accordion-body {
  padding: 1rem;
}
.faq .accordion-button {
	font-family: var(--font-2);
	background: #f6f6f6;
    padding: 1.5rem;
    color: #257EC0;
	font-weight: 600;
	 margin: 0;
}
.faq .accordion-button:hover {
	background: #257EC0;
    color: #FFF;
}

.faq .accordion-button:not(.collapsed) {
  color: #257EC0;
  background-color: transparent;
  box-shadow: none;
}
.faq .accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}
.career-wrap{}

.career-wrap .team-wrap{
	background:#F4F4F4;
	padding:70px 0px;
}
.team-wrap .title-block, .about-work .title-block, .job-wrap .title-block {
    padding-top: 0;
    margin-bottom: 50px;
}
.team-wrap .title-block hr, .about-work .title-block hr, .job-wrap .title-block hr {
    max-width: 10%;
}
.team-wrap img {
    border:10px #EAEAEA solid;
}
.career-wrap .about-work{
	background:#FCFCFC;
	padding:70px 0px;
}
.about-work .icon-widget {
    background: #F6F6F6;
    padding: 30px;
	border-radius:8px;
	margin-bottom:30px;
	min-height: 250px;
}
.about-work .icon-widget img {
        width: 64px;
    display: block;
    margin-bottom: 1rem;
}
.about-work .icon-widget h3 {
    font-weight: 600;
    font-size: 24px;
    color: var(--accent-color);
    text-transform: capitalize;
    line-height: 1;
}
.about-work .icon-widget p {
    color: var(--text-color);
	margin:0;
}

.career-wrap .job-wrap{
	background:#FCFCFC;
	padding:0 0 140px;
}
.career-item-inner {
    padding: 30px;
    background-color: #F6F6F6;
    position: relative;
	min-height:350px;
	margin-bottom:30px;
}
.career-item-inner h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}
.career-item-inner .item--meta li i {
    margin-right: 10px;
}
.career-item-inner .item--meta li:not(:last-child) {
    margin-right: 30px;
}

.career-item-inner .item--meta li {
    font-size: 14px;
    margin-bottom: 10px;
}

.custom-border {
  border-width: 10px;
  border-style: solid;
  border-color: white;
}
.position-lg-absolute {
  position: absolute;
}
.w-60 {
  width: 60% !important;
}
.shadow-accent-2 {
  -webkit-box-shadow: -90px -23px 0px 0px var(--accent-color-2);
  -moz-box-shadow: -90px -23px 0px 0px var(--accent-color-2);
  box-shadow: -90px -23px 0px 0px var(--accent-color-2);
}
.text-404 {
  font-size: 10rem;
  font-weight: 700;
}
.floating-date {
  position: absolute;
  bottom: -1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
}
.floating-date span {
  font-family: var(--font-2);
  display: flex;
  flex-direction: column;
  text-align: center;
  line-height: 1;
  font-size: 10px;
}
.floating-date strong {
  font-weight: 700;
  font-size: 1.1rem;
}
.floating-left-custom {
  position: absolute;
  left: 0;
  bottom: 3rem;
}
.floating-right-custom {
  position: absolute;
  right: -1rem;
  top: 5rem;
}
.pricing-container {
  display: flex;
  flex-direction: column;
  padding-inline: 2em;
  padding-block: 3em;
  border-radius: 10px;
  border: 1px solid var(--accent-color);
  color: var(--text-color);
  transition: all 0.5s;
}
.pricing-container:hover {
  background-color: var(--dark-color);
  color: white;
  transform: scale(1.1);
}
.pricing-container span {
  font-size: 14px;
}
.footer {
  position: relative;
  padding: 6em 0em 1em;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.footer .overlay {
  background-color: #006ab8 !important;
  opacity: 0.85;
}
.f-logo {
  margin-bottom: 30px;
  display: block;
}
.footer p {
  color: #ffffff;
}
.footer-links {}
.footer-links h5 {
  color: #ffffff;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 30px;
}
.footer-links ul {
  padding: 0;
  margin: 0;
	list-style-type: none;
}
.footer-links ul li a {
  font-size: 16px;
  color: #ffffff;
  line-height: 36px;
}
.footer-links ul li a:hover {
  text-decoration: underline;
}
.copyright {
  border-top: 1px #fff solid;
  text-align: center;
  padding-top: 15px;
  margin-top: 30px;
}
/* Service slide */
.service-title {
  position: relative;
	padding-bottom:40px;
}
.service-title .title-block {
  padding-top: 0;
  position: absolute;
  top: 0;
  left: 10px;
}
.service-title .title-block hr {
  color: #fff;
  max-width: 100px;
}
.service-title .title-block h1 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
}
.service-wrap {
  background: #006ab8;
	    padding: 70px 0;
}


.service-slide {}
.slide-content {
  padding-top: 16%;
}
.slide-content .num {
  font-weight: 400;
  font-size: 30px;
  text-transform: uppercase;
  line-height: 1;
  display: block;
  margin-bottom: 15px;
}
.slide-content h2 {
  font-weight: 700;
  font-size: 24px;
  text-transform: none;
  line-height: 1;
}
.slide-content p {}
.slide-content .theme-btn {
  border-color: #fff;
  background-color: transparent;
  color: #fff;
}
.slide-content .theme-btn:hover {
  border-color: #fff;
  background-color: #fff;
  color: #006ab8;
}

.faq-wrap{
	padding: 70px 0 30px;
    background: #ffffff;
}
.mt-70m {
  margin-top: -70px;
}
.h-250 {
  min-height: 250px !important;
}
.pr-30 {
  padding-right: 30px;
}
.pl-30 {
  padding-left: 30px;
}
.form{
	background-color: #f7f7f7;
    padding: 3em 4em;
}
.form .theme-btn {
    padding:10px 50px;
    background: #ffffff;
    color: #006AB8;
    border-radius: 0px;
    border: 2px #006AB8 solid;
	float: right;
    margin-top: -85px;
	z-index: 1;
    position: relative;
}
.form .theme-btn:hover {
    background: #006AB8;
    color: #FFF;
}
/* Form validation */
.form .wpcf7-not-valid-tip, .form .wpcf7 form .wpcf7-response-output{
color: #dc3232;
font-size: 0.7rem;
text-align: left;
}
.form .wpcf7 form .wpcf7-response-output {
    margin: 0 !important;
    padding: 0.5rem !important;
    border: 1px solid #dc3232 !important;
    text-align:center;
}
.form .wpcf7 form.sent .wpcf7-response-output {
border-color: #46b450 !important;
background-color:#46b450;
color:#fff !important;
}

.blog-list{
	position: relative;
    padding: 70px 0;
}
.blog-post {
    display:block;
    margin-bottom: 30px;
    background-color: #FFF;
    box-shadow: 0 2px 4px #DEDEDE;
}
.blog-post .blog-post-image {
    max-width: 100%;
	position:relative;
    overflow: hidden;
}
.blog-post .blog-post-image .post-date {
    font-size: 14px;
    color: #fff;
    position: absolute;
    background: #006ab8;
    padding: 5px 10px;
    bottom: 0;
    left: 0;
	z-index: 1;
}
.blog-post .blog-post-image img {
    -moz-transition: all 0.4s;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.blog-post:hover .blog-post-image img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.blog-post .post-details {
    padding: 30px;
}

.blog-post .post-details .post-title {
    font-size: 20px;
    color: #006ab8;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 10px;
}
.blog-post .post-details .post-content {
    font-size: 14px;
    line-height: 26px;
    margin-bottom:10px;
}
.blog-post .post-details .theme-btn {
    margin-top: 10px;
    padding: 10px 15px;
    font-size: 14px;
}
.inner-wrapper{
	position:relative;
	padding:70px 0;
}
.inner-wrapper img{
	border:5px #ddd solid;
}
.inner-wrapper h1, .inner-wrapper h2, .inner-wrapper h3, .inner-wrapper h4, .inner-wrapper h5, .inner-wrapper h6{
	font-weight:700;
}
@media only screen and (max-width:993px) {
  h1 {
    font-size: 50px;
  }
  h2 {
    font-size: 38px;
  }
  h3 {
    font-size: 28px;
  }
  h4 {
    font-size: 22px;
  }
  h5 {
    font-size: 18px;
  }
  h6 {
    font-size: 14px;
  }
  span, button, a {
    font-size: 13px;
  }
  .btn {
    font-size: 20px;
    width: 100%;
  }
  .section {
    padding: 2em;
  }
  .divider {
    width: 330px;
  }
  .fs-very-large {
    font-size: 3.125rem;
  }
  .image-absolute-1 {
    left: 45%;
    top: 35%;
  }
  .image-infinite-bg {
    background-size: cover !important;
  }
  #header {
    background: #a55950d5;
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
  }
	.head-phn {
    margin-left: 0;
    border-left: none;
    padding-left: 0;
    display: block;
}
  .logo-container {
    max-width: 200px;
  }
  .border-custom {
    border-width: 0px 0px 1px 0px;
  }
  .outer-margin {
    margin-right: 0;
  }
  .nav-link {
    padding-block: 0.2rem;
  }
  .navbar-nav .nav-link {
    padding-block: 0.5rem;
  }
  .banner-image {
    margin: 0;
    transform: none;
  }
  /* Hero style */
  .hero {
    height: auto;
  }
  .hero .caption {
    padding-top: 25%;
  }
  .hero .caption img {
    height: 70px;
    padding-right: 10px;
  }
  .hero .caption h1 {
    font-size: 36px;
  }
  .hero .caption p {
    font-size: 14px;
  }
  .text-block-1 {
    padding-left: 0;
    padding-top: 30px;
  }
  .heading-title {
    margin-bottom: 30px;
  }
  .heading-title h1 {
    font-size: 30px;
  }
  .intro-sec hr, .head-block hr, .num-block hr, .title-block hr {
    border-block-width: 2px;
  }
  .what-we-do {
    padding: 0;
  }
  .head-block {
    padding: 30px;
    min-height: auto;
  }
  .head-block h1 {
    font-size: 36px;
  }
  .head-block img {
    height: 70px;
  }
  .heading {
    margin-top: -40px;
  }
  .num-block .num, .why-choose .num {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .num-block h3 {
    font-size: 24px;
  }
  .num-block {
    min-height: auto;
    margin-top: 10px;
  }
  .service-title .title-block {
    position: initial;
  }
  .service-title .title-block h1 {
    font-size: 30px;
  }
  .slide-content {
    padding-top: 0;
  }
  .swiper-navigation {
    left: inherit;
    right: 0;
  }
	.works .title-block{
		margin-bottom: 0px;
	}
	.contact-page {
    margin: 0;
    padding: 0;
}
	.contact-page .title-block {
    padding-top: 5%;
}
	.form {
    padding: 2em;
}
	.form .theme-btn {
    float: none;
    margin-top: 0;
}
	.contact-info {
    margin-bottom: 2em;
    margin-top: 2em;
}
	.contact-info .title-block {
    padding-top: 0;
    margin-bottom: 30px;
}
	.contact-info .card {
    margin-bottom: 30px;
    text-align: center;
}
	.contact-info .card h3 {
    font-size: 20px;
}
	.contact-info .card p {
    font-size: 14px;
    line-height: inherit;
}
  .title-block {
    padding-top: 0;
    margin-bottom: 30px;
  }
  .title-block h1 {
    font-size: 30px;
  }
  .card-block h4 {
    font-size: 20px;
  }
  .mt-70m {
    margin-top: initial;
  }
  .h-250 {
    min-height: auto;
  }
  .our-value .card-block {
    min-height: auto;
  }
  .sponser-sec {
    padding: 0 !important;
  }
  .sponser-sec img {
    margin: auto;
    vertical-align: middle;
    display: block;
    height: 70px;
  }
  .cta-outter {
    padding-bottom: 3em;
  }
  .cta-img {
    position: inherit;
    width: 100%;
  }
  .cta-sec .head-block {
    min-height: auto !important;
    padding: 0px !important;
  }
  .cta-sec .head-block h1 {
    font-size: 36px;
  }
  .text-block-2 {
    padding-top: 0;
    text-align: left !important;
  }
  .footer {
    padding: 3em 0em 1em;
  }
  .f-logo img {
    height: 100px;
  }
  .footer-links {
    text-align: center;
    margin-top: 30px;
  }
  .footer-links h5 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .footer-links ul li a {
    font-size: 14px;
    line-height: 30px;
  }
  .social-item {
    font-size: 14px;
  }
  .footer p {
    margin: 0;
    font-size: 12px;
  }
  .navbar-nav .nav-link.active::after {
    height: 1px;
    bottom: 0;
  }
  .testimonial-img {
    margin: 0;
    margin-bottom: 1rem;
  }
  .dropdown-menu {
    width: 100%;
    box-shadow: none;
  }
  .nav-item.dropdown .dropdown-menu {
    background-color: var(--dark-color);
  }
  .nav-item.dropdown .dropdown-menu .dropdown-item {
    color: white;
    text-align: start;
  }
  .video-e119 {
    width: 85%;
    margin-left: -1.5rem;
  }
  .dropdown-item {
    padding-block: 0.35rem;
  }
  .floating-top {
    top: 1.5rem;
  }
  .floating-bottom {
    bottom: 1.5rem;
  }
  .footer-img {
    position: relative;
  }
  .form-appointment-container {
    position: relative;
    transform: translateY(0);
  }
  .list-flush-horizontal {
    flex-direction: column;
  }
  .list-flush-horizontal .list-item:first-child, .list-flush-horizontal .list-item {
    border-right: none;
    border-bottom: 1px solid #d1d1d1;
  }
  .list-flush-horizontal .list-item:last-child {
    border-left: none;
    border-bottom: none;
    border-top: 1px solid #d1d1d1;
  }
  .position-lg-absolute {
    position: static;
  }
  .banner-heading {
    font-size: 2.5rem;
  }
  .text-title {
    font-size: 4rem;
  }
  .floating-left-custom {
    bottom: 1.8rem;
  }
  .floating-right-custom {
    top: 1.6rem;
  }
  /* Sub Banner */
  .sub-banner {
    padding: 4em 0;
    background-attachment: inherit;
  }
  .sub-banner h1 {
    font-size: 30px;
  }
  .sub-banner p {
    font-size: 16px;
  }
  .about-block {
    margin: 40px 0;
  }
  .about-info {
    padding: 2em;
  }
  .mv-sec {
    margin-bottom: 3em;
  }
  .mv-sec:before {
    width: 100%;
    height: 158px;
  }
  .mv-sec .title-block {
    padding-top: 15px;
  }
  .project-card {
      margin-top: 30px;
      padding: 0;
  }
  .services-sec:before {
    height: 15%;
  }
  .theme-btn {
    padding: 10px 30px;
    font-size: 14px;
  }
  .project {
    padding: 0 !important;
  }
  .project-card .thumb-img {
    height: auto;
  }
  .sponser-sec .title-block {
    text-align: center;
  }
  .sponser-sec .title-block hr {
    max-width: 10%;
    margin: 30px auto;
  }
  .contact-page:before {
    width: 0;
  }
  .text-block-3 {
    padding-right: 0;
    padding-top: 0;
  }
  .info-block h5 {
    font-size: 16px;
  }
  .info-block h4 a {
    font-size: 18px;
  }
  .info-block {
    margin-bottom: 15px;
    border-bottom: 1px #ddd solid;
  }
}