/* ===== FONT FACES ===== */

@font-face {
  font-family: "Catamaran";
  src: url("../fonts/Catamaran-Bold.eot");
  src: url("../fonts/Catamaran-Bold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Catamaran-Bold.woff2") format("woff2"),
    url("../fonts/Catamaran-Bold.woff") format("woff"),
    url("../fonts/Catamaran-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Catamaran";
  src: url("../fonts/Catamaran-Medium.eot");
  src: url("../fonts/Catamaran-Medium.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Catamaran-Medium.woff2") format("woff2"),
    url("../fonts/Catamaran-Medium.woff") format("woff"),
    url("../fonts/Catamaran-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Catamaran";
  src: url("../fonts/Catamaran-SemiBold.eot");
  src: url("../fonts/Catamaran-SemiBold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Catamaran-SemiBold.woff2") format("woff2"),
    url("../fonts/Catamaran-SemiBold.woff") format("woff"),
    url("../fonts/Catamaran-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Catamaran";
  src: url("../fonts/Catamaran-Black.eot");
  src: url("../fonts/Catamaran-Black.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Catamaran-Black.woff2") format("woff2"),
    url("../fonts/Catamaran-Black.woff") format("woff"),
    url("../fonts/Catamaran-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Catamaran";
  src: url("../fonts/Catamaran-ExtraBold.eot");
  src: url("../fonts/Catamaran-ExtraBold.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/Catamaran-ExtraBold.woff2") format("woff2"),
    url("../fonts/Catamaran-ExtraBold.woff") format("woff"),
    url("../fonts/Catamaran-ExtraBold.ttf") format("truetype");
  font-weight: bolder;
  font-style: normal;
  font-display: swap;
}

/* ===== BOILERPLATE ===== */

:root {
  --main-color: #00afae;
  --black: #000;
  --white: #fff;
  --green: #003636;
  --yellow: #ff9529;
  --light-green: #01754e;
  --grey: #353533;
  --light-grey: #ccc;
  --purple: #766df4;
  --blue: #1f86ef;
  --grey-2: #8c8594;
  --border: #cdcdcd;
  --border-radius-1: 0.5rem;
  --border-radius-2: 1rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  text-transform: none;
  border: none;
  outline: none;
}

body,
html {
  min-height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Catamaran";
  position: relative;
}

ul,
ol,
dl {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

article,
aside,
audio,
footer,
header,
nav,
section,
video {
  display: block;
}

p {
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

.justify-content-right {
  justify-content: right;
}

/* ===== HEADER ===== */

.header-sec {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

.header-sec .header-1 {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 5%;
  background-color: var(--main-color);
}

.header-1 .social-contacts {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style-type: none;
  padding: 0;
}

.header-1 .social-contacts a {
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border-radius: var(--border-radius-2);
  background-color: var(--white);
  font-size: 16px;
  color: var(--main-color);
  padding-top: 3px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

.header-1 .social-contacts a:hover {
  background: var(--green);
  color: var(--white);
}

/*======== Tooltip Text ========= */

.tooltip-text {
  visibility: hidden;
  position: absolute;
  z-index: 1;
  color: white;
  font-size: 12px;
  background-color: var(--green);
  border-radius: var(--border-radius-1);
  padding: 10px;
}

.header-1 .social-contacts li {
  position: relative;
}

.header-1 .social-contacts li:hover .tooltip-text {
  visibility: visible;
}

#bottom {
  top: 25px;
  left: -50%;
}

/*========= Login ========== */

.header-1 .login {
  list-style-type: none;
  color: var(--white);
  padding: 0;
}
.header-1 .login a {
  color: var(--white);
}

/*========== header-2 ========*/

.header-sec .header-2 {
  background-color: var(--white);
  display: flex;
  justify-content: space-between;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  align-items: center;
  height: 7rem;
  padding: 0 5%;
  opacity: 0.8;
}

.header-sec .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
  padding-right: 0;
  margin: 0;
}

/* ======== Menu ======== */

ul.navbar-nav li a {
  color: var(--main-color);
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
}

.nav-link .active {
  color: var(--green) !important;
}

ul.navbar-nav li a:hover {
  color: var(--green);
}

.navbar-nav .nav-link.show {
  color: var(--main-color);
}

.offcanvas-header h5 {
  z-index: 0;
}

.offcanvas-header .btn-close {
  z-index: 99999;
  color: var(--white);
  opacity: 1;
}

.offcanvas-header.border-bottom {
  border-bottom: 1px solid var(--main-color) !important;
}

/*======= Lets Consult ========= */

.letsConsult a {
  font-weight: 700;
  background: var(--main-color);
  transition: all ease 0.5s;
}

.letsConsult a:hover {
  color: var(--green) !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  background: var(--white);
  animation: slide-down 0.7s;
  opacity: 1;
}

/* @keyframes slide-down {
  0% {
      opacity: 0;
      transform: translateY(-100%);
  } 
  100% {
      opacity: 1;
      transform: translateY(0);
  } 
}*/

.menu-padding {
  padding-top: 40px;
}

/*======== BANNER ========*/

.breadcrumb-home {
  background: url(../../assets/img/home_banner.jpg);
  background-size: cover;
  background-position: 50%;
  position: relative;
  z-index: 1;
}

.breadcrumb:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(2, 51, 52, 0.7);
  z-index: -1;
}

.header-txt {
  margin: 0 auto;
}

.header-txt h2 {
  font-size: 40.64px;
  font-weight: 900;
  line-height: 40.64px;
  margin-bottom: 20px;
  color: #ffffff;
}

.header-txt p {
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  color: var(--white);
}

.header-txt a {
  background: var(--main-color);
  margin-top: 0;
  display: inline-block;
  text-transform: uppercase;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

.header-txt a:hover {
  background: var(--green);
  margin-top: 0;
  display: inline-block;
}

/* ===== V I S H A N  I N F O  ===== */

.vishan-info {
  margin-top: -100px;
  position: relative;
  z-index: 1;
}

.info-text {
  background: var(--main-color);
  position: relative;
  transition: all ease 0.5s;
  border-bottom: 4px solid var(--green);
  transition: all ease 0.9s;
  height: 100%;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
}

.info-text:hover {
  background: var(--green);
  margin-top: -10px;
}

.info-text:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var;
  border-radius: 10px;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.info-text:hover:before,
.info-text:focus:before,
.info-text:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.info-text h5 {
  font-weight: bold;
  font-size: 24px;
  line-height: normal;
  color: var(--white);
}

.info-text p {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: var(--white);
}

/* ===== V I S H A N   A B O U T ===== */

.vishan-about {
  padding: 9vh 0 0;
}

.labout {
  position: relative;
}

.ovelay-text {
  position: absolute;
  top: 5%;
  right: 20px;
}

.ovelay-text h4 {
  width: 180px;
  font-weight: bold;
  font-size: 30px;
  line-height: 24px;
  background: var(--main-color);
  padding: 12px 10px;
  padding-right: 0;
  color: var(--white);
}

.ovelay-text p {
  font-weight: 600;
  font-size: 18px;
  line-height: normal;
  padding-left: 5px;
}

.rabout {
  padding: 0 15px 58px;
}

.rabout h5 {
  color: var(--main-color);
  font-weight: bold;
  font-size: 2rem;
  line-height: 2rem;
  padding-bottom: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.rabout h2 {
  color: var(--black);
  font-weight: bold;
  font-size: 2rem;
  line-height: 2rem;
}

.rabout p {
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 24px;
  color: var(--black);
  margin: 20px 0 35px 0;
}

.rabout h4 {
  font-size: 30px;
  line-height: 40px;
  font-weight: bold;
  margin-bottom: 14px;
}

.rabout h4 span {
  display: block;
  padding-left: 35%;
}

.rtext-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rtext-info p {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8%;
  transition: all ease 0.5s;
}

.rtext-info p:hover,
.rtext-info a:hover {
  color: var(--main-color);
}

.rtext-info span {
  color: #878787;
}

.rtext-info p i {
  background: var(--main-color);
  padding: 8px 12px;
  color: var(--white);
  border-radius: 5px;
}

.rtext-info span {
  display: inline-block;
  margin-left: 10px;
}

.rtext-info span a {
  display: block;
  color: var(--black);
}

.abutton {
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  background: var(--main-color);
  color: var(--white);
  border: none;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 5px;
  transition: all ease 0.5s;
}

.abutton:hover {
  background: var(--green);
  color: var(--white) !important;
}

.rtext-info p {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8%;
  transition: all ease 0.5s;
}

.rtext-info p:hover,
.rtext-info a:hover {
  color: var(--main-color);
}

.rtext-info span {
  color: var(--black);
}
.rtext-info p i {
  background: var(--main-color);
  padding: 8px 12px;
  color: var(--white);
  border-radius: 5px;
}

.rtext-info span {
  display: inline-block;
  margin-left: 10px;
}

.rtext-info span a {
  display: block;
  color: var(--black);
}

.vishan-satisfied {
  transform: translateY(-52px);
  background: var(--white);
}

.vishan-satisfied h2 {
  color: #353533;
  text-align: center;
  font-weight: bold;
  font-size: 42.67px;
  margin-bottom: 10px;
}
.vishan-satisfied p {
  color: var(--black);
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  line-height: 24px;
}

/* ===== T E S T I M O N I A L    S E C T I O N ===== */

.testimonial {
  background-image: url(../img/wmap.png);
  background-color: var(--main-color);
  background-repeat: no-repeat;
  background-position: center center;
  padding: 12vh 0;
  margin: 12vh 0;
}

.testimonial-title {
  margin-bottom: 46px;
}

.testimonial-title h5 {
  color: var(--white);
  font-weight: bold;
  font-size: 2rem;
  line-height: 2rem;
  padding-bottom: 0;
  margin-bottom: 10px;
}

.testimonial-title h2 {
  color: var(--white);
  font-weight: bold;
  font-size: 4rem;
  line-height: 4rem;
}

.star {
  margin-bottom: 17px;
}

.star i {
  display: inline-block;
  color: var(--yellow);
  font-size: 18px;
}

.owl-nav {
  display: none !important;
}

.item-content {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
}

.testimonial-text p {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}

.testimonial-text span {
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}

.testimonial-text span:before {
  content: " ";
  width: 35px;
  border-bottom: 1px solid var(--green);
}

.testimonial-text span:not(:empty)::before {
  margin-right: 0.5em;
}

.owl-dots {
  padding-top: 20px;
}

.owl-dots span {
  background: var(--green) !important;
  width: 14px !important;
  height: 14px !important;
}

.owl-dots .active span {
  background: var(--light-green) !important;
}

/* ===== L E T ' S   T A L K  S E C T I O N ===== */

.talk-sec {
  background-image: url(../../assets/img/talk.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 70px 0;
  margin: 0 0 10vh;
}

.talk-inner {
  padding: 103px 0;
  background: #f8f8f8;
}

.talk-title h5 {
  color: var(--main-color);
  font-weight: bold;
  font-size: 18px;
  line-height: 18px;
  padding-bottom: 0;
  margin-bottom: 10px;
}

.talk-text h2 {
  font-size: 48px;
  line-height: 48px;
  font-weight: bold;
  margin-bottom: 27px;
}

.talk-text h2 span {
  display: block;
}

.talk-text a {
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  padding: 18px 40px;
  border-radius: 5px;
  border: 2px solid var(--main-color);
  text-transform: uppercase;
  cursor: pointer;
  margin-right: 2%;
  display: inline-block;
  transition: all ease 0.5s;
}

.talk-text a.callnow {
  background: var(--main-color);
  color: var(--white);
}

.talk-text a.talk-contact {
  color: var(--green);
}

.talk-text a.callnow:hover {
  border: 2px solid var(--main-color);
  background: none;
  color: var(--green);
}

.talk-text a.talk-contact:hover {
  background: var(--main-color);
  color: var(--white);
  border: 2px solid var(--green);
}

/* ===== C L I E N T   S L I D E ===== */

.marquee {
  overflow: hidden;
}

.marquee-content {
  display: flex;
  animation: scrolling 10s linear infinite;
}

.marquee-item {
  flex: 0 0 10vw;
  margin: 0 0.5vw;
}

.marquee-item img {
  display: block;
  text-align: center;
}

@keyframes scrolling {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translatex(-100%);
  }
}

/* ===== F O O T E R   S E C T I O N ===== */

.footer {
  margin-top: 10vh;
}

/* ===== F O O T E R   T O P   S T A R T ===== */

.footer-top,
.ftext-content-top {
  position: relative;
}

.ftext-content-top {
  bottom: -70px;
  z-index: 1;
  background: var(--white);
}

.ftext-content-top h1 {
  font-size: 2.5rem;
  font-weight: 600;
}

.img-student {
  margin-top: -36px;
  right: -11.42%;
  position: absolute;
  bottom: 0;
}

.ftext-content-top a {
  background: var(--main-color);
  text-decoration: none;
  margin-top: 40px;
  color: var(--white);
  font-size: 17.33px;
  font-weight: 600;
  display: inline-block;
  transition: all ease 0.5s;
}

.ftext-content-top a:hover {
  background: var(--green);
}

/* ===== F O O T E R   B O T T O M   S T A R T ===== */

.footer-bottom {
  background: var(--main-color);
  padding-top: 131px;
  position: relative;
}

.ftext-content {
  padding-bottom: 28px;
}

.ftext-content p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  line-height: 24px;
}

.footer-bottom h5 {
  padding-bottom: 15px;
  margin-bottom: 69px;
  color: var(--white);
  position: relative;
}

.footer-bottom h5:before {
  content: "";
  position: absolute;
  width: 42px;
  bottom: -3px;
  display: inline-block;
  border-bottom: 4px solid var(--white);
}

ul.foot-ul {
  padding-left: 0 !important;
  margin-top: 18px;
  margin-bottom: 0 !important;
}
ul.foot-ul li {
  display: inline-block;
  margin-right: 2%;
}

ul.foot-ul li a {
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  width: 43px;
  height: 43px;
  display: block;
  border-radius: 50%;
  background: var(--white);
  font-size: 21px;
  color: var(--main-color);
  padding-top: 5px;
  transition: all ease 0.5s;
}

ul.foot-ul li a:hover {
  background: var(--green);
  color: var(--white);
}

ul.foot-ul,
ul.use-link {
  padding-left: 0;
  margin-bottom: 0 !important;
}

ul.use-link li {
  display: block;
  margin-bottom: 19px;
}

ul.use-link li:nth-child(5) {
  margin-bottom: 0 !important;
}

ul.use-link li a {
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 20px;
  transition: all ease 0.5s;
}

ul.use-link li a:hover {
  color: var(--green);
}

/* ===== N E W S L E T T E R    F O R M ===== */

.subscribe-email {
  padding: 0px 0 0px 22px;
  overflow: hidden;
  position: relative;
  border-radius: 50px;
  margin-bottom: 20px;
  background-color: var(--white);
  box-shadow: 0 6px 10px 0 rgba(149, 144, 179, 0.15),
    0 15px 50px 0 rgba(182, 182, 224, 0.1);
}

.subscribe-email::after {
  content: "";
  z-index: 1;
  position: absolute;
  bottom: -20px;
  left: -25%;
  transform: rotate(-5deg);
  background-color: var(--white);
  transition: transform 1s cubic-bezier(0.2, 0, 0, 1);
}

.subscribe-email:hover {
  border: none;
  outline: none;
}
.subscribe-email:focus {
  background: var(--main-color);
  color: var(--white);
}

.input-email {
  border: 0 !important ;
  font-size: 1.2rem;
  font-weight: 500;
}

.input-email:focus,
.input-email:active,
.input-email:hover {
  border: none !important;
  outline: 0 !important;
  box-shadow: none !important;
  font-size: 1.2rem;
  font-weight: 500;
}

.input-email::placeholder {
  font-size: 1rem;
  font-weight: 500;
}

.input-email::-ms-input-placeholder {
  /* Edge 12-18 */
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  background: none;
}

.subs-button {
  padding: 16px 0 16px 25px;
  background-color: var(--green);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 500;
  transition: all ease 0.5s;
}

.subs-button:hover,
.subs-button:active {
  background-color: var(--main-color) !important;
  color: var(--white) !important;
  border: 1px solid var(--green) !important;
}

.btn-round {
  border-radius: 40px !important;
}

.subscribe-form-result {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 500;
}

/* Newsletter Form end */

.fcopy-right {
  padding: 20px 0;
  border-top: 1px solid var(--green);
}

.fcopy-right p {
  margin: 0 !important;
  font-size: 1rem;
  line-height: 30px;
  font-weight: 500;
  color: var(--white);
}

/* ===== F O R   M O B I L E  ===== */

.mfooter-top {
  position: relative;
  bottom: -70px;
  z-index: 1;
  padding: 120px 20px 30px;
}

.mtext-content-top {
  padding: 0 16px;
  background: var(--white);
}

.mimg-student {
  position: absolute;
  content: "";
  top: -30%;
  left: 0;
  right: 0;
  width: 250px;
  height: 250px;
  margin: 0 auto;
}

.mtext h1 {
  font-size: 1.5rem;
  font-weight: 600;
  padding-top: 20px;
}

.mtext a {
  background: var(--main-color);
  text-decoration: none;
  margin-top: 20px;
  color: var(--white);
  font-size: 17.33px;
  font-weight: 600;
  display: inline-block;
  transition: all ease 200ms;
}

.mtext a:hover {
  background: #ff3333;
}

.mobile-margin {
  margin-bottom: 50px;
}

.breadcrumb-about {
  background: url(../../assets/img/about.jpg);
  background-size: cover;
  background-position: 50%;
  position: relative;
  z-index: 1;
}

/* ====== H E A D E R   T I T L E ===== */

.header-title {
  position: relative;
}

.header-title p {
  font-size: 20px;
  font-weight: bold;
  line-height: 20px;
  color: #ffffff;
  text-transform: uppercase;
  /* margin-bottom: -1rem; */
  position: absolute;
  top: 0;
  margin: 0 auto;
  bottom: 0;
  left: 0;
  right: 0;
}

.header-content {
  position: relative;
}

.header-title h1 {
  font-size: 120px;
  line-height: 120px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.2);
  padding: 20px 0 0 0;
}

.header-title h2 {
  font-size: 50px;
  line-height: 50px;
  font-weight: 900;
  color: #ffffff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 36%;
}

.header-title img {
  display: block;
  text-align: center;
  margin: 0 auto;
  width: 100px;
  height: 100px;
}
.header-title h4 {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header-foot {
  position: absolute;
  margin: 0 auto;
  bottom: -55px !important;
  width: 100%;
}

.header-foot p {
  font-size: 15px !important;
}

/* ===== A B O U T   P A G E ===== */

.choose-sec {
  /* =====  C H O O S E   S E C T I O N  ===== */
  background: #f5f5f5;
  padding: 9vh 0 104px;
  margin-top: 70px;
}

.choose-title h5,
.work-title h5,
.service-title h5 {
  color: var(--main-color);
  font-weight: bold;
  font-size: 2rem;
  line-height: 2rem;
  padding-bottom: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.choose-title h2 {
  font-size: 48px;
  line-height: 48px;
  font-weight: bold;
  margin-bottom: 27px;
}

.choose-div h3,
.work-div h3,
.service-div h3 {
  font-size: 24px;
  font-weight: 800;
  line-height: normal;
  color: #353533;
  margin-bottom: 0;
}

.choose-div p,
.work-div p,
.service-div p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: #353533;
}

.cright {
  margin-top: 3px;
}

.right-text {
  padding: 24px 0;
}

.right-text:nth-child(2),
.right-text:nth-child(3) {
  border-top: 1px solid #c0c0c0;
}

.right-text h2 {
  font-size: 30px;
  line-height: 30px;
  font-weight: 800;
  margin-bottom: 14px;
}

.right-text p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 0;
}

/* ===== W O R K   S E C T I O N ===== */

.work-sec {
  padding: 12vh 0 0;
}

.work-title h2 {
  font-size: 48px;
  line-height: 48px;
  font-weight: bold;
  margin-bottom: 15px;
}

.work-title p {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 27px;
}

.work-img {
  position: relative;
  overflow: hidden;
  border: 1px solid #e7e7e7;
  height: 609px;
}

.work-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  object-fit: cover;
}

/*=========== CURRENT OPENINGS =================*/

.breadcrumb-candidate {
  background: url(../../assets/img/candidate.jpg);
  background-size: cover;
  background-position: 50%;
  position: relative;
  z-index: 1;
}

.job_posting {
  text-align: center;
  border: 2px dotted var(--main-color);
  padding: 20px;
  border-radius: var(--border-radius-1);
  text-transform: uppercase;
  letter-spacing: 12px;
}

.job-avail a:hover .job-content {
  border: 2px solid var(--main-color);
}

.job-sec {
  padding: 12vh 5% 0 5%;
}

.job-title {
  padding-bottom: 9vh;
}

.job-title h5 {
  color: var(--main-color);
  font-weight: bold;
  font-size: 2rem;
  line-height: 2rem;
  padding-bottom: 0;
  margin-bottom: 10px;
}

.job-title h5 span {
  color: #ffffff;
  background: #02afaf;
  padding: 2px 12px 1px;
  margin-left: 2px;
}

.job-title h2 {
  font-size: 90px;
  line-height: 90px;
  font-weight: 800;
  margin-bottom: 27px;
  margin-top: 15px;
}

.job-card {
  position: relative;
  border: 2px solid var(--border);
  padding: 20px;
  border-radius: 10px;
  margin: 0 0 30px 0;
  transition: all ease 0.5s;
  cursor: pointer;
  position: relative;
  border-bottom: 4px solid var(--main-color);
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
}

.job-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  transition: 0.5s;
  z-index: -1;
}

.job-card:hover::before {
  transform: scale(1);
  box-shadow: 0 0 15px var(--main-color);
}

.job-info p {
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  padding: 0;
  margin: 0 10px 0 0;
  color: var(--grey);
}

.job-info h4 {
  padding: 8px 10px;
  font-weight: bold;
  font-size: 16px;
  line-height: 16px;
  background: var(--main-color);
  color: var(--white);
}

.job-info h1 {
  font-size: 18px;
  line-height: 18px;
  font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.job-info h2 {
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  color: var(--grey-2);
}

.job-card-header .job-txt {
  position: absolute;
  top: 5%;
  right: 5%;
  background: var(--main-color);
  font-size: 15px;
  font-weight: 500;
}

.job-card-header img {
  display: block;
  width: 55px;
  height: 55px;
  margin-bottom: 15px;
}

.job-card-body {
  padding-top: 15px;
}

.job-card-body p {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
}

.list-inline-item span {
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
}

.bg-success {
  background: var(--main-color);
}

.bg-purple {
  background: var(--purple);
}

.bg-purple {
  background: var(--purple);
}

.bg-blue {
  background: var(--blue);
}

.job-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.job-card-footer {
  margin-top: 25px;
  padding: 25px 0 0 0;
  border-top: 1px solid var(--light-grey);
}
.job-card-footer p {
  padding: 0;
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  padding: 0;
  margin: 0 10px 0 0;
  color: var(--grey-2);
}

.job-card-footer p span {
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  padding: 0;
  margin: 0 10px 0 0;
  color: var(--grey-2);
}

.job-card-footer a {
  padding: 0;
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  padding: 0;
  margin: 0 10px 0 0;
  color: var(--grey-2);
}

.job-card-footer a.arrow i {
  font-size: 20px;
  line-height: 20px;
  -webkit-text-stroke: 1px;
  color: var(--main-color);
}

.jobform .text-danger {
  position: absolute;
  left: 10px;
  margin-top: 5px;
  z-index: 9;
}

.text-required {
  color: red;
}

.pagi {
  margin: 20px 0;
  padding: 20px 0;
  text-align: center;
  border-top: 2px solid #777777;
  border-bottom: 2px solid #777777;
}

.pagi a {
  color: #333333;
  text-shadow: 0px 1px #f6f6f6;
  padding: 6px 9px 6px 9px;
  margin-right: 1%;
  border: solid 1px #b6b6b6;
  box-shadow: 0px 1px #efefef;
  -moz-box-shadow: 0px 1px #efefef;
  -webkit-box-shadow: 0px 1px #efefef;
  background: #e6e6e6;
  background: -moz-linear-gradient(top, #ffffff 1px, #f3f3f3 1px, #e6e6e6);
  background: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    color-stop(0.02, #ffffff),
    color-stop(0.02, #f3f3f3),
    color-stop(1, #e6e6e6)
  );
  text-decoration: none !important;
}

.pagi span.current,
.pagi a:hover {
  color: #893a00;
  text-shadow: 0px 1px #ffef42;
  border: solid 1px #ffa200;
  background: #ffc800;
  margin-right: 1%;
  padding: 6px 9px 6px 9px;
  background: -moz-linear-gradient(top, #ffffff 1px, #ffea01 1px, #ffc800);
  background: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    color-stop(0.02, #ffffff),
    color-stop(0.02, #ffea01),
    color-stop(1, #ffc800)
  );
}

.pagi span.disabled {
  color: #ccc;
  text-shadow: 0px 1px #f6f6f6;
  padding: 6px 9px 6px 9px;
  border: solid 1px #b6b6b6;
  margin-right: 1%;
  box-shadow: 0px 1px #efefef;
  -moz-box-shadow: 0px 1px #efefef;
  -webkit-box-shadow: 0px 1px #efefef;
  background: #e6e6e6;
  background: -moz-linear-gradient(top, #ffffff 1px, #f3f3f3 1px, #e6e6e6);
  background: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    color-stop(0.02, #ffffff),
    color-stop(0.02, #f3f3f3),
    color-stop(1, #e6e6e6)
  );
}

/* ===== C O N T A C T   P A G E */

.breadcrumb-contact {
  background: url(../../assets/img/contact.jpg);
  background-size: cover;
  background-position: 50%;
  position: relative;
  z-index: 1;
}

#contact-content {
  margin: 12vh 0;
}

/* ===== M A P ===== */

.sec-map {
  position: relative;
}

.map-overlay {
  width: 100px;
  height: 100px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateY(-50%);
}

/* ===== C O N T A C T   F O R M ===== */

.col-wrap {
  margin-right: 50px;
}

.sec-title h6 {
  color: var(--main-color);
  font-weight: bold;
  font-size: 25px;
}

.sec-title h2 {
  color: #353533;
  font-weight: bold;
  font-size: 38px;
}

.sec-text p {
  font-weight: 500;
  font-size: 18px;
}

.form-control:focus {
  border-color: #02afaf;
  box-shadow: 0 0 0 0.2rem rgba(2, 175, 175, 0.25);
}

#name,
#email,
#phone,
#subject,
#message {
  font-weight: 500;
  font-size: 1.2rem;
}

textarea {
  width: 100%;
  height: 150px;
  padding: 12px 20px;
  box-sizing: border-box;
  border: 2px solid var(--light-grey);
  border-radius: 4px;
  background-color: var(--white);
  font-size: 16px;
  resize: none;
  font-weight: 500 !important;
}

.btn-green {
  background: var(--main-color);
  border: none;
  border-radius: 8px;
  color: var(--white);
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
}

.btn-green:hover {
  background: var(--green);
  color: var(--white);
  transition: all ease-in 200ms;
}

/* ========================================= M A I N   P A G E S   E N D =================================== */

/*========== MODAL Form ====*/

.modal-header {
  border-top: 5px solid var(--main-color);
  padding: 0.5em 1.5em 0.2em 1.5em;
}

.form-floating textarea {
  height: 150px !important;
  width: 100% !important;
}

.form-floating input,
.form-floating textarea {
  outline: none;
  border: none;
  border-bottom: 2px solid var(--main-color);
  border-radius: 0 !important;
  margin: 0;
  padding-left: 0 !important;
  font-weight: 600;
}

.form-floating input:focus,
.form-floating textarea:focus {
  box-shadow: none;
  border-bottom: 2px solid var(--green);
}

.form-floating input:focus ~ label,
.form-floating textarea:focus ~ label {
  color: var(--main-color) !important;
}

.form-floating label {
  padding: 1rem 0 !important;
  font-weight: 500;
}

.btn-unique {
  color: #fff;
  background-color: var(--main-color) !important;
  text-transform: uppercase;
  margin: 0.375rem;
  padding: 0.84rem 2.14rem;
  border-radius: 0.5rem !important;
  font-size: 0.81rem;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}

.btn-unique:hover {
  color: var(--white);
  background-color: var(--green) !important;
}

.btn-unique:focus {
  background-color: var(--main-color) !important;
}

/* ===== JOB DESC =====*/

.job-details-sec {
  position: relative;
  padding: 12vh 0 2vh;
}

div.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 180px;
}

.flex-1 h6 {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.flex-1 small {
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: var(--main-color) !important;
}

.card-body li {
  position: relative;
  padding-left: 25px;
  color: #94a3b8 !important;
  font-size: 1.1rem;
  font-weight: 500;
}

.card-body li:before {
  font-family: "Bootstrap-icons";
  content: "\F135";
  left: 0;
  position: absolute;
  top: 0;
  color: var(--main-color);
}

.desc-rt h5 {
  font-weight: 600;
  font-size: 1.25r em;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.desc-rt p {
  font-weight: 500;
  font-size: 1.1rem;
}

.text-muted {
  color: #94a3b8 !important;
}

.btn-apply a {
  border: 1px solid var(--main-color);
  color: var(--main-color);
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}

.btn-apply a:hover {
  background: var(--main-color);
  color: var(--white);
}

/* ==== Apply Modal ====*/

.jobapply .modal-header {
  background: none;
  border-bottom: 0;
  padding: 0;
}

.jobapply .modal-header .close-btn {
  margin: 0.5rem 1rem 0rem auto !important;
  padding: 0 !important;
}

.text-brand {
  background: #d5deff;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 8px;
  padding: 5px 15px;
  text-transform: uppercase;
  color: var(--green);
}

.jobapply .modal-body h2 {
  font-size: 3rem;
  font-weight: bold;
}

.jobapply .form-floating label {
  display: inline-block;
  padding: 1rem 0.75rem !important;
}

.form-label,
.formFile {
  font-weight: 500;
}

.btn-submit {
  border: 1px solid var(--main-color);
  color: var(--main-color);
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}

.btn-submit:hover {
  background: var(--main-color);
  color: var(--white);
}

/* =====================================

            BLOGS

======================================*/

.blog-sec {
  margin: 80px 0 120px;
}

.blog-title {
  margin-bottom: 50px;
}

.blog-title h5 {
  color: var(--main-color);
  font-weight: bold;
  font-size: 18px;
  line-height: 18px;
  padding-bottom: 0;
  margin-bottom: 10px;
}

.blog-title h2 {
  font-size: 48px;
  line-height: 48px;
  font-weight: bold;
}

.blogs {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}

.blogs {
  border: 1px solid #f1f1f1;
  border-radius: 10px;
  height: 100%;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
}

.blogs:hover {
  background: rgba(244, 240, 236, 0.5);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.blogs:hover h5 {
  color: var(--main-color);
}

p.blog-catagory {
  background: var(--main-color);
  color: white !important;
  max-width: max-content;
  padding: 4px 10px 0 10px;
  margin-bottom: 15px !important;
}

.blog-content-header {
  max-width: 100%;
  height: 212.39px;
  background: url(../img/default.jpg) no-repeat;
  background-size: cover;
  border-top-left-radius: var(--border-radius-1);
  border-top-right-radius: var(--border-radius-1);
}

.blog-content-header img {
  width: 100%;
  height: 100%;
  position: relative;
  border-top-left-radius: var(--border-radius-1);
  border-top-right-radius: var(--border-radius-1);
}

.blog-content-header img::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f1ede1;
}

.blog-content-body {
  padding: 30px 30px 0 30px;
  display: block;
}

.blog-content-body h5 {
  font-size: 1.5rem;
  font-weight: 900;
  color: black;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}

.blog-content-body p {
  margin-bottom: 1.2em;
  font-size: 1em;
  font-weight: 500 !important;
  color: #666;
  text-transform: capitalize;
}

.blog-content-footer {
  padding: 30px;
}

.blog-content-footer span {
  position: relative;
  margin-right: 2px;
  color: #666;
  font-weight: 600;
  font-size: 0.9rem;
}

span.has-dot {
  padding-left: 10px;
}

span.has-dot::before {
  content: "";
  width: 3px;
  height: 3px;
  background: #999;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  display: block;
  left: 2px;
  border-radius: 50%;
}

.our-blogs {
  padding: 0 5%;
}

.blog-header h5 {
  color: var(--light-green);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.blog-header h5 span {
  font-size: 2rem;
  padding: 0 0 0 3px;
}

.blog-img-inner {
  width: 100%;
  height: 508px;
  margin: 0 0 30px 0;
}

.blog-img-inner img {
  width: 100%;
  height: 100%;
  border: 1px solid var(--main-color);
  border-radius: var(--border-radius-2);
}

.blog-body p {
  font-size: 1.2rem;
  line-height: 1.8rem;
  font-weight: 500;
  text-align: justify;
}

.blog-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1fdf0;
  padding: 20px;
  margin: 30px 0 0 0;
  border-radius: var(--border-radius-2);
}

.blog-card img {
  width: 120px;
  height: 120px;
  border: 1px solid var(--main-color);
  margin-right: 20px;
  border-radius: 50%;
}

.posted-info p {
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #5e5e5e;
}

.posted-info h4 {
  font-size: 22px;
  font-weight: bold;
  margin: 10px 0;
}

.blog-ul {
  padding: 10px 0 0 0;
}

ul.blog-ul li a {
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  width: 43px;
  height: 43px;
  display: block;
  border-radius: 50%;
  background: #f1f1f1;
  font-size: 21px;
  color: var(--main-color);
  padding-top: 5px;
  transition: all ease 0.5s;
}

ul.blog-ul li a:hover {
  background: var(--green);
  color: var(--white);
}

ul.blog-ul li {
  display: inline-block;
  padding: 0 6px 0 0;
}

.blog-comments {
  padding: 30px 0 0 0;
}

.blog-comments h4 {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 1px;
  border-bottom: 1px solid #ececec;
  padding-bottom: 14px;
}

.blog-footer {
  padding: 0 0 20px 0;
  border-bottom: 1px solid #ececec;
}

h2.heading {
  text-transform: capitalize;
}

h5 a {
  font-size: 18px;
  font-weight: bold;
  color: #333333;
}

.comment {
  display: flex;
  align-items: start;
  justify-content: start;
  border-bottom: 1px solid #ececec;
}

.comment-img i.bi-person-circle {
  font-size: 70px;
  margin-right: 20px;
}

.dated span.time {
  padding-left: 10px;
}

.form-comment {
  margin-top: 40px;
}

.dated span {
  position: relative;
  margin-right: 10px;
  color: var(--main-color);
  font-size: 1rem;
  font-weight: 500;
}

.dated span.time::before {
  content: "";
  width: 3px;
  height: 15px;
  /* background: #999; */
  border-left: 2px solid var(--main-color);
  position: absolute;
  top: 30%;
  margin-top: -1px;
  display: block;
  left: -3px;
}

a.reply {
  color: var(--main-color);
  font-size: 18px;
  font-weight: 600;
  padding: 5px 20px;
  border-radius: var(--border-radius-2);
  display: inline-block;
  border: 1px solid var(--border);
  text-transform: capitalize;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}

a.reply:hover {
  background: var(--main-color);
  color: var(--white);
  border: 1px solid var(--main-color);
}

.comment p {
  color: #5e5e5e;
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 10px 0;
}

.search-input {
  position: absolute;
  top: 50%;
  left: 70px;
  color: var(--light-grey);
  transform: translateY(-50%);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}

.form-search .form-control:is(:focus, :valid, :disabled) {
  border-color: none !important;
  box-shadow: none !important;
  background: var(--white);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}

.form-search:hover .search_icon {
  background: var(--main-color);
  color: var(--white);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}

.form-search:hover .search {
  border: 1px solid var(--main-color);
}

.form-search .form-control:focus ~ .search-input,
.form-search .form-control:valid ~ .search-input,
.form-search .form-control:disabled ~ .search-input,
.form-search .form-control:not(:placeholder-shown) ~ .search-input {
  position: absolute;
  top: 0;
  display: block;
  color: var(--main-color);
  font-size: 1rem;
  font-weight: var(--semi-bold);
  left: 60px;
  transform: translateY(-50%);
  z-index: 999;
  padding: 0 6px;
  background: var(--white);
  pointer-events: none;
}

.search {
  border-top-right-radius: var(--border-radius-1) !important;
  border-bottom-right-radius: var(--border-radius-1) !important;
}

.categories h3,
.recent-post h3,
.popular-post h3 {
  font-size: 1.3rem;
  color: #1a284f;
  margin: 0 0 1.3em;
  position: relative;
  text-transform: capitalize;
  font-family: "Mukta", sans-serif;
  padding-bottom: 20px;
  font-weight: 700;
}

.categories h3:before,
.recent-post h3:before,
.popular-post h3:before {
  content: "";
  background-color: var(--main-color);
  width: 55px;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 10px;
  z-index: 1;
}

.categories h3:after,
.recent-post h3:after,
.popular-post h3:after {
  content: "";
  background-color: #f2f2f2;
  width: 85%;
  height: 4px;
  position: absolute;
  left: 56px;
  bottom: 0;
  border-radius: 10px;
}

.data-posted a h5 {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}

.data-posted a:hover h5 {
  color: var(--main-color);
}

.img-holder {
  width: 130px;
  height: auto;
  margin-right: 15px;
}

.img-holder img {
  max-width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: var(--border-radius-1);
}

.details span.date {
  font-size: 16px;
  font-weight: 600;
  color: #5f5f5f;
  margin-bottom: 3px;
}

.details h5 {
  font-size: 18px;
  font-weight: bold;
  color: #5f5f5f;
}

.category {
  padding: 12px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f5f5f5;
  border-radius: var(--border-radius-1);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}

.category:hover {
  padding: 12px 25px;
}

.category-list a,
.category h4,
.category span {
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 600;
  color: #5f5f5f;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}

.category-list a:hover .category {
  background: var(--main-color);
}

.category-list a:hover .category h4,
.category-list a:hover .category .post-has {
  color: var(--white);
}

.post_info {
  font-size: 20px;
  font-weight: 500;
  margin: 15px 0 0 0;
}

.input-group {
  position: relative;
  width: 100%;
}

.input-label {
  position: absolute;
  top: 50%;
  left: 20px;
  color: var(--grey);
  pointer-events: none;
  transform: translateY(-50%);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}

.form-input .form-control:focus ~ .input-label,
.form-input .form-control:disabled ~ .input-label,
.form-input .form-control:not(:placeholder-shown) ~ .input-label {
  position: absolute;
  top: 0;
  display: block;
  color: var(--main-color);
  font-size: 1rem;
  left: 15px;
  transform: translateY(-50%);
  z-index: 999;
  padding: 0 6px;
  background: var(--white);
  pointer-events: none;
}

.form-comment h3 {
  font-size: 1.2rem;
  font-weight: 700;
  padding-bottom: 20px;
  position: relative;
}

.form-comment h3:before {
  content: "";
  background-color: var(--main-color);
  width: 55px;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 10px;
  z-index: 1;
}

.form-comment h3:after {
  content: "";
  background-color: #f2f2f2;
  width: 94.5%;
  height: 4px;
  position: absolute;
  left: 56px;
  bottom: 0;
  border-radius: 10px;
}

.post_info {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--light-grey);
  margin-bottom: 30px;
}

.blog-txt span {
  position: relative;
}

.comment-img {
  width: 80px;
  height: 100px;
  border-radius: 50%;
  margin-right: 30px;
}

.comment-img img {
  border: 1px solid var(--green);
  border-radius: 50%;
}

.bi-star {
  color: #e9ecef;
}

.bi-star-fill {
  color: rgb(255, 191, 0);
  color: linear-gradient(
    90deg,
    rgba(255, 191, 0, 1) 50%,
    rgba(255, 234, 0, 1) 100%
  );
}

.submit_star {
  cursor: pointer;
}

.testimonial-block {
  background: var(--white);
  padding: 0.3rem 0.2rem 0 0.2rem;
  position: fixed;
  bottom: 0;
  left: 20px;
  border-top-left-radius: var(--border-radius-2);
  border-top-right-radius: var(--border-radius-2);
  cursor: pointer;
  z-index: 9999;
}

.testimonial-block a {
  display: inline-block;
  color: var(--white);
  background: var(--main-color);
  padding: 0.2rem 0.8rem 0 0.8rem;
  border-top-left-radius: var(--border-radius-2);
  border-top-right-radius: var(--border-radius-2);
  cursor: pointer;
}

/* ===== M E D I A   Q U E R Y =====*/

@media (max-width: 1399px) {
  .rabout h2,
  .blog-title h2 {
    font-size: 2rem;
    line-height: 2rem;
  }

  .job-title h2 {
    font-size: 4rem;
    line-height: 4rem;
  }

  .job-title {
    padding-bottom: 6vh;
  }

  .footer {
    margin-top: 3vh;
  }
}

@media (max-width: 1199px) {
  .rabout h2,
  .blog-title h2,
  .job-title h2 {
    font-size: 4rem;
    line-height: 4rem;
  }

  .rabout h2 {
    font-size: 3rem;
    line-height: 3rem;
  }

  .rabout h4 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 6px;
  }

  .rabout h4 span {
    display: inline-block;
    padding-left: 0;
  }

  .rabout p {
    margin: 20px 0 25px 0;
  }

  .job-title {
    padding-bottom: 6vh;
  }
}

@media (max-width: 991px) {
  .vishan-banner img {
    height: 260px;
  }

  .rabout h4 {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 6px;
  }

  .footer {
    margin-top: 12vh;
  }

  .talk-inner {
    padding: 80px 0;
  }

  .talk-text h2,
  .blog-title h2 {
    font-size: 35px;
    line-height: 40px;
  }

  .job-title h2 {
    font-size: 55px;
    line-height: 55px;
  }

  .job-title {
    padding-bottom: 6vh;
  }

  .blogged {
    margin-bottom: 30px;
  }
}

@media (max-width: 750px) {
  .testimonial {
    padding: 8vh 0;
    margin: 6vh 0;
  }

  .talk-inner {
    padding: 70px 12px;
  }

  .talk-text h2 {
    font-size: 25px;
    line-height: 35px;
  }

  .testimonial h2,
  .blog-title h2,
  .job-title h2 {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }

  .job-title {
    padding-bottom: 4vh;
  }
}

@media (max-width: 579px) {
  .header-top-content {
    display: block;
    text-align: center;
  }

  .header-txt h2 {
    font-size: 25px;
    margin-top: 37px;
    margin-bottom: 8px;
  }

  .header-txt p {
    font-size: 16px;
    line-height: 20px;
  }

  .menu-left,
  .menu-right {
    display: block;
  }

  .menu-right {
    display: flex;
    margin-top: 15px;
    align-items: center;
    justify-content: center;
  }

  .fcopy-right p {
    font-size: 0.5rem;
  }

  .header-title h1 {
    font-size: 60px;
  }

  .header-title h2 {
    font-size: 30px;
  }

  .map-overlay img {
    width: 80px !important;
    height: 80px !important;
  }

  .rabout {
    margin-top: 60px;
  }
  .pt-48 {
    padding-top: 15rem !important;
  }
  .pb-24 {
    padding-bottom: 2rem !important;
  }

  .pb-40 {
    padding-bottom: 4rem !important;
  }
  .pt-72 {
    padding-top: 11rem !important;
  }

  .pl-4 {
    padding-left: 0.8rem !important;
  }

  .vishan-info {
    margin-top: 0;
  }

  .info-text:hover {
    margin-top: 0;
  }
}
