/*-- Google Font --*/
@import url("https://fonts.googleapis.com/css?family=Noto Sans KR:200,300,400,500,600,700,800|Poppins:300,400,500,600,700,800,900");
@import url(http://fonts.googleapis.com/earlyaccess/notosanskr.css);

/*-- Common Style --*/
*, *:after, *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  background-color: #fff;
    font-family: 'Noto Sans KR', sans-serif;
  line-height: 28px;
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  visibility: visible;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  color: #333333;
  font-weight: 400;
  margin-top: 0;
  font-family: 'Noto Sans KR', sans-serif;
}

h1 {
  font-size: 110px;
  line-height: 1;
}

h2 {
  font-size: 72px;
  line-height: 1;
}

h3 {
  font-size: 44px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  h3 {
    font-size: 34px;
  }

  h4 {
    font-size: 22px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h3 {
    font-size: 30px;
  }

  h4 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 767px) {
  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 479px) {
  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 18px;
  }
}
p:last-child {
  margin-bottom: 0;
}

p {
  font-family: "Noto Sans KR", sans-serif;
}

a, button {
  color: inherit;
  display: inline-block;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
}

a, button, img, input, span {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

*:focus {
  outline: none !important;
}

a:focus {
  color: inherit;
  outline: none;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: #86b541;
}

button, input[type="submit"] {
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    background: #7D876E;
    width: 5px;
    height: 95%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    width: 100%;
    margin-bottom: 70px;
}
.timeline-item:nth-child(even) .timeline-content {
    float: right;
    padding: 40px 30px 10px 30px;
}
.timeline-item:nth-child(even) .timeline-content .date {
    right: auto;
    left: 0;
}
.timeline-item:nth-child(even) .timeline-content::after {
    content: '';
    position: absolute;
    border-style: solid;
    width: 0;
    height: 0;
    top: 30px;
    left: -15px;
    border-width: 10px 15px 10px 0;
    border-color: transparent #f5f5f5 transparent transparent;
}
.timeline-item::after {
    content: '';
    display: block;
    clear: both;
}

.timeline-content {
    position: relative;
    width: 45%;
    padding: 10px 30px;
    border-radius: 4px;
    background: #f5f5f5;
    box-shadow: 0 20px 25px -15px rgba(0, 0, 0, 0.3);
}

.timeline-content::after {
    content: '';
    position: absolute;
    border-style: solid;
    width: 0;
    height: 0;
    top: 30px;
    right: -15px;
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent #f5f5f5;
}

.timeline-img {
    width: 30px;
    height: 30px;
    background: #829F56;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    margin-top: 25px;
    margin-left: -15px;
}

.date {
    background: #86b541;
    display: inline-block;
    color: #FFFFFF;
    padding: 10px;
    position: absolute;
    top: 0;
    right: 0;
}

@media screen and (max-width: 768px) {
    .timeline::before {
        left: 50px;
    }
    .timeline .timeline-img {
        left: 50px;
    }
    .timeline .timeline-content {
        max-width: 100%;
        width: auto;
        margin-left: 70px;
    }
    .timeline .timeline-item:nth-child(even) .timeline-content {
        float: none;
    }
    .timeline .timeline-item:nth-child(odd) .timeline-content::after {
        content: '';
        position: absolute;
        border-style: solid;
        width: 0;
        height: 0;
        top: 30px;
        left: -15px;
        border-width: 10px 15px 10px 0;
        border-color: transparent #f5f5f5 transparent transparent;
    }
}

.gallery {
    padding: 100px 0;
}

.gallery .gallery-item {
    margin-top: 30px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.2);
}

.gallery .gallery-item img {
    width: 100%;
}

.gallery .gallery-item:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
    top: 0;
    opacity: 0;
    transition: all .3s ease;
}

.gallery .gallery-item a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.gallery .gallery-item h3 {
    position: absolute;
    z-index: 5;
    bottom: 70px;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    opacity: 0;
    transition: all .3s ease;
    padding: 30px;
    font-family: "Noto Sans KR", sans-serif;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
}

.gallery .gallery-item p {
    position: absolute;
    z-index: 5;
    bottom: 20px;
    color: #fff;
    font-weight: normal;
    opacity: 0;
    transition: all .3s ease;
    padding: 30px;
    font-size: 14px;
    line-height: 16px;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
}

.gallery .gallery-item:hover:before {
    opacity: 1;
}

.gallery .gallery-item:hover h3, .gallery .gallery-item:hover p {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.video-gallery {
    padding: 100px 0;
}

.video-gallery .video-gallery-item {
    margin-top: 50px;
}

.video-gallery .video-gallery-item .image-holder {
    position: relative;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.2);
}

.video-gallery .video-gallery-item .image-holder img {
    width: 100%;
}

.video-gallery .video-gallery-item .image-holder:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(19, 38, 70, 0.7);
    top: 0;
}

.video-gallery .video-gallery-item .image-holder a {
    position: absolute;
    display: block;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    text-align: center;
    z-index: 5;
    border: 5px solid #fff;
    border-radius: 50%;
    transition: all .3s ease-in-out;
}

.video-gallery .video-gallery-item .image-holder a i {
    font-size: 25px;
    line-height: 70px;
    color: #fff;
}

.video-gallery .video-gallery-item h3 {
    text-align: center;
    color: #48bdc5;
    margin-top: 15px;
    text-transform: capitalize;
    font-family: "Noto Sans KR", sans-serif;
    font-size: 20px;
}


/*
faq
*/

.faq-nav {
    flex-direction: column;
    margin: 0 0 32px;
    border-radius: 2px;
    border: 1px solid #ddd;
    box-shadow: 0 1px 5px rgba(85, 85, 85, 0.15);

    .nav-link {
        position: relative;
        display: block;
        margin: 0;
        padding: 13px 16px;
        background-color: #fff;
        border: 0;
        border-bottom: 1px solid #ddd;
        border-radius: 0;
        color: #616161;
        transition: background-color .2s ease;

        &:hover {
            background-color: #f6f6f6;
        }

        &.active {
            background-color: #f6f6f6;
            font-weight: 700;
            color: rgba(0,0,0,.87);
        }

        &:last-of-type {
            border-bottom-left-radius: 2px;
            border-bottom-right-radius: 2px;
            border-bottom: 0;
        }

        i.mdi {
            margin-right: 5px;
            font-size: 18px;
            position: relative;
        }
    }
}

.card-header {
    padding: 15px 16px;
    border-radius: 0;
    background-color: #86b541;

    h5 {
        margin: 0;

        button {
            display: block;
            width: 100%;
            padding: 0;
            border: 0;
            font-weight: 700;
            color: rgba(0,0,0,.87);
            text-align: left;
            white-space: normal;

            &:hover,
            &:focus,
            &:active,
            &:hover:active {
                text-decoration: none;
            }
        }
    }
}

.tab-content2 {
    box-shadow: 0 1px 5px rgba(85, 85, 85, 0.15);

    .card {
        border-radius: 0;
    }

    .card-header {
        padding: 15px 16px;
        border-radius: 0;
        background-color: #f6f6f6;

        h5 {
            margin: 0;

            button {
                display: block;
                width: 100%;
                padding: 0;
                border: 0;
                font-weight: 700;
                color: rgba(0,0,0,.87);
                text-align: left;
                white-space: normal;

                &:hover,
                &:focus,
                &:active,
                &:hover:active {
                    text-decoration: none;
                }
            }
        }
    }

    .card-body {
        p {
            color: #616161;

            &:last-of-type {
                margin: 0;
            }
        }
    }
}

.accordion {
    > .card {
        &:not(:first-child) {
            border-top: 0;
        }
    }
}

.collapse.show {
    .card-body {
        border-bottom: 1px solid rgba(0,0,0,.125);
    }
}

/*--
    - Common Classes
-----------------------------------------*/
.fix {
  overflow: hidden;
}

.hidden {
  display: none;
}

.clear {
  clear: both;
}

@media only screen and (max-width: 767px) {
  .container {
    width: 450px;
  }
}
@media only screen and (max-width: 479px) {
  .container {
    width: 320px;
  }
}
.capitalize {
  text-transform: capitalize;
}

.uppercase {
  text-transform: uppercase;
}

.no-gutters > .col, .no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
  margin: 0;
}

.boxed-layout {
  background: #ffffff none repeat scroll 0 0;
  -webkit-box-shadow: -3px 0 50px -2px rgba(0, 0, 0, 0.14);
  box-shadow: -3px 0 50px -2px rgba(0, 0, 0, 0.14);
  margin: auto;
  max-width: 1600px;
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .boxed-layout {
    max-width: 1280px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .boxed-layout {
    max-width: 980px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .boxed-layout {
    max-width: 730px;
  }
}
@media only screen and (max-width: 767px) {
  .boxed-layout {
    max-width: 560px;
  }
}

/*--
    - Background color
-----------------------------------------*/
.bg-white {
  background-color: #ffffff;
}

.bg-light-grey {
  background-color: #f6fafb;
}

.bg-dark {
  background-color: #333;
}

.bg-grey {
  background-color: #f8f8f8;
}

.grey-light {
  background: #fafafa;
}

.bg-re-primary {
    background: #86b541;
}

.bg-color-two {
  background: #86b541;
}

.color-two {
  color: #86b541;
  color: #86b541;
}

/*--
    - Input Placeholder
-----------------------------------------*/
input:-moz-placeholder, textarea:-moz-placeholder {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/*--
    Scroll Up
-----------------------------------------*/
#scrollUp {
  width: 40px;
  height: 40px;
  background-color: #86b541;
  color: #ffffff;
  right: 20px;
  bottom: 60px;
  line-height: 40px;
  text-align: center;
  overflow: hidden;
}
#scrollUp i {
  display: block;
  line-height: 40px;
  font-size: 16px;
}
#scrollUp:hover i {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

/*--
    - Main Wrapper
-----------------------------------------*/
.main-wrapper.header-transparent {
  padding: 0 !important;
  margin: 0 !important;
}

/*--
    - Section Padding
-------------------------------------*/
.section-ptb {
  padding: 100px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .section-ptb {
    padding: 80px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-ptb {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 767px) {
  .section-ptb {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 479px) {
  .section-ptb {
    padding: 40px 0;
  }
}

.section-pt {
  padding-top: 100px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .section-pt {
    padding-top: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-pt {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .section-pt {
    padding-top: 50px;
  }
}
@media only screen and (max-width: 479px) {
  .section-pt {
    padding-top: 40px;
  }
}

.section-pt-90 {
  padding-top: 90px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .section-pt-90 {
    padding-top: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-pt-90 {
    padding-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .section-pt-90 {
    padding-top: 40px;
  }
}
@media only screen and (max-width: 479px) {
  .section-pt-90 {
    padding-top: 30px;
  }
}

.section-pt-60 {
  padding-top: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .section-pt-60 {
    padding-top: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-pt-60 {
    padding-top: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .section-pt-60 {
    padding-top: 5px;
  }
}
@media only screen and (max-width: 479px) {
  .section-pt-60 {
    padding-top: 1px;
  }
}

.section-pb-70 {
  padding-bottom: 90px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .section-pb-70 {
    padding-bottom: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-pb-70 {
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .section-pb-70 {
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 479px) {
  .section-pb-70 {
    padding-bottom: 30px;
  }
}

.section-pb {
  padding-bottom: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .section-pb {
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-pb {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .section-pb {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 479px) {
  .section-pb {
    padding-bottom: 60px;
  }
}

.section-ptb-140 {
  padding: 140px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .section-ptb-140 {
    padding: 90px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-ptb-140 {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 767px) {
  .section-ptb-140 {
    padding: 70px 0;
  }
}
@media only screen and (max-width: 479px) {
  .section-ptb-140 {
    padding: 60px 0;
  }
}

.section-ptb-160 {
  padding: 160px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .section-ptb-160 {
    padding: 110px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-ptb-160 {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 767px) {
  .section-ptb-160 {
    padding: 70px 0;
  }
}
@media only screen and (max-width: 479px) {
  .section-ptb-160 {
    padding: 60px 0;
  }
}

/*-- Margin top --*/
.mt--5 {
  margin-top: 5px;
}

.mt--10 {
  margin-top: 10px;
}

.mt--15 {
  margin-top: 15px;
}

.mt--20 {
  margin-top: 20px;
}

.mt--25 {
  margin-top: 25px;
}

.mt--30 {
  margin-top: 30px;
}

.mt--35 {
  margin-top: 35px;
}

.mt--40 {
  margin-top: 40px;
}

.mt--45 {
  margin-top: 45px;
}

.mt--50 {
  margin-top: 50px;
}

.mt--55 {
  margin-top: 55px;
}

.mt--60 {
  margin-top: 60px;
}

.mt--65 {
  margin-top: 65px;
}

.mt--70 {
  margin-top: 70px;
}

.mt--75 {
  margin-top: 75px;
}

.mt--80 {
  margin-top: 80px;
}

.mt--85 {
  margin-top: 85px;
}

.mt--90 {
  margin-top: 90px;
}

.mt--95 {
  margin-top: 95px;
}

.mt--100 {
  margin-top: 100px;
}

.mt--105 {
  margin-top: 105px;
}

.mt--110 {
  margin-top: 110px;
}

.mt--115 {
  margin-top: 115px;
}

.mt--120 {
  margin-top: 120px;
}

.mt--125 {
  margin-top: 125px;
}

/*-- Margin Bottom --*/
.mb--5 {
  margin-bottom: 5px;
}

.mb--10 {
  margin-bottom: 10px;
}

.mb--15 {
  margin-bottom: 15px;
}

.mb--20 {
  margin-bottom: 20px;
}

.mb--25 {
  margin-bottom: 25px;
}

.mb--30 {
  margin-bottom: 30px;
}

.mb--35 {
  margin-bottom: 35px;
}

.mb--40 {
  margin-bottom: 40px;
}

.mb--45 {
  margin-bottom: 45px;
}

.mb--50 {
  margin-bottom: 50px;
}

.mb--55 {
  margin-bottom: 55px;
}

.mb--60 {
  margin-bottom: 60px;
}

.mb--65 {
  margin-bottom: 65px;
}

.mb--70 {
  margin-bottom: 70px;
}

.mb--75 {
  margin-bottom: 75px;
}

.mb--80 {
  margin-bottom: 80px;
}

.mb--85 {
  margin-bottom: 85px;
}

.mb--90 {
  margin-bottom: 90px;
}

.mb--95 {
  margin-bottom: 95px;
}

.mb--100 {
  margin-bottom: 100px;
}

.mb--105 {
  margin-bottom: 105px;
}

.mb--110 {
  margin-bottom: 110px;
}

.mb--115 {
  margin-bottom: 115px;
}

.mb--120 {
  margin-bottom: 120px;
}

.mb--125 {
  margin-bottom: 125px;
}

/*-- padding top --*/
.pt--5 {
  padding-top: 5px;
}

.pt--10 {
  padding-top: 10px;
}

.pt--15 {
  padding-top: 15px;
}

.pt--20 {
  padding-top: 20px;
}

.pt--25 {
  padding-top: 25px;
}

.pt--30 {
  padding-top: 30px;
}

.pt--35 {
  padding-top: 35px;
}

.pt--40 {
  padding-top: 40px;
}

.pt--45 {
  padding-top: 45px;
}

.pt--50 {
  padding-top: 50px;
}

.pt--55 {
  padding-top: 55px;
}

.pt--60 {
  padding-top: 60px;
}

.pt--65 {
  padding-top: 65px;
}

.pt--70 {
  padding-top: 70px;
}

.pt--75 {
  padding-top: 75px;
}

.pt--80 {
  padding-top: 80px;
}

.pt--85 {
  padding-top: 85px;
}

.pt--90 {
  padding-top: 90px;
}

.pt--95 {
  padding-top: 95px;
}

.pt--100 {
  padding-top: 100px;
}

.pt--105 {
  padding-top: 105px;
}

.pt--110 {
  padding-top: 110px;
}

.pt--115 {
  padding-top: 115px;
}

.pt--120 {
  padding-top: 120px;
}

.pt--125 {
  padding-top: 125px;
}

/*-- padding Bottom --*/
.pb--5 {
  padding-bottom: 5px;
}

.pb--10 {
  padding-bottom: 10px;
}

.pb--15 {
  padding-bottom: 15px;
}

.pb--20 {
  padding-bottom: 20px;
}

.pb--25 {
  padding-bottom: 25px;
}

.pb--30 {
  padding-bottom: 30px;
}

.pb--35 {
  padding-bottom: 35px;
}

.pb--40 {
  padding-bottom: 40px;
}

.pb--45 {
  padding-bottom: 45px;
}

.pb--50 {
  padding-bottom: 50px;
}

.pb--55 {
  padding-bottom: 55px;
}

.pb--60 {
  padding-bottom: 60px;
}

.pb--65 {
  padding-bottom: 65px;
}

.pb--70 {
  padding-bottom: 70px;
}

.pb--75 {
  padding-bottom: 75px;
}

.pb--80 {
  padding-bottom: 80px;
}

.pb--85 {
  padding-bottom: 85px;
}

.pb--90 {
  padding-bottom: 90px;
}

.pb--95 {
  padding-bottom: 95px;
}

.pb--100 {
  padding-bottom: 100px;
}

.pb--105 {
  padding-bottom: 105px;
}

.pb--110 {
  padding-bottom: 110px;
}

.pb--115 {
  padding-bottom: 115px;
}

.pb--120 {
  padding-bottom: 120px;
}

.pb--125 {
  padding-bottom: 125px;
}

/*-- Overlay styles --*/
[data-overlay],
[data-secondary-overlay],
[data-black-overlay],
[data-white-overlay] {
  position: relative;
}

[data-overlay] > div,
[data-overlay] > *,
[data-secondary-overlay] > div,
[data-secondary-overlay] > *,
[data-black-overlay] > div,
[data-black-overlay] > *,
[data-white-overlay] > div,
[data-white-overlay] > * {
  position: relative;
  z-index: 2;
}

[data-overlay]:before,
[data-secondary-overlay]:before,
[data-black-overlay]:before,
[data-white-overlay]:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
}

[data-overlay]:before {
  background-color: #86b541;
}

[data-secondary-overlay]:before {
  background-color: #031b38;
}

[data-black-overlay]:before {
  background-color: #000000;
}

[data-white-overlay]:before {
  background-color: #ffffff;
}

[data-overlay="1"]:before,
[data-secondary-overlay="1"]:before,
[data-black-overlay="1"]:before,
[data-white-overlay="1"]:before {
  opacity: 0.1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
}

[data-overlay="2"]:before,
[data-secondary-overlay="2"]:before,
[data-black-overlay="2"]:before,
[data-white-overlay="2"]:before {
  opacity: 0.2;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
}

[data-overlay="3"]:before,
[data-secondary-overlay="3"]:before,
[data-black-overlay="3"]:before,
[data-white-overlay="3"]:before {
  opacity: 0.3;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
}

[data-overlay="4"]:before,
[data-secondary-overlay="4"]:before,
[data-black-overlay="4"]:before,
[data-white-overlay="4"]:before {
  opacity: 0.4;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
}

[data-overlay="5"]:before,
[data-secondary-overlay="5"]:before,
[data-black-overlay="5"]:before,
[data-white-overlay="5"]:before {
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
}

[data-overlay="6"]:before,
[data-secondary-overlay="6"]:before,
[data-black-overlay="6"]:before,
[data-white-overlay="6"]:before {
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
}

[data-overlay="7"]:before,
[data-secondary-overlay="7"]:before,
[data-black-overlay="7"]:before,
[data-white-overlay="7"]:before {
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}

[data-overlay="8"]:before,
[data-secondary-overlay="8"]:before,
[data-black-overlay="8"]:before,
[data-white-overlay="8"]:before {
  opacity: 0.8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

[data-overlay="9"]:before,
[data-secondary-overlay="9"]:before,
[data-black-overlay="9"]:before,
[data-white-overlay="9"]:before {
  opacity: 0.9;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
}

[data-overlay="10"]:before,
[data-secondary-overlay="10"]:before,
[data-black-overlay="10"]:before,
[data-white-overlay="10"]:before {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/*--
    02. Element
-------------------------*/
/*--
    - Button Style
------------------------------------------*/
.default-btn {
  margin-top: 40px;
  letter-spacing: 1px;
  padding: 10px 45px;
  background: #86b541;
  display: inline-block;
  border-radius: 5px;
  color: #ffffff;
  display: inline-block;
  color: #ffffff;
}
.default-btn:hover {
  background: #222222;
  color: #ffffff;
}
@media only screen and (max-width: 767px) {
  .default-btn {
    margin-top: 10px;
  }
}

.primary-btn {
  border: 1px solid #ffffff;
  padding: 12px 30px;
  color: #ffffff;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
}
.primary-btn:hover {
  border: 1px solid #86b541;
  background: #86b541;
  color: #ffffff;
}

.border-radius {
  border-radius: 30px;
}

.btn {
  background: #86b541;
  color: #ffffff;
  border-radius: 0;
  font-weight: 600;
  font-size: 14px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}

.btn:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
@media only screen and (max-width: 479px) {
  .btn {
    padding: 1px 20px;
    font-size: 12px;
  }
}
.btn span {
  display: inline-block;
  line-height: inherit;
  -webkit-transition: none;
  transition: none;
}
.btn i {
  display: inline-block;
  line-height: inherit;
  -webkit-transition: none;
  transition: none;
}
.btn.left i {
  margin-right: 10px;
}
.btn.right i {
  margin-left: 10px;
}
.btn:hover, .btn:active {
  background: #000000;
  color: #ffffff;
}

/*--
    - Section Title Css
-------------------------------*/
.section-title, .section-title-two {
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}


@media only screen and (max-width: 767px) {
  .section-title, .section-title-two {
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title, .section-title-two {
    margin-bottom: 20px;
  }
}
.section-title:after, .section-title-two:after {

}
.section-title h4, .section-title-two h4 {
  color: #86b541;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: -5px;
  margin-bottom: 10px;
}
.section-title h3, .section-title-two h3 {
  text-transform: uppercase;
  font-weight: 800;
  margin-top: -5px;
  margin-bottom: 15px;
}
.section-title p, .section-title-two p {
  font-size: 16px;
  margin-top: 13px;
}

.section-title-two:after {

}

.section-title-three {
  text-align: center;
  position: relative;
}
.section-title-three h4 {
  color: #86b541;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: -5px;
  margin-bottom: 10px;
}
.section-title-three h3 {
  text-transform: uppercase;
  font-weight: 800;
  margin-top: -5px;
  margin-bottom: 15px;
}
.section-title-three p {
  font-size: 16px;
  margin-top: 13px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .section-title-three.mb--80 {
    margin-bottom: 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-three.mb--80 {
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .section-title-three.mb--80 {
    margin-bottom: 15px;
  }
}

/*--
    - Breadcrumb Style
------------------------------------------*/
/*---- Breadcrumb One ----*/
.breadcrumb-area {
  padding: 78px 0;
}
@media only screen and (max-width: 767px) {
  .breadcrumb-area {
    padding: 60px 0;
  }
}
.breadcrumb-area h3 {
  font-size: 50px;
  font-weight: 700;
  margin-top: -5px;
  font-weight: 600;
  color: #ffffff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-area h3 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .breadcrumb-area h3 {
    font-size: 26px;
  }
}

.breadcrumb-list .breadcrumb-item {
  font-size: 14px;
  color: #ffffff;
  text-transform: capitalize;
  line-height: 1;
  display: inline-block;
}
.breadcrumb-list .breadcrumb-item.active {
  color: #ffffff;
}
.breadcrumb-list .breadcrumb-item a:hover {
  color: #86b541;
}

.breadcrumb-item + .breadcrumb-item:before {
  color: #ffffff;
  content: ">";
  display: inline-block;
  padding-right: 10px;
}


.pagination-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 80px;
}
@media only screen and (max-width: 767px) {
    .pagination-box {
        margin-top: 60px;
    }
}
.pagination-box li {
    display: inline-block;
    margin: 0 4px;
}
.pagination-box li.active a {
    color: #ffffff;
    background: #86b541;
    border: 1px solid #86b541;
}
.pagination-box li a {
    color: #333333;
    display: block;
    width: 40px;
    height: 40px;
    border: 1px solid #e8e8e8;
    line-height: 40px;
    text-align: center;
    color: #86b541;
    font-size: 18px;
    border-radius: 5px;
}
.pagination-box li a:hover {
    color: #ffffff;
    background: #86b541;
    border: 1px solid #86b541;
}
.pagination-box li a span {
    font-size: 18px;
}


/*--
    - Widget Css
-------------------------*/
.left-sidebar {
  padding-right: 30px;
}
@media only screen and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1200px) {
  .left-sidebar {
    padding: 0;
  }
}

.single-widget {
  margin-top: 30px;
}

@media only screen and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .widgets {
    padding-top: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .widgets {
    padding-top: 50px;
  }
}

.widget-title {
  font-weight: 700;
  color: #86b541;
  padding: 15px 20px;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: block;
}

.widget-categories {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.widget-categories ul {
  padding: 20px;
}
.widget-categories ul li {
  margin-bottom: 20px;
}
.widget-categories ul li:last-child {
  margin-bottom: 0px;
}
.widget-categories ul li a {
  font-size: 16px;
  position: relative;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.widget-categories ul li a .categories-name {
  z-index: 5;
  background: #ffffff;
  position: relative;
  padding-right: 15px;
}
.widget-categories ul li a .count-item {
  background: #ffffff;
  position: relative;
  border: 1px solid #ddd;
  width: 35px;
  z-index: 1;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  margin-top: -6px;
  color: #86b541;
}
.widget-categories ul li a:after {
  content: "";
  border-top: 1px solid #dddddd;
  position: absolute;
  left: 0%;
  top: 50%;
  margin-top: -1px;
  height: 1px;
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.widget-related {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.widget-related ul {
  padding: 0 20px 20px;
}
.widget-related .single-related {
  padding-top: 5px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}
.widget-related .single-related:last-child {
  margin-bottom: 10px;
  padding-bottom: 0;
  border-bottom: none;
}
.widget-related .single-related-image {
  min-width: 100px;
  margin-right: 15px;
}
.widget-related .single-related-contents h5 {
  font-weight: 700;
  margin-bottom: 3px;
}
.widget-related .single-related-contents h5 p {
  font-size: 12px;
}
.widget-related .single-related-contents p {
  margin-bottom: 0;
  line-height: 22px;
}
.widget-related .single-related-contents .post_meta ul {
  padding: 0;
}
.widget-related .single-related-contents .post_meta ul li {
  display: inline-block;
  font-size: 14px;
  padding-right: 6px;
  margin-right: 6px;
}
.widget-related .single-related-contents .post_meta ul li:before {
  margin-bottom: 10px;
  font-size: 14px;
}
.widget-related .single-related-contents .post_meta ul li a {
  color: #86b541;
}

/*--
    03. Mobile Menu Css
-------------------------*/
.mobile-menu {
  float: left;
  width: 100% !important;
  position: relative !important;
}
.mobile-menu .mean-bar {
  position: relative;
  /*---- Mean Nav ----*/
}
.mobile-menu .mean-bar .meanmenu-reveal {
  position: absolute;
  top: -54px;
  color: #000;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .mobile-menu .mean-bar .meanmenu-reveal {
    top: -54px;
  }
}
@media only screen and (max-width: 479px) {
  .mobile-menu .mean-bar .meanmenu-reveal {
    top: -50px;
  }
}
.mobile-menu .mean-bar .meanmenu-reveal span {
  position: relative;
  /*---- Menu Open ----*/
  /*---- Menu Close ----*/
}
.mobile-menu .mean-bar .meanmenu-reveal span.menu-bar {
  height: 2px;
  width: 26px;
  background-color: #86b541;
  display: block;
  margin: 8px 0;
}
.mobile-menu .mean-bar .meanmenu-reveal span.menu-bar:before, .mobile-menu .mean-bar .meanmenu-reveal span.menu-bar:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #86b541;
}
.mobile-menu .mean-bar .meanmenu-reveal span.menu-bar:before {
  top: -8px;
}
.mobile-menu .mean-bar .meanmenu-reveal span.menu-bar:after {
  bottom: -8px;
}
.mobile-menu .mean-bar .meanmenu-reveal span.menu-close {
  height: 2px;
  width: 26px;
  background-color: transparent;
  display: block;
  margin: 8px 0;
}
.mobile-menu .mean-bar .meanmenu-reveal span.menu-close:before, .mobile-menu .mean-bar .meanmenu-reveal span.menu-close:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fafafa;
}
.mobile-menu .mean-bar .meanmenu-reveal span.menu-close:before {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mobile-menu .mean-bar .meanmenu-reveal span.menu-close:after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.mobile-menu .mean-bar .mean-nav {
  background-color: #fafafa;
}
.mobile-menu .mean-bar .mean-nav > ul {
  margin-bottom: 30px;
  border: 1px solid #eeeeee;
  border-top: 0px solid transparent;
  overflow-x: hidden;
}
@media only screen and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .mobile-menu .mean-bar .mean-nav > ul {
    max-height: 280px;
    overflow-y: auto;
  }
}
@media only screen and (max-width: 479px) {
  .mobile-menu .mean-bar .mean-nav > ul {
    max-height: 220px;
    overflow-y: auto;
  }
}
.mobile-menu .mean-bar .mean-nav > ul li {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  /*---- Sub Menu & Mega Menu ----*/
}
.mobile-menu .mean-bar .mean-nav > ul li a {
  font-size: 13px;
  display: block;
  color: #000000;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 44px;
  position: relative;
  border-top: 1px solid #eeeeee;
  padding: 0 40px 0 20px;
  /*---- Menu Expand For Sub Menu ----*/
}
.mobile-menu .mean-bar .mean-nav > ul li a i {
  display: none;
}
.mobile-menu .mean-bar .mean-nav > ul li a:hover {
  color: #ccc;
  padding-left: 25px;
}
.mobile-menu .mean-bar .mean-nav > ul li a.mean-expand {
  border: 1px solid #eeeeee;
  position: absolute;
  right: -1px;
  top: 0;
  font-size: 20px !important;
  color: #000;
  line-height: 44px;
  height: 46px;
  width: 40px;
  text-align: center;
  padding: 0;
}
.mobile-menu .mean-bar .mean-nav > ul li a.mean-expand.mean-clicked {
  line-height: 40px;
}
.mobile-menu .mean-bar .mean-nav > ul li .sub-menu, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu, .mobile-menu .mean-bar .mean-nav > ul li ul {
  position: static;
  background-color: #fafafa;
  margin: 0;
  padding: 0 !important;
  width: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin: 0;
  display: none;
  float: left;
  width: 100%;
}
.mobile-menu .mean-bar .mean-nav > ul li .sub-menu li, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li, .mobile-menu .mean-bar .mean-nav > ul li ul li {
  padding: 0;
  margin: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  border-right: 0px solid transparent;
  width: 100%;
  display: block !important;
  float: left;
  width: 100%;
}
.mobile-menu .mean-bar .mean-nav > ul li .sub-menu li a, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li a, .mobile-menu .mean-bar .mean-nav > ul li ul li a {
  font-size: 12px;
}
.mobile-menu .mean-bar .mean-nav > ul li .sub-menu li a:before, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li a:before, .mobile-menu .mean-bar .mean-nav > ul li ul li a:before {
  display: none;
}
.mobile-menu .mean-bar .mean-nav > ul li .sub-menu li .sub-menu, .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li ul, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li .sub-menu, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li ul, .mobile-menu .mean-bar .mean-nav > ul li ul li .sub-menu, .mobile-menu .mean-bar .mean-nav > ul li ul li ul {
  background-color: rgba(0, 0, 0, 0.04);
}
.mobile-menu .mean-bar .mean-nav > ul li .sub-menu li .sub-menu li a, .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li ul li a, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li .sub-menu li a, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li ul li a, .mobile-menu .mean-bar .mean-nav > ul li ul li .sub-menu li a, .mobile-menu .mean-bar .mean-nav > ul li ul li ul li a {
  border-top: 1px solid #dddddd;
}
.mobile-menu .mean-bar .mean-nav > ul li .sub-menu li .sub-menu li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li ul li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li .sub-menu li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li ul li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li ul li .sub-menu li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li ul li ul li a.mean-expand {
  border: 1px solid #dddddd;
}
.mobile-menu .mean-bar .mean-nav > ul li .sub-menu li .sub-menu .sub-menu, .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li .sub-menu ul, .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li ul .sub-menu, .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li ul ul, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li .sub-menu .sub-menu, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li .sub-menu ul, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li ul .sub-menu, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li ul ul, .mobile-menu .mean-bar .mean-nav > ul li ul li .sub-menu .sub-menu, .mobile-menu .mean-bar .mean-nav > ul li ul li .sub-menu ul, .mobile-menu .mean-bar .mean-nav > ul li ul li ul .sub-menu, .mobile-menu .mean-bar .mean-nav > ul li ul li ul ul {
  background-color: rgba(0, 0, 0, 0.05);
}
.mobile-menu .mean-bar .mean-nav > ul li .sub-menu li .sub-menu .sub-menu li a, .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li .sub-menu ul li a, .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li ul .sub-menu li a, .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li ul ul li a, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li .sub-menu .sub-menu li a, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li .sub-menu ul li a, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li ul .sub-menu li a, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li ul ul li a, .mobile-menu .mean-bar .mean-nav > ul li ul li .sub-menu .sub-menu li a, .mobile-menu .mean-bar .mean-nav > ul li ul li .sub-menu ul li a, .mobile-menu .mean-bar .mean-nav > ul li ul li ul .sub-menu li a, .mobile-menu .mean-bar .mean-nav > ul li ul li ul ul li a {
  border-top: 1px solid #eeeeee;
}
.mobile-menu .mean-bar .mean-nav > ul li .sub-menu li .sub-menu .sub-menu li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li .sub-menu ul li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li ul .sub-menu li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li ul ul li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li .sub-menu .sub-menu li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li .sub-menu ul li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li ul .sub-menu li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li ul ul li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li ul li .sub-menu .sub-menu li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li ul li .sub-menu ul li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li ul li ul .sub-menu li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li ul li ul ul li a.mean-expand {
  border: 1px solid #eeeeee;
}

@media only screen and (max-width: 479px) {
  .is-sticky .mean-bar .meanmenu-reveal {
    top: -40px;
  }
}
@media only screen and (max-width: 767px) {
  .is-sticky .mean-bar .meanmenu-reveal {
    top: -42px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .is-sticky .mean-bar .meanmenu-reveal {
    top: -48px;
  }
}

/*-- header-bottom-are Css --*/
.header-sticky.is-sticky {
  -webkit-animation: 600ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 600ms ease-in-out 0s normal none 1 running fadeInDown;
  background: rgba(250, 250, 250, 0.9) none repeat scroll 0 0;
  -webkit-box-shadow: 0 0px 10px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.4);
  left: 0;
  margin: auto;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  padding: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

.header-sticky.is-sticky .logo-area {
  margin: 16px 0;
}

.header-sticky.is-sticky .main-menu nav > ul > li {
  padding: 20px 0;
}

.header-sticky.is-sticky .mini-wrap-sidebar {
  padding: 20px 0;
}
@media only screen and (max-width: 479px) {
  .header-sticky.is-sticky .mini-wrap-sidebar {
    padding: 15px 0;
  }
}

.logo-area {
  margin: 25px 0;
}

.header-bottom-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media only screen and (max-width: 767px) {
  .header-bottom-right {
    margin-right: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-bottom-right {
    margin-right: 40px;
  }
}

.main-menu ul > li {
  display: inline-block;
  margin-right: 30px;
  padding: 50px 0;
  position: relative;
}
.main-menu ul > li > a {
  font-size: 18px;
  font-weight: 700;
  font-family: "Noto Sans KR", sans-serif;
}
.main-menu ul > li .sub-menu {
  width: 220px;
  border: 2px solid #f1f1f1;
  position: absolute;
  background: #fff;
  padding: 15px;
  z-index: 9;
  top: 120%;
  visibility: hidden;
  opacity: 0;
  -ms-filter: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.main-menu ul > li .sub-menu li {

  display: block;
  margin-right: 0;
  padding: 0px 0;
}
.main-menu ul > li .sub-menu li > a {
    font-size: 15px;
  display: block;
  padding: 0;
  font-weight: 400;
  text-align: left;
}
.main-menu ul > li .mega-menu {
  background: #ffffff;
  right: 0;
  left: auto;
  padding: 30px;
  text-transform: uppercase;
  position: absolute;
  text-align: left;
  width: 660px;
  z-index: 9;
  top: 120%;
  border: 2px solid #f1f1f1;
  visibility: hidden;
  opacity: 0;
  -ms-filter: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.main-menu ul > li .mega-menu > li {
  width: 33.333%;
  float: left;
  padding: 0;
  margin-right: 0;
}
.main-menu ul > li .mega-menu > li a {
  padding: 0;
  font-weight: 600;
  text-align: left;
}
.main-menu ul > li .mega-menu > li a:before {
  display: none;
}
.main-menu ul > li .mega-menu > li ul {
  margin-top: 10px;
}
.main-menu ul > li .mega-menu > li ul li {
  display: block;
  padding: 0;
  margin-right: 10px;
}
.main-menu ul > li .mega-menu > li ul li a {
  padding: 0;
  font-size: 14px;
  text-transform: capitalize;
  display: block;
  font-weight: 500;
  margin-top: 5px;
}
.main-menu ul > li .mega-menu > li ul li a:before {
  display: none;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .main-menu ul > li .mega-menu > li ul li a {
    font-size: 13px;
  }
}
.main-menu ul > li:hover .sub-menu, .main-menu ul > li:hover .mega-menu {
  visibility: visible;
  opacity: 1;
  -ms-filter: 1;
  top: 100%;
}

.hero-content-one {
  padding: 220px 0 250px 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .hero-content-one {
    padding: 170px 0 200px 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .hero-content-one {
    padding: 150px 0 180px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-content-one {
    padding: 100px 0 130px 0;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content-one {
    padding: 90px 0 120px 0;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .slider-text-info {
    padding-left: 120px;
  }
}
.slider-text-info h1 {
  font-size: 110px;
  font-weight: 800;
  color: #ffffff;
}
.slider-text-info h1 span {
  font-size: 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .slider-text-info h1 {
    font-size: 90px;
  }
  .slider-text-info h1 span {
    font-size: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .slider-text-info h1 {
    font-size: 90px;
  }
  .slider-text-info h1 span {
    font-size: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-text-info h1 {
    font-size: 60px;
  }
  .slider-text-info h1 span {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .slider-text-info h1 {
    font-size: 50px;
  }
  .slider-text-info h1 span {
    font-size: 26px;
  }
}
@media only screen and (max-width: 479px) {
  .slider-text-info h1 {
    font-size: 38px;
  }
  .slider-text-info h1 span {
    font-size: 24px;
  }
}

.btn.slider-btn {
  margin-top: 50px;
  padding: 15px 60px;
  border-radius: 5px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px), only screen and (min-width: 992px) and (max-width: 1200px), only screen and (min-width: 768px) and (max-width: 991px) {
  .btn.slider-btn {
    margin-top: 30px;
    padding: 14px 40px;
  }
}
@media only screen and (max-width: 767px) {
  .btn.slider-btn {
    margin-top: 20px;
    padding: 12px 40px;
  }
}

.hero-slider-active .itemBg {
  display: none;
}
.hero-slider-active .owl-prev, .hero-slider-active .owl-next {
  -webkit-transform: translateY(-60%);
          transform: translateY(-60%);
  position: absolute;
  top: 50%;
  color: #ffffff;
  width: 80px;
  height: 80px;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat;
  border-radius: 100%;
  left: 50px;
  right: auto;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .hero-slider-active .owl-prev, .hero-slider-active .owl-next {
    width: 50px;
    height: 50px;
  }
}
.hero-slider-active .owl-prev:after, .hero-slider-active .owl-next:after {
  content: "\f2fa";
  font-family: Material-Design-Iconic-Font;
  left: 0;
  color: #fff;
  font-size: 28px;
  top: 5px;
  position: relative;
}
.hero-slider-active .owl-prev:before, .hero-slider-active .owl-next:before {
  background: rgba(0, 0, 0, 0.3);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.hero-slider-active .owl-prev:hover:before, .hero-slider-active .owl-next:hover:before {
  background: rgba(0, 0, 0, 0);
}
.hero-slider-active .owl-next {
  right: 50px;
  left: auto;
}
.hero-slider-active .owl-next:after {
  content: "\f2fb";
  right: 0;
}
.hero-slider-active:hover .owl-next {
  right: 20px;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.hero-slider-active:hover .owl-prev {
  left: 20px;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.course-categories-wrap {
  margin-left: -9px;
  margin-right: -9px;
  margin-top: 50px;
}
@media only screen and (max-width: 767px) {
  .course-categories-wrap {
    margin-top: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .course-categories-wrap {
    margin-top: 25px;
  }
}

.coustom-col-2 {
  min-width: 15.1%;
  margin: 0 9px;
  float: left;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .coustom-col-2 {
    min-width: 31.333%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .coustom-col-2 {
    min-width: 30.6%;
  }
}
@media only screen and (max-width: 767px) {
  .coustom-col-2 {
    min-width: 45.5%;
  }
}
@media only screen and (max-width: 479px) {
  .coustom-col-2 {
    min-width: 95%;
  }
}

.coustom-col-3 {
  width: 25%;
  float: left;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .coustom-col-3 {
    min-width: 25%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .coustom-col-3 {
    min-width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .coustom-col-3 {
    min-width: 100%;
  }
}
@media only screen and (max-width: 479px) {
  .coustom-col-3 {
    min-width: 100%;
  }
}

.single-course-categories {
  margin-top: 20px;
  padding: 15px;
  height: 180px;
  border-radius: 5px;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.single-course-categories:hover .cours-icon {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.single-course-categories .cours-title {
  margin-top: 15px;
}
.single-course-categories .cours-title h5 {
  color: #000000;
}
.single-course-categories .cours-icon {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.single-course-categories-two {
  padding: 15px 20px 25px;
  border-radius: 25px 25px 0 0;
  text-align: center;
  position: relative;
  margin-top: -100px;
  z-index: 1;
}
.single-course-categories-two:hover .cours-icon {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-course-categories-two {
    margin-top: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .single-course-categories-two {
    margin-top: 80px;
  }
}
.single-course-categories-two .cours-icon {
  margin-top: -65px;
  margin-bottom: 25px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.single-course-categories-two .cours-icon .coure-icon-inner {
  background: #fff;
  display: inline-block;
  height: 100px;
  width: 100px;
  line-height: 100px;
  border-radius: 100%;
}
.single-course-categories-two .cours-title {
  margin-top: 15px;
}
.single-course-categories-two .cours-title h4 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .single-course-categories-two .cours-title h4 {
    font-size: 20px;
  }
}
.single-course-categories-two .cours-title p {
  color: #ffffff;
  font-size: 14px;
}

.single-choose-service {
  padding: 0 30px;
}
.single-choose-service .service-content {
  margin-top: 30px;
}
.single-choose-service .service-content h4 {
  color: #000000;
  font-weight: 600;
}
.single-choose-service .service-content p {
  color: #000000;
  font-size: 20px;
}

.single-popular-courses {
  overflow-x: hidden;
}
.single-popular-courses:hover .popular-courses-image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.popular-courses-image {
  overflow: hidden;
}
.popular-courses-image a {
  display: block;
}
.popular-courses-image a img {
  width: 100%;
}

.popular-courses-contnet {
  padding: 30px;
  background: #fbfbfb;
}
.popular-courses-contnet h5 {
  font-weight: 700;
  margin-bottom: 5px;
}
.popular-courses-contnet .post_meta {
  margin-bottom: 10px;
  font-size: 14px;
}
.popular-courses-contnet .post_meta ul li {
  display: inline-block;
  position: relative;
  padding: 0 8px 0 0;
  margin: 0 8px 0 0;
  position: relative;
}
.popular-courses-contnet .post_meta ul li:before {
  content: "";
  width: 1px;
  height: 10px;
  background: #7c7c7c;
  top: 50%;
  right: 0;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.popular-courses-contnet .post_meta ul li:last-child:before {
  display: none;
}
.popular-courses-contnet .post_meta ul li a {
  color: #86b541;
}
.popular-courses-contnet > p {
  font-size: 14px;
}
.popular-courses-contnet .button-block {
  margin-top: 20px;
}
.popular-courses-contnet .button-block .botton-border {
  padding: 3px 25px;
  border: 2px solid #86b541;
  color: #86b541;
  border-radius: 5px;
  font-size: 13px;
  text-transform: uppercase;
}
.popular-courses-contnet .button-block .botton-border:hover {
  background: #86b541;
  color: #ffffff;
}


.our-blog-contnet {
  padding: 30px;
  border-bottom: 1px solid #ececec;
  border-right: 1px solid #ececec;
  border-left: 1px solid #ececec;
}
.our-blog-contnet h5 {
  font-weight: 600;
  margin-bottom: 5px;
}
.our-blog-contnet .post_meta {
  margin-bottom: 10px;
  font-size: 14px;
}
.our-blog-contnet .post_meta ul li {
  display: inline-block;
  position: relative;
  padding: 0 10px 0 0;
  margin: 0 10px 0 0;
  position: relative;
}
.our-blog-contnet .post_meta ul li:before {
  content: "";
  width: 1px;
  height: 10px;
  background: #7c7c7c;
  top: 50%;
  right: 0;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.our-blog-contnet .post_meta ul li:last-child:before {
  display: none;
}
.our-blog-contnet .post_meta ul li a {
  color: #86b541;
}
.our-blog-contnet > p {
  font-size: 14px;
}
.our-blog-contnet .button-block {
  margin-top: 20px;
}
.our-blog-contnet .button-block .botton-border {
  padding: 5px 30px;
  border: 2px solid #86b541;
  color: #86b541;
  border-radius: 5px;
  font-size: 12px;
  text-transform: uppercase;
}
.our-blog-contnet .button-block .botton-border:hover {
  background: #86b541;
  color: #ffffff;
}

.single-our-blog:hover .our-blog-image a {
  position: relative;
}
.single-our-blog:hover .our-blog-image a:before {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  visibility: visible;
}
.single-our-blog:hover .our-blog-image .in-our-blog-icon {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  visibility: visible;
  margin-top: 0px;
}

.our-blog-image {
  position: relative;
}
.our-blog-image a {
  position: relative;
}
.our-blog-image a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  visibility: hidden;
  background: rgba(0, 0, 0, 0.58);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.our-blog-image .in-our-blog-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  line-height: 45px;
  text-align: center;
  background: #fff;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  visibility: hidden;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 50px;
  margin-top: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.blog-top-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #f6f6f6;
  padding: 10px 20px;
  color: #86b541;
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .blog-top-bar {
    padding: 6px;
  }
}
.blog-top-bar .blog-item-filter-list li a {
  font-size: 20px;
  margin-left: 15px;
  padding-left: 15px;
  position: relative;
}
.blog-top-bar .blog-item-filter-list li a:before {
  background: #86b541;
  content: "";
  position: absolute;
  height: 15px;
  width: 1px;
  left: 0;
  top: 6px;
}
.blog-top-bar .blog-item-filter-list li:first-child a:before {
  display: none;
}

.single-blog-list-view .our-blog-contnet {
  padding: 0;
  border: none;
}
@media only screen and (max-width: 767px) {
  .single-blog-list-view .our-blog-contnet {
    margin-top: 30px;
  }
}

.blog-details-area .our-blog-contnet {
  padding: 30px 0;
  border: none;
  border-bottom: 1px solid #ddd;
}

.blockquote-blog {
  background: #86b541;
  padding: 20px 70px;
  color: #ffffff;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
}
.blockquote-blog:after {
  position: absolute;
  width: 40px;
  height: 40px;
  content: "";
  left: 35px;
  top: 25px;
  z-index: 1;
  right: auto;
}
.blockquote-blog:before {
  position: absolute;
  width: 80px;
  height: 80px;
  content: "";
  right: 0;
  bottom: 10px;
  z-index: 1;
  left: auto;
}
@media only screen and (max-width: 767px) {
  .blockquote-blog {
    padding: 30px 30px;
  }
  .blockquote-blog:after {
    left: 15px;
    top: 15px;
  }
}
.blockquote-blog p {
  margin: 0;
}
.blockquote-blog h5 {
  margin: 0;
  float: right;
  font-weight: 500;
  color: #ffffff;
  position: relative;
  padding-left: 45px;
}
.blockquote-blog h5:after {
  position: absolute;
  width: 35px;
  height: 1px;
  background: #ddd;
  content: "";
  left: 0;
  top: 50%;
}



.project-count-bg {
  background: url("../images/bg/fun-01.jpg");
}

.counter {
  padding-bottom: 5px;
  margin-top: 30px;
}
.counter h3 {
  font-size: 72px;
  color: #000000;
  font-weight: 800;
  line-height: 60px;
}
@media only screen and (max-width: 767px) {
  .counter h3 {
    font-size: 50px;
    line-height: 40px;
  }
}
.counter p {
  color: #000000;
}
.counter:after {
  position: absolute;
  background: #86b541;
  content: '';
  width: 50px;
  height: 2px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.grey-bg-image {
  background: url("../images/bg/testimonial-bg-10.jpg");
  background-size: cover;
}

.testimonial-wrap {
  background: #fff;
}

.testimonial-wrap h4{
    font-size: 30px;
}

.testimonial-wrap h6{
    font-size: 20px;
}

.testimonial-image {
  margin-top: -150px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.testimonial-image img {
  width: auto !important;
}
.testimonial-info .autor-info {
  margin-top: 50px;
  margin-bottom: 20px;
}
.testimonial-info .autor-info h4 {
  font-weight: 700;
  text-transform: uppercase;
}
.testimonial-info .autor-info h6 {
  font-weight: 600;
  color: #86b541;
}
.testimonial-info p {
  font-size: 18px;
}
.testimonial-active .owl-dots {
  text-align: center;
  margin-top: 30px;
}
.testimonial-active .owl-dots .owl-dot {
  background: transparent;
  border: 1px solid #242c42 !important;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  border-radius: 100%;
}
.testimonial-active .owl-dots .owl-dot.active {
  background: #242c42;
}


.section-inner-ptb {
  padding: 180px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .section-inner-ptb {
    padding: 120px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-inner-ptb {
    padding: 100px 0;
  }
}
@media only screen and (max-width: 767px) {
  .section-inner-ptb {
    padding: 70px 0;
  }
}
@media only screen and (max-width: 479px) {
  .section-inner-ptb {
    padding: 60px 0;
  }
}

.about-us-contents {
  padding-right: 30px;
}
@media only screen and (max-width: 767px) {
  .about-us-contents {
    padding-right: 0;
  }
}
.about-us-contents h3 {
  font-weight: 700;
  margin-bottom: 15px;
}
.about-us-contents h3 > span {
  color: #86b541;
}
.about-us-contents p {
  font-size: 20px;
}
.about-us-contents .about-us-btn > a {
  margin-top: 40px;
  letter-spacing: 1px;
  padding: 10px 45px;
  background: #86b541;
  display: inline-block;
  border-radius: 5px;
  color: #ffffff;
  text-transform: uppercase;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.about-us-contents .about-us-btn > a:hover {
  background: #222222;
  color: #ffffff;
}
@media only screen and (max-width: 767px) {
  .about-us-contents .about-us-btn > a {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-us-image {
    text-align: left !important;
  }
}
.about-us-image a {
  position: relative;
}
.about-us-image a:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}
.about-us-image a span {
  position: absolute;
  top: 50%;
  z-index: 9;
  right: 50%;
  -webkit-transform: translateY(-50%) translateX(50%);
          transform: translateY(-50%) translateX(50%);
}
@media only screen and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .about-us-image {
    margin-top: 30px;
  }
}

.single-team {
  position: relative;
}
.single-team-info {
  padding-top: 25px;
  text-align: left;
  background: #fff;
  position: absolute;
  width: 100%;
  margin-top: 0px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.single-team-info h5 {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
}
.single-team-info p {
  color: #86b541;
  text-transform: uppercase;
}
.single-team .personsl-socail {
  visibility: hidden;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
  margin-top: 32px;
}
.single-team .personsl-socail li {
  display: inline-block;
}
.single-team .personsl-socail li a {
  display: block;
  height: 35px;
  width: 35px;
  line-height: 35px;
  font-size: 16px;
  background: #86b541;
  color: #ffffff;
  text-align: center;
  border-radius: 50%;
}
.single-team .personsl-socail li a:hover {
  background: #222222;
}
.single-team:hover .single-team-info {
  margin-top: -60px;
}
.single-team:hover .personsl-socail {
  visibility: visible;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/*--
    15. Footer Css
-------------------------*/
.footer-top {
  background: #1b1b1b;
}
.footer-top .col-md-6 {
  position: relative;
}
.footer-top .col-md-6:after {
  content: "";
  background: #2f2f2f;
  height: 80%;
  width: 1px;
  left: 0;
  top: 0;
  position: absolute;
}
@media only screen and (max-width: 767px) {
  .footer-top .col-md-6:after {
    display: none;
  }
}
.footer-top .col-md-6:first-child:after {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-top .col-md-6:nth-child(3):after {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-top .col-md-6:nth-child(3) .footer-block {
    padding-left: 0;
  }
}

.footer-logo {
  margin-bottom: 28px;
}
.footer-dec {
  color: #ffffff;
  font-size: 16px;
  padding-right: 10px;
}
.footer-block {
  position: relative;
  padding-left: 20px;
}
@media only screen and (max-width: 767px), only screen and (min-width: 992px) and (max-width: 1200px) {
  .footer-block {
    padding-left: 0;
  }
}
.footer-block > h5 {
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .footer-block > h5 {
    margin-bottom: 25px;
  }
}
.footer-list li {
  color: #ffffff;
}

.footer-social-link {
  margin-top: 35px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px), only screen and (min-width: 992px) and (max-width: 1200px) {
  .footer-social-link {
    margin-top: 25px;
  }
}
.footer-social-link li {
  display: inline-block;
  margin-right: 10px;
}
.footer-social-link li:last-child {
  margin-right: 0;
}
.footer-social-link li a {
  border: 2px solid #86b541;
  height: 35px;
  width: 35px;
  line-height: 30px;
  font-size: 14px;
  text-align: center;
  display: block;
  border-radius: 50%;
  color: #86b541;
}
.footer-social-link li a:hover {
  background: #86b541;
  color: #ffffff;
}

.footer-courses li {
  padding-top: 5px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer-courses li:last-child {
  margin-bottom: 0;
}
.footer-courses .courses-image {
  min-width: 70px;
  margin-right: 10px;
}
.footer-courses .courses-image img {
  border-radius: 10px;
}
.footer-courses .courses-nifo h5 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}
.footer-courses .courses-nifo p {
  color: #6d6d6d;
}

.newsletter-wrap p {
  color: #ffffff;
  margin-bottom: 20px;
}

.newsletter-input-box {
  position: relative;
}
.newsletter-input-box input {
  width: 100%;
  background: #2a2a2a;
  border-radius: 5px;
  border: none;
  color: #ffffff;
  padding: 5px 50px 5px 10px;
  font-size: 12px;
}
.newsletter-input-box .newsletter-button {
  position: absolute;
  top: 0px;
  right: 0px;
  border: none;
  background: #86b541;
  color: #ffffff;
  border-radius: 0 5px 5px 0;
  padding: 4.5px 14.2px;
}
.newsletter-input-box .newsletter-button:hover {
  background: #333;
}

.footer-bottom {
  background: #0a0a0a;
}
.footer-bottom .copy-right span {
  color: #86b541;
}

/*--
    16. Contact css
-----------------------*/
.contact-form-info {
  padding: 20px 50px 20px 0;
}
@media only screen and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-form-info {
    padding: 0;
  }
}

.contact-title > h3 {
  font-size: 22px;
  margin-bottom: 30px;
  font-weight: 600;
}

.contact-input {
  display: block;
  margin: 0 -10px;
  overflow: hidden;
}

.contact-inner {
  float: left;
  margin: 0 0 20px;
  padding: 0 10px;
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .contact-inner {
    width: 100%;
  }
}
.contact-inner input, .contact-inner textarea {
  border: 1px solid #dddddd;
  color: #222222;
  font-size: 14px;
  height: 45px;
  padding-left: 15px;
  width: 100%;
}
.contact-inner.contact-message {
  width: 100%;
}
.contact-inner.contact-message textarea {
  height: 150px;
  padding: 15px;
}

.contact-infor {
  background: #f2f2f2 none repeat scroll 0 0;
  padding: 20px 30px;
}
@media only screen and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-infor {
    margin-top: 60px;
  }
}

.contact-dec > p {
  margin-bottom: 30px;
}

.contact-address {
  margin-bottom: 10px;
}
.contact-address li {
  border-top: 1px solid #e4e4e4;
  font-size: 14px;
  padding: 10px 0;
}
.contact-address li:first-child {
  border-top: none;
}
.contact-address li i {
  margin-right: 5px;
}

.work-hours {
  margin-bottom: 15px;
}

.contact-submit-btn .submit-btn {
  background: #333333 none repeat scroll 0 0;
  border: 0 none;
  border-radius: 3px;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  height: 40px;
  line-height: 40px;
  padding: 0 25px;
  text-transform: capitalize;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.contact-submit-btn .submit-btn:hover {
  background: #86b541;
}

.form-messege {
  margin-bottom: 0;
  margin-top: 3px;
  font-size: 14px;
}
.form-messege.error {
  color: red;
  font-style: italic;
}
.form-messege.success {
  color: #008000;
  font-style: italic;
}

.single-courses-details .popular-courses-contnet {
    padding: 30px 0;
}

.details-tabs-list {
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
}
.details-tabs-list li {
    width: 25%;
    text-align: center;
    border-right: 1px solid #ddd;
}
@media only screen and (max-width: 767px) {
    .details-tabs-list li {
        width: 50%;
    }
}
.details-tabs-list li:last-child {
    border-right: none;
}
.details-tabs-list li a {
    display: block;
    padding: 10px;
}
.details-tabs-list li a.active, .details-tabs-list li a:hover {
    background: #86b541;
    color: #ffffff;
}

.courses-details-tab-panel {
    border: 1px solid #ddd;
    padding: 30px;
}

.courses-details-cont h5 {
    font-weight: 500;
    color: #86b541;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 20px;
}
.courses-details-cont h5:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background: #777;
    width: 100%;
    height: 1px;
}

.related-courses-area h4 {
    font-weight: 600;
}

.related-courses-area .single-popular-courses .popular-courses-contnet {
    padding: 0 0;
    margin-top: 25px;
    background: none;
}

.modal-wrapper h4 {
    font-weight: 600;
}
.modal-wrapper .modal-header {
    background: #86b541;
}
.modal-wrapper .modal-header h4 {
    color: #ffffff;
}
.modal-wrapper .modal-header button {
    color: #ffffff;
}
.modal-wrapper .modal-dialog {
    max-width: 700px;
}
.modal-wrapper .modal-body {
    padding: 60px;
}
@media only screen and (max-width: 767px) {
    .modal-wrapper .modal-body {
        padding: 30px;
    }
}


