/*----------------------------------------*/
/*  01. Theme default CSS
/*----------------------------------------*/
:root {
  /**
  @color declaration
  */
  --theme-white: #FFFFFF;
  --theme-white-rgb: 255, 255, 255;
  --theme-dark: #1F1841;
  --theme-green: #17B187;
  --theme-green-rgb: 23, 177, 135;
  --theme-darkgreen: #209371;
  --theme-light-gray: #F8F8F8;
  --theme-gray: #58585A;
  --theme-gray-rgb: 88, 88, 90;
}
*::-moz-selection {
  background: var(--theme-green);
}
::-moz-selection {
  background: var(--theme-green);
}
::selection {
  background: var(--theme-green);
}

/*---------------------------------------
          Background color
-----------------------------------------*/
.theme-bg {
  background: var(--theme-green);
}
.gradient-bg {
  background-image: -moz-linear-gradient(40deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
  background-image: -webkit-linear-gradient(40deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
  background-image: -ms-linear-gradient(40deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
  background-image: linear-gradient(40deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
}
.section-block-grey {
  background-color: var(--theme-light-gray);
}

/*---------------------------------------
            Color
-----------------------------------------*/
.theme-color h1,
.theme-color h2,
.theme-color h3,
.theme-color h4,
.theme-color h5,
.theme-color h6,
.theme-color p,
.theme-color span,
.theme-color li,
.theme-color a {
  color: var(--theme-green) !important;
}

.text-gray {
  color: var(--theme-gray) !important;
}

/* Button */
.z-btn {
  border-color: var(--theme-green);
  background: var(--theme-green);
}
.z-btn:hover, .z-btn:focus {
  background: var(--theme-white);
  border-color: var(--theme-green);
  color: var(--theme-green);
}
.z-btn:focus {
  border: 2px solid;
}
.z-btn-white {
  background: var(--theme-white);
  border-color: var(--theme-white);
  color: var(--theme-dark);
}
.z-btn-white:hover {
  background: var(--theme-gray);
  border-color: var(--theme-gray);
  color: var(--theme-white);
}
.z-btn-green {
  background: var(--theme-white);
  border-color: var(--theme-white);
  color: var(--theme-green);
}
.z-btn-green:hover {
  background: var(--theme-green);
  border-color: var(--theme-white);
  color: var(--theme-white);
}
.z-btn-white-3:hover {
  background: var(--theme-green);
  border-color: var(--theme-green);
}
.z-btn-transparent {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
}
.z-btn-transparent:hover {
  background: var(--theme-white);
  color: var(--theme-dark);
  border-color: var(--theme-white);
}
.z-btn-transparent-2 {
  border-color: rgba(255, 255, 255, 0.2);
}
.z-btn-border {
  border-color: #e2e0eb;
  color: var(--theme-dark);
  background: transparent;
}
.z-btn-border:hover {
  background: var(--theme-green);
  color: var(--theme-white);
  border-color: var(--theme-green);
}

.z-icon-gradient {
  background: -moz-linear-gradient(90deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
  background: -webkit-linear-gradient(90deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
  background: linear-gradient(90deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-primary.focus, .btn-primary:focus {
  background-color: var(--theme-green);
  border-color: var(--theme-green);
  box-shadow: 0 0 0 0.2rem rgba(23,177,135,.5);
}

/* Link BTN */
.link-btn-2:hover,
.link-btn-2.link-btn-3:hover {
  color: var(--theme-green);
}

/* Section Title */
.section__title span {
  color: var(--theme-green);
  text-transform: uppercase;
}
.section__title-4 h2 {
  font-size: 34px !important;
}

/* Scroll to Top */
#scroll a {
  background: var(--theme-green);
  border-color: var(--theme-green);
  box-shadow: 0 4px 20px rgba(25, 25, 25, 0.2);
}

/* Basic Pagination */
.basic-pagination ul li.active a,
.basic-pagination ul li a:hover {
  background: var(--theme-green);
}

/* Preloader */
.object {
  background-color: var(--theme-green);
}

html, body {
  overflow-x: hidden;
}

/*----------------------------------------*/
/*  02. HEADER CSS START
/*----------------------------------------*/
.header__info ul li {
  font-size: 14px;
}
.header__style-6 .header__info ul li:first-child {
  border-left: 0;
}
.header__search-wrapper {
  background: var(--theme-gray);
}
.header__bottom.sticky .main-menu ul li:hover > a {
  color: var(--theme-green);
}
.main-menu ul li:hover > a {
  color: var(--theme-gray);
}
.header__bottom.sticky {
  z-index: 99;
}
.header__bottom.sticky .header__btn a {
  background: var(--theme-green);
  border-color: var(--theme-green);
}
.header__bottom.sticky .header__btn a:hover {
  color: var(--theme-green);
}
.header__bottom.sticky .sidebar-toggle-btn .line {
  background: var(--theme-gray);
}
.header__bottom .sidebar-toggle-btn .line {
  background-color: var(--theme-gray);
}

/* logo */
.logo img,
.logo-gradient img {
  max-width: 160px;
}

/* header style */
.header__style-6 .header__social ul li a:hover {
  background: var(--theme-green);
}
.header__style-6 .header__info ul li,
.header__style-6 .header__info ul li a {
  color: var(--theme-green);
}
.header__style-6 .header__info ul li a:hover {
  color: var(--theme-gray);
}

/* MAIN MENU CSS START */
.main-menu ul li a, .main-menu ul li ul.submenu li a {
  color: var(--theme-gray);
}
.main-menu ul li ul.submenu {
  border-top-color: var(--theme-gray);
  min-width: 220px;
}
.main-menu ul li ul.submenu li a::before {
  background: var(--theme-green);
}
.main-menu ul li:hover a,
.main-menu ul li ul.submenu li:hover > a,
.main-menu.header__style-4-menu ul li a:hover,
.main-menu-3 ul li:hover > a {
  color: var(--theme-green);
}

/* sidebar css start */
.sidebar-toggle-btn-3 .line {
  background-color: var(--theme-green);
}
.sidebar__close-btn {
  border-color: var(--theme-darkgreen);
}
.sidebar__info p,
.sidebar__contact ul li .icon i,
.sidebar__contact ul li .text span,
.sidebar__contact ul li .text span a {
  color: var(--theme-white);
}
.sidebar__search input {
  background: var(--theme-darkgreen);
}

/*----------------------------------------*/
/*  03. SLIDER CSS START
/*----------------------------------------*/
.single-slider::before {
  background-image: -moz-linear-gradient(60deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
  background-image: -ms-linear-gradient(60deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
  background-image: -webkit-linear-gradient(60deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
  background-image: linear-gradient(60deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
}
.slider__content > span {
  color: var(--theme-white);
}
.slider__content-2::before {
  background-image: -moz-linear-gradient(-120deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
  background-image: -webkit-linear-gradient(-120deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
  background-image: -ms-linear-gradient(-120deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
  background-image: linear-gradient(-120deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
}
.z-btn-learn {
  color: var(--theme-gray);
  border-color: var(--theme-white);
  background: var(--theme-white);
}

/*----------------------------------------*/
/*  04. FEATURES CSS START
/*----------------------------------------*/
.features__content h3 {
  font-size: 24px;
}
.nw-features-area .features__content h3 {
  margin-bottom: 0;
}
.features__inner {
  -webkit-box-shadow: 0px 50px 70px 0px rgba(var(--theme-gray-rgb), 0.3);
  -moz-box-shadow: 0px 50px 70px 0px rgba(var(--theme-gray-rgb), 0.3);
  box-shadow: 0px 50px 70px 0px rgba(var(--theme-gray-rgb), 0.3);
}
.features__item {
  border-right-color: rgba(var(--theme-gray-rgb), 0.9);
}
.features__thumb::after {
  background: var(--theme-gray);
}
.features__thumb::before {
  background: var(--theme-green);
}
.features__thumb-2::after {
  background-image: -moz-linear-gradient(60deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
  background-image: -webkit-linear-gradient(60deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
  background-image: -ms-linear-gradient(60deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
  background-image: -linear-gradient(60deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
}
.features__icon-2 i {
  color: var(--theme-green);
}
@media screen and (min-width: 992px) {
  .features__area .col-lg-2 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media screen and (min-width: 1200px) {
  .features__area .col-xl-2 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}
.nw-features-area .features__icon img,
.nw-features-area .services__icon img {
  max-width: 54px;
  min-height: 65px;
  object-fit: contain;
}
.nw-features-area .features__item:hover .features__content {
  top: 80%;
}
.nw-features-area .features__item:hover .features__content .features__icon {
  display: none;
}

.nw-features-area .services__item {
  padding: 40px 20px;
  text-align: center;
}

/*----------------------------------------*/
/*  05. ABOUT CSS START
/*----------------------------------------*/
.about__thumb > img {
  border-radius: 20px;
}
.about__list ul li span {
  display: inline-block;
  font-size: 16px;
}
.about__list ul li:hover span {
  color: var(--theme-green);
}
.about__list ul li:hover span i {
  background: var(--theme-green);
}
.about__list ul li span i {
  background: rgba(var(--theme-green-rgb), 0.1);
  color: var(--theme-green);
}
.about__content p {
  font-size: 16px;
  line-height: 24px;
}
.about__content p:last-child {
  margin-bottom: 0;
}
.about__list p a:hover {
  color: var(--theme-green);
}

/*----------------------------------------*/
/*  06. CAPABILITIES CSS START
/*----------------------------------------*/
.capabilities__list ol li,
.checklist-white ul li span {
  color: rgba(var(--theme-white-rgb), 0.7);
}
.checklist-white ul li:hover span {
  color: rgba(var(--theme-white-rgb), 1);
}
.checklist-white ul li span i {
  background: rgba(var(--theme-white-rgb), 0.5);
  color: var(--theme-gray);
}
.checklist-white ul li:hover span i {
  background: rgba(var(--theme-white-rgb), 1);
  color: var(--theme-gray);
}

/*----------------------------------------*/
/*  05. SERVICES CSS START
/*----------------------------------------*/
.services__content h3:hover a,
.services__nav .nav-link i {
  color: var(--theme-green);
}
.services__nav .nav-link.active {
  color: #5749ff;
}
.services__text p span {
  color: var(--theme-green);
}
.services__text p span::after {
  background: var(--theme-green);
}
.services__list ul li::after,
.services__link ul li a::after,
.services__link ul li a:hover {
  color: var(--theme-green);
}
.services__form input:focus {
  border-color: var(--theme-green);
}
.services__form input + .error {
  color: red;
  display: block;
  font-size: 80%;
  margin-top: -20px;
}
.services__action::after {
  background: var(--theme-green);
}
.services__action a i,
.services__action a:hover {
  color: var(--theme-green);
}
.services__list ol li,
.services__list ul li {
  color: var(--theme-gray);
  list-style: none;
  margin-bottom: 25px;
}
.about-service-list ul li span {
  font-size: 16px; 
  font-weight: 400; 
  color: var(--theme-gray);
}


/*----------------------------------------*/
/*  07. TEAM CSS START
/*----------------------------------------*/
/* .team__item {
  background: #423d7c;
}
.team__item::after {
  background-image: -moz-linear-gradient(-130deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
  background-image: -webkit-linear-gradient(-130deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
  background-image: -ms-linear-gradient(-130deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
  background-image: linear-gradient(-130deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
}
.team__add a:hover {
  color: var(--theme-green);
}
.team__social ul li a {
  background: #7b23de;
}
.team__social ul li a:hover {
  color: #7b23de;
}
.team__details-contact ul li .icon i {
  color: var(--theme-green);
}
.team__details-social ul li a:hover {
  background: var(--theme-green);
} */

/*----------------------------------------*/
/*  08. CTA CSS START
/*----------------------------------------*/
.cta__area::before {
  background-image: -moz-linear-gradient(60deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
  background-image: -ms-linear-gradient(60deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
  background-image: -webkit-linear-gradient(60deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
  background-image: linear-gradient(60deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
}
.potential-box::before {
  background-image: linear-gradient(60deg, var(--theme-gray) 0%, var(--theme-gray) 100%);
}

/*----------------------------------------*/
/*  09. PRICE CSS START
/*----------------------------------------*/
/* .price__item {
  border-color: var(--theme-green);
}
.price__item::after {
  background-image: -moz-linear-gradient(-120deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
  background-image: -webkit-linear-gradient(-120deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
  background-image: -ms-linear-gradient(-120deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
  background-image: linear-gradient(-120deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
}
.price__item a.price-btn,
.price__item a.price-btn:hover,
.price__item:hover .price-btn,
.price__item.active .price-btn,
.price__tab .nav-tabs .nav-item .nav-link.active,
.price__offer span {
  color: var(--theme-green);
} */

/*----------------------------------------*/
/*  11. CONTACT CSS START
/*----------------------------------------*/
.contact__info ul li p a:hover {
  color: var(--theme-green);
}
.contact__form input:focus, .contact__form textarea:focus {
  border-color: var(--theme-green);
}
.contact__form form .form-group:not(.mb-30) {
  margin-bottom: 15px;
}
.contact-form-box input {
  margin-bottom: 0;
}
.contact__text a {
  word-break: break-word;
}

/*----------------------------------------*/
/*  12. FAQ CSS START
/*----------------------------------------*/
.faq__wrapper .btn-link::before,
.faq__accordion .btn-link,
.faq__accordion .btn-link::before {
  color: var(--theme-green);
}

/*----------------------------------------*/
/*  14. EXPART CSS START
/*----------------------------------------*/
.expart__nav .nav-link.active {
  background: var(--theme-green);
}

/*----------------------------------------*/
/*  16. CASE CSS START
/*----------------------------------------*/
.case__thumb::before {
  background-image: -moz-linear-gradient(60deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
  background-image: -webkit-linear-gradient(60deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
  background-image: -ms-linear-gradient(60deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
  background-image: linear-gradient(60deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
}
.case__menu button.active,
.case__menu button:hover {
  color: var(--theme-green);
}

/*----------------------------------------*/
/*  17. BLOG CSS START
/*----------------------------------------*/
.blog__thumb::after {
  background-image: -moz-linear-gradient(60deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
  background-image: -webkit-linear-gradient(60deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
  background-image: -ms-linear-gradient(60deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
  background-image: -linear-gradient(60deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
}
.blog__content-2 h3 a:hover {
  color: var(--theme-green);
}
.blog__user::after {
  background: var(--theme-green);
}
.blog__comment a:hover {
  color: var(--theme-green);
}
.blog__link-icon i.icon_1 {
  color: var(--theme-green);
}
.blog__tag a:hover {
  background: var(--theme-green);
  border-color: var(--theme-green);
}
.blog__social ul li a:hover {
  background: var(--theme-green);
}

/* Sidebar */
.sidebar__area {
  background-color: var(--theme-green);
  right: -375px;
  max-width: 355px;
  width: 100%;
}
.sidebar__tab .nav-tabs {
  background: var(--theme-darkgreen);
}
.sidebar__tab .nav-tabs .nav-item .nav-link.active,
.sidebar__widget-title h4::after {
  background: var(--theme-green);
}
.sidebar__widget-content .search button,
.sidebar__widget-content .cat-link ul li a::after,
.sidebar__widget-content .cat-link ul li a:hover {
  color: var(--theme-green);
}

/* recent post */
.rc-text h6 a:hover {
  color: var(--theme-green);
}
.rc__comments ul li:hover .rc__comments-icon i {
  background: var(--theme-green);
  border-color: var(--theme-green);
}
.rc__comments-icon i {
  color: var(--theme-green);
}

/* tags */
.tags a:hover {
  background: var(--theme-green);
  border-color: var(--theme-green);
}

/* comment box */
.comment-reply:hover {
  color: var(--theme-green);
}

/* post comment */
.post-input input:focus, .post-input textarea:focus {
  border-color: var(--theme-green);
}

/*----------------------------------------*/
/*  18. HERO CSS START
/*----------------------------------------*/
.hero__content span {
  color: var(--theme-green);
}

/*----------------------------------------*/
/*  19. PROJECT CSS START
/*----------------------------------------*/
.project__item:hover .project__no h5 {
  background: var(--theme-green);
}
.project__no h5,
.project__content h3 a:hover {
  color: var(--theme-green);
}

/*----------------------------------------*/
/*  20. PAGE TITLE CSS START
/*----------------------------------------*/
.page__title::before {
  background-image: -moz-linear-gradient(60deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
  background-image: -ms-linear-gradient(60deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
  background-image: -webkit-linear-gradient(60deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
  background-image: linear-gradient(60deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
}

/*----------------------------------------*/
/*  21. PORTFOLIO CSS START
/*----------------------------------------*/
.portfolio__thumb::before {
  background-image: -moz-linear-gradient(60deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
  background-image: -webkit-linear-gradient(60deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
  background-image: -ms-linear-gradient(60deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
  background-image: linear-gradient(60deg, var(--theme-green) 0%, var(--theme-darkgreen) 100%);
}
.portfolio__content h4 a:hover,
.portfolio__menu button.active,
.portfolio__menu button:hover {
  color: var(--theme-green);
}

/*----------------------------------------*/
/*  00. Footer CSS START
/*----------------------------------------*/
.footer__social ul li a:hover,
.footer__subscribe button {
  background: var(--theme-white);
}
.footer__info ul li {
  word-break: break-word;
}
.footer__links ul li a:hover,
.footer__info ul li .icon i,
.footer__copyright-text p a:hover {
  color: var(--theme-white);
}
.footer__social ul li a {
  color: var(--theme-green) !important;
}
.footer__links ul li a::before {
  background: var(--theme-gray);
}
.footer__area a:focus, .footer__area a:hover {
  color: var(--theme-gray) !important;
}

/*----------------------------------------*/
/*  Meanmenu CSS START
/*----------------------------------------*/
.mean-container .mean-nav ul li a {
  border-top-color: var(--theme-darkgreen);
}
.mean-container .mean-nav ul li a.mean-expand {
	border-left-color: var(--theme-darkgreen) !important;
}

/* Page Main Title */
.page__title-content h1 {
  color: var(--theme-white);
  font-size: 70px;
}
.cta__content h2 {
  color: var(--theme-white);
  font-size: 60px;
  margin-bottom: 40px;
}

.tp-content-area p:last-child {
  margin-bottom: 0;
}
.term-sec .service-block h3 {
  margin: 34px auto 10px;
}

/* Contact Box */
.contact-box {
  -webkit-box-shadow: 0px 30px 50px 0px rgba(10, 0, 58, 0.08);
  -moz-box-shadow: 0px 30px 50px 0px rgba(10, 0, 58, 0.08);
  box-shadow: 0px 30px 50px 0px rgba(10, 0, 58, 0.08);
  padding: 65px 60px;
  min-height: 450px;
  max-width: 900px;
  width: 100%;
}
.contact__form select {
  color: #1f1841;
  background: #f5f5f5;
  border: 2px solid transparent;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  line-height: 46px;
  margin-bottom: 15px;
  padding: 0 15px;
  height: 50px;
  width: 100%;
}
.contact__form form ul li + li {
  margin-top: 10px;
}
.contact__form form [type=checkbox], .contact__form form [type=radio] {
  margin: 0;
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.contact__form form ul li [type=radio]+label {
  color: #000;
  cursor: pointer;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  padding-left: 32px;
  margin: 0;
  position: relative;
}
.contact__form form ul li [type=radio]+label:after {
  content: "";
  background-color: var(--theme-white);
  border: 1px solid var(--theme-green);
  border-radius: 100%;
  position: absolute;
  top: -1px;
  left: 0;
  padding: 3px;
  transition: all .3s;
  height: 22px;
  width: 22px;
}
.contact__form form ul li [type=radio]:checked+label:after {
  background: var(--theme-green);
  background-clip: content-box;
  box-shadow: inset 0 0 0 3px #fff;
}
.contact__form form label.acknowledge {
  color: #000;
  font-weight: 300;
  font-size: 14px;
  margin-left: 34px;
  margin-bottom: 0;
}
.contact__form form [type=checkbox] + label {
  cursor: pointer;
}
.contact__form form [type=checkbox]:checked+label:before, .contact__form form [type=checkbox]:not(:checked)+label:before {
  content: "";
  background: var(--theme-white);
  border: solid #dadada 1px;
  border-radius: 2px;
  box-shadow: inset 0 1px 3px rgb(0 0 0 / 10%);
  color: var(--theme-green);
  font-family: "Font Awesome 5 Pro";
  font-size: 11px;
  text-align: center;
  line-height: 20px;
  position: absolute;
  top: 2px;
  left: 15px;
  transition: all .3s;
  height: 20px;
  width: 20px;
}
.contact__form form [type=checkbox]:checked+label:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  border-color: #44D3A5;
}

.contact__form .btn-submit,
.contact__form .btn-submit:hover,
.contact__form .btn-submit:focus {
  color: var(--theme-white);
}
.contact__form .btn-submit {
  border-color: var(--theme-green);
  background: var(--theme-green);
}
.contact__form .btn-submit:hover,
.contact__form .btn-submit:focus {
  border-color: var(--theme-gray);
  background: var(--theme-gray);
}

/* Achievement Section */
.achievement__content p:not(:last-child) {
  margin-bottom: 20px;
}
.services__icon img {
  max-width: 100px;
  max-height: 100px;
}

/* Careers Page - Modal Application Form */
.datepicker td, .datepicker th {
  font-size: 14px;
}
.datepicker table tr td.active.active, .datepicker table tr td.active {
  background-image: linear-gradient(to bottom,var(--theme-green) 0%, var(--theme-darkgreen) 100%);
  background-color: var(--theme-green);
}
.application-form .contact__form {
  width: 100%;
}
.application-form .modal-body .form-group label span.required {
  color: #dc3545;
}
.application-form .contact__form input, .application-form .contact__form textarea {
  margin-bottom: 0;
}
.application-form .contact-block {
  background-color: var(--theme-white);
}
.application-form .contact-block form > div {
  margin-bottom: 0px;
}
.application-form .form-group {
  margin-bottom: 16px;
}
.application-form .modal-header {
  border-bottom: inherit;
}
.application-form .modal-header .modal-title {
  color: var(--theme-gray);
  font-size: 28px;
}
.application-form .modal-dialog .modal-subtitle {
  background-color: var(--theme-green);
  color: #fff;
  font-size: 20px;
  font-weight: 400;
}
.application-form .form-group label {
  line-height: 20px;
  width: 100%;
}
.application-form .tp-contact-breadcrumb-content {
  padding-right: 0;
}
.application-form .tp-contact-breadcrumb-content input, 
.application-form .tp-contact-breadcrumb-content textarea {
  padding: 0 16px;
  height: 58px;
  width: 100%;
}
.application-form .tp-contact-breadcrumb-content input.input-file {
  cursor: pointer;
  height: 42px;
  padding: 20px;
  opacity: 0;
}
.application-form .tp-contact-breadcrumb-content select {
  border: 1px solid #E3E3E3;
  border-radius: 5px;
  background: url('../img/form/select-arrow-green.svg') center right 16px no-repeat #fff;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  font-size: 16px;
  padding: 0 40px 0 16px;
  margin: 0;
  height: 58px;
  width: 100%;
}
.application-form select option[value=""][disabled] {
  display: block;
}
.application-form .modal-body .form-group .form-check {
  display: inline-block;
  padding-left: 0;
  margin-top: 10px;
  margin-right: 25px;
}
.application-form .modal-body .form-group .form-check:last-child {
  margin-right: 0
}
.application-form .modal-body .form-group .form-check input {
  width: auto
}
.application-form .modal-body .form-group .form-check .form-check-label {
  color: #222;
  line-height: 20px;
  padding-left: 30px;
}
.application-form .input-file-container {
  position: relative;
  width: 180px;
}
.application-form .input-file-trigger {
  display: block;
  background: #09A67E;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  transition: all .4s;
  text-align: center;
  padding: 10px 40px
}
.application-form .input-file {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  opacity: 0;
  padding: 6px 0
}
.application-form .input-file-trigger:focus,
.application-form .input-file-trigger:hover,
.application-form .input-file:focus+.input-file-trigger,
.application-form .input-file:hover+.input-file-trigger {
  background: #209371;
  color: #fff
}
.application-form .file-return:not(:empty) {
  margin: 12px 0 16px
}
.application-form .file-return {
  font-style: italic;
  font-size: 13px;
  font-weight: 700;
  margin: 0;
  word-break: break-word
}
.application-form .file-return:not(:empty):before {
  content: "Selected file: ";
  font-style: normal;
  font-weight: 400
}
.customRadio input[type=radio] {
  position: absolute;
  left: -9999px
}
.customRadio input[type=radio]+label {
  position: relative;
  cursor: pointer
}
.customRadio input[type=radio]+label:before {
  content: '';
  background: #fff;
  border: 2px solid var(--theme-green);
  height: 20px;
  width: 20px;
  position: absolute;
  top: 0;
  left: 0
}
.customRadio input[type=radio]+label:after {
  content: '';
  background: var(--theme-green);
  width: 12px;
  height: 12px;
  position: absolute;
  top: 4px;
  left: 4px;
  opacity: 0;
  transform: scale(2);
  transition: transform .3s linear, opacity .3s linear
}
.customRadio input[type=radio]:checked+label:after {
  opacity: 1;
  transform: scale(1)
}
.application-form form label#myFile-error.error {
  white-space: nowrap;
  line-height: 20px;
  width: 100%;
}
.application-form .btn-submit {
  display: block;
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: auto;
  max-width: 200px;
  width: 100%;
}

/* Affiliate Program Page */
.affiliate-contact-area .tp-contact-bg {
  background-position: right center;
}
.tp-contact-bg {
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  height: 80%;
  width: 100%;
  z-index: -1;
}
.tp-contact-overlay::before {
  position: absolute;
  content: "";
  background: #F4F5FA;
  height: 80%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -2;
}
.tp-about-wrapper .telephone-number, .about__content .price {
  color: var(--theme-green);
  font-size: 17px;
  font-weight: 600;
}
.tp-about-wrapper .telephone-number:hover,
.tp-about-wrapper .telephone-number:focus {
  color: var(--theme-gray);
}
.affiliates-program-list li {
  flex: 0 0 calc(33.33% - 25px);
}
.affiliates-program-list li:last-child {
  margin-bottom: 0;
}
.affiliate-contact-area .tp-contact-form .icon-left span {
  position: absolute;
  top: 16px;
  left: 12px;
  font-size: 22px;
  background: var(--theme-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.affiliate-contact-area .tp-contact-form .icon-left input {
  border: none;
  border-bottom: 1px solid #E3E3E3;
  border-radius: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 56px;
  padding-right: 55px;
  height: 56px;
  padding-left: 50px;
  padding-right: 16px;
}
.affiliate-contact-area .tp-contact-form input:focus {
  border-bottom: 1px solid var(--theme-green);
  box-shadow: none;
}
.affiliate-contact-area .tp-contact-wrapper {
  background: var(--theme-white);
  box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.07);
  border-radius: 5px;
  padding: 66px 60px 40px;
}
.affiliate-contact-area .tp-contact-form .form-input {
  position: relative;
  margin-bottom: 30px;
}

.why-choose-section {
  margin-top: -225px;
  padding-top: 230px;
}


/*----------------------------------------*/
/*    Media Screen CSS START
/*----------------------------------------*/
@media screen and (min-width: 1200px) {
  .affiliate-contact-area .tp-about-wrapper {
    padding-right: 25px;
  }
}
@media screen and (max-width: 1199px) {
  .affiliate-contact-area {
    padding-bottom: 200px;
  }
  .affiliate-contact-area .tp-contact-wrapper {
    padding: 40px 40px 20px;
  }
  .why-choose-section {
    margin-top: -240px;
    padding-top: 110px;
  }
}
@media screen and (min-width: 992px) {
  .affiliate-contact-area .section__title-3 h2 {
    font-size: 48px;
  }
  .affiliate-contact-area .tp-section-title-h3 {
    font-size: 36px;
  }
  .affiliate-contact-area .tp-contact-wrapper {
    margin-left: 30px;
  }
  .section__title .lead-title {
    max-width: 300px;
  }
}

@media screen and (max-width: 991px) {
  .page__title-content h1 {
    font-size: 60px;
  }
  .cta__content h2 {
    font-size: 55px;
  }
  .about__list.mb-xs-0 {
    margin-bottom: 0;
  }

  .affiliate-contact-area {
    padding-bottom: 100px;
  }
  .affiliate-contact-area .tp-contact-form .form-input {
    margin-bottom: 20px;
    max-width: 100%;
  }
  .affiliate-contact-area .tp-contact-form .form-input.form-btn {
    margin-top: 20px;
  }
  .tp-contact-overlay::before {
    height: 100%;
  }
  .affiliate-contact-area .tp-contact-bg {
    background-position: right bottom;
    height: 100%;
  }
  .why-choose-section {
    margin-top: 0;
    padding-top: 100px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .nw-features-area .features__item {
    min-height: 240px;
  }
  .nw-features-area .features__content h3 {
    font-size: 22px;
  }
}

@media screen and (max-width: 767px) {
  .page__title-content h1 {
    font-size: 50px;
  }
  .cta__content h2 {
    font-size: 50px;
  }
  .nw-features-area .features__inner .border-top-md {
    border-top: 1px solid rgba(var(--theme-gray-rgb), 0.9);
  }
  .nw-features-area .features__content h3 {
    font-size: 20px;
  }
  .nw-features-area .features__item {
    min-height: 220px;
  }
  .mobile-py-90 {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

@media screen and (max-width: 575px) {
  .page__title-content h1 {
    font-size: 46px;
  }
  .section__title h2, .cta__content h2 {
    font-size: 42px;
  }
  .nw-features-area .features__item {
    min-height: 200px;
  }
  .nw-features-area .features__inner .border-top-sm {
    border-top: 1px solid rgba(var(--theme-gray-rgb), 0.9);
  }
  .application-form .modal-header .modal-title {
    font-size: 24px;
  }
  .affiliate-contact-area .tp-contact-wrapper {
    padding: 30px 20px 20px;
  }
}