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

:root {
  --primary-color: #223645;
  --secoundary-color: #b83336;
  --secoundary-border: #b83336;
  --white: #ffffff;
}

::selection {
  color: var(--white);
  background: var(--secoundary-border);
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(34, 54, 69, 0.7);
  background-color: var(--white);
  font-style: normal;
  box-sizing: border-box;
}



a {
  text-decoration: none;
  color: var(--white);
  transition: all 0.4s ease;
}

li {
  list-style: none;
}

.fa-solid {
  background: none;
}

/*input::placeholder,*/
/*textarea::placeholder,*/
/*input,*/
/*textarea {*/
/*  font-family: "Poppins" !important;*/
/*}*/

.btn {
  background-color: var(--secoundary-color);
  color: var(--white);
  padding: 20px 34px;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1.12px;
  transition: all 0.4s ease-in;
  border: none;
}

.responsive_btn_container {
  width: 20%;
  position: relative;
  display: none;
}

.responsive_btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.btn4 {
  background-color: var(--secoundary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  font-weight: 500;
  border-radius: 50%;
  font-size: 20px;
  letter-spacing: 1.12px;
  transition: all 0.4s ease-in;
  border: none;
}

.price-btn {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 20px 34px;
  font-weight: 500;
  font-size: 13px;
  border-color: var(--primary-color);
  letter-spacing: 1.12px;
  transition: all 0.4s ease-in-out;
}

.btn2 {
  background-color: var(--white);
  padding: 20px 34px;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1.12px;
  transition: all 0.4s ease-in-out;
  color: var(--primary-color);
}

.btn:hover,
.btn2:hover {
  background-color: var(--primary-color);
  cursor: pointer;
  transition: all 0.2s ease;
}

.price-btn:hover {
  background-color: var(--secoundary-color);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn2:hover {
  color: var(--white);
}

.cv-btn {
  background: #111922;
  color: var(--white);
  padding: 20px 5px;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1.12px;
  transition: all 0.4s ease-in;
  position: relative;
  cursor: pointer;
}

.cv-btn::before {
  content: "";
  position: absolute;
  left: 0%;
  top: 0%;
  width: 50%;
  background: var(--secoundary-color);
  height: 100%;
  transition: 0.5s;
}

.cv-btn:hover::before {
  width: 100%;
}

.cv-btn a {
  position: relative;
  border: 2px solid;
  padding: 15px;
}

.main_container {
  width: 100%;
  position: relative;
  /* max-width: 1800px;/ */
  margin: 0 auto;
  background: #fff;
  overflow: hidden;
}

/* Scroll To Top */

#backToTop {
  position: fixed;
  right: 30px;
  bottom: 130px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: var(--secoundary-color);
  display: none;
  border-radius: 50%;
  z-index: 5;
  transition: all 0.3s;
}

#backToTop i {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -11px;
  margin-top: -12px;
  color: #fff;
  font-size: 25px;
  text-align: center;
}

#backToTop:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

/********** Home ***********/

/* .main-header */
header {
  /*position: fixed;*/
  /*width: 100%;*/
  /*height: 160px;*/
  /*background: var(--white);*/
  /*box-shadow: 0px 10px 30px 0px rgb(53 82 99 / 9%);*/
  /*transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;*/
  /*z-index: 999;*/
  /* max-width: 1800px; */
}

.top-header {
  width: 100%;
  height: 60px;
  background: #000;
  max-width: 1800px;
  margin: 0 auto;
}

.top-header-inner {
  width: 97%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  max-width: 1800px;
}

.top-header-left {
  width: 50%;
  margin: 0;
}

.top-header-left p {
  color: var(--white);
  font-size: 13px;
  margin: 0;
  line-height: 2;
}
.header-social-icon a {
  font-size: 13px;
}

.top-header-left-bottom {
  color: var(--white);
  font-size: 1rem;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}

.top-header-left-bottom p {
  font-size: 0.8rem;
}

.top-header-left-bottom a:hover {
  color: var(--secoundary-color);
}

.header-social-icon {
  width: 23%;
}

.header-social-icon a {
  margin: 0 5%;
}

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

.top-header-right-btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
}

.top-header-right-btn .btn {
  padding: 12px 25px;
}

.top-header-right-btn .btn:hover,
.top-header-right-btn .btn:hover a {
  background: var(--white);
  color: var(--primary-color);
}

.main-header {
  top: 0;
  /* left: 0; */
  width: 100%;
  height: 100px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  background: var(--white);
  box-shadow: 0px 10px 30px 0px rgb(53 82 99 / 9%);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 0 5%;
  max-width: 1800px;
  margin: 0 auto;
}

.logo2 {
  display: none;
}
.main-header .logo img {
  width: auto;
  max-height: 70px;
}

.main-header nav {
  width: 60%;
}

.main-header nav ul {
  display: flex;
  margin: 0;
  padding: 0;
}

.main-header nav ul li {
  position: relative;
}

.main-header nav ul li ul {
  position: absolute;
  left: 0;
  display: none;
  transition: all 0.2s;
  box-shadow: 0px 10px 30px 0px rgb(53 82 99 / 9%);
}

.main-header nav ul li:hover ul {
  display: block;
  margin: -4%;
  box-shadow: 0px 10px 30px 0px rgb(53 82 99 / 9%);
  transition: all 0.6s ease;
  z-index: 9;
  max-width: 200%;
  width: max-content;
  background: white;
}

.main-header nav ul li ul li {
  display: block;
  /* width: 150%; */
  background: var(--white);
  margin: 1% 0;
  border-bottom: 1px dotted #22364524;
  padding: 2px 0;
}

.main-header nav ul li ul li:last-child {
  border-bottom: none;
}

.main-header nav ul li .nav-border::before {
  content: "";
  top: 0;
  border-top: 5px solid transparent;
  position: absolute;
  width: 0%;
  box-sizing: border-box;
  height: 0%;
  transition: all 0.6s ease;
}

.main-header nav ul li:hover .nav-border::before,
.main-header nav ul li a.active::before {
  content: "";
  top: 0;
  border-top: 5px solid var(--secoundary-border);
  position: absolute;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  transition: all 0.6s ease;
}

.main-header nav ul li a {
  height: auto;
  line-height: 50px;
  color: var(--primary-color);
  display: block;
  transition: 0.3s;
  margin: 0 30px;
  padding: 25px 0;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 1.24px;
  position: relative;
}

.main-header nav ul li ul li a {
  height: auto;
  line-height: 35px;
  color: var(--primary-color);
  display: block;
  margin: 0 26px;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  transition: 0.3s;
  border-top: none !important;
  letter-spacing: 1.24px;
}

.main-header nav ul li a:hover,
.main-header nav ul li a.active,
.main-header nav ul li ul li a.sub-active {
  color: var(--secoundary-color);
  transition: all 0.3s ease;
}

.main-header nav ul li a:hover .sub-menu-icon {
  color: var(--secoundary-color);
}

.sub-menu ul li a:hover {
  color: var(--secoundary-color);
  border-top: 0;
}

.sub-menu-icon {
  color: var(--primary-color);
  font-size: 0.6em;
}

.hamburger {
  color: var(--primary-color);
  line-height: 50px;
  font-size: 24px;
  cursor: pointer;
  display: none;
}

.menu_icn {
  width: 20%;
  display: none;
}
.menu_icn img {
  width: 20%;
}

/* Banner */

.banner {
  width: 100%;
  height: 100vh;
  z-index: 0;
}

.slider-container {
  width: 100%;
  height: auto;
}

.slide {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.47);
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-content {
  max-width: 1040px;
  padding: 140px 15px;
  z-index: 2;
}

.slide-content h1 {
  text-align: center;
  color: var(--white);
  font-size: 120px;
  font-weight: bold;
  line-height: 1em;
  letter-spacing: -2.4px;
  margin: 0;
}

.slide-content h5 {
  text-align: center;
  color: var(--white);
  font-weight: 400;
  font-size: 1.1rem;
  max-width: 800px;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.button .btn {
  margin: 0 1%;
}

/* .banner1 {
  background-repeat: no-repeat;
  background-position-x:  center center/cover;
} */

/* .banner2 {
  background:no-repeat center
    center/cover;
}

.banner3 {
  background: url(../webImages/home-slider/slider-3.jpg) no-repeat center
    center/cover;
} */

.slider-btn {
  background: var(--white);
  color: var(--primary-color);
  border-radius: 50%;
  height: 47px;
  width: 47px;
  margin: 0 2.5%;
  box-shadow: 0 0 20px 0 rgba(173, 138, 110, 0.3);
}

.banner .slider-btn {
  top: 55%;
}

.slider-btn::after {
  font-size: 14px;
  font-weight: 600;
}

.slider-btn:hover {
  color: var(--secoundary-color);
}

/* Banner Container */

.banner-container {
  display: flex;
  width: 100%;
  height: 200px;
  justify-content: center;
  margin-bottom: 5%;
}

.banner-container-inner {
  position: absolute;
  width: 65%;
  background-color: var(--white);
  border-style: solid;
  border-width: 5px 0px 0px 0px;
  border-color: var(--secoundary-border);
  margin-top: -120px;
  margin-bottom: 37px;
  padding: 6% 0 0 0;
  display: flex;
  justify-content: center;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
}

.banner-container-inner-content {
  width: 72%;
  text-align: center;
}

.banner-container-inner-content p {
  display: block;
  color: var(--primary-color);
  position: relative;
  margin-bottom: 30px;
  font-weight: 700;
  /* text-align: l; */
  text-transform: uppercase;
}

.banner-container-inner-content h2 {
  font-size: 45px;
  line-height: 1.2;
  color: var(--primary-color);
}

.banner-container-inner-content h2 span {
  color: var(--secoundary-border);
}

/* Section 1 */

.sec1 {
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  margin: 2% 0;
}

.sec1-container {
  width: 70%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  max-width: 1800px;
  margin: 0 auto;
}

.sec1-box {
  width: 30%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.sec1-box img {
  width: 20%;
  height: 60%;
  margin-right: 23px;
  object-fit: contain;
  max-width: 75px;
}
.sec1-box-content h5{
    margin-bottom: 0;
}
.sec1-box-content p {
  margin-bottom: 15px;
  font-weight: 400;
  color: rgba(34, 54, 69, 0.7);
  margin-right: 4px;
    margin-top: 0;
}

.sec1-box-content h5 a {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 700;
  color: var(--primary-color);
}

.sec1-box-content p span a {
  color: var(--primary-color);
}

.sec1-box-content:hover a {
  color: var(--secoundary-color);
}

/* Section 2 Teams */
/*
.sec2 {
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.teams-container {
    width: 70%;
    height: 400px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.team-member {
    width: 20%;
    display: flex;
    flex-direction: column;
    padding: 10px;
    height: 350px;
    box-shadow: 0 10px 50px 0 rgba(173, 138, 110, 0.09);
    background-color: var(--white);
    transition: all 0.5s ease-in-out;
}

.member-image {
    width: 100%;
    height: 75%;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.member-detail {
    padding-top: 5%;
    padding-left: 5%;
    padding-bottom: 5%;
}

.member-detail h5 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.member-detail p {
    margin: 0;
}

.team-member:hover {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: all 0.5s ease-in;
}

.team-member:hover h5 {
    color: var(--secoundary-color);
}

.team-member .member-image {
    transition: all 0.5s ease-in-out;
    filter: brightness(0.8);
}

.team-member:hover .member-image {
    filter: none;
} */

/* Section 3 Brands */

.sec3 {
  width: 100%;
  height: 400px;
  margin-bottom: 4%;
}

.brands {
  width: 100%;
  height: 350px;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  align-items: center;
  max-width: 2200px;
  margin: 0 auto;
}

.brands-title {
  width: 100%;
  display: flex;
  justify-content: center;
}

.brands-title .banner-container-inner-content {
  width: 50%;
}

.brands-logo {
  width: 75%;
}

.brands-logo-inner {
  width: 90%;
  display: flex;
  /* justify-content: space-evenly; */
  align-items: center;
  margin: 0 auto;
}

.brands-logo-inner a {
  align-self: baseline;
}

.brands-logo-inner a img {
  height: auto;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  cursor: pointer;
  transition: all 0.5s ease-out;
  opacity: 1;
}

.brands-logo a img:hover {
  filter: grayscale(0);
}

.brands-slider-btn {
  background: #e2e2e2;
  color: var(--primary-color);
  border-radius: 50%;
  height: 47px;
  width: 47px;
}

.brands-slider-btn::after {
  font-size: 14px;
  font-weight: 600;
}

.brands-slider-btn:hover {
  color: var(--secoundary-color);
}

/* Section 4 CTA Banner */

.sec4 {
  width: 100%;
  height: 350px;
  display: flex;
  align-items: center;
}

.sec4-container {
  width: 100%;
  height: 350px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  max-width: 1800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin: 0;
}

.cta-content h4 {
  font-size: 1rem;
  color: var(--white);
  margin: 0;
  font-weight: 500;
}

.cta-content h4 a:hover {
  opacity: 0.7;
}

.cta-btn {
  padding: 24px 54px;
  font-size: 14px;
}

/* Section 5 Cards */

.sec5 {
  width: 100%;
  height: 700px;
  display: flex;
  /* align-items: center; */
  justify-content: center;
}

.sec5-container {
  width: 70%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec5-card {
  width: 90%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1270px;
}

.sec5-card-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  /* flex-wrap: wrap; */
  box-shadow: 0 10px 50px 0 rgba(173, 138, 110, 0.09);
  background-color: var(--white);
  transition: all 0.5s ease-in-out;
  width: 95%;
  height: 75%;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.sec5-card-img {
  width: 100%;
  height: 528px;
  max-width: 590px;
  max-height: 590px;
  object-fit: contain;
}

.sec5-card-img img {
  width: 100%;
  height: 528px;
  max-width: 590px;
  max-height: 590px;
  object-fit: contain;
}

.sec5-card-content {
  width: 44%;
}

.sec5-card-content h2 {
  font-size: 45px;
  line-height: 1.2;
  letter-spacing: -0.9px;
}

.sec5-card-content span {
  color: var(--secoundary-border);
}

.sec5-card-content p {
  display: block;
  color: rgb(0 46 90 / 0.7);
  position: relative;
  margin-bottom: 30px;
  font-weight: 300;
}

.sec5-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 70%;
}

.sec5-links a,
.sec5-links a.i {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1.12px;
}

.sec5-links a:hover,
.sec5-links a.i:hover {
  color: var(--secoundary-color);
}

/* Section 10 How We Work */

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

.sec10-container {
  width: 100%;
  height: 500px;
  display: flex;
  /* justify-content: space-around; */
  flex-direction: column;
  align-items: center;
  max-width: 2000px;
  margin: 0 auto;
}

.sec10-work-container {
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec10-work-inner {
  width: 60%;
  height: 300px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
}

.sec10-work-inner:before {
  content: "";
  position: absolute;
  border-bottom: 2px solid rgba(68, 75, 81, 0.15);
  height: 80%;
  width: 80%;
  transform: translateY(-50%);
}

.sec10-box {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* padding-bottom: 54px; */
  width: 25%;
  /* background: #111922; */
}

.sec-10-box-inner {
  transition: all 0.5s ease 0s;
  text-align: center;
  box-shadow: 0 10px 50px 0 rgba(173, 138, 110, 0.09);
  border: solid 8px var(--primary-color);
  background-color: var(--white);
  border-radius: 50%;
  width: 165px;
  height: 165px;
  display: flex;
  align-items: center;
  justify-content: center;
  order: 2;
  position: relative;
}

.sec-10-box-inner:hover {
  transition: all 0.5s ease 0s;
  border: 8px solid transparent;
  background: url(../img/how-we-work-hover.jpg);
}

.sec-10-box-inner:hover h4 {
  color: var(--white);
}

.sec-10-box-inner h4 {
  word-break: break-all;
  margin: 0 auto;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
}

.sec10-box-top {
  position: absolute;
  top: -20px;
  right: 0;
  max-width: 65px;
  width: 100%;
  height: 100%;
  max-height: 75px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec10-box-top h3 {
  margin: 0 auto;
  font-size: 35px;
  color: var(--white);
}

.sec10-box1 {
  background-image: url(../img/pr1.png);
}

.sec10-box2 {
  background-image: url(../img/pr2.png);
}

.sec10-box3 {
  background-image: url(../img/pr4.png);
}

/* Section 6 Pricing Plan */

.sec6 {
  width: 100%;
  height: 900px;
  margin-top: 6%;
}

.sec6-container {
  width: 100%;
  height: 900px;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  align-items: center;
}

.sec6-title {
  width: 100%;
  display: flex;
  height: 250px;
  justify-content: center;
  position: relative;
  max-width: 1800px;
  margin: 0 auto;
}

.sec6-pricing-container {
  width: 100%;
  height: 650px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1800px;
  margin: 0 auto;
}

.sec6-pricing-table {
  width: 70%;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.sec6-pricing-box {
  width: 28%;
  height: 600px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  transition: all 0.3s ease-in-out 0s;
  border-top: 5px solid;
}

.sec6-pricing-box:hover,
.price-box-active {
  /* box-shadow: 0 0 10px rgb(0 0 0 / 10%); */
  box-shadow: 0px 10px 30px 0px rgb(53 82 99 / 9%);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  border-top: 5px solid var(--secoundary-border);
}

.price-box-active h6 span {
  color: var(--secoundary-color);
}

.pricing-box-top h3 {
  font-weight: 800;
  font-size: 20px;
  color: var(--primary-color);
}

.pricing-box-top .pricing-box-price {
  display: inline-block;
  border-bottom: 1px solid #dddddd;
}

.pricing-box-top .pricing-box-price h6 span {
  font-size: 3rem;
  line-height: 1;
  font-weight: 800;
}

.pricing-box-top .pricing-box-price h6 span sup,
.pricing-box-top .pricing-box-price h6 {
  font-weight: 400;
  line-height: 1;
  font-size: 1rem;
  margin: 6% 0;
  color: var(--primary-color);
}

.pricing-box-center ul {
  padding: 0;
}

.pricing-box-center ul li {
  padding: 10px 0;
  line-height: 25px;
}

.pricing-box-center ul li:not(:last-child) {
  border-bottom: 1px solid #dddddd;
}

.pricing-strike {
  text-decoration: line-through;
}

/* Section 7 Appointment */

.sec7 {
  width: 100%;
  height: 750px;
  background-image: url(../img/hr1-copy.png);
  background-position: -255px 0px;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5% 0;
}

.sec7-container {
  width: 70%;
  height: 750px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 2000px;
  margin: 0 auto;
}

.sec7-content {
  width: 45%;
  height: 728px;
  display: flex;
  justify-content: center;
}

/*.sec7-content-inner {*/
/*  width: 80%;*/
/*}*/

.sec7-content-inner-top h4 {
  display: block;
  color: var(--primary-color);
  position: relative;
  margin-bottom: 30px;
  font-weight: 700;
  margin-top: 0;
}

.sec7-content-inner-top p {
  text-align: left;
  font-size: 18px;
  line-height: 1.56em;
  letter-spacing: -0.18px;
  color: rgb(0 46 90 / 0.7);
}

.sec7-content-inner-top h2 {
  font-size: 45px;
  line-height: 1.2;
  margin: 0;
  color: var(--primary-color);
}

.sec7-content-inner-center {
  margin: 14% 0;
}

.contact-detail {
  display: flex;
  align-items: center;
  margin: 3% 0;
}

.contact-detail-icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--secoundary-border);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.contact-detail a {
  color: var(--primary-color);
  font-weight: 300;
}

.contact-detail a:hover {
  color: var(--secoundary-color);
}

.location-card h3 {
  font-size: 25px;
  line-height: 1.2;
  display: block;
  color: var(--primary-color);
  position: relative;
  margin-bottom: 30px;
  font-weight: 700;
  margin-top: 0;
}

.sec7-content-inner-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 5% 0;
  width: 75%;
}

.sec7-content-inner-bottom a {
  color: var(--primary-color);
  font-weight: 500;
}

.sec7-content-inner-bottom a:hover {
  color: var(--secoundary-color);
}

.sec7-form {
  width: 50%;
  height: 600px;
  box-shadow: 0 10px 50px 0 rgb(173 138 110 / 9%);
  background-color: var(--white);
  padding: 3%;
}

.sec7-form-container h2 {
  font-size: 20px;
  color: var(--primary-color);
}

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

.sec7-form-container form input,
.sec7-form-container form select,
.sec7-form-container form textarea,
.footer-bottom-left form input,
.footer-bottom-right form input,
.form-control,
.service-form input,
.service-form select,
.service-form textarea,
.courses-category-inner select {
  width: 45%;
  height: 50px;
  font-size: 15px;
  padding: 0 10px;
  margin: 2% 0;
  border: none;
  background: #f3f5f6;
  border-bottom: 2px solid transparent;
  color: var(--primary-color);
  font: inherit;
  font-size: 1rem;
  color: inherit;
  max-width: 100%;
  transition: all 0.5s;
}

.sec7-form-container form select,
.form-control,
.sec7-form-container form input {
  width: 48% ;
  font: inherit;
  font-size: 1rem;
  color: inherit;
  max-width: 100%;
  transition: all 0.5s;
}

.sec7-form-container form textarea {
  width: 100%;
  height: 200px;
  font: inherit;
  font-size: 1rem;
  color: inherit;
  max-width: 100%;
  transition: all 0.5s;
  padding: 10px;
  margin: 2% 0;
  resize: none;
}

input:focus,
select:focus,
textarea:focus,
.comment form input:focus,
.comment form textarea:focus,
.courses-category-inner select {
  outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

/* Firefox */

input[type="number"] {
  appearance: textfield;
}

.sec7-form-container form .btn {
  width: 100% !important;
  background: var(--secoundary-border);
  color: var(--white);
  height: 75px;
  font-weight: 600;
}

.sec7-form-container form .btn:hover {
  background: var(--primary-color);
}

/* Section 8 News */

.sec8 {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 5%;
  margin-bottom: 1%;
}

.sec8-container {
  width: 100%;
  height: auto;
  max-width: 1800px;
  margin: 0 auto;
}

.news-container {
  width: 100%;
  height: 700px;
  display: flex;
  justify-content: center;
}

.news-container-inner {
  width: 70%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.news-box {
  width: 30%;
  /*height: 580px;*/
  transition: all 0.4s;
  box-shadow: 0 0 9px 0 rgb(0 0 0 / 9%);
  background: var(--white);
  border-radius: 0px 0px 0px 40px;
}

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

.news-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 300px;
  transform: scale(1);
  object-fit: cover;
  transition: all 0.6s ease-in-out;
}

.news-content {
  width: 100%;
  /*height: 300px;*/
}

.news-content .news-content-top {
  padding: 0 6%;
}

.news-content .news-content-center {
  padding: 0 6%;
}

.news-content .news-content-center h3 {
  font-size: 25px;
}

.news-content .news-content-center h3 a {
  color: var(--secoundary-color);
}

.news-content .news-content-center h4 {
  font-size: 11px;
}

.news-content .news-content-center h4 span {
  font-size: 13px;
  color: var(--primary-color);
}

.news-content .news-content-bottom h5 a {
  color: var(--primary-color);
  float: right;
  border-bottom: 3px solid var(--secoundary-color);
      margin: 4% 0;
}

.news-content .news-content-center h3 a:hover {
  color: var(--primary-color);
}

.news-content .news-content-bottom h5 a:hover {
  color: var(--secoundary-color);
  border-bottom: 3px solid var(--primary-color);
}

.news-content p {
  font-weight: 300;
  margin-top: 8%;
}

.news-content .news-content-bottom {
  padding: 0 6%;
}

/* Section 9 CTA */

.sec9 {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
}

.sec9-bg1 {
  width: 50%;
  height: 550px;
  background: url(../img/hr1-copy.png) no-repeat center center;
  position: relative;
  z-index: -1;
  background-position: -45% 20px;
}

.sec9-bg2 {
  width: 50%;
  height: 550px;
  background: url(../img/hr2-copy.png) no-repeat center center;
  /* position: relative; */
  z-index: -1;
  background-position: 170% 20px;
  /* margin: auto;
    opacity: .5; */
}

.sec9-container {
  height: 500px;
  width: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.text-light {
  font-weight: 300 !important;
  padding: 0 25%;
  text-align: center;
  font-size: 18px;
  line-height: 1.67em;
}

.text-light span {
  font-weight: 400;
}

.sec9-container .btn {
  padding: 24px 54px;
  font-size: 14px;
}

/* Video Section */

.video-section {
  width: 100%;
  height: 700px;
  margin-top: 3%;
}

.video-section-container {
  width: 90%;
  height: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 1700px;
}

.video-left {
  width: 50%;
  height: 496px;
  top: -45px;
  position: inherit;
  left: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-video {
  color: var(--secoundary-color);
  background: var(--white);
  font-size: 40px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.home-video::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 85px;
  height: 85px;
  transition: all 0.3s;
  border: 4px solid var(--white);
}

.home-video:hover::before {
  width: calc(90px + 14px);
  height: calc(90px + 14px);
}

.vbox-container {
  overflow: hidden;
}

.vbox-content {
  text-align: center;
  width: 50%;
  position: relative;
  overflow: hidden;
  padding: 20px 4%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  margin: 0 auto;
}

.vbox-close {
  color: var(--white);
  width: 28%;
  margin: auto;
  height: 40%;
}

.video-right {
  width: 55%;
  height: 500px;
}

.video-right-inner {
  padding: 140px 190px;
  color: var(--white);
}

.video-right-inner h2 {
  text-align: left;
  color: var(--white);
  margin-bottom: 21px;
  margin-top: 0;
  font-size: 45px;
}

.video-right-inner h2 span {
  color: var(--secoundary-color);
}

.video-right-inner p {
  text-align: justify;
}

.video-right a {
  opacity: 1;
  font-weight: 700;
  border-bottom: 3px solid var(--secoundary-color);
  float: right;
}

.video-right a:hover {
  color: var(--secoundary-color);
  border-bottom: 2px solid var(--white);
}

/* Footer */

footer {
  width: 100%;
  height: 700px;
  position: relative;
  background: #111922;
}

.footer-container {
  width: 100%;
  height: 690px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  max-width: 1800px;
  margin: 0 auto;
}

.footer-top {
  width: 80%;
  height: 530px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.footer-top-box {
  width: 30%;
  height: 500px;
}

.footer-top-box h2,
.footer-top-box p,
.footer-top-box h4 {
  color: var(--white);
  text-align: justify;
}

.footer-top-box-child h4 {
  color: var(--secoundary-border);
  transition: all 0.3s;
  text-decoration: underline;
}

.footer-top-box a:hover h4 {
  color: var(--white);
}

.footer-top-box a:hover i {
  color: var(--secoundary-color);
}

.footer-logo img {
  width: 90%;
  height: 160px;
  /* filter: invert(1) brightness(1.5); */
  object-fit: contain;
}

.footer-social {
  display: flex;
  align-items: center;
}
.footer-bottom-left form {
  display: none !important;
}

.footer-social h5 {
  color: var(--white);
  font-weight: 400;
  font-size: 1rem;
}

.footer-social .social-icons {
  display: flex;
  align-items: center;
  width: 30%;
  justify-content: space-evenly;
}

.footer-social .social-icons a {
  min-width: 20px;
}

.footer-social .social-icons i {
  color: var(--white);
  transition: all 0.3s;
}

.footer-top-box .btn3 {
  width: fit-content !important;
  border: 2px solid var(--secoundary-color);
  color: var(--white);
  padding: 14px 15px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  transition: 0.2s;
  background: transparent;
  cursor: pointer;
}

.footer-top-box .btn3:hover a {
  /* color: var(--primary-color); */
  font-weight: 600;
}

.footer-top-box-child {
  margin: 8% 0;
}

.child2 {
  border-bottom: 1px solid #555758a3;
  border-top: 1px solid #555758a3;
}

.footer-top .box3 {
  display: flex;
  width: 33%;
  align-items: center;
}

.footer-top-box-contact {
  width: 90%;
  /*height: 380px;*/
  background: hsla(0, 0%, 100%, 0.03);
  padding: 5%;
}

.footer-top-box-child3 {
  margin: 5% 0;
  height: 60px;
  width: 100%;
  display: flex;
  text-align: center;
  align-items: end;
}

.footer-top-box-child3 img {
  margin: 0 7% 0 0;
  height: 70px;
  transition: all 0.3s;
  width: 50px;
  object-fit: contain;
}

.footer-top-box-child3 i:hover {
  color: var(--white);
}

.footer-contact {
  color: var(--white);
      text-align: start;
}

.footer-top-box-child32 {
  height: 90px;
  text-align: left;
  align-items: center;
}

.footer-contact h4 {
  margin: 5% 0;
  text-align: start;
}

.footer-contact a:hover {
  color: var(--secoundary-color);
}

.child3 {
  border-top: 1px solid #555758a3;
}

.footer-bottom {
  width: 80%;
  height: 150px;
  border-top: 1px solid #555758a3;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--white);
}

.footer-bottom p a:hover {
  color: var(--secoundary-color);
}

.footer-bottom-left {
  width: 40%;
  justify-content: flex-end;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-bottom-right {
  width: 30%;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-bottom-right form,
.footer-bottom-left form {
  width: 80% !important;
  background: none;
  border-bottom: 2px solid var(--secoundary-border);
  color: var(--primary-color);
  display: flex;
  align-items: center;
}

.footer-bottom-right form input,
.footer-bottom-left form input {
  width: 80% !important;
  margin: 0;
  background: none;
  color: var(--white);
}

.footer-bottom-right form input:focus,
.footer-bottom-left form input:focus {
  border: none;
}

.footer-bottom-right form i,
.footer-bottom-left form i {
  transition: all 0.3s;
  font-size: 25px;
  color: var(--secoundary-color);
}

.footer-bottom-right form i:hover,
.footer-bottom-left form i:hover {
  color: var(--white);
}

.copy-imedia {
  display: flex;
  align-items: center;
  padding-top: 20px;
}

.copy-imedia a {
  display: block;
  color: var(--white);
  line-height: 13px;
  font-size: 16px;
  text-align: left;
  transition: all 0.3s ease-in-out;
}

.copy-imedia a:nth-child(2) {
  font-size: 8.6px;
}

.copy-imedia a span {
  color: #80af41;
  transition: 0.7s;
}

.copy-imedia p {
  color: var(--white);
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}

.copy-imedia a:hover {
  color: var(--secoundary-border);
}

.copy_right {
  font-size: 16px;
}

.copy-imedia img {
  padding: 0 10px;
}

/*************************************************************
                          About Us
*************************************************************/

/* Banner */
.inner-banner {
  width: 100%;
  min-height: 660px;
  z-index: 0;
  /* margin-top: 90px; */
}

.inner-banner-img {
  min-height: 660px;
  width: 100%;
  display: flex;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(34, 54, 69, 0.05);
  background-position: center;
}

.inner-banner-overlay {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #172a359c;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.inner-banner-content {
  max-width: 1040px;
  padding: 140px 15px;
  z-index: 2;
  text-align: justify;
}

.inner-banner-content h1 {
  text-align: center;
  color: var(--white);
  font-size: 60px;
  font-weight: bold;
  letter-spacing: -1.2px;
  margin: 0;
}

.inner-banner-content h5 {
  text-align: center;
  color: var(--white);
  font-weight: 400;
  max-width: 760px;
  font-size: 18px;
  letter-spacing: 0.36px;
  margin: 0;
}

/* Banner Container */

.img1 {
  width: 60%;
  position: relative;
}
.img2 {
  width: 40%;
  position: relative;
}

.about-banner-container {
  display: flex;
  width: 100%;
  height: 400px;
  justify-content: center;
  /* margin-top: -210px; */
}

.about-banner-container-inner {
  position: absolute;
  width: 65%;
  display: flex;
  justify-content: center;
  padding: 0px 0px 0px 0px;
  z-index: 3;
  max-width: 1270px;
  margin-top: -70px;
}

.about-banner-box {
  width: 25%;
}

.about-banner-box-inner {
  background-color: var(--white);
  box-shadow: 0px 10px 50px 0px rgb(53 82 99 / 9%);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin: 0px 10px 0px 10px;
  padding: 65px 25px 35px 25px;
}

.abouut-banner-box-top {
  text-align: center;
}

.abouut-banner-box-top img {
  max-width: 100%;
  height: auto;
}
.abouut-banner-box-bottom {
    height: 250px;
}
.abouut-banner-box-bottom h5 {
  margin: 0;
  font-size: 18px;
  text-align: center;
  line-height: 3.89em;
  font-weight: 700;
  color: var(--primary-color);
}

.abouut-banner-box-bottom p {
  text-align: center;
  color: rgba(34, 54, 69, 0.7);
}

/* We Offer Are */

.sec-offer {
  width: 100%;
  height: 200px;
  height: 250px;
  display: flex;
  align-items: end;
}

.sec-offer-container {
  width: 100%;
  height: 180px;
}

.offer-title {
  text-align: start;
  width: 65%;
}

/* HR Consult */

.sec-hr {
  width: 100%;
  height: 500px;
}

.sec-hr-container {
  width: 100%;
  height: 500px;
  background-image: url(../img/hr1-copy.png);
  background-position: -10% 0px;
  background-repeat: no-repeat;
  background-size: contain;
}

.hr-container-bg {
  background-image: url(../img/hr2-copy.png);
  background-position: 105% 0px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.5;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  width: 100%;
  height: 370px;
  position: absolute;
  z-index: -1;
}

.hr-title {
  text-align: start;
  width: 65%;
  align-self: center;
}

.hr-title h5 span {
  color: #223645;
}

.hr-title h5 {
  text-align: justify;
  color: #6f808a;
  font-weight: normal;
  font-size: 18px;
  margin: 0;
  margin-bottom: 20px;
}

.hr-title a {
  color: var(--secoundary-color);
  /* margin: 8px 13px; */
  font-size: 16px;
  transition: all 0.4s;
}

.hr-title a:hover {
  color: var(--primary-color);
}

/* WHY WE’RE DIFFERENT */

.sec-weAre {
  width: 100%;
  height: 750px;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  margin-top: -40px;
}

.sec-weAre-container {
  width: 90%;
  height: auto;
  background: url(../img/whywearebg.jpg) no-repeat center center/cover;
  position: relative;
}
.sec-weAre-container-inner {
  max-width: 1800px;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
}

.weare-cont-top {
  margin-top: -150px;
  /* margin-bottom: 60px; */
}

.weare-top-img {
  max-width: 1250px;
  display: flex;
}

.weare-cont-top img {
  max-width: 100%;
  padding: 0 1%;
}

.weare-cont-center {
  width: 70%;
  display: flex;
  justify-content: space-around;
  height: 500px;
  align-items: center;
}

.weare-cont-title {
  color: var(--white);
  width: 45%;
}

.weare-cont-title p {
  font-weight: bold;
  margin-bottom: 30px;
}

.weare-cont-title h2 {
  text-align: left;
  line-height: 1.23em;
  margin: 0;
  font-size: 35px;
  font-weight: 700;
}

.weare-cont-progress {
  width: 45%;
}

.progress-bar h6 {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin: 0;
}

.progressBar1,
.progressBar2,
.progressBar3 {
  margin-top: 15px;
}

.percentCount {
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
}

.weare-cont-bottom {
  margin-top: 0px;
  margin-bottom: -390px;
  width: 75%;
  height: 700px;
  /* background: #6f808a; */
}

.mySwiper3 {
  width: 100%;
  height: 700px;
}

.card-slide3 {
  width: 30%;
  margin-right: 25px;
  height: 600px;
}

.cardslide3-inner {
  width: 90%;
  height: inherit;
  background: var(--white);
  box-shadow: 0 10px 50px 0 rgba(173, 138, 110, 0.09);
  transition: 0.3s box-shadow;
  margin: 0 auto;
}

.card-inner-top {
  width: 100%;
  height: 50%;
}

.card-inner-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-inner-bottom {
  padding: 33px 30px 30px;
  color: var(--primary-color);
}

.card-inner-bottom h4 {
  font-size: 25px;
  line-height: 1.04;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 0;
  padding-top: 0;
}

.card-inner-bottom h4 a {
  color: inherit;
  line-height: inherit;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
}

.card-inner-bottom h4 a:hover {
  opacity: 0.7;
}

.card-inner-bottom p {
  color: rgba(34, 54, 69, 0.7);
}

.card-inner-bottom h4 a.card-title2 {
  color: var(--secoundary-color);
}

.card-inner-bottom a {
  color: var(--primary-color);
  /* margin: 8px 13px; */
  font-size: 16px;
  transition: all 0.4s;
}

.card-inner-bottom a.card-button:hover {
  color: var(--secoundary-color);
}

.swiper-pagination-bullet {
  height: 10px;
  width: 10px;
}

.swiper-pagination-bullet-active {
  background: var(--secoundary-border);
  height: 13px;
  width: 13px;
}

/*************************************************************
                          Services
*************************************************************/

/* Banner */

.services-banner {
  background: url(../webImages/banner/services.jpg) no-repeat center
    center/cover;
}

/* Banner Container */

.services-banner-container {
  display: flex;
  width: 100%;
  height: 300px;
  justify-content: center;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin-top: -200px;
  margin-bottom: 43px;
  padding: 0px 0px 60px 0px;
  z-index: 5;
  position: relative;
}

.services-banner-container-inner {
  width: 65%;
  display: flex;
  justify-content: space-between;
  padding: 0px 0px 0px 0px;
  z-index: 3;
  max-width: 1270px;
  position: relative;
  align-items: center;
}

.services-banner-box {
  position: relative;
  width: 30%;
}

.services-banner-box-img1 {
  width: 100%;
  height: 300px;
  object-fit: contain;
  background: url(../img/banner-container1.jpg) no-repeat center
    center/cover;
}

.services-banner-box-img2 {
  width: 100%;
  height: 300px;
  object-fit: contain;
  background: url(../img/banner-container2.jpg) no-repeat center
    center/cover;
}

.services-banner-box-img3 {
  width: 100%;
  height: 300px;
  object-fit: contain;
  background: url(../img/banner-container3.jpg) no-repeat center
    center/cover;
}

.services-banner-box-overlay {
  width: 100%;
  height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #172a358a;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.services-banner-box-content {
  text-align: center;
  position: relative;
  max-width: 390px;
  margin-right: auto;
  margin-left: auto;
  z-index: 2;
  transition: all 0.8s ease;
}

.services-banner-box-content h3 {
  text-align: center;
  color: var(--white);
  font-size: 25px;
  font-weight: bold;
  letter-spacing: -0.25px;
  margin-bottom: 15px;
}

.services-banner-box-hidden {
  max-height: 0;
  transition: max-height 0.25s ease-out;
  overflow: hidden;
  width: 80%;
  margin: 15px auto;
}

.services-banner-box:hover .services-banner-box-hidden {
  max-height: 500px;
  transition: max-height 0.35s ease-in;
}

.services-banner-box-hidden p,
.services-banner-box-content a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* Section 1 */

.services-sec1 {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.services-sec1-container {
  width: 70%;
  height: auto;
  display: flex;
  align-items: center;
  max-width: 1270px;
  gap:2rem;
}

.courses-category {
  width: 40%;
  height: max-content;
  /* padding: 1%; */
}

.courses-category-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 150px;
  /* margin-left: 20px; */
}

.courses-category-inner select {
  width: 60%;
  height: 55px;
  border-bottom: none !important;
  /* padding: 6px 12px; */
  font-size: 14px;
  color: var(--primary-color);
}

.courses-category-innercomment .course-search {

    width: 60% !important;

}

.courses-category-inner .btn {
  padding: 17px 25px;
}

.services-sec1-container h2 {
  color: var(--primary-color);
  font-size: 45px;
  margin: 0;
  line-height: 1.2;
  width: 50%;
}

.services-sec1-container h2 span {
  color: var(--secoundary-border);
}

.services-sec1-container p {
  width: 48%;
  text-align: justify;
  font-size: 18px;
}

/* Section 2 */

.services-sec2 {
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-sec2-container {
  width: 60%;
  height: auto;
  display: flex;
  align-items: center;
  max-width: 1140px;
  justify-content: space-between;
}

.services-sec2-container-box {
  width: 24%;
}

.services-sec2-container-box h5 {
  color: var(--primary-color);
  font-weight: bold;
  margin: 0;
  font-size: 18px;
  padding: 0 8%;
}

.services-sec2-container-box h5 span {
  color: var(--secoundary-color);
}

.services-sec2-container-box ul {
  padding: 0;
}

.services-sec2-container-box ul li {
  margin-bottom: 12px;
  position: relative;
  color: rgba(34, 54, 69, 0.7);
}

.services-sec2-container-box ul li::before {
  vertical-align: middle;
  content: "\f105";
  font-family: FontAwesome;
  transition: all 0.5s;
  margin-right: 10px;
  display: inline-block;
  transform: translateY(-2px);
  margin-left: 0;
  color: transparent;
}

.services-sec2-container-box ul li:hover {
  color: var(--secoundary-color);
}

.services-sec2-container-box ul li:hover::before {
  border-width: 5.5px 0 5.5px 10px;
  margin-left: 15px;
  font-size: inherit;
  color: var(--secoundary-color);
}

.services-sec2-container-box ul li a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  transition: all 0.5s;
}

/* Services Section 3 */

.services-sec3 {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.services-sec3-container {
  width: 55%;
  height: auto;
  display: flex;
  align-items: center;
  max-width: 1140px;
  /* justify-content: ; */
}

.services-sec3-container p {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(34, 54, 69, 0.7);
  margin: 0;
}

.services-sec3-container a,
.services-sec3-container a i {
  color: #223645;
  margin: 8px 13px;
  padding: 0;
}

.services-sec3-container a:hover,
.services-sec3-container a:hover i {
  color: rgba(34, 54, 69, 0.7);
}

/* Services Section 4 */

.services-sec4 {
  width: 100%;
  height: 680px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.services-sec4-container {
  width: 90%;
  height: 580px;
  background: url(../webImages//services/sec4-bg.jpg) no-repeat center
    center/cover;
  position: relative;
}

.mySwiper4 {
  width: 80%;
  height: 690px;
  margin-top: -100px;
  max-width: 1240px;
}

.card-slide4 {
  width: 33%;
  height: 600px;
}

.cardslide4-inner {
  width: 100%;
  height: inherit;
  background: var(--white);
  box-shadow: 0 10px 50px 0 rgba(173, 138, 110, 0.09);
  transition: 0.3s box-shadow;
  margin: 0 auto;
}

.service-slider-btn {
  background: var(--white);
  color: var(--primary-color);
  /* position: static;  */
  transform: none;
  width: 60px;
  height: 60px;
  transition: all 0.3s ease;
  top: 93.3%;
  right: 93.3%;
}

.services-sec4-container .swiper-button-prev {
  left: 0;
}

.service-slider-btn::after {
  font-size: 10px;
  font-weight: 600;
}

.services-sec4-container .swiper-button-next {
  background: var(--secoundary-color);
  color: var(--white);
}

.service-slider-btn:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* Services Section 5 */

.services-sec5 {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  margin-top: 4%;
}

.service-sec5-service {
  margin-bottom: 4%;
}

.services-sec5-about {
  margin-bottom: 8%;
}

.services-sec5-container {
  width: 80%;
  max-width: 1250px;
  height: auto;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

.services-sec5-slider-container {
  width: 90%;
  max-width: 1140px;
  height: auto;
  margin: 0 auto;

  box-shadow: 0px 10px 50px 0px rgb(53 82 99 / 9%);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}

.services-sec5-inner-container {
  width: 100%;
  margin: 0 auto;
  height: auto;
  display: flex;
  /* justify-content: center; */
  align-items: center;
}

.services-sec5-inner-container2 {
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1.5rem;
}

.services-sec5-box {
  width: 32%;
  /*height: 610px;*/
  display: flex;
  box-sizing: border-box;
  background-color: var(--white);
  max-width: 1140px;
  box-shadow: 0px 10px 50px 0px rgb(53 82 99 / 9%);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 65px 32px 65px 32px;
  display: flex;
  flex-direction: column;
}

.services-sec5-box:hover img {
  transform: scale(1.1);
  transition: all 0.6s ease-in-out;
}

.services-sec5-box:hover h4 {
  color: var(--secoundary-color);
}

.services-sec5-box-img {
    width: 100%;
    height: 200px;
}

.services-sec5-box-img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  margin: 0;
  transition: all 0.6s ease-in-out;
}

.services-sec5-box-content {
  text-align: center;
}

.services-sec5-box-content h4 {
  font-size: 25px;
  line-height: 1.04;
  font-weight: 700;
  /* margin: 0; */
  color: var(--primary-color);
}

.services-sec5-box-content p {
  color: rgba(0, 46, 90, 0.7);
}

.service-sec-contact {
  width: 100%;
  height: auto;
  margin-bottom: 2%;
}

.service-sec-contact-container {
  max-width: 1200px;
  margin: 0 auto;
  height: 900px;
  width: 100%;
  padding: 2%;
}

.service-sec-contact-form {
  width: 90%;
  /* background: #08c1e2; */
  height: 500px;
  margin: 0 auto;
  padding: 2%;
}

.service-form {
  display: flex;
  width: 100%;
  /* flex-wrap: wrap; */
  gap: 2rem;
  /* padding: 2% 0; */
}

.service-form input,
.service-form select,
.service-form textarea {
  width: 50%;
}

.service-form select {
  height: 50px;
  width: 50% !important;
}

.service-form textarea {
  width: 100%;
  height: 280px;
  padding: 15px 15px;
}

/*************************************************************
                          Blog
*************************************************************/

.blog-main-container {
  width: 100%;
  height: 100%;
  margin-top: 120px;
  margin-bottom: 118px;
}

.blog-container {
  max-width: 1140px;
  /* background: var(--primary-color); */
  height: inherit;
  margin: 0 auto;
}

.blog-container-inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(30 / 2 * -1px);
  margin-right: calc(30 / 2 * -1px);
  width: calc(100% + 30 * 1px);
  /*margin-bottom: calc(30 * -1px);*/
  align-items: center;
  /* justify-content: space-around; */
}

.blog-box {
  height: 520px;
  width: 30%;
  background: white;
  position: relative;
  transition: 0.3s box-shadow, 0.3s -webkit-box-shadow;
  box-shadow: 0 5px 20px 0 rgba(184, 51, 54, 0.05);
  display: flex;
  flex-direction: column;
  margin: 1.5%;
  display: none;
}

.blog_details{
    width:100%;
    position:relative;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:2rem;
}
.blog_details h3{
    color:#111;
    font-weight:400;
}
.blog_details h3 span{
    font-weight:bold;
}
.blog_details h3 i{
    color:var(--secoundary-border);
}
.blog_details .author, .blog_details .views, .blog_details .date{
    display:flex;
    align-items:center;
    gap:10px;
}

.blog-box-top {
  height: 200px;
  width: 100%;
  position: relative;
}

.blog-img-tag a {
  font-size: 13px;
  line-height: 26px;
  padding: 0 10px;
  position: absolute;
  background-color: var(--secoundary-border);
  margin: 5%;
  border-radius: 3px;
  transition: all 0.3s;
}

.blog-img-tag a:hover {
  background-color: var(--primary-color);
}

.blog-top-img {
  min-height: 150px;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-top-img a {
  width: 100%;
  height: inherit;
}

.blog-top-img a img {
  width: 100%;
  height: inherit;
  object-fit: cover;
}

.blog-box-bottom {
  padding: 15px 30px 40px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.blog-box-bottom .date {
  display: block;
  margin-bottom: 16px;
  font-size: 87.5%;
}

.blog-box-bottom h4 {
  line-height: 1.2em;
  margin-top: 0;
  margin-bottom: 19px;
  word-break: break-word;
  font-size: 24px;
  font-weight: 700;
  height: 60px;
  color: var(--primary-color);
}

.blog-box-bottom h4 a {
  color: inherit;
  line-height: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.blog-box-bottom h4 a:hover,
.blog-box-bottom .blog-btn:hover {
  opacity: 0.5;
}

.blog-box-bottom .blog-desc {
  margin-bottom: 22px;
  color: rgba(0, 46, 90, 0.7);
  margin-top: 0;
      height: 85px;

}

.blog-box-bottom .blog-btn {
  color: var(--secoundary-color);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1.12px;
  transition: 0.3s all;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  display: inline-block;
  padding: 0 0 3px 0;
  width: fit-content;
}

.blog-load-btn {
  width: fit-content !important;
  margin: 10% auto;
  text-align: center;
}

/*************************************************************
                          How We Work
*************************************************************/

/* Section 1 Overview */

.how-we-work-sec1 {
  width: 100%;
  height: max-content;
  margin-top: 5%;
}

.sec1-work-container {
  max-width: 1500px;
  margin: 0 auto;
}

.sec1-bottom-text {
  max-width: 675px;
  font-size: 18px;
  letter-spacing: 1px;
  margin: 0 auto;
  text-align: center;
  color: rgba(0, 46, 90, 0.7) !important;
  font-weight: 400 !important;
}

.how-we-work-box1 {
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 40px;
}

.work-box1-img {
  padding: 30px;
  width: 50%;
  height: auto;
}

.work-box1-img img {
  width: 100%;
  height: auto;
}

.work-box1-content {
  width: 50%;
  height: auto;
  padding: 30px;
}

.work-box1-content h3 {
  text-align: left;
  letter-spacing: -0.9px;
  font-size: 35px;
  font-weight: 700;
  margin: 0px 0px 35px 0px;
  color: var(--primary-color);
}

.work-box1-content h3 span {
  color: var(--secoundary-color);
}

.work-box1-content p {
  letter-spacing: 0.5px;
  margin: 0;
  text-align: justify;
}

/* Section 2 Our Work */

.how-we-work-sec2 {
  width: 100%;
  height: 900px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.how-we-work-sec2-container {
  width: 90%;
  height: 880px;
  background: url(../webImages//services/sec4-bg.jpg) no-repeat center
    center/cover;
  position: relative;
}

.how-we-work-sec2-container .sec6-title {
  padding-top: 6%;
}

.how-we-work-sec2-container .sec6-title .banner-container-inner-content p,
.how-we-work-sec2-container .sec6-title .banner-container-inner-content h2 {
  color: var(--white);
}

.mySwiper5 {
  width: 80%;
  height: 690px;
  max-width: 1240px;
}

.card-slide4 {
  width: 33%;
  height: 600px;
}

.cardslide4-inner {
  width: 100%;
  height: inherit;
  background: var(--white);
  box-shadow: 0 10px 50px 0 rgba(173, 138, 110, 0.09);
  transition: 0.3s box-shadow;
  margin: 0 auto;
}

/* Section 3 Our Values  */

.value-sec3 {
  width: 100%;
  height: 600px;
  margin-top: 10%;
  margin-bottom: 3%;
}

.value-sec3-container {
  max-width: 1200px;
  margin: 0 auto;
}

.value-sec3-container-inner {
  box-shadow: 0 10px 50px 0 rgba(173, 138, 110, 0.09);
  border: solid 1px var(--white);
}

.value-sec3-tab {
  overflow: hidden;
  box-shadow: 0 10px 50px 0 rgba(173, 138, 110, 0.09);
}

.value-sec3-tab button {
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  width: 33.3%;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  padding: 20px 15px;
  background: #f3f5f6;
  line-height: 1.5;
  box-shadow: 13px 3.825px 15.66px 2.34px rgba(34, 54, 69, 0.2);
}

.value-sec3-tab button:hover,
.value-sec3-tab button.active {
  background-color: var(--primary-color);
  color: var(--white);
}

.tabcontent {
  display: none;
  padding: 20px 55px;
  padding-bottom: 40px;
  border-top: none;
  animation: fadeEffect 1s;
}

.tabcontent p {
  font-size: 16px;
  text-align: justify;
}

@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*************************************************************
                          Book Consultant
*************************************************************/

.book-consultant {
  width: 100%;
  height: 1000px;
  background: url(../webImages/banner/consultant.png) no-repeat center
    center/cover;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  color: var(--white) !important;
}

.book-consultant-content h4,
.book-consultant-content p,
.book-consultant-content h3,
.book-consultant-content a {
  color: var(--white);
}

/*************************************************************
                          Contact Us
*************************************************************/

/* Section 1 Contact */

.contact-sec1 {
  width: 100%;
  height: 900px;
  background: #111922;
  color: var(--white);
}

.contact-sec1-container {
  max-width: 1200px;
  margin: 0 auto;
  height: 900px;
  width: 100%;
  padding: 2%;
}

.contact-sec1-container-inner {
  width: 100%;
  height: inherit;
  display: flex;
  justify-content: space-between;
}

.contact-sec1-map {
  width: 48%;
}

.contact-sec1-map-inner {
  /* padding: 0 5%;    */
  width: 100%;
  height: 800px;
}

.contact-sec1-map-inner h3,
.contact-sec1-contact-form-inner h3 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-transform: none;
  margin-bottom: 16px;
}

.contact-sec1-map-inner p {
  margin-bottom: 5%;
}

.contact-sec1-map-inner iframe {
  max-width: 100%;
  width: 100%;
  margin: 0;
  line-height: 1;
}

.contact-sec1-contact-form {
  width: 48%;
}

.contact-sec1-contact-form-inner {
  padding: 0 5%;
  width: 100%;
  height: 800px;
}

.contact-sec1-contact-form-inner form .form {
  width: 100%;
  display: flex;
  justify-content: center;
  /* flex-wrap: wrap; */
}

.contact-sec1-contact-form-input-field {
  width: 65%;
  /* margin-right: 2%; */
}

.contact-sec1-contact-form-input-field input {
  width: 85%;
  height: 40px;
  border-radius: 5px;
  padding: 8px 16px 8px;
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 13px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.1);
  color: var(--white);
}

.contact-form input {
  border-radius: 5px;
  padding: 8px 16px 8px;
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 13px;
}

.contact-sec1-contact-form-input-field input::placeholder,
.contact-sec1-contact-form-inner form textarea::placeholder {
  color: var(--white);
}

textarea:focus,
input:focus {
  outline: none;
}

.contact-sec1-contact-form-inner form textarea {
  width: 50%;
  height: 185px;
  border-radius: 5px;
  padding: 8px 16px 8px;
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 13px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.1);
  color: var(--white);
}

.accordion {
  display: flex;
  align-items: center;
  width: 100%;
  cursor: pointer;
}

.accordion:hover h4 {
  color: var(--secoundary-border);
  transition: all 0.3s;
}

.accordion i {
  display: inline-block;
  margin-right: 15px;
  opacity: 0.75;
  font-size: 18px;
}

.accordion h4 {
  padding-right: 15px;
  vertical-align: top;
  font-size: 18px;
  font-weight: 600;
}

.accordion:after {
  content: "\02795";
  /* Unicode character for "plus" sign (+) */
  color: var(--white);
  background: var(--secoundary-color);
  font-size: 10px;
  width: 36px;
  height: 36px;
  line-height: 39px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
  text-align: center;
  margin-inline-start: auto;
}

.accordion1 .ui-state-active:after {
  content: "\2796";
  /* Unicode character for "minus" sign (-) */
}

.accordion-border {
  border-top: 1px solid var(--white);
}

.accordion-content {
  height: 150px;
  padding: 24px 0;
}

/* Section 2 Get Socialize With Us */

.social-sec2 {
  width: 100%;
  height: 350px;
  background: #b2c2d3;
  color: var(--white);
}

.social-sec2-container {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 350px;
  width: 100%;
}

.social-sec2-container-inner {
  text-align: center;
}

.sec2-social-icon i {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  margin: 0 1%;
  text-align: center;
  transition: all 200ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.sec2-social-icon i:hover {
  background-color: var(--white);
  color: #000;
}

.sec2-social-icon .fa-linkedin-in {
  background: #0072b1;
}

.sec2-social-icon .fa-twitter {
  background: #08c1e2;
}

.sec2-social-icon .fa-facebook-f {
  background: #3b5998;
}

.sec2-social-icon .fa-whatsapp {
  background: #25d366;
}

.sec2-social-icon .fa-youtube {
  background: #ff0000;
}

.social-sec2-container-inner h3 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-transform: none;
  margin-bottom: 16px;
}

.social-sec2-border {
  display: block;
  background-color: var(--white);
  width: 50px;
  height: 3px;
  margin: 16px auto;
  margin-left: auto;
}

.social-sec2-container-inner p {
  font-size: 15px;
  line-height: 31px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

/*************************************************************
                          Careers
*************************************************************/

.careers-sec {
  display: grid;
  gap: 50px;
  grid-template-columns: 2fr 8fr;
  grid-template-areas: " aside section";
  margin: 0 auto;
  max-width: 1800px;
}

.careers-sec .search-job {
  /* background: #002e5a; */
  width: 100%;
  margin-top: 5%;
  margin-left: 8%;
}

.search-job-inner {
  width: 100%;
  box-shadow: 0px 10px 50px 0px rgb(53 82 99 / 9%);
  padding: 2% 3% 5% 3%;
  margin: 10px 0;
  color: var(--primary-color);
}

.search-job-inner .form-control {
  background: #f3f5f6;
}
.search-job-inner .form-control
.form-group {
  margin-bottom: 15px;
}

.form-control {
  display: block;
  width: 100%;
  height: 45px;
  padding: 6px 12px;
  background-color: var(--white);
  /* border-radius: 4px; */
}

.form-upload {
  padding-bottom: 0 !important;
  padding-top: 10px !important;
}

.form-group select {
  height: 45px;
  width: 100% !important;
}

.careers-sec .recent-job {
  position: relative;
  width: 90%;
  margin-top: 30px;
  color: var(--primary-color);
  font-size: 16px;
  text-align: justify;
  word-break: break-all;
  margin-left: 1%;
}

.job-container {
  box-shadow: 0px 10px 30px 0px rgb(53 82 99 / 9%);
  margin-bottom: 2rem;
  padding: 2rem;
}

.job-container-top {
  gap: 2rem;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.job-container-top-left {
  width: 15%;
  height: auto;
}

.job-container-top-left img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.job-container-top-right {
  width: 100%;
}

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

.job-container-top-right-top h4 {
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 2.5;
  margin: 0;
}

.job-container-top-right p {
  text-align: justify;
  line-height: 1.5;
  margin-top: 13px;
}

.job-container-bottom {
  display: flex;
  /*column-gap: 118px;*/
  justify-content: space-between;
  border-top: 0.2rem solid #000000;
  padding-top: 9px;
}

/* <!-- Section 4 CTA Banner --> */
.sec4-career {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    background: url(../img/cta-banner.jpg) no-repeat center center/cover;
}

.sec4-container2 {
  max-width: 2000px;
  margin: 0 auto;
  width: 100%;
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.cta-content2 h2 {
  margin: 0;
}

.cta-content h6 {
  color: var(--white);
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
}

/*************************************************************
                          Services Detail
*************************************************************/

.services-detail {
  width: 100%;
  height: auto;
  margin: 5% 0;
}

.services-detail-container {
  width: 80%;
  display: grid;
  gap: 50px;
  grid-template-columns: 8fr 3fr;
  grid-template-areas: "section aside";
  margin: 0 auto;
  max-width: 1800px;
  height: auto;
}

.services-detail-content {
  width: 100%;
  height: auto;
}

.services-detail-content-box {
    margin-top:5%;
  text-align: justify;
}

.services-detail-content-box h2 {
  font-size: 45px;
  line-height: 1.2;
  color: var(--primary-color);
}

.services-detail-content-box h2 span {
  color: var(--secoundary-border);
}

.services-detail-content-box p {
  display: block;
  color: var(--primary-color);
  position: relative;
  margin-bottom: 20px;
  font-size: 1rem;
  text-align: justify;
}

.services-detail-content-box ul li {
  color: var(--primary-color);
  position: relative;
  margin-bottom: 10px;
  font-size: 1rem;
  list-style: disc;
}

.services-detail-content-box-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.services-sidebar {
  width: 100%;
  height: 800px;
}

.services-sidebar-box1 {
  background: url(../img/services-inner-top-sidebar.png)
    no-repeat center center/cover;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin-top: 0px;
  margin-bottom: 60px;
  width: 100%;
  height: auto;
  color: var(--white);
}

.services-sidebar-box1-inner {
  padding: 32px 34px 26px 35px;
}

.services-sidebar-box1-inner-top {
  width: 100%;
  text-align: center;
  margin-bottom: 25px;
}

.services-sidebar-box1-inner-top a i {
  font-size: 20px;
  margin: 0 5%;
  transition: all.3s;
  margin-bottom: 20px;
}

.sidebar-contact-detail {
  font-weight: 300;
  text-align: left;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.sidebar-contact-detail i {
  font-size: 20px;
  margin-right: 5%;
}

.sidebar-contact-detail a {
  font-size: 15px;
}

.sidebar-contact-detail a:hover,
.services-sidebar-box1-inner-top a i:hover {
  color: var(--secoundary-color);
}

.services-sidebar-box1-inner-center {
  width: 100%;
  margin-bottom: 35px;
}

.services-sidebar-box1-inner-center h3 {
  margin: 0;
  font-size: 20px;
}

.services-sidebar-box1-inner-center p {
  margin: 0;
  text-align: justify;
}

.services-sidebar-box1-inner-bottom {
  margin-bottom: 20px;
}

.services-sidebar-box1-inner-bottom a {
  background: transparent;
  border: 1px solid;
  font-weight: 900;
}

.services-sidebar-box2 {
  width: 100%;
  box-shadow: 0px 10px 50px 0px rgb(53 82 99 / 9%);
  margin-top: 0px;
  margin-bottom: 62px;
  padding: 0% 0px 5% 0;
}

.services-sidebar-box2-top h3 {
  font-size: 18px;
  color: var(--primary-color);
  padding: 20px 0px 0px 37px;
  margin-bottom: 20px;
}

.services-sidebar-border {
  border: 1px solid #b73235;
  margin-bottom: 20px;
}

.services-sidebar-box2-bottom {
  padding: 0px 0px 30px 30px;
}

.services-sidebar-box2-bottom ul {
  padding: 0;
}

.services-sidebar-box2-bottom ul li {
  margin-bottom: 12px;
  position: relative;
  color: rgba(34, 54, 69, 0.7);
}

.services-sidebar-box2-bottom ul li::before {
  vertical-align: middle;
  content: "\f105";
  font-family: FontAwesome;
  transition: all 0.5s;
  margin-right: 10px;
  display: inline-block;
  transform: translateY(-2px);
  margin-left: 0;
  color: transparent;
}

.services-sidebar-box2-bottom ul li:hover {
  color: var(--secoundary-color);
}

.services-sidebar-box2-bottom ul li:hover::before {
  border-width: 5.5px 0 5.5px 10px;
  margin-left: 15px;
  font-size: inherit;
  color: var(--secoundary-color);
}

.services-sidebar-box2-bottom ul li a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  transition: all 0.5s;
}

.services-sidebar-box3 {
  width: 100%;
  margin-top: 0px;
  margin-bottom: 50px;
  height: 60px;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}

.services-sidebar-box3 .sidebar-btn {
  width: 100%;
  text-align: center;
  padding: 24px 0px;
  background-color: var(--secoundary-color);
  color: var(--white);
  letter-spacing: 1.12px;
  font-size: 14px;
  position: relative;
  z-index: 2;
  font-weight: 700;
  display: inline-block;
}

.services-sidebar-box3 .sidebar-btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 0%;
  height: 0%;
  top: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: all 0.5s ease-in-out;
}

.services-sidebar-box3 .sidebar-btn:hover::before {
  width: 100%;
  height: 50%;
  transition: all 0.5s ease-in-out;
}

.services-sidebar-box3 .sidebar-btn::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 0%;
  height: 0%;
  bottom: 0;
  right: 0;
  background-color: var(--primary-color);
  transition: all 0.5s ease-in-out;
}

.services-sidebar-box3 .sidebar-btn:hover::after {
  width: 100%;
  height: 50%;
  transition: all 0.5s ease-in-out;
}

/*************************************************************
                          Careers Detail
*************************************************************/

.inner-banner-content h1 span {
  color: var(--secoundary-color);
}

.careers-detail {
  width: 100%;
  height: auto;
  margin: 5% 0;
}

.careers-detail-container {
  width: 80%;
  display: grid;
  gap: 50px;
  grid-template-columns: 8fr 3fr;
  grid-template-areas: "section aside";
  margin: 0 auto;
  max-width: 2100px;
  height: auto;
}

.careers-detail-content {
  width: 100%;
  height: auto;
  text-align: justify;
}

.careers-detail-content h2 {
  color: var(--primary-color);
  font-size: 40px;
  line-height: 1.2;
  margin: 0;
}

.job-detail {
  margin-top: 20px;
  margin-bottom: 35px;
  padding: 0px 0px 0px 0px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: justify;
}

.job-detail i {
  width: 1em;
  height: 1em;
  position: relative;
  display: block;
  margin-right: 15px;
  font-size: 20px;
  color: var(--primary-color);
}

.job-detail h6 {
  font-size: 18px;
  font-weight: 400;
  margin: 0 15px 0 0;
}

.job-desc h4,
.job-res h4 {
  font-size: 25px;
  line-height: 1.04;
  color: var(--primary-color);
}

.job-res ul {
  padding: 0;
}

.job-res ul li {
  padding-left: 25px;
  margin-bottom: 12px;
  position: relative;
}

.job-res ul li::before {
  content: "";
  background-color: var(--secoundary-color);
  width: 8px;
  height: 8px;
  position: absolute;
  top: 8px;
  left: 0;
  border-radius: 50%;
}

.careers-sidebar {
  width: 100%;
}

.careers-sidebar-box {
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  border: 1px solid #e2e2e2;
  padding: 20px 15px;
  width: 100%;
  height: auto;
  box-shadow: 0px 10px 50px 0px rgb(53 82 99 / 9%);
}

.careers-sidebar-box-inner {
  padding: 20px 0;
}

.careers-sidebar-box-inner-top {
  margin-bottom: 15px;
   font-size: 14px;
  /*text-align: justify;*/
}

.careers-sidebar-box-inner-top-box {
  display: flex;
  /* width: 100%; */
  align-items: center;
  justify-content: flex-start;
  color: var(--primary-color);
  margin-bottom: 15px;
  margin-left: 15px;
}

.careers-sidebar-box-inner-top-box i {
  font-size: 32px;
  margin-right: 20px;
}

.careers-sidebar-box-inner-top-box div p {
  margin: 0;
}

.careers-sidebar-box-inner-bottom {
  width: 100%;
  margin: 15% 0 0 0;
}

.careers-sidebar-box-inner-bottom .sidebar-btn {
  width: 80%;
  padding: 24px 35px;
  background-color: var(--secoundary-color);
  color: var(--white);
  letter-spacing: 1.12px;
  font-size: 14px;
  position: relative;
  z-index: 2;
  font-weight: 700;
  display: inline-block;
}

.careers-sidebar-box-inner-bottom .sidebar-btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 0%;
  height: 0%;
  top: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: all 0.5s ease-in-out;
}

.careers-sidebar-box-inner-bottom .sidebar-btn:hover::before {
  width: 100%;
  height: 50%;
  transition: all 0.5s ease-in-out;
}

.careers-sidebar-box-inner-bottom .sidebar-btn::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 0%;
  height: 0%;
  bottom: 0;
  right: 0;
  background-color: var(--primary-color);
  transition: all 0.5s ease-in-out;
}

.careers-sidebar-box-inner-bottom .sidebar-btn:hover::after {
  width: 100%;
  height: 50%;
  transition: all 0.5s ease-in-out;
}

/*************************************************************
                          Careers Apply
*************************************************************/

.careers-apply {
  width: 100%;
  height: auto;
  margin: 5% 0;
}

.careers-apply-content {
  width: 80%;
  height: auto;
  margin: 0 auto;
  max-width: 1440px;
  text-align: justify;
}

.careers-apply-content .apply-btn {
  height: 50px;
  margin-bottom: 2%;
}

.careers-apply-content h2 {
  color: var(--primary-color);
  font-size: 40px;
  line-height: 1.2;
  margin: 0;
}

.careers-apply-content ul li {
  list-style: disc;
}

/*************************************************************
                          Blogs Detail
*************************************************************/

/* Banner */

.blog-detail-banner {
  margin-top: 8%;
  position: absolute;
}

.banner-blog-tag {
  height: 30px;
  width: 85%;
  text-align: center;
}

.banner-blog-tag a {
  margin: 0;
}

.inner-banner-content .date,
.inner-banner-content h4 {
  text-align: center;
  color: var(--white);
}

/* Blog Detail */
.blog-detail {
  width: 100%;
  height: auto;
  margin: 5% 0;
}

.blog-detail-container {
  width: 80%;
  display: grid;
  gap: 50px;
  grid-template-columns: 6fr 3fr;
  grid-template-areas: "section aside";
  margin: 0 auto;
  max-width: 2100px;
  height: auto;
}

.blog-detail-content {
  width: 100%;
  height: auto;
  text-align: justify;
}

.blog-detail-image {
  min-height: 400px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(34, 54, 69, 0.05);
  background-position: center;
}

.blog-share {
    margin: 4% 0 5%;
}

.blog-share a {
  color: #000;
  box-shadow: 0 5px 20px 0 rgb(184 51 54 / 9%);
  position: relative;
  transition: 0.3s box-shadow, 0.3s;
  border-radius: 10%;
  padding: 15px 25px;
  margin-right: 2%;
}

.blog-block-quote {
  border-left: 4px solid var(--secoundary-border);
  max-width: 100%;
  padding: 0 30px;
  color: var(--primary-color);
  margin: 0;
}

.comment h2 {
  color: var(--primary-color);
  font-size: 32px;
  line-height: 1.2;
  margin: 10% 0 5% 0;
}

.comment form textarea,
.comment form input {
  background: #f3f5f6;
  border-bottom: 2px solid transparent;
  /* color: var(--primary-color); */
  border: none;
  resize: none;
  margin-bottom: 30px;
  width: 100%;
  padding: 20px 25px;
  line-height: 1.5;
}

.comment-checkbox {
  display: flex;
  /* align-items: center; */
}

.comment-checkbox input {
  width: 2% !important;
  /* opacity: 0; */
  /* width: 25px; */
  height: 25px;
  cursor: pointer;
  position: relative;
  z-index: 20;
  margin: auto 10px;
  accent-color: var(--secoundary-border);
}

.comment .btn {
  width: fit-content;
  background-color: var(--secoundary-color);
 text-align: right;
}

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

.blog-sidebar {
  width: 100%;
  height: 800px;
}

.blog-sidebar-box {
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin-top: 0px;
  margin-bottom: 40px;
  width: 100%;
  height: auto;
  box-shadow: 0px 10px 50px 0px rgb(53 82 99 / 9%);
  color: var(--primary-color);
}

.blog-sidebar-box-inner {
  padding: 3%;
}

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

.blog-sidebar-box-inner .blog-box {
  width: auto;
  height: auto;
}

.blog-sidebar-box-inner .sidebar-blog-box {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 1rem;
  margin-bottom: 5%;
  color: var(--primary-color);
  box-shadow: 0 5px 20px 0 rgb(184 51 54 / 5%);
  background: white;
  position: relative;
  transition: 0.3s box-shadow, 0.3s;
}

.blog-sidebar-box-inner .sidebar-blog-box:hover .sidebar-blog-img {
  transform: scale(1.1);
  transition: all 0.4s ease-in-out;
}

.blog-sidebar-box-inner .sidebar-blog-box img {
  object-fit: cover;
  width: 35%;
  height: 100px;
  transition: all 0.4s ease-in-out;
}

.blog-sidebar-box-inner .sidebar-blog-box a {
  color: var(--primary-color);
}

.blog-sidebar-box-inner .sidebar-blog-box:hover a {
  color: var(--secoundary-color);
}

.blog-sidebar-box-inner .sidebar-blog-box h5 {
  margin-top: 0;
  /* text-align: right; */
}

/* .blog-sidebar-box1-inner input {
    width: 60%;
    height: 35px;
    padding: 6px 12px;
    font-size: 14px;
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    border: 1px solid #ccc;
}

.blog-sidebar-box1-inner input:last-child {
    width: 30%;
    margin: 0 -5px;
    height: 48px;
    border: none;
}

.blog-sidebar-box2-inner {
    padding: 20px 35px 35px;
}

.blog-sidebar-box2-inner ul li {
    margin-left: -40px;
    margin-bottom: 10px;
}

.blog-sidebar-box2-inner ul li a {
    color: var(--primary-color);
}

.blog-sidebar-box2-inner ul li a:hover {
    color: var(--secoundary-color);
} */

/*************************************************************
                          Courses Detail
*************************************************************/

.courses-detail {
  width: 100%;
  height: auto;
  margin: 5% 0;
}

.courses-detail-container {
  width: 70%;
  display: grid;
  /* gap: 50px; */
  grid-template-columns: 8fr 4fr;
  grid-template-areas: "section aside";
  margin: 0 auto;
  max-width: 2100px;
  height: auto;
}

.courses-detail-content {
  width: 100%;
  height: auto;
}

.courses-detail-content-inner {
  padding-right: 12%;
}

.courses-detail-content-inner h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.courses-detail-content-inner p {
  font-size: 1.05rem;
  text-align: justify;
}
.traningg ul li{
    list-style: unset !important;
}
.traningg .right_{
    margin: 8% 0;
}
.courses-detail-desc {
  margin-top: 30px;
  margin-bottom: 40px;
}

.courses-detail-desc h3 {
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.courses-detail-desc ul {
  margin-left: 20px;
  padding: 0;
}

.courses-detail-desc ul li {
  margin-bottom: 4px;
  list-style: disc;
  font-size: 1.05rem;
}

/* Accordion */

.course-accordion {
  display: flex;
  align-items: center;
  width: 100%;
  cursor: pointer;
  padding: 0px 60px 0 30px;
  background-color: #f6f6f6;
  border: 1px solid #f0f0f0;
}

.course-accordion:hover h4 {
  color: var(--secoundary-border);
  transition: all 0.3s;
}

.course-accordion h4 {
  padding-right: 15px;
  vertical-align: top;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-left: 2%;
}

.course-accordion::before {
  content: "\21E3";
  /* Unicode character for "plus" sign (+) */
  color: var(--primary-color);
  font-size: 30px;
  width: 36px;
  height: 36px;
  line-height: 39px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
  text-align: center;
}

.accordion2 .ui-state-active::before {
  content: "\21E1";
  /* Unicode character for "minus" sign (-) */
}

.course-accordion-content {
  /* height: auto !important; */
  padding: 24px 45px;
  background-color: transparent;
  border: 1px solid #eee;
  border-radius: 4px;
  margin-bottom: 5px;
  width: 100%;
}

.course-accordion-content p a {
  color: rgba(34, 54, 69, 0.7);
}

/* SideBar */
.courses-sidebar {
  width: 100%;
  height: auto;
}

.courses-sidebar-box {
  width: 100%;
  box-shadow: 0px 10px 50px 0px rgb(53 82 99 / 9%);
  margin-top: 0px;
  margin-bottom: 62px;
  padding: 0% 0px 5% 0;
  border-radius: 10px;
}

.courses-sidebar-box-inner {
  padding: 2%;
}

.courses-sidebar-box-inner-top img {
  max-width: 100%;
  height: auto;
  border-style: none;
  vertical-align: middle;
}

.courses-sidebar-box-inner-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 8%;
}

.courses-sidebar-box-inner-center .price {
  display: block;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0;
}

.courses-sidebar-box-inner-center .price .old-price {
  font-size: 1.25rem;
  font-weight: 300;
  text-decoration: line-through;
  margin-left: 5px;
  margin-right: 5px;
  color: rgba(34, 54, 69, 0.7);
}

.courses-sidebar-box-inner-center a {
  border: 1px solid rgba(34, 54, 69, 26%);
  border-radius: 10px;
  font-size: 15px;
  padding: 12px 20px;
}

.courses-sidebar-box-inner-bottom {
  margin-top: 25px;
  margin-bottom: 25px;
  padding: 0 8%;
}

.courses-sidebar-box-inner-bottom span {
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.courses-sidebar-box-inner-bottom p {
  font-size: 0.9rem;
  line-height: 1;
  margin-bottom: 8px;
}

.courses-sidebar-box-inner-bottom p i {
  font-size: 0.8rem;
  margin-right: 4px;
}

/*************************************************************
                        Login / Signup
*************************************************************/

.inner-form-banner {
  width: 100%;
  min-height: 250px;
  z-index: 0;
  background-color: #172a359c;
}

.inner-form-banner2 {
  width: 100%;
  min-height: 200px;
  z-index: 0;
  background: transparent;
}

.inner-form-banner-content {
  max-width: 1040px;
  padding: 250px 15px 45px 15px;
  z-index: 2;
  text-align: center;
  margin: 0 auto;
  color: var(--white);
}

.inner-form-banner-content h1 {
  text-align: center;
  font-size: 50px;
  font-weight: bold;
  letter-spacing: -1.2px;
  margin: 0;
}

/* Signup Form */

.signup-form {
  width: 100%;
  height: auto;
  max-width: 1400px;
  margin: 0 auto;
}

.signup-form-container {
  width: 50%;
  margin: 0 auto;
}

.signup-form-container-inner {
  width: 60%;
  margin: 3% auto;
  padding: 28px;
  background-color: #22364512;
  border-radius: 10px;
  color: var(--primary-color);
}

.signup-form-logo {
  width: 100%;
}

.signup-form-logo img {
  width: 80%;
  margin: 0 auto;
  margin: 0 10%;
}

.signup-form-inner-heading {
  width: 100%;
  position: relative;
  text-align: center;
  margin: 4% auto;
}

.signup-form-inner-heading span {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.signup-form-container-inner a {
  font-size: 15px;
  color: var(--primary-color);
}

.signup-form-container-inner a:hover {
  color: var(--secoundary-color);
  text-decoration: underline;
}

.signup-form-step {
  text-align: center;
}

.signup-form-steps {
  font-weight: 700;
  color: var(--secoundary-color);
}

.signup-form-container-inner form input,
.signup-form-container-inner form select {
  margin-left: auto;
  margin-right: auto;
}

.signup-form-label {
  color: var(--secoundary-color);
  font-weight: 500;
}

.signup-form-phone {
  display: flex;
  gap: 1rem;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.signup-form-phone-select {
  width: 28%;
}

.signup-form-phone-input {
  width: 64%;
}

.signup-form-btn button {
  width: 98%;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 15px;
}

.signup-form-already {
  text-align: center;
}

.signup-form-checkbox {
  margin: 20px 2px;
  font-weight: 600;
  display: flex;
  gap: 1rem;
}

.signup-form-checkbox input {
  accent-color: var(--secoundary-border);
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.signup-form-checkbox label {
  width: 85%;
}

.signup-form-inner-heading .main-link a {
  font-size: 20px;
}

/*************************************************************
                        Profile-page
*************************************************************/

.profile-form {
  width: 100%;
  height: auto;
  max-width: 1800px;
  margin: 0 auto;
}

.profile-form-container {
  width: 80%;
  margin: 0 auto;
}

.profile-form-container-inner {
  width: 90%;
  margin: 3% auto;
  padding: 28px;
  background-color: #22364512;
  border-radius: 10px;
  color: var(--primary-color);
}

.profile-form-title {
  display: block !important;
}

.profile-form-title h3 {
  color: var(--primary-color);
  font-size: 32px;
  margin: 15px 0;
}

.profile-form-title h5 {
  color: var(--primary-color);
  font-size: 22px;
  margin: 15px 0;
}

.profile-form-label {
  color: var(--primary-color);
  font-weight: 500;
  /* width: 28%; */
}

/*************************************************************
                    Employee Profile
*************************************************************/

.employee-profile-form {
  width: 100%;
  height: auto;
  max-width: 1800px;
  margin: 0 auto;
}

.employee-profile-form-container {
  width: 80%;
  margin: 0 auto;
  height: auto;
}

.employee-profile-form-container-inner {
  width: 90%;
  margin: 3% auto;
  color: var(--primary-color);
  box-shadow: 0 0 10px 0 rgba(0,24,128,0.1);
  padding: 20px 30px;
  border-radius: 4px;
  background-color: #fff;
  margin-bottom: 56px;
}

.employee-profile-form-top {
  text-align: center;
  color: var(--primary-color);
  font-weight: 500;
}

.employee-profile-form-container-inner .profiles {
  font-size: 24px;
  text-align: center;
}

.profile-page-container-inner .profiles {
  width: 100%;
  text-align: center;
  padding: 1% 0;
  font-size: 24px;
  margin-bottom: 2%;
}

.profile-page-container-inner .profiles h3{
  font-size: 35px;
}

.employee-profile-form-top .form_title {
  position: relative;
  width: 100%;
  color: var(--primary-color);
  font-weight: 900;
  font-size: 25px;
  text-align: center;
}

.signup-form-step h3 {
  font-size: 24px;
}

.btn-link {
  color: #2a6496;
  background-color: transparent;
  border-color: transparent;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 400;
}

.btn-link:hover {
  text-decoration: underline;
}

.form-group2 {
  display: flex;
  margin-bottom: 15px;
  align-items: center;
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  height: auto;
  gap: 2rem;
  min-height: 80px;
}

.form-group2 .col-3 {
  width: 25%;
}

.form-group2 .col-4 {
  width: 30%;
}

.form-group2 .col-6 {
  width: 46%;
}

.form-group2 .col-9 {
  width: 75%;
  display: flex;
  gap: 1rem;
}

.form-group2 .col-12 {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.form-group2 label {
  font-size: 18px;
  font-weight: 500;
}

.form-group2 select {
  height: 48px;
  width: 100%;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}

/*************************************************************
                 Profile Page
*************************************************************/

.profile-page {
  width: 100%;
  height: auto;
  max-width: 1800px;
  margin: 0 auto;
}

.profile-page-container {
  width: 95%;
  margin: 0 auto;
  height: auto;
}

.profile-page-container-inner {
  width: 100%;
  margin: 3% auto;
  height: auto;
  background-color: #22364512;
  border-radius: 10px;
  color: var(--primary-color);
}

.profile-page-title {
  width: 100%;
  text-align: center;
  padding: 1% 0;
  font-size: 24px;
  /*margin-bottom: 2%;*/
}

.prfile-page-grid {
  width: 95%;
  height: auto;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 3fr 8fr;
  grid-template-areas: " aside section";
  margin: 0 auto;
  max-width: 1800px;
  padding-bottom: 2%;
}

.profile-detail {
  width: 100%;
  height: fit-content;
  background: var(--white);
  border-radius: 3px 3px;
}

.profile-detail-inner {
  padding: 5%;
}

.profile-icons {
  font-size: 17px;
  margin: 4px;
  width: 95%;
  display: flex;
  gap: 0.6rem;
  align-items: center;
  justify-content: end;
}

.profile-icons i {
  color: var(--secoundary-color);
  cursor: pointer;
}

.profile-img {
  width: 100%;
  display: flex;
  margin: 6% 0;
}

.profile-img img {
  margin: auto;
  width: 300px;
  height: 250px;
  object-fit: contain;
}

.profile-info {
  width: 100%;
  text-align: center;
}

.profile-info p {
  font-size: 14px;
  display: block;
  margin: 0;
}

.gmail_acc {
  text-transform: lowercase !important;
}

.piesite {
  position: relative;
  width: 1em;
  height: 1em;
  font-size: 10em;
  cursor: default;
  margin: 0 auto;
  /* margin-top: 100px; */
}

.piesite:before,
piesite:before {
  background: transparent;
}

.piesite:before,
.piesite_:before {
  content: "";
  display: block;
  position: absolute;
  width: 1em;
  height: 1em;
  border-radius: 0.5em;
  opacity: 0.5;
  z-index: 0;
}

.piesite .percent {
  position: absolute;
  top: 2em;
  /*top: 50%;*/
  transform: translateY(-50%);
  left: 10px;
  width: 100%;
  font-size: 40px;
  text-align: center;
  z-index: 2;
  color: var(--primary-color);
  font-weight: 800;
  margin-top: 22px;
}

.piesite > #slice.gt50 {
  clip: rect(auto, auto, auto, auto);
}

.piesite > #slice {
  position: absolute;
  width: 1.3em;
  height: 1.3em;
  clip: rect(0px, 1.1em, 1.1em, 0.7em);
}

.piesite > #slice > .pie {
  position: absolute;
  border: 6px solid var(--secoundary-border);
  width: 1.05em;
  height: 1.05em;
  /*clip: rect(0em, 0.5em, 1em, 0em);*/
  border-radius: 95px;
  z-index: 2;
  left: 2px;
  top: 25px;
}

.piesite:after,
.piesite_:after {
  content: "";
  display: block;
  position: absolute;
  top: 25px;
  left: em;
  width: 1em;
  height: 1em;
  /* background: #01abbf; */
  border-radius: 100%;
  border: 6px solid #f6f9fd;
  z-index: 1;
  /* right: 16px; */
  left: 0px;
}

.profile-reach {
  margin: 85px 15px 20px 15px;
}

.profile-reach span {
  color: var(--secoundary-color);
}

.profile-section {
  width: 100%;
  height: auto;
  /* background: var(--white); */
}

.profile-section-inner {
  position: relative;
  width: auto;
  margin-bottom: 25px;
  padding: 30px 20px;
  background: #ffffff;
  overflow: hidden;
  border-radius: 3px 3px;
  text-align: start;
}

.add_plus {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.add_plus h3 {
  text-transform: capitalize;
  font-size: 20px;
  position: relative;
  line-height: 0;
  display: inline-block;
}

.edit-btn,
.download_side {
  background: transparent !important;
  color: var(--primary-color);
  display: block;
  transition: 0.5s;
  font-size: 16px;
  outline: none !important;
  box-shadow: none !important;
  border: none;
  cursor: pointer;
}
a.del-special.ind-del.edit-btn {
    text-align: right;
    height: 100px;
    font-size: 20px;
    padding: 1% 5%;
    font-weight: 800;
}
.edit-btn:hover,
.download_side:hover {
  color: var(--secoundary-color);
}

.profile-section-detail {
  padding: 0px 0px;
}

.profile-section-detail p {
  /*text-transform: capitalize;*/
  margin: 0;
}
.email_lower{
    text-transform:lowercase;
}
.profile-section-detail ul {
  list-style: none;
  padding: 0px 0px;
  margin: 0px 0px;
  line-height: normal;
}

.profile-section-detail ul li {
  position: relative;
  width: 100%;
  text-transform: capitalize;
  font-size: 13px;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  column-gap: 5px;
}

.profile-section-detail ul li b {
  font-weight: bold;
  font-size: 13px;
  text-transform: capitalize;
  width: 100%;
  display: inline-block;
  vertical-align: top;
  max-width: 200px;
}

.profile-section-detail a {
  color: #428bca;
}

.skills {
  display: flex;
  justify-content: space-between;
  align-items: center;
    margin-bottom: 1%;
    text-transform: capitalize;
}
.videoCV {
    margin-bottom: 4%;
}


.skills label {
  display: block;
  font-size: 16px;
  width: 24.3%;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700;
}

.skills span {
  display: block;
  font-size: 14px;
  width: 33.3%;
}

.close-edit {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.close-edit button {
  color: #87a9fc;
}

.close-edit button:hover {
  color: var(--primary-color);
}

/**/
.sec-inner-desc ul li{
    list-style: unset !important;
}

/*************************************************************
                        Applied Job
*************************************************************/

.applied-job-container {
  padding: 1% 4%;
}

.applied-job-container form{
     margin-bottom: 2%;
}
div#example_wrapper .row:first-child {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1%;
}

div#example_wrapper .row:first-child .col-sm-12.col-md-6:first-child {
  width: 50%;
  text-align: left;
}

select.custom-select.custom-select-sm.form-control.form-control-sm {
  display: inline-block;
  width: unset;
}

div#example_wrapper .row:first-child .col-sm-12.col-md-6:last-child {
  width: 50%;
  text-align: right;
}

div#example_wrapper .row:first-child .col-sm-12.col-md-6 label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 600;
  text-align: left;
}

.dataTable {
  width: 100%;
  height: auto;
  max-width: 100%;
  margin-bottom: 2%;
}
/*div#example_wrapper .row:first-child {*/
/*    display: flex;*/
/*    width: 100%;*/
/*    height: auto;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*    margin-bottom: 1%;*/
/*}*/

/*div#example_wrapper .row:first-child .col-sm-12.col-md-6 {*/
/*    width: 20%;*/
/*}*/

/*div#example_wrapper .row:first-child .col-sm-12.col-md-6 label {*/
/*    width: inherit;*/
/*    display: flex;*/
/*    gap: 1rem;*/
/*    align-items: center;*/
/*    margin-bottom: 5px;*/
/*    font-weight: 600;*/
/*    text-align: left;*/

/*}*/

/*select.custom-select.custom-select-sm.form-control.form-control-sm{*/
/*    width: 25%;*/
/*    display: inline;*/
/*    margin: 1%;*/
/*}*/

/*input.form-control.form-control-sm {*/
/*    width: 70%;*/
/*    display: inline;*/
/*    margin: 0 1%;*/
/*}*/

div#example_wrapper .row:nth-child(2){
    width: 100%;
    height: auto;
    overflow: auto;
}

.dataTable thead tr th {
  color: var(--white);
  background: var(--secoundary-color);
  border-bottom-width: 2px;
  text-align: left;
}

.dataTable thead tr th,
.dataTable tbody tr th,
.dataTable thead tr td,
.dataTable tbody tr td {
  border: 1px solid #ddd;
  padding: 8px;
  line-height: 1.5;
  border-radius: 5px;
  white-space: nowrap;
}

.dataTable tbody tr:nth-child(odd) td,
.dataTable tbody tr:nth-child(odd) th {
  background-color: #22364512;
}

.dataTable .form-group {
  margin-bottom: 15px;
}

.dataTable .form-group a {
  color: #0072b1;
  transition: 0.7s;
}

.dataTable .form-group a:hover {
  color: #2a6496;
}

div#example_wrapper .row:last-child {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.applied-job-bottom-left {
  width: 40%;
}

.applied-job-bottom-center {
  width: 60%;
}

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}

.pagination > li {
  display: inline;
}

.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777;
  cursor: not-allowed;
  background-color: var(--white);
  border-color: #ddd;
}

.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #428bca;
  text-decoration: none;
  background-color: var(--white);
  border: 1px solid #ddd;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 2;
  color: #fff;
  cursor: default;
  background-color: var(--secoundary-color);
  border-color: var(--secoundary-border);
}

/* Employer Form  */
.employer-form {
  text-align: left;
}

.col-9 span.input-group_inline {
  padding-right: 15px;
  padding-left: 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.form-group2-checkbox input,
.form-group2 input {
  accent-color: var(--secoundary-color);
}

.cke_chrome {
  visibility: inherit;
  width: 93% !important;
}

.cke_top {
  background: #22364512 !important;
}

/* =|Media Query Starts|= */

@media only screen and (max-width: 1780px) {
  .header-social-icon {
    width: 25%;
  }
  .main-header nav ul li a {
    letter-spacing: 1px;
    margin: 0 20px;
  }
  .news-content .news-content-center h3 {
    font-size: 20px;
    margin: 0;
  }
}

@media only screen and (max-width: 1550px) {
  .news-content .news-content-center {
    padding: 0 3%;
  }
  .slide-content {
    max-width: 1040px;
    padding: 150px 15px 85px 15px;
  }
  .slide-content h1{
    font-size: 100px;
  }

  .banner-container-inner-content h2 {
    font-size: 43px;
  }
  .video-right-inner {
    padding: 125px 150px;
  }
  .sec1-container {
    width: 80%;
  }
  .sec7-container {
    width: 80%;
  }
  .sec10-work-inner {
    width: 70%;
  }
  .sec6-pricing-table {
    width: 80%;
  }
  .news-container-inner {
    width: 80%;
  }
  .footer-top-box .btn3 {
    width: fit-content !important;
  }
  .news-content .news-content-top {
    padding: 0 3%;
  }
  .brands-logo {
    width: 80%;
  }

  /* About Us */
  .about-banner-container-inner {
    width: 80%;
  }
  .hr-title,
  .offer-title {
    width: 80%;
  }
  .sec-weAre {
    height: max-content;
  }
  .weare-cont-top {
    width: 100%;
  }
  .weare-top-img {
    margin: 0 auto;
  }
  .weare-cont-top img {
    width: 50%;
    height: 350px;
    object-fit: cover;
  }
  .sec-weAre-container {
    height: max-content;
  }
  .weare-cont-progress {
    padding-top: 4rem;
  }

  /* About Us */
  /* .weare-top-img {
    margin: 0 auto;
    width: 100%;
  } */
  /* .weare-cont-top img:nth-child(1) {
    width: 60%;
  }
  .weare-cont-top img:nth-child(2) {
    width: 40%;
  } */
  /* .weare-cont-top {
    width: 100%;
  } */

  /* Services */
  a.services-sec5-box {
    width: 30%;
  }

  /* Services Details */
  .services-detail-container,
  .courses-detail-container,
  .blog-detail-container {
    width: 90%;
    gap: 30px;
    grid-template-columns: 5fr 2fr;
  }

  .courses-sidebar-box-inner-bottom,
  .courses-sidebar-box-inner-center {
    padding: 0;
  }
  .blog-detail {
    width: auto;
    padding: 0 3%;
  }
  .courses-sidebar {
    width: auto;
    padding: 0 3%;
  }

  /* Career Apply */
  .search-job-inner .form-control {
    width: 100% !important;
  }

  .job-container-bottom {
    column-gap: 0;
    flex-wrap: wrap;
    gap: 2px;
    justify-content: space-between;
  }
  .careers-sec .recent-job {
    width: 95%;
    word-break: unset;
    word-wrap: break-word;
    text-align: left;
  }

  .careers-sidebar-box-inner-bottom .sidebar-btn {
    padding: 24px;
  }
  .careers-sidebar-box {
    width: fit-content;
  }

  /* Contact Us */
  .contact-sec1 {
    height: max-content;
    width: auto;
    padding: 0 3%;
  }
  .contact-sec1-map-inner {
    height: max-content;
  }
  .contact-sec1-contact-form-inner {
    padding: 0;
    height: max-content;
  }
  .contact-sec1-container {
    height: max-content;
  }
  .contact-sec1-contact-form-inner form .form {
    flex-wrap: wrap;
    justify-content: start;
  }
  .contact-sec1-contact-form-input-field {
    width: 100%;
  }
  .contact-sec1-contact-form-inner form textarea {
    width: 85%;
  }
  .book-consultant {
    width: auto;
    padding: 0 3%;
  }
  .sec7 {
       padding: 0 2%;
  }
  /* Trouble */
  .signup-form-container-inner form input {
    padding: 10px 10px;
    margin: 0;
    width: 95% !important;
  }
  .signup-form-btn button {
    width: 100%;
  }

  /* Login */
  .signup-form-checkbox input[type="checkbox"] {
    width: unset !important;
  }
  label.check-box {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .signup-form-container-inner .trouble {
    text-align: center;
  }

  /* Signup */
  .signup-form-container-inner form select {
    width: 100% !important;
  }
}

@media only screen and (max-width: 1485px) {
  .header-social-icon {
    width: 30%;
  }
  .main-header {
    padding: 0 2%;
  }
  .main-header nav ul li a {
    margin: 0 15px;
  }
  .main-header nav ul {
    justify-content: center;
    width: max-content;
  }
  .slide-content h1 {
    font-size: 90px;
  }
  /*.sec1-box-content h5 {*/
  /*  margin: 1em 0;*/
  /*}*/
  .sec1-box-content h5 a {
    font-size: 16px;
  }
  .video-right-inner h2 {
    font-size: 35px;
  }
  .footer-top {
    width: 90%;
  }
  .footer-bottom {
    width: 90%;
  }

  /* About Us */
  .weare-cont-center {
    width: 100%;
  }

  /* Services */
  .services-sec1-container h2 {
    font-size: 38px;
  }
  a.services-sec5-box {
    width: 30%;
  }

  .careers-sidebar-box {
    width: auto;
  }
  .careers-detail-container {
    width: 90%;
    gap: 30px;
  }
    .cv-btn {
        padding: 16px 5px;
  }
    .cv-btn a {
        padding: 8px;
     }
}

@media only screen and (max-width: 1330px) {
  .logo {
    width: 20%;
  }
  .main-header .logo img {
    width: 100%;
  }
  .cv-btn {
        padding: 16px 5px;
  }
  .sec7-container {
    width: 90%;
  }
  /* About Us */
  .about-banner-container-inner {
    width: 88%;
  }
  .hr-title,
  .offer-title {
    width: 88%;
  }

  /* Services */
  a.services-sec5-box {
    width: 30%;
  }
  .services-banner-container-inner,
  .services-sec1-container {
    width: 80%;
  }
  .services-sec1-container {
    justify-content: space-between;
  }
  /* Courses */
  .services-sec1 {
    height: max-content;
  }

  /* Services Details */
  .services-sidebar-box1-inner {
    padding: 20px 15px;
  }
  .sidebar-contact-detail {
    flex-wrap: wrap;
    /* flex-direction: column; */
    align-items: center;
    /* justify-content: space-around; */
    /*text-align: center;*/
    margin-bottom: 10px;
  }
  .services-detail-content-box h2 {
    font-size: 40px;
  }

  /* Career */
  .job-container-top-right-top .btn {
    padding: 10px 34px;
  }
  .careers-sec {
    grid-template-columns: 3fr 8fr;
  }
  .careers-sidebar-box-inner-top {
    text-align: left;
  }

  /* Employer Form */
  .form-group2 {
    width: 100%;
  }
  .form-group2 .form-control {
    width: 100%;
  }
  .form-group2 .form2{
    width: 100%;
  }
}

@media only screen and (max-width: 1235px) {
  .header-social-icon {
    width: 32%;
  }
  .top-header-inner {
    width: 99%;
  }
  .main-header {
    padding: 0 7px;
  }
  .main-header nav ul li a {
    margin: 0 10px;
  }
  .top-header-left {
    width: 60%;
  }
  .top-header-right-btn {
    gap: 1rem;
  }
  .main-header nav ul li a {
    margin: 0 8px;
  }
  .banner-container-inner-content h2 {
    font-size: 37px;
  }
  .sec1-box-content h5 a {
    font-size: 14px;
  }
  .sec1-box-content h5 {
    margin: 0;
  }
  .video-right-inner h2 {
    font-size: 30px;
  }
  .sec7-container {
    width: 100%;
  }
  .sec7-form-container form select,
  .form-control {
    width: 49.3%;
  }
  .video-right-inner {
    padding: 125px 125px;
  }
  .news-content .news-content-center {
    height: 150px;
  }
  .news-content .news-content-center h3 {
    font-size: 16px;
  }
  .news-content p {
    font-size: 14px;
    margin-top: 5%;
  }
  .news-container-inner {
    width: 90%;
  }
  .footer-social .social-icons {
    width: 45%;
  }
  .footer-top-box .btn3 {
    width: 65%;
  }
  .footer-bottom-right {
    width: 45%;
  }
  .footer-bottom-left {
    width: 50%;
  }
  .brands-logo-inner {
    width: 100%;
  }

  /* About Us */
  .services-sec5-box {
    height: 550px;
  }
  .services-sec5-container {
    width: 90%;
  }

  /* Career */
  .careers-detail-container {
    width: 100%;
  }
  .careers-detail {
    width: auto;
    padding: 0 3%;
  }

  .blog-box-bottom {
    padding: 15px 7px;
  }
  .blog-main-container {
    width: auto;
    padding: 0 3%;
  }

  /* Employee Profile */
  .employee-profile-form-container-inner {
    width: auto;
    padding: 3% 3%;
  }

  /* Trouble */
  .signup-form-container-inner form input {
    padding: 9px 9px;
    margin: 0;
    width: 95% !important;
  }

div#example_filter input {
    width: 100% !important;
  }
}

@media only screen and (max-width: 1100px) {
  .main-header nav ul li a {
    margin: 0px 6px;
  }
  .banner-container-inner-content h2 {
    font-size: 30px;
  }
  .banner-container {
    margin-bottom: 1%;
  }
  .sec1-container {
    width: 90%;
  }
  .sec7-form-container form select,
  .form-control {
    width: 48.8%;
  }
  .sec7-form-container form input {
    width: 44%;
  }
  .video-right-inner {
    padding: 120px 90px;
  }
  .sec10-work-inner {
    width: 80%;
  }
  .sec6-pricing-box {
    width: 31%;
  }
  .sec6-pricing-table {
    width: 90%;
  }

  .sec4-container {
    flex-direction: column;
    text-align: center;
    height: unset;
    gap: 2rem;
    justify-content: center;
    padding: 0 3%;
  }
  .sec7-content-inner-top h2 {
    font-size: 38px;
  }

  .footer-logo img {
    height: 90px;
  }
  .footer-top-box-contact {
    height: 420px;
  }

  /* About Us */
  .about-banner-container-inner {
    width: 95%;
  }
  .hr-title,
  .offer-title {
    width: 95%;
  }
  .about-banner-box-inner {
    padding: 20px 3%;
  }

  /* How We Work */
  .work-box1-content h3 {
    font-size: 30px;
  }

  /* Services */
  .services-banner-container-inner,
  .services-sec1-container,
  .services-sec5-container {
    width: 90%;
  }
  .services-sec1-container {
    justify-content: space-between;
  }

  /* Services Details */
  .services-detail {
    width: auto;
    padding: 0 3%;
  }
  .services-detail-container,
  .courses-detail-container,
  .careers-detail-container,
  .blog-detail-container {
    width: 100%;
  }
  .courses-detail {
    width: auto;
    padding: 0 3%;
  }
  .courses-sidebar {
    padding: 0;
  }

  /* Career */
  .job-container-top-right-top h4 {
    font-size: 1.4rem;
  }

  /* Employee */
  .form-group2 {
    width: 100%;
    gap: 1rem;
  }

  /* Blog */
  .blog-box-bottom h4 {
    font-size: 20px;
  }

  /* Trouble */
  .signup-form-container-inner form input {
    padding: 6px 7px;
  }
}

@media only screen and (max-width: 1000px) {
  .menu_icn {
    display: block;
    width: 15%;
  }

  .menu_icn img {
    width: 30%;
  }
/* .comment-detail:nth-child(3) {
  margin-left: 0px;
} */
  .responsive_btn_container {
    display: block;
  }
  .logo2 {
    display: none !important;
    width: 20%;
  }
  .logo2 img {
    width: 50%;
  }
  .logo {
    width: 30%;
  }

  .cv-btn a {
    padding: 6px;
  }
  .cv-btn {
    padding: 10px 2px;
    display: none;
  }
  .main-header nav {
    display: none;
  }
  .brands-logo-inner a img {
    width: 100%;
  }

  .top-header {
    display: none;
  }
  header {
    height: max-content;
  }

  .top-header-inner {
    justify-content: flex-end;
  }

  .top-header-right-btn .btn {
    padding: 12px 25px;
  }

  .top-header-inner {
    width: auto;
    padding: 0 25px;
  }

  .main-header {
    padding: 0 25px;
  }
  .sec10-work-inner {
    width: 90%;
  }
  .sec1-box-content p {
    font-size: 13px;
  }
  .sec1-container {
    width: 100%;
  }
  .sec7-container {
    z-index: 2;
  }
  .video-right-inner {
    padding: 75px 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .sec1 {
    height: max-content;
  }

  .sec1-container {
    width: 100%;
    flex-wrap: wrap;
    padding: 0 3%;
  }

  .sec1-box {
    width: 49%;
  }

  .video-section-container {
    width: 100%;
    height: 600px;
  }
  .video-section {
    height: 600px;
  }

  .sec7-container {
    flex-wrap: wrap;
    width: 100%;
    height: max-content;
  }
  .sec7-content-inner {
    width: 100%;
  }
  .sec7-content-inner-bottom {
    justify-content: flex-start;
  }

  .sec7-content-inner-bottom a {
    padding-right: 2rem;
  }

  .sec7-content-inner-center {
    margin: 5% 0;
  }

  .sec7-form {
    width: 100%;
    height: max-content;
    margin-bottom: 3%;
  }
  .sec7-content {
    width: 100%;
    height: max-content;
    padding: 3%;
  }
  .sec7 {
    width: 100%;
    height: max-content;
    background-image: none;
  }
  .hr-container-bg {
    z-index: 1;
    background-position: 125% 0%;
    top: 25%;
    opacity: 1;
  }
  .sec6-pricing-box {
    box-shadow: 0px 10px 30px 0px rgb(53 82 99 / 9%);
    width: 47%;
  }

  .news-container-inner {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  .news-box {
    width: 35%;
  }
  .news-container,
  .news-container-inner {
    height: max-content;
  }
  .sec6,
  .sec8 {
    width: auto;
    padding: 0 3%;
  }
  .sec6,
  .sec6-container,
  .sec6-pricing-container {
    height: max-content;
    width: auto;
    margin-top:1rem;
  }
  .sec6-pricing-table {
    width: 100%;
    height: max-content;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .banner-container-inner {
    width: 75%;
  }
  .sec7-form-container form input {
    width: 46.6%;
  }
  .slide-content h5 {
    max-width: 600px;
  }
  .banner .slider-btn {
    top: 60%;
  }

  .cta-btn {
    padding: 18px 30px;
  }
  .banner-container-inner-content h2 {
    font-size: 25px;
  }
  .sec6-title {
    height: max-content;
  }
  .btn {
    padding: 15px 25px;
  }

  .price-btn {
    padding: 15px 25px;
  }

  .brands-logo-inner {
    width: 100%;
  }
  .video-section {
    width: auto;
    padding: 0 3%;
    height: max-content;
  }
  .video-section-container {
    width: auto;
    height: max-content;
    flex-wrap: wrap;
  }
  .video-left {
    top: unset;
    left: unset;
    width: 100%;
  }
  .video-right {
    width: 100%;
    height: max-content;
  }
  .video-right-inner p {
    text-align: center;
  }

  /* About Us */
  .about-banner-container-inner {
    width: auto;
    padding: 0 2%;
  }
  .abouut-banner-box-bottom h5 {
    font-size: 16px;
  }
  .abouut-banner-box-bottom p {
    font-size: 14px;
  }
  .about-banner-container {
    height: 260px;
  }
  .offer-title,
  .hr-title {
    width: 100%;
  }
  .sec-offer,
  .sec-hr {
    width: auto;
    padding: 0 3%;
  }
  .sec-hr-container {
    background-image: none;
  }
  .hr-container-bg {
    background-image: none;
  }
  .sec-weAre-container {
    width: 100%;
  }
  .services-sec5-container {
    width: 100%;
  }
  /* How We Work */
  .sec9-bg2,
  .sec9-bg1 {
    background-image: none;
  }

  .how-we-work-box1 {
    flex-wrap: wrap;
    justify-content: center;
  }
  .work-box1-img,
  .work-box1-content {
    width: auto;
    padding: 0 3%;
  }
  .how-we-work-box1:nth-child(3) {
    flex-wrap: wrap-reverse;
  }
  .value-sec3 {
    width: auto;
    padding: 10% 3% 3% 3%;
  }
  .tabcontent {
    padding: 20px 20px;
  }
  .value-sec3-tab button {
    padding: 15px 10px;
  }
  /* Services */
  .services-banner-container-inner,
  .services-sec1-container,
  .services-sec5-container {
    width: 100%;
  }
  .services-banner-container,
  .services-sec1 {
    width: auto;
    padding: 0 3%;
  }
  .services-sec5 {
    width: auto;
    padding: 0 3%;
  }

  /* Services Details */
  .services-detail-content-box {
    text-align: left;
  }
  .services-detail-container,
  .courses-detail-container,
  .careers-detail-container,
  .blog-detail-container {
    grid-template-columns: 12fr;
    grid-template-areas: "section";
  }
  .services-sidebar-box1-inner-top {
    text-align: left;
  }
  .services-sidebar-box1-inner-top a i {
    padding-right: 6%;
    margin: 0;
    padding-bottom: 1%;
  }
  .services-sidebar {
    height: max-content;
  }
  .services-sidebar-box3 {
    width: 30%;
    margin: 0 auto;
  }

  /* Courses Detail */
  .courses-detail-content-inner h1 {
    font-size: 2rem;
  }

  /* Career */
  .careers-sec {
    grid-template-columns: 12fr;
    grid-template-areas: "section";
    width: auto;
    padding: 0 3%;
  }
  .careers-sec .search-job {
    margin-left: 0;
    width: 100%;
  }
  .search-job-inner {
    width: auto;
    padding: 2% 3% 5% 3%;
  }
  .search-job-inner .form-control {
    width: 100% !important;
  }
  .inner-form-banner2 {
    min-height: 100px;
  }
  .careers-sec .recent-job {
    margin-left: 0;
    width: 100%;
  }
  .form-group select {
    width: 100% !important;
  }

  .sec4-career {
    width: auto;
    padding: 0 3%;
  }
  .sec4-container2 {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    height: max-content;
  }
  .cta-content2 {
    width: 100%;
    margin-bottom: 2rem;
  }
  .careers-sidebar-box-inner-bottom {
    margin: 5% 0 0 0;
    text-align: center;
  }
  .careers-sidebar-box-inner-bottom .sidebar-btn {
    width: 23%;
    text-align: center;
    padding: 15px;
  }

  .careers-detail-content {
    text-align: left;
  }

  .careers-sidebar-box-inner-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Blog */
  .blog-container-inner {
    justify-content: center;
  }
  .blog-box {
    width: 45%;
  }
  .blog-box-bottom h4 {
    font-size: 20px;
    height: 40px;
  }
  .blog-box-bottom .blog-desc {
    height: 70px;
  }
  .blog-load-btn {
    width: fit-content;
  }
  .blog-sidebar {
    height: max-content;
  }
  .blog-sidebar-box-inner .sidebar-blog-box {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  /* Contact Us */
  .contact-sec1-container-inner {
    flex-wrap: wrap-reverse;
  }
  .contact-sec1-map,
  .contact-sec1-contact-form {
    width: 100%;
  }
  .contact-sec1-contact-form-inner form textarea,
  .contact-sec1-contact-form-inner form input {
    width: 95%;
  }
  .contact-sec1-contact-form-inner form input.btn {
    width: fit-content;
  }
  .contact-sec1-container {
    padding: 0;
  }
  .book-consultant {
    height: max-content;
  }
  .sec7-content {
    padding-top: 9rem;
  }

  /* Employee */
  .form-group2 {
    flex-wrap: wrap;
  }

  .employee-profile-form {
    width: auto;
    padding: 0 3%;
  }
  .form-group2 .col-3 {
    width: 100%;
  }
  .form-group2 .col-9 {
    width: 100%;
  }

  /* Trouble */
  .signup-form-container-inner form input {
    padding: 6px 9px;
    width: 96% !important;
  }
  .signup-form-container-inner {
    width: auto;
    padding: 3%;
  }

  /* Profile */
  .prfile-page-grid {
    grid-template-columns: 12fr;
    grid-template-areas: "section";
  }
  .profile-detail{
    width: 55%;
    margin: 0 auto;
  }

  /* Footer */
  footer {
    width: auto;
    padding: 3% 3%;
    height: max-content;
  }
  .footer-container {
    height: max-content;
  }
  .footer-logo img {
    width: 40%;
  }
  .footer-social .social-icons {
    width: 20%;
  }
  .footer-bottom-left p:nth-child(2) {
    display: none;
  }
  .footer-top {
    width: 100%;
    height: max-content;
    flex-wrap: wrap;
    padding: 0 3%;
    justify-content: space-between;
  }
  .footer-top-box .btn3 {
    width: 26%;
  }

  .footer-bottom {
    justify-content: space-between;
    width: 100%;
    height: max-content;
  }
  .footer-top-box {
    height: max-content;
    width: 45%;
  }
  .footer-top .box3  {
    width: 50%;

  }
  .footer-logo {
    width: 100%;
  }
}
@media only screen and (max-width: 950px) {
  .services-banner-container {
    margin: 50px 0;
    height: max-content;
  }
  .services-sec1 {
    height: max-content;
  }
  .services-banner-container-inner,
  .services-sec1-container {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .services-banner-container-inner {
    justify-content: center;
  }
  .services-banner-box {
    width: 45%;
  }
  .services-banner-box .services-banner-box-hidden {
    max-height: 500px;
  }
  .services-banner-box-img1,
  .services-banner-box-img2,
  .services-banner-box-img3 {
    height: 250px;
  }
  .services-banner-box {
    width: 48%;
  }
  .services-sec1-container h2,
  .services-sec1-container p {
    width: 100%;
  }
  .services-sec5-box {
    padding: 30px 10px;
  }
}

@media only screen and (max-width: 850px) {
  .sec10-work-inner {
    width: 100%;
    padding: 0 3%;
  }
  .sec10-work-inner {
    flex-wrap: wrap;
  }
  .sec10-work-inner:before {
    display: none;
  }
  .sec6-pricing-box,
  .news-box {
    width: 40%;
  }
  .sec10 {
    height: max-content;
  }
  .sec-10-box-inner {
    height: 140px;
    width: 140px;
  }
  .cta-content h2 {
    font-size: 2.2rem;
  }
  .hr-container-bg {
    background-image: none;
  }

  /* About Us */
  .weare-cont-title h2 {
    font-size: 30px;
  }
  .services-sec5-box {
    padding: 65px 12px;
    height: 515px;
  }
  .services-sec5-box-content h4 {
    font-size: 20px;
  }
  .sec3 {
    height: max-content;
  }
  .text-light {
    padding: 0 10%;
  }
  .sec9-container .btn {
    padding: 18px 35px;
  }
  .services-sec5-box {
    height: max-content;
    padding: 25px 10px;
  }
  .brands {
    height: max-content;
  }
  .about-banner-container {
    height: 530px;
  }
  .about-banner-container-inner {
    flex-wrap: wrap;
  }
  .about-banner-box {
    width: 50%;
    margin-bottom: 3%;
  }

  /* Services */
  a.services-sec5-box {
    width: 45%;
  }
  .services-sec5-box-img {
    text-align: center;
  }
  .services-sec5-box-img img {
    width: 60%;
  }
  .service-form select {
    width: 100% !important;
  }
  .service-form textarea {
    width: 100%;
  }
  .courses-category {
    width: 60%;
  }

  /* Services Details */
  .services-sidebar-box3 {
    width: 50%;
  }
  .courses-detail-content-inner {
    padding: 0;
  }
  .course-accordion-content,
  .course-accordion {
    width: auto;
    padding: 0 3%;
  }
  .course-accordion-content {
    /* min-height: max-content !important; */
    overflow: scroll;
  }

  /* Trouble */
  .signup-form-container-inner form input {
    padding: 6px 7px;
  }
}

@media only screen and (max-width: 780px) {
  .video-right-inner p {
    text-align: left;
  }
  .video-right-inner h2 {
    font-size: 26px;
  }
  .video-right-inner {
    padding: 75px 70px;
  }
  .sec7-form-container form select,
  .form-control {
    width: 49.5%;
  }
  .sec6-pricing-box,
  .news-box {
    width: 46%;
  }
  .sec-10-box-inner {
    height: 120px;
    width: 120px;
  }
  .cta-content h2 {
    font-size: 2rem;
  }
  .sec6-pricing-box,
  .news-box {
    width: 47%;
  }
  .banner-container-inner-content h2 {
    font-size: 22px;
  }
  .sec7-form-container form input {
    width: 45%;
  }
  .sec7-form-container form select,
  .form-control {
    width: 48.3%;
  }

  .logo {
    width: 40%;
  }
  .menu_icn img {
    width: 40%;
  }
  .sec1-box {
    width: 47%;
  }
  .video-right-inner p {
    text-align: center;
  }
  .banner-container {
    margin-bottom: 15%;
    height: max-content;
  }

  /* About Us */
  .banner-container-inner-content h2 {
    font-size: 24px;
  }
  .sec-offer-container {
    height: max-content;
  }
  .sec-offer {
    height: 200px;
  }
  .sec-weAre-container-inner {
    width: auto;
    padding: 0 3% 60px;
  }
  .weare-cont-top {
    margin-top: 0;
    padding: 5% 0;
  }

  .weare-cont-center {
    height: max-content;
    flex-wrap: wrap;
  }
  .weare-top-img {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  .weare-cont-top img {
    width: unset;
    height: unset;
  }
  .weare-cont-progress {
    width: 100%;
    padding-top: 2rem;
  }
  .weare-cont-title {
    width: 100%;
  }
  .sec9-bg1,
  .sec9-bg2 {
    height: 350px;
  }
  .banner-container-inner-content {
    width: 100%;
  }
  .sec-hr {
    height: 250px;
  }

  /* Services */
  .services-sec1-container h2 {
    font-size: 33px;
  }
  .services-banner-box-hidden {
    width: 90%;
  }

  /*Blog*/
  .blog_details{
      gap:7px
  }

  /* Career Apply */
  .careers-apply {
    width: auto;
    padding: 0 3%;
  }
  .careers-apply-content {
    width: 100%;
    text-align: left;
  }

  /* Career */
  .search-job-inner .form-control {
    width: 96%;
  }

  .job-container {
    box-shadow: 0px 10px 30px 0px rgb(53 82 99 / 9%);
    margin-bottom: 2rem;
    padding: 15px;
  }

  /* Footer */
  .footer-bottom {
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
  }

  .footer-bottom-left {
    width: 75%;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .footer-bottom-left form {
    display: block !important;
  }

  .footer-bottom-right form {
    display: none;
  }
  .footer-bottom-right {
    width: 75%;
  }
  .copy-imedia {
    padding-top: 0;
  }
}

@media only screen and (max-width: 650px) {
  .brands-logo {
    width: 100%;
  }
  .sec-10-box-inner {
    height: 110px;
    width: 110px;
  }
  .sec6-pricing-box,
  .news-box {
    width: 48%;
  }
  .news-container-inner,
  .sec6-pricing-table {
    gap: 1rem;
  }
  .banner-container-inner-content h2 {
    font-size: 19px;
  }
  .banner-container-inner-content p {
    margin-bottom: 10px;
    font-size: 13px;
  }
  .footer-top-box .btn3 {
    width: 32%;
  }
  .sec10-container {
    height: 400px;
  }
  .sec10-work-inner {
    height: 300px;
  }
  .sec7-form-container form .btn {
    height: 50px;
  }
  .slide-content h1 {
    font-size: 60px;
  }
  .sec10-box-top h3 {
    font-size: 26px;
  }
  .sec10-box-top {
    max-width: 50px;
    max-height: 60px;
  }
  .cta-content h2 {
    font-size: 1.7rem;
  }
  .cta-content h4 {
    font-size: 13px;
  }
  .btn {
    padding: 12px 10px;
  }
  .hr-title h5 {
    font-size: 14px;
  }

  .hr-title a {
    font-size: 14px;
  }
  .sec6-title {
    justify-content: unset;
  }
  .services-sec5-box-img img {
    width: 60%;
  }
  .services-sec5-box-img {
    text-align: center;
  }

  /* How We Work */
  .sec6-title {
    width: auto;
    padding: 0 3%;
  }
  .work-box1-content h3 {
    font-size: 28px;
  }

  /* Services */
  .service-form {
    flex-wrap: wrap;
    gap: 0;
  }
  .service-form input,
  .service-form select,
  .service-form textarea {
    width: 100%;
  }
  .services-banner-box {
    width: 100%;
  }

  .services-banner-box-content h3 {
    margin: 0;
  }

  .services-banner-box .services-banner-box-hidden {
    margin: 0 auto;
  }
  .services-banner-box-overlay {
    width: auto;
    padding: 5%;
  }
  .services-banner-box-img1,
  .services-banner-box-img2,
  .services-banner-box-img3 {
    height: max-content;
  }
  .services-sec1-container p {
    font-size: 15px;
  }
  .services-sec1-container h2 {
    font-size: 26px;
  }
  .services-sec1-container {
    gap: 5px;
  }
  .service-sec5-service {
    width: auto;
    padding: 0 3%;
  }
  a.services-sec5-box {
    width: 100%;
  }
  .service-sec-contact-container {
    width: auto;
  }
  .service-form input::placeholder,
  .service-form select::placeholder,
  .service-form textarea::placeholder {
    font-size: 14px;
  }
  .sec9-container .btn {
    padding: 13px 21px;
  }

  .service-sec-contact-form {
    width: auto;
    height: max-content;
  }
  .service-sec-contact-container {
    height: max-content;
  }

  /* Courses */
  .courses-category-inner {
    margin-left: 0;
  }

  /* Courses Details */
  .courses-detail-content-inner h1 {
    font-size: 1.7rem;
  }

  /* Services Details */
  .services-detail-content-box-inner {
    flex-wrap: wrap;
    justify-content: center;
  }
  .services-sidebar-box1-inner-top a i {
    padding-bottom: 3%;
  }

  /* Career Apply */
  .careers-apply-content h2 {
    font-size: 30px;
  }

  /* Career */
  .job-container-top {
    align-items: flex-start;
    justify-content: start;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .job-container-bottom {
    flex-direction: column;
    gap: 1rem;
  }
  .job-container-top-left {
    width: 30%;
  }
  .careers-detail-content h2 {
    font-size: 32px;
  }
  .careers-sidebar-box-inner-top {
    align-items: start;
    flex-direction: column;
  }
  .careers-sidebar-box-inner-bottom {
    text-align: left;
  }
  .careers-sidebar-box-inner-bottom .sidebar-btn {
    padding: 12px;
  }
  .careers-sidebar-box-inner-bottom .sidebar-btn {
    width: 30%;
  }
  audio::-webkit-media-controls-current-time-display {
    display: none;
  }
  audio::-webkit-media-controls-time-remaining-display {
    display: none;
  }
  .blog-box-bottom h4 {
    font-size: 18px;
  }

  .blog-sidebar-box-inner .sidebar-blog-box img {
    object-fit: cover;
    width: 100%;
  }

  /* Trouble */
  .signup-form-container {
    width: 75%;
  }
  .signup-form {
    max-width: unset;
    width: auto;
    padding: 2% 4%;
  }
  .inner-form-banner-content h1 {
    font-size: 40px;
  }

  /* Employee */
  .form-group2 .col-4 {
    width: 50%;
  }
  .employee-profile-form-container {
    width: 100%;
  }
  .profile-form-container {
    width: 90%;
  }

  .profile-form-container-inner {
    width: auto;
    padding: 3%;
  }


  /* Profile */
  .profile-detail {
    width: 85%;
  }
  .profile-page{
    width: auto;
    padding: 0 3%;
  }
  .profile-detail {
    width: 100%;
  }

  /* Footer */
  .footer-top-box {
    width: 100%;
  }
  .footer-top .box3  {
    width: 100%;
    margin-bottom: 5%;
  }
}

@media only screen and (max-width: 550px) {
      .contact-detail:first-child a {
    width: 80%;
}
  .banner-blog-tag a{
    display: none;
  }
  .sec-10-box-inner {
    height: 150px;
    width: 150px;
  }
  .sec10-work-inner {
    height: 360px;
  }
  .sec10-container {
    gap: 2rem;
  }
  .sec10-box {
    width: 45%;
  }
  .sec10 {
    height: 520px;
  }
  .cta-content h2 {
    font-size: 1.5rem;
  }
  .sec7-content-inner-top h2 {
    font-size: 32px;
  }
  .sec7-content-inner-top p {
    font-size: 16px;
  }
  .sec1-box {
    width: 100%;
  }
  .slide-content h5 {
    font-size: 1rem;
  }
  .btn4 {
    height: 35px;
    width: 35px;
  }
  .slider-btn {
    height: 35px;
    width: 35px;
  }
  .sec6-pricing-box,
  .news-box {
    width: 90%;
  }
  .banner-container-inner-content h2 {
    font-size: 20px;
  }
  .brands-title .banner-container-inner-content {
    width: 75%;
  }
  .banner-container-inner-content {
    width: 90%;
  }
  .banner-container {
    margin-bottom: 25%;
  }

  /* How We Work */
  .banner-container-inner-content {
    width: 100%;
    margin-bottom:4%;
  }

  /* Services */
  .services-sec1-container h2 {
    font-size: 24px;
  }
  /* Courses */
  .courses-category-inner select {
    width: 80%;
  }
  .courses-category {
    width: 100%;
  }
  .comment-checkbox input {
    width: 4% !important;
  }

  /* Services detail */
  .services-detail-content-box h2 {
    font-size: 30px;
  }
  .btn {
    padding: 12px 25px;
  }
  .services-sidebar-box2-top h3 {
    padding: 20px 0px 0px 24px;
  }
  .services-sidebar-box2-bottom {
    padding: 0;
  }

  .services-sidebar-box3 {
    width: 65%;
  }
  .services-sidebar-box2 {
    margin-bottom: 30px;
  }
  .services-sidebar-box1-inner-center p {
    text-align: left;
  }

  /* Career Apply */
  .inner-banner-content h1 {
    font-size: 40px;
  }
  .careers-apply-content h2 {
    font-size: 25px;
  }

  .search-job-inner .form-control {
    width: 94.9%;
  }

  /* Career */
  .job-container-top-right-top {
    align-items: start;
    flex-flow: column-reverse;
  }

  .careers-sidebar-box-inner-bottom .sidebar-btn {
    width: 50%;
  }

  /* Blog */
  .blog-box {
    width: 100%;
  }
  .blog-load-btn {
    margin-top: 3rem;
  }
  .blog-main-container {
    margin-top: 20px;
  }

  /* Employee */
  .signup-form-step h3,
  .employee-profile-form-top .form_title {
    font-size: 20px;
  }

  /* Trouble */
  .inner-form-banner-content h1 {
    font-size: 38px;
  }

  .inner-form-banner-content {
    padding: 190px 15px 45px 15px;
  }
  .signup-form-container {
    width: auto;
  }

  /* Table */
  div#example_wrapper .row:first-child {
    flex-wrap: wrap;
  }
  div#example_wrapper .row:first-child .col-sm-12.col-md-6:first-child {
    margin-top: 4%;
    width: 100%;
  }
  div#example_wrapper .row:first-child .col-sm-12.col-md-6:last-child {
    width: 100%;
    text-align: left;
  }

  /* Profile */
  .icon-image img{
    width: 80%;
  }

.profile-section-inner {
    padding: 10px 9px;
}
  .profile-section-detail ul li b{
    max-width: unset;
  }
  .profile-section-detail ul li{
    flex-wrap: wrap;
  }
  .add_plus h3{
    line-height: unset;
  }
  .skills {
    flex-wrap: wrap;
  }
  .skills label{
    width: 100%;
  }
  .skills span {
    width: 65%;
  }
  .prfile-page-grid{
    width: 100%;
  }
  .add_plus {
    justify-content: start;
    gap: 2rem;
  }

  /* Footer */
  .footer-social .social-icons {
    width: 30%;
  }
  .footer-top-box .btn3 {
    width: 43%;
  }
  .footer-top {
    display: none;
  }
  .footer-bottom-left,
  .footer-bottom-right {
    width: 100%;
  }
  .footer-bottom-left form {
    width: 60% !important;
  }
  .sec6-pricing-box {
    height: 450px;
    justify-content: space-evenly;
  }
  .sec7-form-container form input {
    width: 44%;
  }
  .about-banner-container {
    height: 1450px;
  }
  .about-banner-box {
    width: 100%;
  }
  .sec-offer {
    height: 270px;
  }
  .inner-banner-img,
  .inner-banner {
    min-height: 400px;
  }
  .inner-banner-content {
    padding: 160px 15px;
  }

  /* How We Work */
  .value-sec3-tab button {
    width: 100%;
  }
  .value-sec3 {
    height: max-content;
  }

  .blog-container-inner {
    width: auto;
    padding: 0 5%;
  }

  /* Career */
  .cta-content h2 {
    font-size: 1.3rem;
  }
  .careers-detail-content h2 {
    font-size: 26px;
  }
}

@media only screen and (max-width: 450px) {
  .comment .btn {
    padding: 10px;
    margin: 1rem;
  }
  .slide-content h1 {
    font-size: 60px;
  }
  .footer-bottom-left form {
    width: 80% !important;
  }
  .banner-container {
    margin-bottom: 2%;
  }
  .banner-container-inner {
    width: 100%;
    position: unset;
    margin-top: 0;
  }
  .video-right-inner {
    padding: 10px;
  }
  .video-right-inner h2 {
    margin-bottom: 0;
  }
  .sec7-content-inner-top h2 {
    font-size: 24px;
  }
  .sec7-content-inner-top p {
    font-size: 15px;
  }
  .banner-container-inner-content h2 {
    font-size: 17px;
  }
  .copy-imedia {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .copy-imedia div:nth-child(1) {
    width: 100%;
  }
  .cta-content h2 {
    font-size: 1.2rem;
  }
  .main-header {
    padding: 0 3%;
  }
  .responsive_btn {
    gap: 5px;
  }
  .btn4 {
    width: 30px;
    height: 30px;
  }
  .menu_icn img {
    width: 50%;
  }
  .logo {
    width: 50%;
  }
  .sec7-content-inner-bottom {
    width: 100%;
  }
  .sec7-form-container form input {
    width: 100%;
  }
  .sec7-form-container form select,
  .form-control {
    width: 100%;
  }
  .sec-10-box-inner {
    height: 135px;
    width: 135px;
  }

  /* About Us */
  .sec-offer {
    height: 210px;
  }
  .weare-cont-title h2 {
    font-size: 20px;
  }
  .weare-cont-title p {
    font-size: 14px;
  }
  .progress-bar h6 {
    font-size: 15px;
  }

  /* How We Work */
  .inner-banner-content h5 {
    font-size: 16px;
  }
  .inner-banner-content h1 {
    font-size: 32px;
  }

  /* Services */
  .services-sec1-container h2 {
    font-size: 18px;
  }

  /* Services Details */
  .services-sidebar-box3 {
    width: 85%;
  }
  .services-detail-content-box h2 {
    font-size: 26px;
  }
  .courses-detail-content-inner h1 {
    font-size: 1.2rem;
  }

  /* Course Apply */
  .careers-apply-content h2 {
    font-size: 20px;
  }

  /* Blog */
  .blog-share {
    margin: 10% 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

  /* Career */
  .job-container-top-left {
    width: 50%;
  }
  .job-container-top-right-top h4 {
    font-size: 1.2rem;
  }
  .careers-detail-content h2 {
    font-size: 22px;
  }
  .job-desc h4,
  .job-res h4 {
    font-size: 20px;
  }

  /* Employee */
  .form-group2 label {
    font-size: 16px;
  }
  .signup-form-step h3,
  .employee-profile-form-top .form_title {
    font-size: 16px;
  }

  /* Trouble */
  .signup-form p {
    font-size: 13px;
  }
  .inner-form-banner-content {
    padding: 145px 15px 45px 15px;
  }
  .inner-form-banner-content h1 {
    font-size: 32px;
  }
  .sec7-form-container form select,
  .form-control {
    font-size: 13px;
  }
  .signup-form-checkbox label {
    width: auto;
  }
  .profile-page-title{
    font-size: 18px;
  }
}

@media only screen and (max-width: 360px){
  .profile-page-container{
    width: 100%;
  }
  .services-detail-content-box h2 {
    font-size: 22px;
  }
}

@media only screen and (max-width: 340px){
/*.profile-detail-inner {*/
/*    width: 96%;*/
/*  }*/
  .profile-detail-inner {
    width: 92%;
  }

}

.profile-link {
  text-decoration: underline;
  color: black;
}

.success-msg{
  margin: 17px 0;
  padding: 12px;
  border-radius: 3px 3px 3px 3px;
  color: #270;
  background-color: #DFF2BF;
  width: 448px;
  text-align: center;
}

.error-msg{
  margin: 17px 568px;
  padding: 12px;
  border-radius: 3px 3px 3px 3px;
  color: #D8000C;
  background-color: #FFBABA;
  width: 448px;
  text-align: center;
}

.btn-subscribe{
    background: none;
    border: none;
    outline: none;
}
