/*

TemplateMo 569 Edu Meeting

https://templatemo.com/tm-569-edu-meeting

*/

/* ---------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. reset
03. global styles
04. header
05. banner
06. features
07. testimonials
08. contact
09. footer
10. preloader
11. search
12. portfolio

--------------------------------------------- */
/* 
---------------------------------------------
font & reset css
--------------------------------------------- 
*/
@import url('https://fonts.googleapis.com/css2?family=Oxygen&family=Oxygen+Mono&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@200;300;600;700&family=Nunito+Sans:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap');

:root {
    
    --black: #2a2338;
    --white: #fbfbfb;
    --white2: #f7f8fa;
    --font-size: 1.3rem;
    --forestGreen: #007449;
    --kellyGreen: #89be63;
    --seaFoam: #c9dabc;
    --celadon: #afcca9;
    --golden: #b68f2e;

    --mono: "Oxygen mono", monospace;
    --sans: Oxygen, sans-serif;
    --nunito: Nunito, monospace;
    --josefin: Josefin, sans-serif;
}

/* 
---------------------------------------------
reset
--------------------------------------------- 
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
    clear: both;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header, nav, section, article, aside, footer, hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html, body {
  font-family: var(--mono), sans-serif;
  font-weight: 400;
  background-color: #fff;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  text-decoration: none !important;
  color: var(--kellyGreen);
}

a:hover {
	color: var(--forestGreen);
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0px;
  margin-bottom: 0px;
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 14px;
  line-height: 25px;
  color: var(--dark);
}

img {
 /* width: 100%;
  overflow: hidden;*/
}

/* 
---------------------------------------------
global styles
--------------------------------------------- 
*/
html,
body {
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

::selection {
  background: var(--kellyGreen);
  color: #fff;
}

::-moz-selection {
  background: var(--kellyGreen);
  color: #fff;
}

@media (max-width: 991px) {
  html, body {
    overflow-x: hidden;
  }
  .mobile-top-fix {
    margin-top: 30px;
    margin-bottom: 0px;
  }
  .mobile-bottom-fix {
    margin-bottom: 30px;
  }
  .mobile-bottom-fix-big {
    margin-bottom: 60px;
  }
}

.main-button-red a {
  font-size: 13px;
  color: #fff;
  background-color: #89be63;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 22px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all .3s;
}

.main-button-red a:hover {
  opacity: 0.9;
}

.main-button-yellow a {
  font-size: 13px;
  color: #fff;
  background-color: var(--kellyGreen);
  padding: 12px 30px;
  display: inline-block;
  border-radius: 22px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all .3s;
}

.main-button-yellow a:hover {
  opacity: 0.9;
}


.btn {
    font-size: 13px;
    color: #fff;
    padding: 12px 30px;
    display: inline-block;
    border-radius: 22px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all .3s;
}

.white_btn {
    background: #fff;
    color: #2b2b2b;
}
.white_btn:hover {
    background: #ebebeb;
}

.green_btn {
    background-color: var(--kellyGreen);
   
}
.green_btn:hover {
    background-color: #bce79d;
        color: #fff;
}

.grey_btn {
    background-color: #90a084;
}
.grey_btn:hover {
    background-color: #a6b89a;
     color: #fff;
}


.orangeRed_btn {
    background-color: #ff6500;
}

.orangeRed_btn:hover {
    color: #fff;
    background-color: #ff7317;
}


.modal-content {
    background-color: #005100;
    border: none;
    border-radius: 30px;
    overflow: hidden;
}

.modal-body {
    background: #005100;
}

.modal-footer {
    border-top: 1px solid #018401
}

section {
    padding: 18px 0;
    overflow: hidden;
}

.section-heading {
    margin-top: 0px;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(250,250,250,0.15);
}

.section-heading h2 {
  line-height: 40px;
    font-size: 40px;
    font-weight: 200;
    color: #2b2b2b;
}


/* 
---------------------------------------------
header
--------------------------------------------- 
*/

.sub-header {
  background-color: #1f272b;
  position: relative;
  z-index: 1111;
}

.sub-header .left-content p {
  color: #fff;
  padding: 8px 0px;
  font-size: 13px;
}

.sub-header .right-icons {
  text-align: right;
  padding: 8px 0px;
}

.sub-header .right-icons ul li {
  display: inline-block;
  margin-left: 15px;
}

.sub-header .right-icons ul li a {
  color: #fff;
  font-size: 14px;
  transition: all .3s;
}

.sub-header .right-icons ul li a:hover {
  color: var(--kellyGreen);
}

.sub-header .left-content p em {
   font-style: normal;
   color: var(--kellyGreen);
}

.text--kelly {
  color: var(--kellyGreen) !important;
}

.fixed-top{
    position: unset;
}

.background-header {
  background-color: #1c272b;
  height: 80px!important;
  position: fixed!important;
  top: 0!important;
  left: 0;
  right: 0;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.15)!important;
}

.background-header .main-nav .nav li a {
  color: #1e1e1e!important;
}

.background-header .logo,
.background-header .main-nav .nav li a {
  color: #1e1e1e!important;
}

.background-header .main-nav .nav li:hover a {
  color: #fb5849!important;
}

.background-header .nav li a.active {
  color: #fb5849!important;
}

.header-area {
  
  top: 0px;
  left: 0;
  right: 0;
  z-index: 100;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
  background-color: #1c272b;
}

.header-area .logo img {
    width: 280px;
}

.header-area .main-nav {
  min-height: 100px;
  background: transparent;
}


.background-header .main-nav .logo {
  line-height: 75px;
}

.background-header .nav {
  margin-top: 20px !important;
}

.header-area .main-nav .nav {
  float: right;
  margin-top: 30px;
  margin-right: 0px;
  background-color: transparent;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}

.header-area .main-nav .nav li a{
  padding-left: 15px;
  padding-right: 15px;
  background: transparent;
  border-radius: 20px;
}

.header-area .main-nav .nav li:last-child {
  padding-right: 0px;
}

.header-area .main-nav .nav li a {
  display: block;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--golden);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  height: 32px;
  line-height: 32px;
  border: transparent;
  letter-spacing: 1px;
}

.header-area .main-nav .nav li:hover a,
.header-area .main-nav .nav li a.active {
  color: var(--golden)!important;
   background: var(--forestGreen);
}

.background-header .main-nav .nav li:hover a,
.background-header .main-nav .nav li a.active {
  color: var(--kellyGreen)!important;
  opacity: 1;
}

.header-area .main-nav .nav li.has-sub {
  position: relative;
  padding-right: 15px;
}

.header-area .main-nav .nav li.has-sub:after {
  font-family: FontAwesome;
  content: "\f107";
  font-size: 12px;
  color: #fff;
  position: absolute;
  right: 5px;
  top: 12px;
}

.background-header .main-nav .nav li.has-sub:after {
  color: #1e1e1e;
}

.header-area .main-nav .nav li.has-sub ul.sub-menu {
  position: absolute;
  width: 200px;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  top: 40px;
  opacity: 0;
  transition: all .3s;
  transform: translateY(+2em);
  visibility: hidden;
  z-index: -1;
  background: var(--white2);
  border-radius: 3px;
}

.header-area .main-nav .nav li.has-sub ul.sub-menu li {
  margin-left: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

.header-area .main-nav .nav li.has-sub ul.sub-menu li a {
  opacity: 1;
  display: block;
  background: #f7f7f7;
  color: #2a2a2a!important;
  padding-left: 20px;
  height: 40px;
  line-height: 40px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  font-size: 13px;
  font-weight: 400;
  border-bottom: 1px solid #eee;
}

.header-area .main-nav .nav li.has-sub ul li a:hover {
  background: #fff;
  color: var(--kellyGreen)!important;
  padding-left: 25px;
}

.header-area .main-nav .nav li.has-sub ul li a:hover:before {
  width: 3px;
}

.header-area .main-nav .nav li.has-sub:hover ul.sub-menu {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transform: translateY(0%);
  transition-delay: 0s, 0s, 0.3s;
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 33px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 40px;
  display: none;
}

.background-header .main-nav .menu-trigger {
  top: 23px;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.background-header .main-nav .menu-trigger span,
.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:before {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:after {
  background-color: #1e1e1e;
}

.header-area.header-sticky {
  min-height: 80px;
}

.header-area .nav {
  margin-top: 30px;
}

.header-area.header-sticky .nav li a.active {
  color: var(--kellyGreen);
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 7px;
    padding-right: 7px;
  }
  .header-area .main-nav:before {
    display: none;
  }

    .msgBox h2 {
        float: none;
    }
}

@media (max-width: 767px) {
  
  .header-area.header-sticky .nav li a:hover,
  .header-area.header-sticky .nav li a.active {
    color: var(--kellyGreen)!important;
    opacity: 1;
  }
  .header-area.header-sticky .nav li.search-icon a {
    width: 100%;
  }
  .header-area {
    /* background-color: #f7f7f7; */
    padding: 0px 15px;
    height: 100px;
    box-shadow: none;
    text-align: center;
  }
  .header-area .container {
    padding: 0px;
  }
  .header-area .menu-trigger {
    display: block !important;
  }
  .header-area .main-nav {
    overflow: hidden;
  }
  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }
  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }
  .header-area.header-sticky .nav {
    margin-top: 100px !important;
  }
  .header-area .main-nav .nav li {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .header-area .main-nav .nav li a {
    height: 50px !important;
    line-height: 50px !important;
    padding: 0px !important;
    border: none !important;
    background: #f7f7f7 !important;
    color: #191a20 !important;
  }
  .header-area .main-nav .nav li a:hover {
    background: #eee !important;
    color: var(--kellyGreen)!important;
  }
  .header-area .main-nav .nav li.has-sub ul.sub-menu {
    position: relative;
    visibility: inherit;
    opacity: 1;
    z-index: 1;
    transform: translateY(0%);
    top: 0px;
    width: 100%;
    box-shadow: none;
    height: 0px;
    transition: all 0s;
  }
  .header-area .main-nav .nav li.submenu ul li a {
    font-size: 12px;
    font-weight: 400;
  }
  .header-area .main-nav .nav li.submenu ul li a:hover:before {
    width: 0px;
  }
  .header-area .main-nav .nav li.has-sub ul.sub-menu {
    height: auto;
  }
  .header-area .main-nav .nav li.has-sub:after {
    color: #3B566E;
    right: 30px;
    font-size: 14px;
    top: 15px;
  }
  .header-area .main-nav .nav li.submenu:hover ul, .header-area .main-nav .nav li.submenu:focus ul {
    height: 0px;
  }
}

@media (min-width: 767px) {
  .header-area .main-nav .nav {
    display: flex !important;
  }
}




/* slider */

.skw-pages {
  overflow: hidden;
  position: relative;
  height: 690px;
}

.skw-page {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.skw-page__half {
    position: absolute;
    top: 0;
    width: 50%;
    height: 690px;
    transition: transform 1s;
}
.skw-page__text--half {
  width: 40%;
  left: 0;
  transform: translate3d(-32.4vh, 100%, 0);
}
.skw-page__image--half {
  left: 40%;
  width: 60%;
  transform: translate3d(32.4vh, -100%, 0);
}
.skw-page.active .skw-page__half {
  transform: translate3d(0, 0, 0);
}
.skw-page__skewed {
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 140%;
  height: 100%;
  transform: skewX(-18deg);
  background: #000;
}
.skw-page__text--half .skw-page__skewed {
  left: -40%;
}
.skw-page__image--half .skw-page__skewed {
  right: -40%;
}
.skw-page__content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column wrap;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0 30%;
  color: #fff;
  transform: skewX(18deg);
  transition: transform 1s, opacity 1s;
  background-size: cover;
  background-position: center;
}
.skw-page__text--half .skw-page__content {
  /* padding-left: 10%;
    padding-right: 10%; */
  transform-origin: 100% 0;
}
.skw-page__image--half .skw-page__content {
  /* padding-left: 10%;
  padding-right: 10%; */
  transform-origin: 0 100%;
}
.skw-page.inactive .skw-page__content {
  opacity: 0.5;
  transform: skewX(18deg) scale(0.95);
}
.skw-page__heading {
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size: 25px;
  text-align: center;
}
.skw-page__description {
  font-size: 18px;
  text-align: center;
}
.skw-page__link {
  color: #ffa0a0;
}
.skw-page-1 .skw-page__image--half .skw-page__content {
    background-image: url("../sliders/youth_registration_form.jpg");
}
/*.skw-page-2 .skw-page__text--half .skw-page__content {
  background: #295970;
}*/
.skw-page-2 .skw-page__image--half .skw-page__content {
  background-image: url("../sliders/mobile_app.jpg")
}
/*.skw-page-3 .skw-page__text--half .skw-page__content {*/
  /* background-image: url("../sliders/leaves.jpg"); */
  /*background-color: #6F9940;*/
  /* background-size: cover; */
  
/*}*/
.skw-page-3 .skw-page__image--half .skw-page__content {
  background-image: url("../sliders/gym.jpg");
}

.skw-page-4 .skw-page__image--half .skw-page__content {
  background-image: url("../sliders/loan_scheme.jpg");
}
/*.skw-page-4 .skw-page__text--half .skw-page__content {
  background: #5875d4;
}*/



.skw-page-5 .skw-page__image--half .skw-page__content {
    background-image: url("../sliders/innovation.jpg");
}

.skw-page-6 .skw-page__text--half .skw-page__content {
  background: #51b1d8;
}
.skw-page-6 .skw-page__image--half .skw-page__content {
    background-image: url("../sliders/talent_hunt.jpg");
} 

/*.skw-page-5 .skw-page__text--half .skw-page__content {
  background: #97b3a7
  
}*/
/*
.skw-page-1 .skw-page__text--half .skw-page__content {
    background: #5ba889;
}*/

.skw-page.skw-page-1 .skw-page__skewed {
    background: #5ba889;
}


.skw-page.skw-page-2 .skw-page__skewed {
    background: rgb(41 89 112 );
}

.skw-page.skw-page-3 .skw-page__skewed {
    background: rgb(111 153 64);
}

.skw-page.skw-page-4 .skw-page__skewed {
    background: rgb(88 117 212);
}
.skw-page.skw-page-5 .skw-page__skewed {
    background: rgb(151 179 167);
}

.slider_inner .item {
    display: flex;
    height: 100%;
    overflow: hidden;
}
.slider_inner ._content {
    flex-basis: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fbfbfb;
}
.--title {
    margin-bottom: 20px;
    line-height: 1.5em;
    font-size: 1.8em;
}
.--desc {
    text-align: justify;
    padding-top: 30px;
    padding-bottom: 40px;
}
.--link {
    border: 2px solid;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 5px;
    border-color: var(--white);
    color: var(--white);
}

/* slider ends */

/* 
---------------------------------------------
banner
--------------------------------------------- 
*/

.main-banner {
  position: relative;
  max-height: 100%;
  overflow: hidden;
  margin-bottom: -7px;
}

#bg-video {
    min-width: 100%;
    min-height: 100vh;
    max-width: 100%;
    max-height: 100vh;
    object-fit: cover;
    z-index: -1;
}

#bg-video::-webkit-media-controls {
    display: none !important;
}

.video-overlay {
    position: absolute;
    background-color: rgb(24 18 37 / 72%);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
}

.main-banner .caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.main-banner .caption h6 {
  margin-top: 0px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

.main-banner .caption h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

.main-banner .caption h2 em {
  font-style: normal;
  color: var(--kellyGreen);
  font-weight: 900;
}

.main-banner .caption p {
  color: #fff;
  font-size: 14px;
  max-width: 570px;
}

.main-banner .caption .main-button-red {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {

  .main-banner .caption h6 {
    font-weight: 500;
  }

  .main-banner .caption h2 {
    font-size: 36px;
  }

}


/*
---------------------------------------------
services
---------------------------------------------
*/

.imgBox {
    width: 200px;
    position: relative;
    margin: 30px;
    height: 200px;
    z-index: 1;
    float: left;
}

.imgBox img {
    width: 100%;
}

.imgBox:before {
    content: '';
    border: 6px solid red;
    position: absolute;
    width: 200px;
    height: 200px;
    margin-top: -20px;
    margin-left: -20px;
    z-index: -1;
    border-color: #89be63;
}
.msgBox {
    width: auto;
    line-height: 1.7;
    font-size: 1.5em;
    text-align: justify;
}
.msgBox h2 {
    float: right; 
    text-align: right;
    line-height: 1;
}

.msgBox h2 .slab {
    width: 80px;
    height: 4px;
    background: #89be63;
    display: inline-block;
    margin-right: 5px;
}

.msgBox h2 small {
    font-size: 60%;
}


.msgBox .social .menu-item {
    display: inline-block;
    color: hsl(0, 0%, 100%);
    font-size: 1em;
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    text-align: center;
    line-height: 1.5;
    background-color: #bce79d;
    margin-right: 8px; 
}


.services {
  margin-top: 100px;
  /* position: absolute; */
  width: 100%;
}

.services .item {
  /* background-image: url(../images/service-item-bg.jpg); */
  background-color: var(--forestGreen);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 20px;
  text-align: center;
  color: #fff;
  padding: 40px;
  position: relative;
}

.services .item:hover {
    box-shadow: 0px 0px 4px 3px #bce79d;
}
.services .item .icon {
    width: 80px;
    margin: 0 auto;
}

.services .item .icon img {
    width: 100%;
}

.services .item h4 {
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}

.services .item p {
  color: #fff;
  font-size: 13px;
}

.services .owl-nav {
  display: inline-block !important;
  text-align: center;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-25px);
}
    
.services .owl-nav .owl-prev{
  margin-right: 10px;
  outline: none;
  position: absolute;
  left: -80px;
}

.services .owl-nav .owl-prev span,
.services .owl-nav .owl-next span {
  opacity: 0;
}

.services .owl-nav .owl-prev:before {
  display: inline-block;
  font-family: 'FontAwesome';
  color: #1e1e1e;
  font-size: 25px;
  font-weight: 700;
  content: '\f104';
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
}

.services .owl-nav .owl-prev {
  opacity: 1;
  transition: all .5s;
}

.services .owl-nav .owl-prev:hover {
  opacity: 0.9;
}

.services .owl-nav .owl-next {
  opacity: 1;
  transition: all .5s;
}

.services .owl-nav .owl-next:hover {
  opacity: 0.9;
}

.services .owl-nav .owl-next{
  margin-left: 10px;
  outline: none;
  position: absolute;
  right: -85px;
}

.services .owl-nav .owl-next:before {
  display: inline-block;
  font-family: 'FontAwesome';
  color: #1e1e1e;
  font-size: 25px;
  font-weight: 700;
  content: '\f105';
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
}


/*
---------------------------------------------
upcoming meetings
---------------------------------------------
*/

section.upcoming-meetings {
  /* background-image: url(../images/meetings-bg.jpg); */
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 230px;
  padding-bottom: 110px;
}

section.upcoming-meetings .section-heading {
  text-align: center;
}

section.upcoming-meetings .categories {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px;
  margin-right: 45px;
}

section.upcoming-meetings .categories h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1f272b;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

section.upcoming-meetings .categories ul li {
  display: inline-block;
  margin-bottom: 15px;
}

section.upcoming-meetings .categories ul li a {
  font-size: 15px;
  color: #1f272b;
  font-weight: 500;
  transition: all .3s;
}

section.upcoming-meetings .categories ul li a:hover {
  color: #a12c2f;
}

section.upcoming-meetings .categories .main-button-red {
  border-top: 1px solid #eee;
  padding-top: 30px;
  margin-top: 15px;
}

section.upcoming-meetings .categories .main-button-red a {
  width: 100%;
  text-align: center;
}

.meeting-item {
  margin-bottom: 30px;
  border-radius: 20px;
  overflow: hidden;
  transition: all .3s;
}

.meeting-item:hover, .meeting-item:active, .meeting-item:focus {
    box-shadow: 0px 0px 4px 3px #bce79d;
}

.meeting-item .thumb {
  position: relative;
}

.meeting-item .thumb a {
    display: block;
    height: 270px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.meeting-item .thumb img {
    width: 100%;
}



.meeting-item .thumb .price {
  position: absolute;
  left: 20px;
  top: 20px;
}

.meeting-item .thumb .price span {
  font-size: 16px;
  color: #1f272b;
  font-weight: 600;
  background-color: rgba(250,250,250,0.9);
  padding: 7px 12px;
  border-radius: 10px;
}

.meeting-item .down-content {
  background-color: #fff;
  padding: 15px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.meeting-item .down-content .date {
  float: left;
  text-align: center;
  display: inline-block;
  margin-right: 20px;
}

.meeting-item .down-content .date h6 {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--forestGreen);
}

.meeting-item .down-content .date span {
  display: block;
  color: var(--golden);;
  font-size: 22px;
  margin-top: 7px;
}

.meeting-item .down-content h4 {
  font-size: 16px;
  color: #1f272b;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.meeting-item .down-content p {
  margin-left: 50px;
  color: #1f272b;
  font-size: 14px;
}



/*
---------------------------------------------
apply now
---------------------------------------------
*/

section.apply-now {
  background-image: url(../images/apply-3.jpg);
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px 0px;
}

section.apply-now .item {
background-color: rgba(250,250,250,0.15);
padding: 15px;
margin-bottom: 30px;
display: flex;
}

section.apply-now .item .icon {
    border-right: 2px solid #0000004f;
}

section.apply-now .item .icon img {
    width: 120px;
}

section.apply-now .item .text {
    padding: 20px;
}


section.apply-now .item h3 {
  color: #fff;
    /* text-transform: uppercase; */
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

section.apply-now .item p {
  color: #fff;
  margin-bottom: 20px;
}

.accordions {
  border-radius: 20px;
  padding: 40px;
  background-color: #fff;
  margin-left: 45px;
}
.accordions .accordion {
  border-bottom: 1px solid #eee;
}
.accordions .last-accordion {
  border-bottom: none;
}
.accordion-head {
  padding: 20px;  
  font-size: 18px;
  font-weight: 700;
  color: #1f272b;
  cursor: pointer;
  transition: color 200ms ease-in-out;
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .accordion-head {
    padding: 1rem;
    font-size: 1.2rem;
  }
}
.accordion-head .icon {
  float: right;
  transition: transform 200ms ease-in-out;
}
.accordion-head.is-open {
  color: var(--kellyGreen);
  border-bottom: none;
}
.accordion-head.is-open .icon {
  transform: rotate(45deg);
}
.accordion-body {
  overflow: hidden;
  height: 0;
  transition: height 300ms ease-in-out;
  border-bottom: 1px solid #fff;
  padding: 0;
}
.accordion-body > .content {
  padding: 20px;
  padding-top: 0;
}


.eligibility_criteria {
    border-radius: 20px;
    padding: 40px;
    background-color: #fff;
    margin-left: 45px;
}

.eligibility_criteria .section-heading {
    margin-bottom: 30px;
    border-bottom: 1px solid rgb(60 60 60 / 12%);
}

.eligibility_criteria p {
    font-size: 1.1em;
    margin-top: 10px;
}
    /* 
---------------------------------------------
courses
--------------------------------------------- 
*/
    section.our-courses {
        /* background-image: url(../images/meetings-bg.jpg); */
        background-color: var(--celadon);
        background-position: center center;
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-size: cover;
        padding-top: 140px;
        padding-bottom: 130px;
    }

.our-courses .item .down-content {
  background-color: #fff;
}

.our-courses .item .down-content h4 {
  padding: 25px;
  font-size: 18px;
  color: #1f272b;
  text-align: center; 
  border-bottom: 1px solid #eee;
}

.our-courses .item .down-content .info {
  padding: 25px;
}

.our-courses .item .down-content .info ul li {
  display: inline-block;
  margin-right: 1px;
}

.our-courses .item .down-content .info ul li i {
  color: var(--kellyGreen);
  font-size: 14px;
}

.our-courses .item .down-content .info span {
  color: #a12c2f;
  font-size: 15px;
  font-weight: 600;
  text-align: right;
  display: inline-block;
  width: 100%;
}

.our-courses .owl-nav {
  text-align: center;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-45px);
}

.our-courses .owl-dots {
  display: inline-block;
  text-align: center;
  width: 100%;
  margin-top: 40px;
}

.our-courses .owl-dots .owl-dot {
  transition: all .5s;
  width: 7px;
  height: 7px;
  background-color: #fff;
  margin: 0px 5px;
  border-radius: 50%;
  outline: none;
}

.our-courses .owl-dots .active {
  width: 24px;
  height: 8px;
  border-radius: 4px;
}
    
.our-courses .owl-nav .owl-prev{
  margin-right: 10px;
  outline: none;
  position: absolute;
  left: -80px;
}

.our-courses .owl-nav .owl-prev span,
.our-courses .owl-nav .owl-next span {
  opacity: 0;
}

.our-courses .owl-nav .owl-prev:before {
  display: inline-block;
  font-family: 'FontAwesome';
  color: #1e1e1e;
  font-size: 25px;
  font-weight: 700;
  content: '\f104';
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
}

.our-courses .owl-nav .owl-prev {
  opacity: 1;
  transition: all .5s;
}

.our-courses .owl-nav .owl-prev:hover {
  opacity: 0.9;
}

.our-courses .owl-nav .owl-next {
  opacity: 1;
  transition: all .5s;
}

.our-courses .owl-nav .owl-next:hover {
  opacity: 0.9;
}

.our-courses .owl-nav .owl-next{
  margin-left: 10px;
  outline: none;
  position: absolute;
  right: -85px;
}

.our-courses .owl-nav .owl-next:before {
  display: inline-block;
  font-family: 'FontAwesome';
  color: #1e1e1e;
  font-size: 25px;
  font-weight: 700;
  content: '\f105';
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
}


/*
---------------------------------------------
our facts
---------------------------------------------
*/

section.our-facts {
  background-image: url(../images/facts-bg.jpg);
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px 0px 125px 0px;
}

section.our-facts h2 {
  font-size: 50px;
  color: #fff;
  line-height: 50px;
  font-weight: 300;
  letter-spacing: 0.5px;
  margin-bottom: 50px;
}

.count-area-content {
  text-align: center;
  background-color: rgba(250,250,250,0.15);
  border-radius: 20px;
  padding: 25px 30px 35px 30px;
  margin: 15px 0px;
}

.percentage .count-digit:after {
  content: '%';
  margin-left: 3px;
}

.count-digit {
    margin: 5px 0px;
    color: var(--kellyGreen);
    font-weight: 700;
    font-size: 36px;
}
.count-title {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.5px;
}

.new-students {
  margin-top: 45px;
}

section.our-facts .video {
  text-align: center;
  margin-left: 70px;
  background-image: url(../images/july2019.jpeg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 20px;
}

section.our-facts .video img {
  padding: 170px 0px;
  max-width: 56px;
}


/* 
---------------------------------------------
contact us
--------------------------------------------- 
*/

section.contact-us {
  background-image: url(../images/meetings-bg.jpg);
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px 0px 140px 0px;
}

section.contact-us #contact {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px;
}

section.contact-us #contact h2 {
  text-transform: uppercase;
  color: #1f272b;
  border-bottom: 1px solid #eee;
  margin-bottom: 40px;
  padding-bottom: 20px;
  font-size: 22px;
  font-weight: 700;
}

section.contact-us #contact input {
  width: 100%;
  height: 40px;
  border-radius: 20px;
  background-color: #f7f7f7;
  outline: none;
  border: none;
  box-shadow: none;
  font-size: 13px;
  font-weight: 500;
  color: #7a7a7a;
  padding: 0px 15px;
  margin-bottom: 30px;
}

section.contact-us #contact textarea {
  width: 100%;
  border-radius: 20px;
  background-color: #f7f7f7;
  outline: none;
  border: none;
  box-shadow: none;
  font-size: 13px;
  font-weight: 500;
  color: #7a7a7a;
  padding: 15px;
  margin-bottom: 30px;
}

section.contact-us #contact button {
  font-size: 13px;
  color: #fff;
  background-color: var(--kellyGreen);
  padding: 12px 30px;
  display: inline-block;
  border-radius: 22px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all .3s;
  border: none;
  outline: none;
}

section.contact-us #contact button:hover {
  opacity: 0.9;
}

section.contact-us .right-info {
  background-color: var(--forestGreen);
  border-radius: 20px;
  padding: 40px;
}

section.contact-us .right-info ul li {
  display: inline-block;
  border-bottom: 1px solid rgba(250,250,250,0.15);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

section.contact-us .right-info ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

section.contact-us .right-info ul li h6 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

section.contact-us .right-info ul li span {
  display: block;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
}
section.contact-us .right-info ul li span a:hover {
    color: #72a150;
}

.footer {
    text-align: center;
    border-top: 1px solid rgba(250,250,250,0.15);
    padding: 20px 0px;
    background: #1f262c;
}

.footer p {
  text-transform: uppercase;
  font-size: 14px;
  color: #fff;
}

.footer p a {
  color: var(--kellyGreen);
}


/*
---------------------------------------------
heading page
---------------------------------------------
*/

section.heading-page {
  background-image: url(../images/heading-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 230px;
  padding-bottom: 110px;
  text-align: center;
}

section.heading-page h6 {
  margin-top: 0px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

section.heading-page h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}


/*
---------------------------------------------
upcoming meetings page
---------------------------------------------
*/

section.meetings-page {
  background-image: url(../images/meetings-page-bg.jpg);
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 140px;
  padding-bottom: 0px;
}

section.meetings-page .filters {
  text-align: center;
  margin-bottom: 60px;
}

section.meetings-page .filters li {
  font-size: 13px;
  color: #a12c2f;
  background-color: #fff;
  padding: 11px 30px;
  display: inline-block;
  border-radius: 22px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all .3s;
  cursor: pointer;
  margin: 0px 3px;
}

section.meetings-page .filters ul li.active,
section.meetings-page .filters ul li:hover {
  background-color: #a12c2f;
  color: #fff;
}

section.meetings-page .pagination {
  text-align: center;
  width: 100%;
  margin-top: 30px;
  display: inline-block;
}

section.meetings-page .pagination ul li {
  display: inline-block;
}

section.meetings-page .pagination ul li a {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 10px;
  color: #1f272b;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  font-weight: 600;
  font-size: 15px;
  transition: all .3s;
}

section.meetings-page .main-button-red {
  text-align: center;
}

section.meetings-page .main-button-red a {
  padding: 12px 60px;
  text-align: center;
  margin-top: 30px;
}

section.meetings-page .pagination ul li.active a,
section.meetings-page .pagination ul li a:hover {
  background-color: #a12c2f;
  color: #fff;
}

.meeting-single-item .thumb {
  position: relative;
}

.meeting-single-item .thumb img {
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}

.meeting-single-item .thumb .price {
  position: absolute;
  left: 20px;
  top: 20px;
}

.meeting-single-item .thumb .price span {
  font-size: 16px;
  color: #1f272b;
  font-weight: 600;
  background-color: rgba(250,250,250,0.9);
  padding: 7px 12px;
  border-radius: 10px;
}

.meeting-single-item .down-content {
  background-color: #fff;
  padding: 40px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.meeting-single-item .thumb .date {
  position: absolute;
  background-color: rgba(250,250,250,0.9);
  width: 80px;
  height: 80px;
  text-align: center;
  padding: 15px 0px;
  border-radius: 10px;
  right: 20px;
  top: 20px;
}

.meeting-single-item .thumb .date h6 {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  color: #a12c2f;
}

.meeting-single-item .thumb .date span {
  display: block;
  color: #1f272b;
  font-size: 22px;
  margin-top: 7px;
}

.meeting-single-item .down-content h4 {
  font-size: 22px;
  color: #1f272b;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.meeting-single-item .down-content h5 {
  font-size: 18px;
  color: #1f272b;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 15px;
}

.meeting-single-item .down-content p {
  color: #1f272b;
  font-size: 14px;
}

.meeting-single-item .down-content p.description {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #eee;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}

.meeting-single-item .down-content .share {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}

.meeting-single-item .down-content .share h5 {
  float: left;
  margin-right: 10px;
  margin-bottom: 0px;
}

.meeting-single-item .down-content .share ul li {
  display: inline;
}

.meeting-single-item .down-content .share ul li a {
  font-size: 14px;
  color: #1f272b;
  transition: all .3s;
}

.meeting-single-item .down-content .share ul li a:hover {
  color: var(--kellyGreen);
}

/* Meeting item column */
.templatemo-item-col {
	width: 31%;
}

@media (max-width: 992px) {
	.templatemo-item-col {
		width: 45%;
	}
    .skw-pages {
        height: 500px;
    }
    .skw-page__half {
        width: 100%;
        left: 0;
        height: 500px;
    }
    .skw-page__skewed {
        width: 100%;
        transform: initial;
    }
    .skw-page__content {
        transform: initial;
    }
    .skw-page__skewed {
        transform: initial;
        right: 0 !important;
        left: 0 !important;
    }
    .skw-page.skw-page-1 .skw-page__skewed {
        background: #5ba889b3;
    }
    .skw-page__text--half {
        z-index: 10;
    }
    .skw-page__content {
        padding: 0 30px;
    }
    .skw-page.active.inactive {
        display: none;
    }

    .skw-page.skw-page-2 .skw-page__skewed {
        background: rgb(41 89 112 / 70% );
    }

    .skw-page.skw-page-3 .skw-page__skewed {
        background: rgb(111 153 64 / 70% );
    }

    .skw-page.skw-page-4 .skw-page__skewed {
        background: rgb(88 117 212 / 70% );
    }

    .skw-page.skw-page-5 .skw-page__skewed {
        background: rgb(151 179 167 / 70% );
    }
}

@media (max-width: 767px) {
	.templatemo-item-col {
		width: 100%;
	}
}

/********************* Social Icons *********/

.circular-menu {
  position: fixed;
  bottom: 10%;
  right: 1em;
  z-index: 100;
}

.circular-menu .floating-btn {
  display: block;
  width: 3.5em;
  height: 3.5em;
  border-radius: 50%;
  background-color: var(--white);
  box-shadow: 0 2px 5px 0 hsla(0, 0%, 0%, 0.26);
  color: var(--black);
  text-align: center;
  line-height: 3.9;
  cursor: pointer;
  outline: 0;
}

.circular-menu.active .floating-btn {
  box-shadow: inset 0 0 3px hsla(0, 0%, 0%, 0.3);
}

.circular-menu .floating-btn:active {
  box-shadow: 0 4px 8px 0 hsla(0, 0%, 0%, 0.4);
}

.circular-menu .floating-btn i {
  font-size: 1.3em;
  transition: transform 0.2s;
}

.circular-menu.active .floating-btn i {
  transform: rotate(-45deg);
}

.circular-menu:after {
  display: block;
  content: " ";
  width: 3.5em;
  height: 3.5em;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -2;
  transition: all 0.3s ease;
}

.circular-menu.active:after {
  transform: scale3d(5.5, 5.5, 1);
  transition-timing-function: cubic-bezier(0.68, 1.55, 0.265, 1);
}

.circular-menu .items-wrapper {
  padding: 0;
  margin: 0;
}

.circular-menu .menu-item {
  position: absolute;
  top: 0.2em;
  right: 0.2em;
  z-index: -1;
  display: block;
  text-decoration: none;
  color: hsl(0, 0%, 100%);
  font-size: 1em;
  width: 3em;
  height: 3em;
  border-radius: 50%;
  text-align: center;
  line-height: 3;
  background-color: var(--kellyGreen);
  transition: transform 0.3s ease, background 0.2s ease;
}

.circular-menu .menu-item:hover {
  background-color: #bce79d;
}


.circular-menu.active .menu-item {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.circular-menu.active .menu-item:nth-child(1) {
  transform: translate3d(0em, -4em, 0);
}

.circular-menu.active .menu-item:nth-child(2) {
  transform: translate3d(-3.5em, -2em, 0);
}

.circular-menu.active .menu-item:nth-child(3) {
  transform: translate3d(-3.3em,1.8em, 0);
}

.circular-menu.active .menu-item:nth-child(4) {
  transform: translate3d(0em, 3.8em, 0);
}

.circular-menu .menu-item:nth-child(1) {
  /* background: #3b5998; */
}

.circular-menu .menu-item:nth-child(2) {
  /* background: #1DA1F2; */
}
.circular-menu .menu-item:nth-child(3) {
  /* background: #c4302b; */
}

.circular-menu .menu-item:nth-child(4) {
  /* background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); */
}

/**
 * The other theme for this menu
 */


section.successStories {
  /* background-image: url(../images/meetings-bg.jpg); */
  background-color: #afcca9;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 2px;
  padding-bottom: 2px;
}

.successStories .item .down-content {
    background-color: #fff;
    border-radius: 0 0 10px 10px;
}
.successStories .item .down-content h4 {
  padding: 25px;
  font-size: 18px;
  color: #1f272b;
  text-align: center; 
  border-bottom: 1px solid #eee;
}

.successStories .item .down-content .info ul li {
  display: inline-block;
  margin-right: 1px;
}

.successStories .item .down-content .info ul li i {
  color: var(--kellyGreen);
  font-size: 14px;
}

.successStories .item .down-content .info span {
  color: #a12c2f;
  font-size: 15px;
  font-weight: 600;
  text-align: right;
  display: inline-block;
  width: 100%;
}

.successStories .owl-nav {
  text-align: center;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-45px);
}

.successStories .owl-dots {
  display: inline-block;
  text-align: center;
  width: 100%;
  margin-top: 40px;
}

.successStories .owl-dots .owl-dot {
  transition: all .5s;
  width: 7px;
  height: 7px;
  background-color: #fff;
  margin: 0px 5px;
  border-radius: 50%;
  outline: none;
}

.successStories .owl-dots .active {
  width: 24px;
  height: 8px;
  border-radius: 4px;
}
    
.successStories .owl-nav .owl-prev{
  margin-right: 10px;
  outline: none;
  position: absolute;
  left: -80px;
}

.successStories .owl-nav .owl-prev span,
.successStories .owl-nav .owl-next span {
  opacity: 0;
}

.successStories .owl-nav .owl-prev:before {
  display: inline-block;
  font-family: 'bootstrap-icons' !important;
  color: #1e1e1e;
  font-size: 25px;
  font-weight: 700;
  content: "\f284";
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
}

.successStories .owl-nav .owl-prev {
  opacity: 1;
  transition: all .5s;
}

.successStories .owl-nav .owl-prev:hover {
  opacity: 0.9;
}

.successStories .owl-nav .owl-next {
  opacity: 1;
  transition: all .5s;
}

.successStories .owl-nav .owl-next:hover {
  opacity: 0.9;
}

.successStories .owl-nav .owl-next{
  margin-left: 10px;
  outline: none;
  position: absolute;
  right: -85px;
}

.successStories .owl-nav .owl-next:before {
  display: inline-block;
  font-family: 'bootstrap-icons';
  color: #1e1e1e;
  font-size: 25px;
  font-weight: 700;
  content: "\f285";
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
}

.down-content {
    padding: 10px;
}

.down-content .name {
    font-weight: 600;
    /* color: #90bc87; */
}

.down-content .businessType {
    font-family: var(--nunito);
    color: #858585;

}

.down-content .loc {
    display: flex;
    font-size: .9em;
}

.down-content .loc i {
    font-size: 1.5em;
    color: #9aba93;
}

.down-content .location{
    font-family: var(--nunito);
    color: #858585;
    line-height: 1.2;
    margin-left: 10px;
}

.down-content .icon span {
    width: 60px;
    height: 60px;
    display: block;
    background: #99e6f0;
    border-radius: 50%;
    font-size: 3em;
    line-height: 1.2em;
    text-align: center;
    color: white;
}
.successStories .owl-carousel .owl-item img {
        border-radius: 10px 10px 0 0;
}

/******************  Inner Page  *************************/

.page-banner {
    background-image: url(../images/bgs/innovation_banner.jpeg);
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.page-banner:before {
    content: '';
    position: absolute;
    background: rgb(26 22 33 / 40%);
    left: 0;
    right: 0;
    height: 100%;
}
.page-banner h1 {
    color: white;
    text-align: center;
    z-index: 11;
    top: 80%;
    font-size: 40px;
    text-transform: uppercase;
    position: relative;
}

.page-banner.loan_banner {
    background-image: url(../images/bgs/loan_group_img.jpg);
}
.page-banner.gym_banner {
    background-image: url(../images/bgs/gym_banner.jpeg);
}
.page-banner.innovation_banner {
    background-image: url(../images/bgs/innovation_banner.jpeg);
}
.page-banner.skills_banner {
    background-image: url(../images/bgs/skills_banner.jpeg);
}
.page-banner.sports_banner {
    background-image: url(../images/bgs/sports_banner.jpeg);
}
.page-banner.ydc_banner {
    background-image: url(../images/bgs/ydc_banner.jpeg);
}



/********************  Timeline ****************************/
 
#timeline {
  display: flex;
  background-color: #031625;
}
#timeline:hover .tl-item {
  width: 23.3333%;
}

.tl-item {
  transform: translate3d(0, 0, 0);
  position: relative;
  width: 25%;
  height: 100vh;
  min-height: 600px;
  color: #fff;
  overflow: hidden;
  transition: width 0.5s ease;
}
.tl-item:before, .tl-item:after {
  transform: translate3d(0, 0, 0);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.tl-item:after {
  background: rgba(3, 22, 37, 0.85);
  opacity: 1;
  transition: opacity 0.5s ease;
}
.tl-item:before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 75%);
  z-index: 1;
  opacity: 0;
  transform: translate3d(0, 0, 0) translateY(50%);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.tl-item:hover {
  width: 30% !important;
}
.tl-item:hover:after {
  opacity: 0;
}
.tl-item:hover:before {
  opacity: 1;
  transform: translate3d(0, 0, 0) translateY(0);
  transition: opacity 1s ease, transform 1s ease 0.25s;
}
.tl-item:hover .tl-content {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.75s ease 0.5s;
}
.tl-item:hover .tl-bg {
  filter: grayscale(0);
}

.tl-content {
  transform: translate3d(0, 0, 0) translateY(25px);
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0 1.618em;
  top: 55%;
  opacity: 0;
}
.tl-content h1 {
  font-family: "Pathway Gothic One", Helvetica Neue, Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  color: #1779cf;
  font-size: 1.44rem;
  font-weight: normal;
}

.tl-year {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.tl-year p {
  font-family: "Pathway Gothic One", Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 1.728rem;
  line-height: 0;
}

.tl-bg {
  transform: translate3d(0, 0, 0);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: auto;
  background-position: center center;
  transition: filter 0.5s ease;
  filter: grayscale(100%);
}

/**************************************************
****************** About Us ***********************
***************************************************/

.mision_statement {
  background-color: #f0f0f0;
}

.mision_statement h2 {
    font-size: 40px;
    font-weight: 200;
    margin-bottom: 1.5rem;
    color: #048504;
    margin-bottom: 10px;
}

.img-outer {
    border-radius: 60px 0px 60px 0px;
    overflow: hidden;
}


/**************************************************
******************  Team  ***********************
***************************************************/
.transition {
  transition: .3s cubic-bezier(.3, 0, 0, 1.3)
  }
  .three .transition {
  transition: .7s cubic-bezier(.3, 0, 0, 1.3)
  }
  .five .transition {
  transition: .5s cubic-bezier(.3, 0, 0, 1.3)
  }
.team {
  list-style: none;
  padding: 0;
  margin: 100px 0;
}
.team .--box {
    box-shadow: 0px 0px 18px 0px rgba(103,85,85,0.39);
    position: relative;
    min-height: 350px;
    border-radius: 10px;
}
.team .--box:hover {
  box-shadow: 0px 0px 5px 0px rgba(103,85,85,0.25);
}
.team .--box:hover span {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  bottom: -50%;
}
.team .--box:hover h3 {
  color: rgba(255,255,255,1);
  margin-top: 25px;
}
.team .--box .wrapper {
    overflow: hidden;
    position: absolute;
    bottom: 0;
    top: 0;
}
.team .--box span {
    border-radius: 50%;
    -webkit-border-radius: 20%;
    -moz-border-radius: 50%;
    height: 100%;
    background: #afcca9;
    display: block;
    position: absolute;
    bottom: -65%;
    text-align: center;
}
.team .--box span img {
  margin-top: 10px;
  width: 35px;
}
.team .--box h3 {
  margin-top: 18px;
  color: rgba(255,255,255,1);
  font-size: 18px;
}
.team .--box:hover span h3, 
.team .--box:hover span img {
    display: none;
}
.team  .--box h3 em {
  display: block;
  font-style: normal;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 12px;
  margin-top: 5px;
}
.team .social {
  list-style: none;
  text-align: center;
  margin: 10px 0 0 0;
  padding: 10px;
}
.team .social li {
  opacity: 0;
  display: inline-block;
  padding: 5px;
}
.team  .--box:hover .social li {
  opacity: 1;
}
.team .social li a {
  cursor: pointer;
  display: block;
  color: #6e6e6e;
font-size: 20px;
padding: 6px;
}
.team .social li a:hover {
  opacity: 0.5;
}
.team .social li img {
  width: 24px;
}
.wrapper img {
    opacity: .8;
    border-radius: 10px 10px 0 0;
}


.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
    transform: none;
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
    transform: none;
}

.carousel-indicators [data-bs-target] {
    height: 6px;
    background-color: #b68f2e;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
    width: 4rem;
    height: 4rem;
}

.carousel-control-next, .carousel-control-prev {
    width: 8%;
}

.carousel-indicators {
    bottom: -50px;
}

.card.press-card {
    background-color: var(--seaFoam);
    border: 0;
    border-radius: 20px;
    margin-bottom: 20px;
}

.press-card img {
    width: 100px;
    margin: auto;
}

.btn.btn-dark-green {
    background: var(--forestGreen);
    border-radius: 20px;
    color: var(--golden);
}

.project_showCase {
    padding: 30px;
    margin-top: 10px;
    border-radius: 20px;
    background: #89be631f;
    display: flex;
}

.project_showCase .box {
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    flex-basis: 100%;
    justify-content: center;
}

.project_showCase .box img {
    width: 100%;
}

.project_showCase .box .text {
        position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    background: #0006;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.project_showCase .box .text .title {
    color: #fff;
    font-size: 30px;
    line-height: 1em;
}

.services .item.active:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 46%;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #007449;
}


/*******************************  Stepper *************************/


.page-banner-2 {
    height: 200px;
    position: relative;
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 0 4em;
    border-bottom: 10px solid var(--forestGreen);
    background: url(../images/bgs/green_wave.png) right no-repeat;
    background-size: contain;
}

    .page-banner-2 h1 {
        color: var(--forestGreen);
        font-size: 40px;
        font-weight: 600;
    }

    .page-banner-2 h2 {
        font-weight: 600;
    }

.stepwizard-step p {
    margin-top: 10px;
}

.stepwizard-row {
    display: flex;
    justify-content: space-between;
}

.stepwizard {
    width: 100%;
    position: relative;
    margin-top: 50px;
    margin-bottom: 50px;
}

.stepwizard-step button[disabled] {
    opacity: 1 !important;
    filter: alpha(opacity=100) !important;
}

.stepwizard-row:before {
    top: 19px;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 98%;
    height: 2px;
    background-color: #0f8148;
}

.stepwizard-step {
    text-align: center;
    position: relative;
}

.btn-circle {
    width: 40px;
    height: 40px;
    text-align: center;
    padding: 8px 0;
    font-size: 15px;
    line-height: 1.5;
    border-radius: 50%;
}

.has-error .form-control {
    border-color: #a94442;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
}

.pmyp-form-group {
    position: relative;
}

    .pmyp-form-group > .form-control,
    .pmyp-form-group > .form-select {
        height: calc(3.5rem + 2px);
        line-height: 3;
    }

    .pmyp-form-group > label {
        position: absolute;
        top: 0;
        left: 0;
        pointer-events: none;
        border: 1px solid transparent;
        transform-origin: 0 0;
        transform: scale(.95) translateY(-0.8rem) translateX(1rem);
        background: #fff;
    }

    .pmyp-form-group .fa-asterisk {
        color: #f10000;
        font-size: 70%;
        top: -5px;
        position: relative;
    }

.stepper-card {
    border-radius: 10px;
}

    .stepper-card .card-body {
        padding: 40px;
    }

.stepwizard-step .btn {
    background-color: #ffffff;
    border: 2px solid var(--forestGreen);
    color: var(--forestGreen);
    font-weight: 600;
}

.stepwizard-step .btn-primary {
    background-color: var(--forestGreen);
    color: #fff;
}

.direction-rtl {
    direction: rtl;
}

.instructions ul li {
    padding: 3px 30px;
    display: flex;
}

    .instructions ul li:before {
        font: normal normal normal 14px/1 FontAwesome;
        content: "\f111";
        left: -20px;
        position: relative;
        top: 5px;
        font-size: 10px;
        color: green;
    }

.instructions .direction-rtl ul li::before {
    right: -20px;
    left: auto;
}

.grey-boreder-btn {
    border: 2px solid #828282;
    border-radius: 20px;
    font-size: 13px;
    color: #626262;
    background-color: #fff;
    padding: 12px 30px;
    border-radius: 22px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all .3s;
}

    .grey-boreder-btn:hover {
        background-color: #626262;
        color: #fff;
    }

.green-filled-btn {
    border: 2px solid var(--forestGreen);
    border-radius: 20px;
    font-size: 13px;
    color: var(--white);
    background-color: var(--forestGreen);
    padding: 12px 30px;
    border-radius: 22px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all .3s;
}

    .green-filled-btn:hover {
        opacity: 0.8;
        color: var(--white);
    }


.red-filled-btn {
    border: 2px solid #d12929;
    border-radius: 20px;
    font-size: 13px;
    color: var(--white);
    background-color: #d12929;
    padding: 12px 30px;
    border-radius: 22px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all .3s;
}

    .red-filled-btn:hover {
        opacity: 0.8;
        color: var(--white);
    }

.edit-link a {
    color: #2b2b2b;
}

    .edit-link a span {
        width: 30px;
        height: 30px;
        background: var(--kellyGreen);
        color: #fff;
        padding: 8px;
        border-radius: 50%;
    }


/* 
---------------------------------------------
responsive
--------------------------------------------- 
*/

@media (max-width: 1300px) {
    .services .owl-nav .owl-next {
        right: -30px;
    }

    .services .owl-nav .owl-prev {
        left: -25px;
    }

    .our-courses .owl-nav .owl-next {
        right: -30px;
    }

    .our-courses .owl-nav .owl-prev {
        left: -25px;
    }
}

@media (max-width: 1200px) {
    .services .owl-nav .owl-next {
        right: -70px;
    }

    .services .owl-nav .owl-prev {
        left: -65px;
    }

    .our-courses .owl-nav .owl-next {
        right: -70px;
    }

    .our-courses .owl-nav .owl-prev {
        left: -65px;
    }
    .msgBox h2 {
        float: none;
    }
}

@media (max-width: 1085px) {
    .services .owl-nav .owl-next {
        right: -30px;
    }

    .services .owl-nav .owl-prev {
        left: -25px;
    }

    .our-courses .owl-nav .owl-next {
        right: -30px;
    }

    .our-courses .owl-nav .owl-prev {
        left: -25px;
    }
}

@media (max-width: 1005px) {
    .services .owl-nav .owl-next {
        display: none;
    }

    .services .owl-nav .owl-prev {
        display: none;
    }

    .our-courses .owl-nav .owl-next {
        display: none;
    }

    .our-courses .owl-nav .owl-prev {
        display: none;
    }
}

@media (max-width: 992px) {

    .header-area .logo img {
        width: 70px;
    }

    .header-area .main-nav {
        min-height: 80px;
    }
        .main-banner .caption {
        top: 60%;
    }

        .main-banner .caption h2 {
            margin-top: 10px;
            margin-bottom: 10px;
            font-size: 22px;
        }

        .main-banner .caption .main-button-red {
            margin-top: 15px;
        }

    .services {
        margin-top: 60px;
    }


    section.upcoming-meetings .categories {
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .accordions {
        margin-left: 0px;
    }

    .new-students {
        margin-top: 15px;
    }

    section.our-facts .video {
        margin-left: 0px;
        margin-top: 15px;
    }

    section.contact-us #contact {
        margin-bottom: 30px;
    }

    header .content .navigation {
        font-size: 20px;
    }

    .subMenu {
        position: relative;
        left: 0;
    }

    .services .item h4 {
        margin-top: 5px;
        margin-bottom: 5px;
        font-size: 15px;
        font-weight: 600;
    }

    .services .item .icon {
        width: 60px;
    }

    .services .item {
        padding: 10px 0 0 0;
    }

    .project_showCase {
        flex-wrap: wrap;
    }

        .project_showCase .box .text .title {
            font-size: 20px;
        }

    section.apply-now .item .icon {
        display: flex;
        align-items: center;
    }

        section.apply-now .item .icon img {
            width: 80px;
        }

    .btn {
        font-size: 10px;
        padding: 10px 10px;
    }
    .eligibility_criteria {
        margin-left: 0;
    }
    .page-banner h1 {
        font-size: 25px;
        padding: 10px;
        top: 40%;
    }

    .msgBox h2 {
        float: none;
    }
}

@media (max-width: 767px) {

    .sub-header .left-content p {
        display: none;
    }

    .sub-header .right-icons {
        text-align: center;
    }

    .main-nav .nav .sub-menu {
        display: none;
    }

    .header-area .main-nav .nav li ul.sub-menu li a {
        color: #1f272b;
    }
}

/* Career counselling styles */

.career_banner {
    background-color: #F7FAFF;
    position: relative;
}

    .career_banner h2 {
        font-size: 3.8em;
        font-weight: 600;
        color: #00b200;
    }

    .career_banner h3 {
        font-size: 2.5em;
    }

    .career_banner p {
        font-size: 1.2em;
    }

    .career_banner:before {
        content: '';
        background: url(../images/bgs/left-green.png);
        position: absolute;
        width: 60px;
        left: 0;
        height: 100%;
        background-size: contain;
    }

    .career_banner:after {
        content: '';
        background: url(../images/bgs/right-green-border.png);
        position: absolute;
        width: 99%;
        height: 80%;
        right: 0;
        top: 0;
        background-repeat: no-repeat;
        background-position: top right;
        background-size: contain;
        opacity: 80%;
        z-index: 1;
    }

    .career_banner .--inner {
        padding: 50px 0;
    }

    .career_banner img {
        z-index: 1;
        position: relative;
        width: 100%;
    }

    .career_banner .--inner:after {
        content: '';
        background: url(../images/bgs/right-green-border.png);
        position: absolute;
        width: 99%;
        height: 80%;
        right: 0;
        top: 0;
        background-repeat: no-repeat;
        background-position: top right;
        background-size: contain;
    }

.text-justify {
    text-align: justify;
}

.career_banner .--inner > div > div {
    z-index: 1;
}
/* 
---------------------------------------------
responsive
--------------------------------------------- 
*/
@media (max-width: 1300px) {
    .services .owl-nav .owl-next {
        right: -30px;
    }

    .services .owl-nav .owl-prev {
        left: -25px;
    }

    .our-courses .owl-nav .owl-next {
        right: -30px;
    }

    .our-courses .owl-nav .owl-prev {
        left: -25px;
    }
}

@media (max-width: 1200px) {
    .services .owl-nav .owl-next {
        right: -70px;
    }

    .services .owl-nav .owl-prev {
        left: -65px;
    }

    .our-courses .owl-nav .owl-next {
        right: -70px;
    }

    .our-courses .owl-nav .owl-prev {
        left: -65px;
    }

    .msgBox h2 {
        float: none;
    }
}

@media (max-width: 1085px) {
    .services .owl-nav .owl-next {
        right: -30px;
    }

    .services .owl-nav .owl-prev {
        left: -25px;
    }

    .our-courses .owl-nav .owl-next {
        right: -30px;
    }

    .our-courses .owl-nav .owl-prev {
        left: -25px;
    }
}

@media (max-width: 1005px) {
    .services .owl-nav .owl-next {
        display: none;
    }

    .services .owl-nav .owl-prev {
        display: none;
    }

    .our-courses .owl-nav .owl-next {
        display: none;
    }

    .our-courses .owl-nav .owl-prev {
        display: none;
    }
}

@media (max-width: 992px) {

    .header-area .logo img {
        width: 70px;
    }

    .header-area .main-nav {
        min-height: 80px;
    }

    .main-banner .caption {
        top: 60%;
    }

        .main-banner .caption h2 {
            margin-top: 10px;
            margin-bottom: 10px;
            font-size: 22px;
        }

        .main-banner .caption .main-button-red {
            margin-top: 15px;
        }

    .services {
        margin-top: 60px;
    }


    section.upcoming-meetings .categories {
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .accordions {
        margin-left: 0px;
    }

    .new-students {
        margin-top: 15px;
    }

    section.our-facts .video {
        margin-left: 0px;
        margin-top: 15px;
    }

    section.contact-us #contact {
        margin-bottom: 30px;
    }

    header .content .navigation {
        font-size: 20px;
    }

    .subMenu {
        position: relative;
        left: 0;
    }

    .services .item h4 {
        margin-top: 5px;
        margin-bottom: 5px;
        font-size: 15px;
        font-weight: 600;
    }

    .services .item .icon {
        width: 60px;
    }

    .services .item {
        padding: 10px 0 0 0;
    }

    .project_showCase {
        flex-wrap: wrap;
    }

        .project_showCase .box .text .title {
            font-size: 20px;
        }

    section.apply-now .item .icon {
        display: flex;
        align-items: center;
    }

        section.apply-now .item .icon img {
            width: 80px;
        }

    .btn {
        font-size: 10px;
        padding: 10px 10px;
    }

    .eligibility_criteria {
        margin-left: 0;
    }

    .page-banner h1 {
        font-size: 25px;
        padding: 10px;
        top: 40%;
    }

    .msgBox h2 {
        float: none;
    }

    .career_banner:after, .career_banner .--inner:after {
        height: 30%;
    }

    .career_banner:before {
        width: 30px;
    }
}

@media (max-width: 767px) {

    .sub-header .left-content p {
        display: none;
    }

    .sub-header .right-icons {
        text-align: center;
    }

    .main-nav .nav .sub-menu {
        display: none;
    }

    .header-area .main-nav .nav li ul.sub-menu li a {
        color: #1f272b;
    }
}

/* 
---------------------------------------------
Code Above Responsive 
--------------------------------------------- 
*/



.btn.btn_green {
    background: #89be63;
    color: #fff;
}

.job_card {
    background: #f6ffef;
    padding: 20px;
    border-radius: 10px;
    margin: 10px;
}

.job_title > div {
    display: flex;
    flex-direction: column;
}

.job_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
}

    .job_title > div span:first-child {
        font-weight: 600;
        font-size: 1.2em;
    }

.job_posted {
    font-size: 90%;
    color: #787878;
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
}

    .job_posted span .--h {
        font-weight: 600;
        margin-right: 10px;
    }

.job_description {
    color: #5f5f5f;
}

    .job_description span.--h {
        font-weight: 600;
        margin-right: 10px;
    }

.job_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job_card_full {
    padding: 30px;
    background: whitesmoke;
    border-radius: 10px;
}

    .job_card_full .salary {
        margin-top: 10px;
    }

.job_body {
    border-top: 2px solid #ddd;
    margin-top: 20px;
    padding-top: 20px;
}

    .job_body h4 {
        margin: 25px 0 15px;
    }

    .job_body .tag {
        background: #ccdebf;
        padding: 4px 12px;
        display: inline-block;
        border-radius: 14px;
    }

.jobs_pagination a {
    color: #7bb850;
}


