/* Chirota - DIgital Agency HTML Template  */
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.	Import Css
2.	Setting Globalfv
3.	Loading
4.	Header
5.	Slide
6.	About Section
7.	Services Section
8.	Partner Section
9.	Counter Section
10.	Video Section
11.	Charity Causes Section
12.	Gallery Section
13.	Testimonials Section
14.	Team Section.section-contact .contact-main .map-contact .info-contact span {
15.	We DO Section
16.	Gallery Section
17.	Facts Section
18.	Event Section
19.	Page Title
20.	Project Details
21.	Blog Details
22.	Contact
23.	Event Details
24.	Footer

--------------------------------------------------------------*/
/***

====================================================================
1.	Import Css
====================================================================

 ***/
@import url(bootstrap.css);
@import url(jquery.fancybox.css);
@import url(owl.carousel.css);
/***
  
  ====================================================================
  2.	Setting Global
  ====================================================================
  
   ***/
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");

* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    font-size: 100%;
    line-height: inherit;
}




section#team_banner {
      height: auto;
    min-height: 20rem;
    padding-top: 5rem;
    background-image: linear-gradient(rgb(0 0 0 / 70%), rgba(0 0 0 / 70%)), url('images/about/Team.jpg')  !important;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

body {
    font-size: 16px;
    /*font-family: "Playfair Display", serif;*/
    font-family: 'Open Sans', sans-serif;
    line-height: 16px;
    font-weight: 400;
    color: #121212;
    overflow: hidden;
    position: relative;
}
h2.a_text {
    font-size: 60px;
    color: #fff;
   text-align: center;
}
h1 {
    font-size: 4.5em;
    line-height: 1.2;
    font-weight: bold;
}

/* 72px */
h2 {
    font-size: 3.75em;
    line-height: 1.2;
    font-weight: bold;
}

/* 60px */
h3 {
    font-size: 3em;
    line-height: 1.2;
    font-weight: bold;
}

/* 48px */
h4 {
    font-size: 1.5em;
    line-height: 1.2;
    font-weight: 400;
}

/* 24px */
h5 {
    font-size: 1.125em;
    line-height: 1.2;
    font-weight: 400;
}

/* 18px */
h6 {
    font-size: 1em;
    line-height: 1.5;
    font-weight: 500;
}

/* 16px */
p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    font-weight: 400;
    line-height: 1.75;
    color: #777777;
}

a {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

img {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

a:hover {
    color: #ffb701;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.transiton {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    z-index: 9;
}

/***
  
  ====================================================================
  3.	Loading
  ====================================================================
  
   ***/
.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: white;
    background-color: #1c1e22;
}

.preloader__gradient {
    background: #432ff6;
    background: linear-gradient(100deg, #432ff6 0%, #f174e3 100%);
}

.preloader .icon {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 5;
    background-color: rgba(0, 0, 0, 0);
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../icon/icon.png);
    transition: all 200ms ease;
    -webkit-animation-name: rotateMe;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotateMe;
    -moz-animation-duration: 2s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: rotateMe;
    -ms-animation-duration: 2s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    animation-name: rotateMe;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.page-loaded .preloader .icon {
    opacity: 0;
}

@keyframes rotateMe {
    from {
        transform: rotate(0deg) scale(1);
    }

    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotateMe {
    from {
        transform: rotate(0deg) scale(1);
    }

    to {
        transform: rotate(360deg);
    }
}

@-moz-keyframes rotateMe {
    from {
        transform: rotate(0deg) scale(1);
    }

    to {
        transform: rotate(360deg);
    }
}

@-o-keyframes rotateMe {
    from {
        transform: rotate(0deg) scale(1);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateMe {
    from {
        transform: rotate(0deg) scale(1);
    }

    to {
        transform: rotate(360deg);
    }
}

/***
  
  ====================================================================
  4.	Header
  ====================================================================
  
   ***/
.main-header {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 85px;
    z-index: 9999;
    background: none;
    background: url("../images/background/bg-header.png") no-repeat;
    background-position: center right;
    /*=== Header Main Box ===*/
}

.main-header .header-upper {
    position: relative;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    background: none;
    z-index: 1;
    transition: all 300ms ease;
}

.main-header .other-links {
    display: flex;
}

.main-header .other-links .phone-number {
    padding: 40px 0;
    margin-right: 160px;
}

.main-header .other-links .phone-number a {
    font-size: 1.125em;
    font-weight: bold;
    color: #121212;
}

.main-header .other-links .phone-number a:hover {
    color: #ffb701;
}

.main-header .other-links .phone-number a i {
    color: #ffb701;
    padding-right: 6px;
}

.main-header .other-links .btn-header a.btn-main {
    background: #43bc75;
    padding: 46px 33px 38px 28px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

.main-header .other-links .btn-header a.btn-main i {
    margin-right: 7px;
}

.main-header .other-links .link-box .list-social {
    padding: 41px 32px 38px 60px;
}

.main-header .other-links .link-box .list-social li {
    display: inline-block;
    margin-right: 12px;
}

.main-header .other-links .link-box .list-social li a {
    color: #777777;
}

.main-header .other-links .link-box .list-social li a:hover {
    color: #ffb701;
}

/***
    
    ====================================================================
      Main Header style
    ====================================================================
    
    ***/
.main-header {
    box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
    position: relative;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 85px;
    z-index: 9999;
    background: none;
    background: url("../images/background/bg-header.png") no-repeat;
    background-position: center right;
}

.boxed-wrapper .main-header .header-upper {
    max-width: 1410px;
    left: 50%;
    transform: translateX(-50%);
}

.fixed-header .header-upper {
    background: #121212;
    -ms-box-shadow: 0 10px 30px 0px rgba(0, 0, 0, 0.08);
    -o-box-shadow: 0 10px 30px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px 0px rgba(0, 0, 0, 0.08);
}

.header-style-two.fixed-header .header-upper {
    -ms-box-shadow: 0 10px 30px 0px rgba(0, 0, 0, 0.08);
    -o-box-shadow: 0 10px 30px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px 0px rgba(0, 0, 0, 0.08);
}

.main-header .header-upper .inner-container {
    position: relative;
    display: block;
    padding-left: 250px;
}

.main-header .header-upper .logo-box {
    position: relative;
    float: left;
    padding: 10px 0px;
    margin-right: 50px;
    z-index: 7;
}

.main-header .header-upper .logo-box .logo {
    position: relative;
    display: block;
}

.main-header .header-upper .logo-box .logo img {
    position: relative;
    display: inline-block;
    max-width: 100%;
    max-height: 60px;
    z-index: 1;
}

.main-header .other-links {
    position: relative;
    float: right;
    z-index: 7;
}

.main-header .other-links .link-box {
    position: relative;
    float: left;
}

.main-header .other-links .link-box .link {
    position: relative;
    display: block;
    padding-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-left: 60px;
    color: #ffffff;
}

.header-style-two.fixed-header .other-links .link-box .link {
    color: #ffffff;
}

.main-header .other-links .link-box .link .icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 44px;
    height: 42px;
    background: url(../images/icons/chat-icon.png) left center no-repeat;
}

.main-header .other-links .link-box .sub-text {
    position: relative;
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
}

.main-header .other-links .link-box .number {
    position: relative;
    display: block;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
}

.main-header .other-links .link-box .number:hover {
    text-decoration: underline;
}

.main-header .other-links .call-us {
    position: relative;
}

.main-header .other-links .search-btn {
    position: relative;
    float: left;
    padding: 40px 0px;
    padding-right: 50px;
    margin-right: 50px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.main-header .other-links .search-btn button {
    position: relative;
    display: block;
    padding: 0;
    margin: 0;
    background: none;
    line-height: 32px;
    color: #ffffff;
    cursor: pointer;
}

.main-header .other-links .search-btn button span {
    vertical-align: middle;
}

.main-header .nav-outer {
    position: absolute;
    right: 12.9%;
    top: 0;
    float: left;
    text-align: center;
    width: 100%;
    z-index: 5;
}

.main-header .nav-outer .main-menu {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

@media (min-width: 992px) {
    .boxed-wrapper .main-header .nav-outer .main-menu {
        margin-right: 70px;
    }
}

.main-menu .navbar-collapse {
    padding: 0px;
    display: block !important;
}

.main-menu .navigation {
    position: relative;
    display: block;
    width: 100%;
    margin: 0px;
}

.main-menu .navigation>li {
    position: relative;
    float: left;
    padding: 23px 0px;
    margin-right: 15px;
    transition: all 300ms ease;
}

.main-menu .navigation>li:last-child {
    margin-right: 0px;
}

.main-menu .navigation>li:last-child:after {
    display: none;
}

.main-menu .navigation>li>a {
    position: relative;
    display: block;
    text-align: center;
    font-size: 13px;
    line-height: 30px;
    padding: 2px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #121212;
    opacity: 1;
    transition: all 300ms ease;
}

.main-menu .navigation li>a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}

.main-menu .navigation li>a>span {
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 40px;
    top: -3px;
    position: relative;
}

.main-menu .navigation>li:hover>a,
.main-menu .navigation>li.current>a {
    color: #ffb701;
}

.main-menu .navigation>li>a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 7px;
    width: 100%;
    border-bottom: 2px solid #ffb701;
    transform: scaleX(0);
    transition: all 500ms ease;
}

.main-menu .navigation>li:hover>a:before,
.main-menu .navigation>li.current>a:before {
    transform: scale(1);
}

.main-menu .navigation>li.current>a,
.main-menu .navigation>li>a:hover {
    color: #ffb701;
}

.sticky-header .main-menu .navigation>li.dropdown {
    padding-right: 0px;
}

.main-menu .navigation>li>ul {
    position: absolute;
    left: 0px;
    top: 100%;
    width: 220px;
    z-index: 100;
    display: none;
    background: #ffffff;
    padding: 20px 0px 15px;
    border-radius: 5px;
    transform: translateY(20px);
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}

.main-menu .navigation>li>ul.from-right {
    left: auto;
    right: 0px;
}

.main-menu .navigation>li>ul>li {
    position: relative;
    padding: 0px 25px;
    width: 100%;
    margin-bottom: 5px;
}

.main-menu .navigation>li>ul>li.current a {
    color: #ffb701;
}

.main-menu .navigation>li>ul>li>a {
    position: relative;
    display: block;
    padding: 5px 0px;
    line-height: 24px;
    font-weight: bold;
    font-size: 14px;
    color: #121212;
    letter-spacing: 0.03em;
    text-align: left;
    text-transform: uppercase;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.main-menu .navigation>li>ul>li>a:hover {
    color: #ffb701;
}

.main-menu .navigation>li>ul>li>ul {
    position: absolute;
    left: 100%;
    top: 0;
    width: 220px;
    z-index: 100;
    display: none;
    background: #ffffff;
    padding: 20px 0px 15px;
    border-radius: 5px;
    transform: translateY(20px);
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}

.main-menu .navigation>li>ul>li>ul>li {
    position: relative;
    padding: 0px 25px;
    width: 100%;
    margin-bottom: 5px;
}

.main-menu .navigation>li>ul>li>ul>li>a {
    position: relative;
    display: block;
    padding: 5px 0px;
    line-height: 24px;
    font-weight: 400;
    font-size: 20px;
    color: #171b27;
    letter-spacing: 0.03em;
    text-align: left;
    text-transform: capitalize;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.main-menu .navigation>li>ul>li.dropdown>a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    position: absolute;
    right: 0px;
    top: 7px;
    display: block;
    line-height: 24px;
    font-size: 16px;
    font-weight: 900;
    z-index: 5;
}

.main-menu .navigation>li.dropdown:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.main-menu .navigation li>ul>li.dropdown:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.main-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: -30px;
    top: 2px;
    width: 34px;
    height: 30px;
    text-align: center;
    font-size: 16px;
    line-height: 26px;
    color: #777777;
    cursor: pointer;
    z-index: 5;
}

.main-header.header-style-2 .main-menu .navigation li.dropdown .dropdown-btn {
    color: white;
}

/***
    
    ====================================================================
      Sticky Header
    ====================================================================
    
    ***/
.sticky-header {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    left: 0px;
    top: 0px;
    width: 100%;
    padding: 0px 0px;
    z-index: -1;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    -ms-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: top 300ms ease;
}

.fixed-header .sticky-header {
    opacity: 1;
    z-index: 99901;
    visibility: visible;
}

.fixed-header .sticky-header .logo {
    padding: 10px 0px;
}

.sticky-header .main-menu .navigation>li {
    margin-left: 40px !important;
    padding: 0;
    margin-right: 0;
    background-color: transparent;
}

.sticky-header .main-menu .navigation>li.dropdown>a:after,
.sticky-header .main-menu .navigation>li:before {
    display: none;
}

.sticky-header .main-menu .navigation>li>a {
    padding: 21px 0px !important;
    line-height: 30px;
    font-size: 16px;
    font-weight: 600;
    color: #25283a;
    text-transform: capitalize;
    transition: all 300ms ease;
}

.sticky-header .main-menu .navigation>li>ul>li>ul {
    left: auto;
    right: 100%;
}

.sticky-header .main-menu .navigation>li:hover>a,
.sticky-header .main-menu .navigation>li.current>a,
.sticky-header .main-menu .navigation>li.current-menu-item>a {
    opacity: 1;
}

/***
    
    ====================================================================
            Mobile Menu
    ====================================================================
    
    ***/
.nav-outer .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 30px;
    line-height: 40px;
    cursor: pointer;
    margin-left: 0px;
    color: #43bc75;
    margin: 30px 0px 0px;
    display: none;
}

.mobile-nav-toggler .txt {
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding-left: 10px;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 500;
    display: none;
}

/*--------------------------------------------------------------
        Side Menu
    --------------------------------------------------------------*/
/*--------------------------------------------------------------
    # Sidemenu
    --------------------------------------------------------------*/
.side-menu__block {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    transform: scale(0, 1);
    transform-origin: left center;
    transition: transform 0.7s ease;
}

.side-menu__block.active {
    transform: scale(1, 1);
}

.side-menu__block-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    opacity: 0.7;
}

.side-menu__block-overlay .cursor-follower {
    background-color: rgba(8, 39, 64, 0.3);
}

.side-menu__block-inner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 520px;
    height: 100%;
    overflow-y: auto;
    background-color: #eceeef;
    z-index: 999999;
    padding: 40px 0;
    padding-top: 20px;
}

@media (max-width: 575px) {
    .side-menu__block-inner {
        max-width: 480px;
    }
}

@media (max-width: 480px) {
    .side-menu__block-inner {
        max-width: 400px;
    }
}

@media (max-width: 375px) {
    .side-menu__block-inner {
        max-width: 300px;
    }
}

.side-menu__block-inner .mCustomScrollBox {
    width: 100%;
}

.side-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 100px;
    padding-right: 40px;
}

.mobile-nav__container {
    padding-left: 100px;
    padding-right: 100px;
    padding-top: 50px;
}

.mobile-nav__container ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav__container li.dropdown ul {
    display: none;
    padding: 10px 0px 0px;
    margin-bottom: 20px;
    padding-left: 0.5em;
}

.mobile-nav__container li.dropdown ul li {
    margin-bottom: 10px;
}

.mobile-nav__container li.dropdown {
    position: relative;
    padding-bottom: 15px;
}

.mobile-nav__container li.dropdown>a {
    position: relative;
    display: inline-block;
    padding-right: 25px;
    vertical-align: middle;
}

.mobile-nav__container li>a>span {
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 40px;
    top: -3px;
    position: relative;
    margin-left: 5px;
}

.mobile-nav__container li.dropdown .dropdown-btn {
    position: absolute;
    top: 0;
    right: 0;
    line-height: 22px;
    width: 22px;
    height: 22px;
    display: block;
    text-align: center;
    vertical-align: middle;
    border: none;
    outline: none;
    background-color: transparent;
    color: #121212;
    font-size: 14px;
    transform: rotate(90deg);
    transition: all 500ms ease;
}

.mobile-nav__container li.dropdown .dropdown-btn.open {
    transform: rotate(-90deg);
}

.mobile-nav__container li+li {
    margin-top: 10px;
    padding-bottom: 15px;
}

.mobile-nav__container li a {
    color: #121212;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 24px;
    font-weight: 500;
    display: flex;
    transition: all 500ms ease;
    position: relative;
}

.side-menu__social {
    display: flex;
    align-items: center;
    margin-top: 80px;
    margin-bottom: 40px;
}

.side-menu__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 57px;
    height: 57px;
    background-color: #fff;
    color: #9ca3a9;
    font-size: 16px;
    border-radius: 50%;
    transition: all 500ms ease;
}

.side-menu__social a+a {
    margin-left: 10px;
}

.side-menu__social a:hover {
    background-color: #ffaa16;
}

.side-menu__content {
    padding-left: 100px;
    padding-right: 100px;
}

.side-menu__content p {
    margin: 0;
    color: #9ca3a9;
}

.side-menu__content p+p {
    margin-top: 30px;
}

.side-menu__content p a {
    transition: all 500ms ease;
}

.side-menu__content p a:hover {
    color: #ffaa16;
    text-decoration: underline;
}

.side-menu__sep {
    width: calc(100% - 200px);
    margin-left: auto;
    margin-right: auto;
    height: 1px;
    background-color: #fff;
    margin-top: 70px;
    margin-bottom: 70px;
}

.side-menu__text p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #9ca3a9;
    margin: 0;
    margin-bottom: 25px;
}

.side-menu__text a {
    font-size: 20px;
    color: #ff0143;
    line-height: 30px;
    font-weight: 400;
    transition: all 500ms ease;
}

.side-menu__block__copy {
    text-transform: uppercase;
    font-size: 16px;
    color: #9ca3a9;
    font-weight: 400;
    letter-spacing: 0.2em;
}

@media (max-width: 575px) {

    .side-menu__top,
    .side-menu__content,
    .mobile-nav__container {
        padding-left: 50px;
        padding-right: 50px;
    }

    .side-menu__sep {
        margin-top: 40px;
        margin-bottom: 40px;
        width: calc(100% - 100px);
    }
}

@media (max-width: 480px) {

    .side-menu__top,
    .side-menu__content,
    .mobile-nav__container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .side-menu__sep {
        width: calc(100% - 50px);
    }

    .side-menu__social {
        margin-top: 40px;
    }

    .side-menu__social a {
        width: 45px;
        height: 45px;
    }
}

.main-header.header-style-2 {
    background: none;
    position: fixed;
}

.main-header.header-style-2 .fixed-header .header-upper {
    background: none;
}

.main-header.header-style-2 .main-menu .navigation>li>a {
    color: white;
}

.main-header.header-style-2 .main-menu .navigation>li:hover>a,
.main-header.header-style-2 .main-menu .navigation>li.current>a {
    color: #ffb701;
}

.main-header.header-style-2 .other-links .phone-number a {
    color: #fff;
}

.main-header.header-style-2 .other-links .phone-number a:hover {
    color: #ffb701;
}

.main-header.header-style-2 .header-upper .inner-container {
    padding: 0 192px;
}

.main-header.header-style-2 .other-links .link-box {
    display: none;
}

.main-header.header-style-2 .other-links .btn-header a.btn-main {
    padding: 31px 33px 32px 28px;
    margin-top: 11px;
}

/***
  
  ====================================================================
  5.	Slide
  ====================================================================
  
   ***/
/***
  
  ====================================================================
  10.		Banner Section
  ====================================================================
  
  ***/
.banner-section {
    position: relative;
    z-index: 1;
}

.banner-section .bg-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center top;
    background-size: cover;
    z-index: 1;
}

.banner-section .left-based-text {
    position: absolute;
    left: 50px;
    top: 50px;
    bottom: 50px;
    color: #ffffff;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 24px;
    letter-spacing: 0.1em;
    font-weight: 500;
    z-index: 10;
}

.banner-section .left-based-text .base-inner {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 730px;
    height: 24px;
    transform-origin: left bottom;
    transform: rotate(-90deg);
}

.banner-section .left-based-text .social-links {
    position: absolute;
    left: 0;
    top: 0;
}

.banner-section .left-based-text .social-links ul li {
    float: left;
    margin-right: 35px;
}

.banner-section .left-based-text .social-links ul li a {
    position: relative;
    display: block;
    color: #ffffff;
    transition: all 500ms ease;
}

.banner-section .left-based-text .social-links ul li a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    transform: scaleX(0);
    transition: all 500ms ease;
}

.banner-section .left-based-text .social-links ul li a:hover:before {
    transform: scale(1);
}

.banner-section .left-based-text .hours {
    position: absolute;
    right: 0;
    top: 0;
}

.banner-section .left-based-text .hours ul li {
    float: left;
    margin-left: 35px;
}

.banner-carousel {
    position: relative;
    z-index: 1;
}

.banner-carousel .slide-item {
    position: relative;
    display: block;
    color: #ffffff;
    overflow: hidden;
}

.banner-three .banner-carousel .slide-item {
    background: none;
}

.banner-carousel .slide-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 1;
}

.banner-two .banner-carousel .slide-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}

.banner-two .banner-carousel .slide-item:before {
    opacity: 0.8;
}

.banner-three .banner-carousel .slide-item:before {
    display: none;
}

.banner-carousel .slide-item .left-top-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 350px;
    max-width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
    transform: translateY(-100%);
}

.banner-carousel .active .left-top-line {
    opacity: 1;
    transform: translate(0);
    transition: all 1000ms ease;
    transition-delay: 200ms;
}

.banner-carousel .slide-item .right-bottom-curve {
    position: absolute;
    right: 0;
    top: 0;
    width: 655px;
    max-width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
    transform: translateX(700px);
}

.banner-carousel .active .right-bottom-curve {
    opacity: 1;
    transform: translate(0);
    transition: all 1000ms ease;
    transition-delay: 1300ms;
}

.banner-carousel .slide-item .right-top-curve {
    position: absolute;
    right: 0;
    top: 0;
    width: 164px;
    max-width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
    transform: translateX(200px);
}

.banner-carousel .active .right-top-curve {
    opacity: 1;
    transform: translate(0);
    transition: all 1000ms ease;
    transition-delay: 1800ms;
}

.banner-carousel .slide-item .round-shape-1 {
    position: absolute;
    left: -500px;
    bottom: -500px;
    width: 1000px;
    height: 1000px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: 2;
    opacity: 0;
    transform: translateY(100%);
}

.banner-carousel .active .round-shape-1 {
    opacity: 1;
    transform: translate(0);
    transition: all 1000ms ease;
    transition-delay: 1500ms;
}

.banner-carousel .slide-item .shape-1 {
    position: absolute;
    left: 0;
    top: 0;
    width: 570px;
    max-width: 100%;
    height: 810px;
    z-index: 2;
    opacity: 0;
    transform: translateY(-100%);
}

.banner-carousel .active .shape-1 {
    opacity: 1;
    transform: translate(0);
    transition: all 1000ms ease;
    transition-delay: 200ms;
}

.banner-carousel .slide-item .shape-2 {
    position: absolute;
    left: 0;
    bottom: 55px;
    width: 333px;
    max-width: 100%;
    height: 366px;
    z-index: 2;
    opacity: 0;
    transform: translateX(-500px);
}

.banner-carousel .active .shape-2 {
    opacity: 1;
    transform: translate(0);
    transition: all 1000ms ease;
    transition-delay: 500ms;
}

.banner-carousel .slide-item .shape-3 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 824px;
    max-width: 100%;
    height: 424px;
    z-index: 2;
    opacity: 0;
    transform: translateX(900px);
}

.banner-carousel .active .shape-3 {
    opacity: 1;
    transform: translate(0);
    transition: all 1000ms ease;
    transition-delay: 1800ms;
}

.banner-carousel .slide-item .shape-4 {
    position: absolute;
    right: 0;
    top: 0;
    width: 218px;
    max-width: 100%;
    height: 571px;
    z-index: 2;
    opacity: 0;
    transform: translateX(200px);
}

.banner-carousel .active .shape-4 {
    opacity: 1;
    transform: translate(0);
    transition: all 1000ms ease;
    transition-delay: 2500ms;
}

.banner-carousel .slide-item .shape-5 {
    position: absolute;
    right: 0;
    top: 0;
    width: 306px;
    max-width: 100%;
    height: 904px;
    z-index: 2;
    opacity: 0;
    transform: translateY(-1000px);
}

.banner-carousel .active .shape-5 {
    opacity: 1;
    transform: translate(0);
    transition: all 1500ms ease;
    transition-delay: 2700ms;
}

.banner-carousel .slide-item .shape-6 {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    z-index: 3;
    opacity: 0;
    transform: scale(0);
}

.banner-carousel .active .shape-6 {
    opacity: 1;
    transform: scale(1);
    transition: all 1500ms ease;
    transition-delay: 2700ms;
}

.banner-carousel .slide-item .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    /* -webkit-filter: grayscale(100%);*/
    -ms-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    transform: scale(1);
}

.banner-carousel .active .slide-item .image-layer {
    transform: scale(1.15);
    transition: all 7000ms linear;
}

.banner-carousel .content-box {
    position: relative;
    display: table;
    vertical-align: middle;
    width: 100%;
    height: 784px;
    padding: 0 0px;
    z-index: 11;
}

.banner-carousel .content-box .content {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    padding: 135px 0px 50px;
}

.banner-carousel .content-box .inner {
    position: relative;
    display: block;
    max-width: 800px;
}

.banner-two .banner-carousel .content-box .inner {
    max-width: 1170px;
    margin: 0 auto;
    text-align: left;
}

.banner-two .banner-carousel .content-box .inner h2 span {
    font-weight: bold;
    color: #43bc75;
}

.banner-three .banner-carousel .content-box .inner {
    max-width: 550px;
}

.banner-carousel .content-box .sub-title {
    display: block;
    font-size: 24px;
    line-height: 1.5em;
    color: #ffffff;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(80px);
}

.banner-carousel .active .content-box .sub-title {
    opacity: 1;
    transform: translate(0);
    transition: all 700ms ease;
    transition-delay: 800ms;
}

.banner-carousel .content-box h2 {
    display: block;
    transform: translateY(80px);
}

.banner-three .banner-carousel .content-box h1 {
    font-size: 120px;
    font-weight: 500;
}

.banner-carousel .content-box h2 {
    opacity: 0;
}

.banner-carousel .active .content-box h2 {
    opacity: 1;
    transform: translate(0);
    transition: all 1000ms ease;
    transition-delay: 1300ms;
}

.banner-three .banner-carousel .active .content-box h2 {
    transition-delay: 700ms;
}

.banner-carousel .content-box .text {
    position: relative;
    margin: 5px 0 0;
    opacity: 0;
    transform: translateY(80px);
}

.banner-carousel .active .content-box .text {
    opacity: 1;
    transform: translate(0);
    transition: all 700ms ease;
    transition-delay: 1200ms;
}

.banner-carousel .content-box .link-box {
    position: relative;
    display: block;
    padding-top: 55px;
    opacity: 0;
    transform: translateY(50px);
}

.banner-three .banner-carousel .content-box .link-box {
    padding-top: 45px;
}

.banner-carousel .active .content-box .link-box {
    opacity: 1;
    transform: translate(0);
    transition: all 700ms ease;
    transition-delay: 1800ms;
}

.banner-carousel .slide-item .round-image {
    position: absolute;
    right: -200px;
    top: -100px;
    width: 850px;
    height: 850px;
    border-radius: 50%;
    z-index: 2;
}

.banner-carousel .slide-item .round-image .image {
    position: absolute;
    left: 0;
    top: 0;
    width: 850px;
    height: 850px;
    background-size: cover;
    background-position: left top;
    border-radius: 50%;
    -webkit-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    z-index: 2;
    opacity: 0;
    transform: translateX(100%);
    overflow: hidden;
}

.banner-carousel .slide-item .round-image .image::before {
    content: '';
    position: absolute;
    opacity: 0.5;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
}

.banner-carousel .active .round-image .image {
    opacity: 1;
    transform: translate(0);
    transition: all 1000ms ease;
    transition-delay: 200ms;
}

.banner-carousel .slide-item .round-image:before {
    content: "";
    position: absolute;
    left: -100px;
    bottom: 120px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: 1;
    opacity: 0;
    transform: translateX(100%);
}

.banner-carousel .active .round-image:before {
    opacity: 0.1;
    transform: translate(0);
    transition: all 1000ms ease;
    transition-delay: 700ms;
}

.banner-carousel .slide-item .round-image:after {
    content: "";
    position: absolute;
    left: -100px;
    bottom: -50px;
    width: 330px;
    height: 330px;
    z-index: 3;
    opacity: 0;
    transform: translateY(100%);
}

.banner-carousel .active .round-image:after {
    opacity: 1;
    transform: translate(0);
    transition: all 1000ms ease;
    transition-delay: 1000ms;
}

.banner-carousel .owl-nav {
    position: absolute;
    left: 50%;
    margin-left: -600px;
    top: 50%;
    width: 1200px;
    height: 110px;
    text-align: right;
}

.banner-carousel .owl-nav .owl-next,
.banner-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: #ffffff !important;
    padding: 0;
    margin: 0;
    line-height: 50px;
    text-align: center;
    opacity: 0.2;
    border-radius: 50%;
    transition: all 500ms ease;
}

.banner-carousel .owl-nav .owl-next {
    top: auto;
    bottom: 0;
}

.banner-carousel .owl-nav .owl-next span,
.banner-carousel .owl-nav .owl-prev span {
    vertical-align: middle;
}

.banner-carousel .owl-nav .owl-next:hover,
.banner-carousel .owl-nav .owl-prev:hover {
    opacity: 1;
}

.banner-section .owl-dots {
    position: absolute;
    left: 0;
    bottom: 50px;
    width: 100%;
    text-align: center;
    display: none;
}

.banner-two .owl-nav,
.banner-three .owl-nav {
    display: none;
}

.banner-three .bg-image {
    opacity: 0.03;
}

.banner-two .owl-dots {
    display: block;
}

.banner-section .owl-theme .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0px 3px;
}

.banner-section .owl-theme .owl-dots .owl-dot span {
    position: relative;
    display: block;
    width: 10px;
    height: 10px;
    border: 5px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.banner-section .owl-theme .owl-dots .owl-dot.active span {
    background: none;
    border-width: 2px;
}

/* banner one page  */
.banner-one-page {
    margin-top: 117px;
}

.banner-one-page .banner-carousel .content-box .inner {
    max-width: 100%;
}

.banner-one-page .banner-carousel .content-box {
    height: 600px;
}

@media (min-width: 992px) {
    .banner-one-page .banner-carousel .content-box {
        height: 860px;
    }
}

.banner-one-page .banner-carousel .content-box h1 {
    font-size: 46px;
}

.banner-one-page .banner-carousel .content-box h1 span {
    color: #fff;
    font-weight: 300;
}

@media (min-width: 600px) {
    .banner-one-page .banner-carousel .content-box h1 {
        font-size: 60px;
    }
}

@media (min-width: 768px) {
    .banner-one-page .banner-carousel .content-box h1 {
        font-size: 80px;
    }
}

@media (min-width: 992px) {
    .banner-one-page .banner-carousel .content-box h1 {
        font-size: 100px;
    }
}

@media (min-width: 1200px) {
    .banner-one-page .banner-carousel .content-box h1 {
        font-size: 150px;
    }
}

.banner-one-page .banner-carousel .content-box .link-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-one-page .banner-carousel .content-box .content {
    padding-top: 0;
    padding-bottom: 0;
}

.banner-one-page .banner-carousel .vid-link {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    font-size: 20px;
    color: #ffffff;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    z-index: 3;
    margin-left: 15px;
}

@media (min-width: 376px) {
    .banner-one-page .banner-carousel .vid-link {
        margin-left: 30px;
    }
}

.banner-one-page .banner-carousel .vid-link .icon {
    position: relative;
    display: block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    font-size: 16px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.banner-one-page .banner-carousel .vid-link .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.banner-one-page .banner-carousel .vid-link .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

.banner-one-page .banner-carousel .content-box .link-box {
    padding-top: 30px;
}

.banner-one-page .banner-carousel .owl-nav {
    width: 100%;
    left: 0;
    margin-left: 0;
    display: none;
    justify-content: space-between;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 376px) {
    .banner-one-page .banner-carousel .owl-nav {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (min-width: 768px) {
    .banner-one-page .banner-carousel .owl-nav {
        display: flex;
    }

    .banner-one-page .banner-carousel .owl-nav {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (min-width: 992px) {
    .banner-one-page .banner-carousel .owl-nav {
        padding-left: 60px;
        padding-right: 60px;
    }
}

.banner-one-page .banner-carousel .owl-nav .owl-next,
.banner-one-page .banner-carousel .owl-nav .owl-prev {
    position: relative;
    top: auto;
    right: auto;
}

/* banner four */
.banner-section-four {
    position: relative;
    margin-top: 44px;
}

.banner-section-four .swiper-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(../images/update-1-12-2020/shapes/menu-top-shadow.png);
    background-repeat: no-repeat;
    background-position: top center;
    z-index: 10;
}

.banner-section-four .swiper-slide {
    position: relative;
}

.banner-section-four .swiper-slide .image-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1);
    background-position: center;
    transition: transform 7000ms ease;
}

.banner-section-four .swiper-slide-active .image-layer {
    transform: scale(1.15);
}

.banner-section-four .auto-container {
    padding-top: 350px;
    padding-bottom: 200px;
    position: relative;
    z-index: 22;
}

.banner-section-four h2 {
    margin: 0;
    font-weight: bold;
    color: #fff;
    font-size: 80px;
    line-height: 90px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(110px);
    transition-delay: 1000ms;
    transition: transform 2000ms ease, opacity 2000ms ease;
}

.banner-section-four p {
    margin: 0;
    font-size: 20px;
    line-height: 36px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    opacity: 0.7;
    margin-top: 40px;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(100px);
    transition-delay: 2500ms;
    transition: transform 2000ms ease, opacity 2000ms ease, color 500ms ease, background 500ms ease;
}

.banner-section-four .btn-style-three {
    min-width: 220px;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(100px);
    transition-delay: 2500ms;
    transition: transform 2000ms ease, opacity 2000ms ease, color 500ms ease, background 500ms ease;
}

.banner-section-four .btn-style-three:hover {
    background-color: #fff;
}

.banner-section-four .swiper-slide-active .btn-style-three,
.banner-section-four .swiper-slide-active h2,
.banner-section-four .swiper-slide-active p {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.banner-section-four__nav {
    width: 100%;
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 100;
    transform: translateY(-50%) translateX(-50%);
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    z-index: 21;
}

@media (max-width: 425px) {
    .banner-section-four__nav {
        display: none;
    }
}

.banner-section-four__nav .swiper-button-next,
.banner-section-four__nav .swiper-button-prev {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 100;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #222429;
    background-color: #fff;
    border-radius: 50%;
    opacity: 0.3;
    margin: 0;
    text-align: center;
    transition: all 500ms ease;
}
h3.title_text {

    font-size: 32px;
    line-height: 45px;
    margin-top: 40px;
    margin-bottom: 30px;
}
h3.sub_title_text {
    margin-top: 40px;
    font-size: 32px;
}
ul.exp_track {
    list-style: disc;
    padding: 20px;
    line-height: 30px;
    font-size: 18px;
}
@media (max-width: 991px) {

    .banner-section-four__nav .swiper-button-next,
    .banner-section-four__nav .swiper-button-prev {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    /* New CSS */
    h3.title_text {
        text-align: center;
        font-size: 25px;
        line-height: 36px;
        margin-top: 0px;
        margin-bottom: 20px;
    }
    h3.sub_title_text {
        margin-top: 15px;
        font-size: 25px;
        margin-bottom: -15px;
        text-align: center;
    }
    ul.exp_track {
        list-style: disc;
        padding: 30px;
        line-height: 25px;
        font-size: 14px;
    }
}

.banner-section-four__nav .swiper-button-next:hover,
.banner-section-four__nav .swiper-button-prev:hover {
    opacity: 1;
}

.banner-section-four__nav .swiper-button-next::after,
.banner-section-four__nav .swiper-button-prev::after {
    display: none;
}

.banner-section-four__nav .swiper-button-prev {
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .banner-section-four__nav .swiper-button-prev {
        margin-top: 10px;
    }
}

.flat-slider .btn-slide .btn-main {
    background: #f15e28;
    font-size: 18px;
    color: #fff;
    padding: 32px 46px 30px 45px;
    border-radius: 5px;
}

.flat-slider .btn-slide .btn-main span {
    font-weight: bold;
}

.form-donat .form-group input {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 15px 10px 15px 48px;
    font-size: 32px;
    font-weight: bold;
    font-family: "Open Sans", sans-serif;
    width: 370px;
    color: white;
    margin-top: -9px;
}

.form-donat .form-group input::placeholder {
    color: white;
}

.form-donat .form-group button.btn-main {
 margin-left: 215px;
    margin-top: 10px;
    background: #f15e28;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    padding: 20px 30px 20px 28px;
    border-radius: 5px;
}

.flat-slider.style-2 .form-donat {
    background: #fff;
    width: 370px;
    text-align: center;
    border-radius: 5px;
    padding: 63px 30px 20px 30px;
    position: absolute !important;
    top: -60px;
    right: 0;
}

.flat-slider.style-2 .form-donat .form-group input {
    border: 1px solid rgba(18, 18, 18, 0.1);
    width: 312px;
    padding: 15px 10px 15px 28px;
    color: #121212;
}

.flat-slider.style-2 .form-donat .form-group input::placeholder {
    color: #121212;
}

.flat-slider.style-2 .form-donat .form-group input[type="text"],
.flat-slider.style-2 .form-donat .form-group input[type="email"] {
    font-size: 14px;
    margin-top: 20px;
    color: #121212;
}

.flat-slider.style-2 .form-donat .form-group input[type="text"]::placeholder,
.flat-slider.style-2 .form-donat .form-group input[type="email"]::placeholder {
    color: rgba(119, 119, 119, 0.702);
    font-weight: 400;
}

.flat-slider.style-2 .form-donat .form-group button.btn-main {
    background: #43bc75;
    margin-top: 25px;
    padding: 17px 30px 17px 28px;
    margin-left: 0;
    width: 100%;
}

.flat-slider.style-2 .form-donat .form-group .select-selected {
    padding: 26px 16px 21px 0px;
}

.flat-slider.style-2 .form-donat .form-group .select-selected:after {
    top: 33px;
}

.flat-slider.style-2 .form-donat .heading {
    padding-bottom: 54px;
}

.flat-slider.style-2 .form-donat .heading p {
    font-size: 14px;
    color: #43bc75;
    font-weight: bold;
    margin-bottom: 0;
}

.flat-slider.style-2 .form-donat .heading h4 {
    font-size: 32px;
    font-weight: bold;
    color: #121212;
}

/***
  
  ====================================================================
  6.	About Section
  ====================================================================
  
   ***/
.section-about {
    background: rgba(241, 94, 40, 0.051);
}

.section-about .main-about {
    display: flex;
}

.section-about .main-about .content-left-about {
    width: 50%;
    position: relative;
}

.section-about .main-about .content-left-about .progress-about {
    width: 170px;
    height: 170px;
    border-radius: 5px;
    background: #43bc75;
    text-align: center;
    padding-left: 4px;
    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;
}

.section-about .main-about .content-left-about .progress-about .couter {
    padding-top: 31px;
}

.section-about .main-about .content-left-about .progress-about .couter .chart {
    position: relative;
}

.section-about .main-about .content-left-about .progress-about .couter .chart span.percent {
    /*font-family: "Playfair Display", serif;*/
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    color: white;
    position: absolute;
    top: 37%;
    left: 40%;
}

.section-about .main-about .content-left-about .progress-about .couter .chart span.percent::after {
    content: '%';
    /*font-family: "Playfair Display", serif;*/
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.section-about .main-about .content-left-about .progress-about .couter .themesflat-counter {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}

.section-about .main-about .content-left-about .progress-about .couter .number-wrap {
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.section-about .main-about .content-left-about .progress-about .couter .number-wrap span.number {
    font-size: 18px;
    font-weight: bold;
}

.section-about .main-about .content-left-about .progress-about h5 {
    margin-top: 15px;
    color: white;
    font-weight: bold;
}

.section-about .main-about .content-left-about .group-img {
    padding-top: 48px;
    position: relative;
}

.section-about .main-about .content-left-about .group-img img {
    vertical-align: top;
    margin-right: 26px;
}

.section-about .main-about .content-left-about .group-img img.img-sm {
    padding-top: 214px;
}

.section-about .main-about .content-left-about .group-img img:nth-child(3) {
    margin-right: 0;
}

.section-about .main-about .content-left-about .group-img .img-big {
    position: relative;
    display: inline-block;
}

.section-about .main-about .content-left-about .group-img .img-big img {
    -webkit-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    transition: all 0.3s ease;
}

.section-about .main-about .content-left-about .group-img .img-big img:hover {
    -webkit-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    transition: all 0.3s ease;
}

.section-about .main-about .content-left-about .group-img .img-big .tf-icon {
    position: absolute;
    z-index: 9;
    bottom: -41px;
    right: -4px;
    width: 70px;
    height: 70px;
    border-radius: 5px;
    background: #f15e28;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-about .main-about .content-left-about .group-img .img-big .tf-icon span {
    font-size: 37px;
    color: #fff;
}

.section-about .main-about .content-right-about {
    width: 50%;
}

.section-about .main-about .content-right-about .info-about {
    padding-left: 15px;
    padding-top: 44px;
}

.section-about .main-about .content-right-about .info-about h6.sub-title {
    font-size: 0.875em;
    letter-spacing: 0.1px;
    color: #f15e28;
}

.section-about .main-about .content-right-about .info-about h3.title {
    font-size: 3.125em;
    margin-top: 17px;
    padding-right: 30px;
}

.section-about .main-about .content-right-about .info-about h3.title span.featured-text {
    color: #43bc75;
}

.section-about .main-about .content-right-about .info-about p.text {
    font-weight: 300;
    color: #777777;
    margin-top: 34px;
    letter-spacing: -0.24px;
}

.section-about .main-about .content-right-about .info-about .team {
    display: flex;
    padding-top: 43px;
}

.section-about .main-about .content-right-about .info-about .team .list-img-team img {
    margin-left: -36px;
}

.section-about .main-about .content-right-about .info-about .team .list-img-team img:nth-child(1) {
    margin-left: 0;
}

.section-about .main-about .content-right-about .info-about .team .list-img-team .number-team {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    padding-top: 14px;
    margin-left: -37px;
    background: #ffb701;
}

.section-about .main-about .content-right-about .info-about .team .info {
    margin-left: 18px;
    padding-top: 5px;
}

.section-about .main-about .content-right-about .info-about .team .info h5 {
    font-weight: bold;
}

.section-about .main-about .content-right-about .info-about .team .info p {
    text-transform: uppercase;
    font-size: 14px;
    color: #777777;
    margin-top: 3px;
}

.section-about.style-2 {
    padding-bottom: 135px !important;
}

.section-about.style-2 .main-about .content-left-about .progress-about {
    background: #f15e28;
}

.section-about.style-2 .main-about .content-left-about .group-img .img-big .tf-icon {
    background: #43bc75;
}

.section-about.s1 .main-about {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(18, 18, 18, 0.102);
}

.section-about.s1 .main-bottom {
    display: flex;
}

.section-about.s1 .main-bottom .team {
    display: flex;
    padding-top: 30px;
}

.section-about.s1 .main-bottom .team .list-img-team img {
    margin-left: -36px;
}

.section-about.s1 .main-bottom .team .list-img-team img:nth-child(1) {
    margin-left: 0;
}

.section-about.s1 .main-bottom .team .list-img-team .number-team {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    padding-top: 14px;
    margin-left: -37px;
    background: #ffb701;
}

.section-about.s1 .main-bottom .team .info {
    margin-left: 18px;
    padding-top: 5px;
}

.section-about.s1 .main-bottom .team .info h5 {
    font-weight: bold;
}

.section-about.s1 .main-bottom .team .info p {
    text-transform: uppercase;
    font-size: 14px;
    color: #777777;
    margin-top: 3px;
}

.section-about.s1 .main-bottom .list-social {
    padding-top: 47px;
    padding-left: 120px;
}

.section-about.s1 .main-bottom .list-social li {
    display: inline-block;
    margin-right: 12px;
}

.section-about.s1 .main-bottom .list-social li a {
    color: #777777;
}

.section-about.s1 .main-bottom .list-social li a:hover {
    color: #43bc75;
}

/***
  
  ====================================================================
  7.	Services Section
  ====================================================================
  
   ***/
.section-services {
    background: rgba(241, 94, 40, 0.051);
}

.section-services .intro {
    text-align: center;
}

.section-services .intro span.icon-love-icon-1 {
    font-size: 60px;
    margin-top: -12px;
}

.section-services .intro h3.title {
    margin-top: -14px;
}

.section-services .main-services {
    padding-top: 62px;
}

.section-services .main-services .list-services-box {
    display: flex;
}

.section-services .main-services .list-services-box .box-item {
    margin-right: 30px;
}

.section-services .main-services .list-services-box .box-item:nth-child(4) {
    margin-right: 0;
}

.section-services .main-services .list-services-box .box-item .content-box {
    background: white;
    padding: 26px 10px 23px 20px;
    position: relative;
    z-index: 2;
}

.section-services .main-services .list-services-box .box-item .content-box::after {
    content: '';
    width: 100%;
    height: 0;
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    background: #43bc75;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.section-services .main-services .list-services-box .box-item .content-box .icon-box {
    float: left;
    margin-top: -8px;
    padding-right: 20px;
    position: relative;
    z-index: 2;
}

.section-services .main-services .list-services-box .box-item .content-box .icon-box span {
    font-size: 33px;
}

.section-services .main-services .list-services-box .box-item .content-box h5.title-box {
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.section-services .main-services .list-services-box .box-item .content-box h5.title-box a {
    color: #121212;
}

.section-services .main-services .list-services-box .box-item .content-box h5.title-box a:hover {
    color: white;
}

.section-services .main-services .list-services-box .box-item:nth-child(1) .content-box .icon-box span {
    color: #43bc75;
}

.section-services .main-services .list-services-box .box-item:nth-child(2) .content-box .icon-box span {
    color: #f15e28;
}

.section-services .main-services .list-services-box .box-item:nth-child(3) .content-box .icon-box span {
    color: #ffb701;
}

.section-services .main-services .list-services-box .box-item:nth-child(4) .content-box .icon-box span {
    color: #642f4d;
}

.section-services .main-services .list-services-box .box-item:hover .content-box:after {
    height: 100%;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.section-services .main-services .list-services-box .box-item:hover .content-box .icon-box span {
    color: white;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.section-services .main-services .list-services-box .box-item:hover .content-box h5.title-box {
    color: white;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.section-services .main-services .btn-services {
    text-align: center;
    margin-top: 69px;
}

.section-services .main-services .btn-services .btn-main {
    background: #121212;
    color: white;
    padding: 30px 40px 27px 46px;
    font-size: 18px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.section-services .main-services .btn-services .btn-main span {
    font-weight: bold;
}

.section-services .main-services .btn-services .btn-main span.semicircle {
    display: block;
    position: absolute;
    top: 12px;
    left: 12px;
    width: 18px;
    height: 18px;
    overflow: hidden;
}

.section-services .main-services .btn-services .btn-main span.semicircle:after {
    content: '';
    display: block;
    position: absolute;
    width: 35px;
    height: 35px;
    border: 2px solid #fff;
    border-radius: 100%;
}

.section-services.style-1 {
    padding-top: 140px !important;
}

.section-services.style-2 {
    background: #f2f2f2;
}

.section-services.style-2 .main-services .list-services-box .box-item {
    text-align: center;
}

.section-services.style-2 .main-services .list-services-box .box-item .icon-box {
    width: 130px;
    height: 130px;
    border-radius: 5px;
    position: relative;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-services.style-2 .main-services .list-services-box .box-item .icon-box .number-box {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -20px;
}

.section-services.style-2 .main-services .list-services-box .box-item .icon-box .number-box h5 {
    /*font-family: "Playfair Display", serif;*/
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
}

.section-services.style-2 .main-services .list-services-box .box-item .icon-box span {
    font-size: 50px;
    color: #fff;
}

.section-services.style-2 .main-services .list-services-box .box-item h5.title {
    font-weight: bold;
    margin-top: 28px;
}

.section-services.style-2 .main-services .list-services-box .box-item h5.title a {
    color: #121212;
}

.section-services.style-2 .main-services .list-services-box .box-item h5.title a:hover {
    color: #43bc75;
}

.section-services.style-2 .main-services .list-services-box .box-item p.text {
    font-size: 14px;
    padding: 0 15px;
    margin-top: 20px;
}

.section-services.style-2 .main-services .list-services-box .box-item .btn-box {
    margin-top: 43px;
}

.section-services.style-2 .main-services .list-services-box .box-item .btn-box .btn-main {
    background: white;
    color: #777777;
}

.section-services.style-2 .main-services .list-services-box .box-item .btn-box .btn-main.active {
    background: #43bc75;
}

.section-services.style-2 .main-services .list-services-box .box-item:nth-child(1) .icon-box {
    background: #43bc75;
}

.section-services.style-2 .main-services .list-services-box .box-item:nth-child(1) .icon-box .number-box h5 {
    color: #43bc75;
}

.section-services.style-2 .main-services .list-services-box .box-item:nth-child(1) .icon-box span {
    color: #fff;
}

.section-services.style-2 .main-services .list-services-box .box-item:nth-child(2) .icon-box {
    background: #f15e28;
}

.section-services.style-2 .main-services .list-services-box .box-item:nth-child(2) .icon-box .number-box h5 {
    color: #f15e28;
}

.section-services.style-2 .main-services .list-services-box .box-item:nth-child(3) .icon-box {
    background: #ffb701;
}

.section-services.style-2 .main-services .list-services-box .box-item:nth-child(3) .icon-box .number-box h5 {
    color: #ffb701;
}

.section-services.style-2 .main-services .list-services-box .box-item:nth-child(4) .icon-box {
    background: #5d2645;
}

.section-services.style-2 .main-services .list-services-box .box-item:nth-child(4) .icon-box .number-box h5 {
    color: #5d2645;
}

.section-services.style-2 .main-services .list-services-box.s2 .box-item:nth-child(1) .icon-box {
    background: #57a7dc;
}

.section-services.style-2 .main-services .list-services-box.s2 .box-item:nth-child(1) .icon-box .number-box h5 {
    color: #57a7dc;
}

.section-services.style-2 .main-services .list-services-box.s2 .box-item:nth-child(1) .icon-box span {
    color: #fff;
}

.section-services.style-2 .main-services .list-services-box.s2 .box-item:nth-child(2) .icon-box {
    background: #7bc5a2;
}

.section-services.style-2 .main-services .list-services-box.s2 .box-item:nth-child(2) .icon-box .number-box h5 {
    color: #7bc5a2;
}

.section-services.style-2 .main-services .list-services-box.s2 .box-item:nth-child(3) .icon-box {
    background: #c65bb6;
}

.section-services.style-2 .main-services .list-services-box.s2 .box-item:nth-child(3) .icon-box .number-box h5 {
    color: #c65bb6;
}

.section-services.style-2 .main-services .list-services-box.s2 .box-item:nth-child(4) .icon-box {
    background: #6f5bc6;
}

.section-services.style-2 .main-services .list-services-box.s2 .box-item:nth-child(4) .icon-box .number-box h5 {
    color: #6f5bc6;
}

.section-services.style-2.s1 {
    padding-top: 101px;
}

/***
  
  ====================================================================
  8.	Partner Section
  ====================================================================
  
   ***/
.section-partner {
    background: rgba(241, 94, 40, 0.051);
}

.section-partner .partners img {
    width: auto;
}

.section-partner.style-1 {
    padding-bottom: 148px;
}

.section-partner.style-2 {
    background: none;
    padding-bottom: 117px !important;
}

/***
  
  ====================================================================
  9.	Counter Section
  ====================================================================
  
   ***/
.section-counter {
    background: url("../images/background/black-bg.jpg") no-repeat;
    background-size: cover;
    padding-bottom: 340px !important;
    position: relative;
    z-index: 2;
}

.section-counter .list-counter {
    display: flex;
}

.section-counter .list-counter .themesflat-content-box {
    width: 33.33%;
    text-align: center;
}

.section-counter .list-counter .themesflat-content-box .themesflat-counter .counter-item .text-wrap {
    margin-right: 17px;
}

.section-counter .list-counter .themesflat-content-box .themesflat-counter .counter-item .text-wrap .number-wrap {
    margin-bottom: 23px;
    height: 129px;
}

.section-counter .list-counter .themesflat-content-box .themesflat-counter .counter-item .text-wrap .number-wrap span {
    color: white;
    font-size: 48px;
    line-height: 1;
    margin-top: -7px;
}

.section-counter .list-counter .themesflat-content-box .themesflat-counter.v1 {
    margin-left: -5px;
}

.section-counter .list-counter .themesflat-content-box .themesflat-counter.v1 h6.heading {
    color: #ffffff;
}

.section-counter .list-counter .themesflat-content-box .themesflat-counter.v2 {
    padding-left: 11px;
}

.section-counter .list-counter .themesflat-content-box .themesflat-counter.v2 h6.heading {
    color: #ffffff;
}

.section-counter .list-counter .themesflat-content-box .themesflat-counter.v3 {
    padding-left: 25px;
}

.section-counter .list-counter .themesflat-content-box .themesflat-counter.v3 h6.heading {
    color: #ffffff;
}

.section-counter .list-counter .themesflat-content-box .themesflat-counter.v4 {
    padding-left: 40px;
}

.section-counter .list-counter .themesflat-content-box .themesflat-counter.v4 h6.heading {
    color: #57a7dc;
}

.section-counter.style-2 {
    background: none;
    margin-top: -226px;
    padding-bottom: 0 !important;
    z-index: 8;
}

.section-counter.style-2 .list-counter {
    background: #43bc75;
    flex-wrap: wrap;
    width: 770px;
    padding: 63px 0;
}

.section-counter.style-2 .list-counter .themesflat-content-box {
    width: 50%;
}

.section-counter.style-2 .list-counter .themesflat-content-box .text-wrap {
    margin-right: 0;
}

.section-counter.style-2 .list-counter .themesflat-content-box .themesflat-counter h6.heading {
    color: white;
}

/***
  
  ====================================================================
  10.	Video Section
  ====================================================================
  
   ***/
.section-video {
    padding-top: 0 !important;
    margin-top: -276px;
    background: #ffffff;
}

.section-video .main-video {
    display: flex;
}

.section-video .main-video .box-video {
    position: relative;
    z-index: 3;
    width: 65%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 214px 0 224px 0;
    background: url("../images/background/home-video-thumbnail.jpg");

}

.section-video .main-video .box-video .box .flat-video-fancybox a .crirle {
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-left: 40px;
    padding-top: 10px;
}

.section-video .main-video .box-video .box .flat-video-fancybox a .crirle::before {
    content: '';
    width: 174px;
    height: 174px;
    clip: rect(0px, 175px, 175px, 44px);
    border: 2px solid #edc92a;
    border-radius: 50%;
    position: absolute;
    top: 13px;
    left: 13px;
    transform: rotate(30deg);
}

.section-video .main-video .info-video {
    width: 35%;
    padding-top: 413px;
    padding-left: 72px;
}

.section-video .main-video .info-video .text-wrap .number-wrap {
    /*  padding-left: 23px;*/
    position: relative;
}

/*.section-video .main-video .info-video .text-wrap .number-wrap::before {
            content: '';
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #ffb701;
            position: absolute;
            z-index: 2;
            top: -17px;
            left: 10px; }*/
.section-video .main-video .info-video .text-wrap .number-wrap span {
    color: #f15e28;
    font-size: 100px;
    font-weight: bold;
    position: relative;
    z-index: 3;
}

.section-video .main-video .info-video .text-wrap h6.heading {
    color: #262626;
    font-size: 40px;
    margin-top: 20px;
}

.section-video.style-2 {
    margin-top: -19px;
}

.section-video.style-2 .main-video {
    display: block;
}

.section-video.style-2 .main-video .box-video {
    width: 100%;
    padding: 295px 0;
}

.section-video.style-2 .main-video .box-video h2.title {
    position: absolute;
    top: 24%;
    left: 15.3%;
    color: white;
}

.section-video.style-2 .main-video .box-video .box {
    position: absolute;
    top: 33%;
    right: 7.2%;
}

.section-video.style-2 .main-video .info-video {
    width: 100%;
    padding-top: 0;
    position: relative;
}

.section-video.style-2 .main-video .info-video .text-wrap h6.heading {
    position: absolute;
    z-index: 9;
    right: 19px;
    top: 14px;
}

/***
  
  ====================================================================
  11.	Charity Causes Section
  ====================================================================
  
   ***/
.section-charitycauses {
    background: #ffffff;
}

.section-charitycauses .charity-main {
    display: flex;
}

.section-charitycauses .charity-main .charity-control {
    width: 25%;
}

.section-charitycauses .charity-main .charity-control h3.title {
    font-size: 32px;
    line-height: 1.5;
    margin-top: -4px;
}

.section-charitycauses .charity-main .charity-list-main {
    width: 75%;
    padding-left: 8px;
}

.section-charitycauses .charity-main .charity-list-main .box-item {
    border-radius: 5px;
}

.section-charitycauses .charity-main .charity-list-main .box-item:nth-child(3) {
    margin-right: 0;
}

.section-charitycauses .charity-main .charity-list-main .box-item:hover .img-box img {
    -webkit-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    transition: all 0.3s ease;
}

.section-charitycauses .charity-main .charity-list-main .box-item .img-box img {
    -webkit-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    transition: all 0.3s ease;
}

.section-charitycauses .charity-main .charity-list-main .box-item .content-box {
    background: white;
    padding: 13px 20px 27px 20px;
}

.section-charitycauses .charity-main .charity-list-main .box-item .content-box ul.list li {
    display: inline-block;
    margin-right: 2px;
    color: #777777;
}

.section-charitycauses .charity-main .charity-list-main .box-item .content-box ul.list li a {
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    color: #777777;
}

.section-charitycauses .charity-main .charity-list-main .box-item .content-box ul.list li.category a {
    color: #43bc75;
}

.section-charitycauses .charity-main .charity-list-main .box-item .content-box ul.list li.category a i {
    padding-right: 2px;
}

.section-charitycauses .charity-main .charity-list-main .box-item .content-box .title-box {
    margin-top: 14px;
    letter-spacing: 0.1px;
}

.section-charitycauses .charity-main .charity-list-main .box-item .content-box .title-box a {
    color: #121212;
    font-weight: bold;
}

.section-charitycauses .charity-main .charity-list-main .box-item .content-box .title-box a:hover {
    color: #43bc75;
    transition: all 0.3s ease;
}

.section-charitycauses .charity-main .charity-list-main .box-item .content-box .donat-bg {
    position: relative;
    display: block;
    float: left;
    width: 100%;
    height: 8px;
    overflow: hidden;
    background: rgba(18, 18, 18, 0.071);
    border-radius: 4px;
    margin-top: 24px;
}

.section-charitycauses .charity-main .charity-list-main .box-item .content-box .donat-bg .custom-donat {
    height: 100%;
    width: 0px;
    border-radius: 4px;
    background: #43bc75;
}

.section-charitycauses .charity-main .charity-list-main .box-item .content-box .money {
    margin-top: 47px;
}

.section-charitycauses .charity-main .charity-list-main .box-item .content-box .money .price {
    display: inline-block;
}

.section-charitycauses .charity-main .charity-list-main .box-item .content-box .money .price p {
    font-size: 14px;
    color: #777777;
}

.section-charitycauses .charity-main .charity-list-main .box-item .content-box .money .price p span {
    font-weight: bold;
    color: #f15e28;
    padding-right: 4px;
}

.section-charitycauses .charity-main .charity-list-main .box-item .content-box .money .time {
    display: inline-block;
    float: right;
}

.section-charitycauses .charity-main .charity-list-main .box-item .content-box .money .time p {
    font-size: 14px;
    color: #777777;
}

.section-charitycauses .charity-main .charity-list-main .box-item .content-box .btn-box {
    margin-top: 7px;
}

.section-charitycauses .charity-main .charity-list-main .box-item .content-box .btn-box .btn-main {
    margin-top: 20px;
    background: #f15e28 !important;
    color: #ffffff;
    padding: 16px 26px 16px 29px;
    font-size: 14px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.section-charitycauses .charity-main .charity-list-main .box-item .content-box .btn-box .btn-main.active {
    background: #43bc75;
    color: white;
}

.section-charitycauses .charity-main .charity-list-main .box-item .content-box .btn-box .btn-main span {
    font-weight: bold;
}

.section-charitycauses .charity-main .charity-list-main .box-item .content-box .btn-box .btn-main:hover {
    color: white;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.section-charitycauses .charity-main .charity-list-main .owl-nav {
    position: absolute;
    left: -300px;
    top: 249px;
    display: flex;
}

.section-charitycauses .charity-main .charity-list-main .owl-nav .owl-prev,
.section-charitycauses .charity-main .charity-list-main .owl-nav .owl-next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: transparent;
    margin-right: 20px;
    font-size: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 1px solid rgba(18, 18, 18, 0.1);
    transition: 0.5s ease-in-out;
}

.section-charitycauses .charity-main .charity-list-main .owl-nav .owl-prev::before {
    content: "\eac9";
    font-size: 18px;
    font-family: 'IcoFont';
    color: #121212;
}

.section-charitycauses .charity-main .charity-list-main .owl-nav .owl-next::before {
    content: "\eaca";
    font-size: 18px;
    font-family: 'IcoFont';
    color: #121212;
}

.section-charitycauses .charity-main .charity-list-main .owl-nav .owl-prev::after,
.section-charitycauses .charity-main .charity-list-main .owl-nav .owl-next::after {
    content: '';
    width: 100%;
    height: 100%;
    clip: rect(0px, 0px, 0px, 0px);
    border: 1px solid #43bc75;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.5s ease-in-out;
}

.section-charitycauses .charity-main .charity-list-main .owl-nav .owl-prev.disabled,
.section-charitycauses .charity-main .charity-list-main .owl-nav .owl-next.disabled {
    background: rgba(67, 188, 117, 0.102);
    border-color: transparent;
    transition: 0.5s ease-in-out;
}

.section-charitycauses .charity-main .charity-list-main .owl-nav .owl-prev:hover,
.section-charitycauses .charity-main .charity-list-main .owl-nav .owl-next:hover {
    background: rgba(67, 188, 117, 0.102);
    border-color: transparent;
    transition: 0.5s ease-in-out;
}

.section-charitycauses .charity-main .charity-list-main .owl-nav .owl-prev.disabled:after,
.section-charitycauses .charity-main .charity-list-main .owl-nav .owl-next.disabled:after {
    opacity: 1 !important;
    transition: 0.5s ease-in-out;
    transform: rotate(135deg);
    clip: rect(0px, 70px, 50px, 0px);
}

.section-charitycauses .charity-main .charity-list-main .owl-nav .owl-prev:hover::after,
.section-charitycauses .charity-main .charity-list-main .owl-nav .owl-next:hover::after {
    opacity: 1;
    transition: 0.5s ease-in-out;
    transform: rotate(135deg);
    clip: rect(0px, 70px, 50px, 0px);
}

.section-charitycauses .charity-main .charity-list-main .owl-dots {
    display: none;
}

.section-charitycauses.style-2 .intro {
    text-align: center;
}

.section-charitycauses.style-2 .intro h3.title {
    margin-top: -13px;
}

.section-charitycauses.style-2 .charity-main {
    margin-top: 62px;
    display: block;
}

.section-charitycauses.style-2 .charity-main .charity-list-main {
    width: 100%;
    padding-left: 0;
    display: flex;
}

.section-charitycauses.style-2 .charity-main .charity-list-main .box-item {
    margin-right: 30px;
}

.section-charitycauses.style-2 .charity-main .charity-list-main .box-item:nth-last-child(1) {
    margin-right: 0;
}

.section-charitycauses.style-2 .charity-main .charity-list-main .box-item .content-box {
    background: white;
    padding: 16px 20px 27px 20px;
}

/***
  
  ====================================================================
  12.	Gallery Section
  ====================================================================
  
   ***/
section.tf-section.section-testimonials.s2 {
    margin-top: 50px;
}

.section-gallery .intro {
    text-align: center;
}

.section-gallery .intro h3.title {
    margin-top: 50px;
}

.section-gallery .main-gallery {
    padding-top: 40px;
}

.section-gallery .main-gallery .list-gallery-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-gallery .main-gallery .list-gallery-box .box-item {
    margin-right: 15px;
    margin-left: 15px;
    position: relative;
}

.section-gallery .main-gallery .list-gallery-box .box-item .img-box img {
    -webkit-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    transition: all 0.3s ease;
    width: 100%;
}

.section-gallery .main-gallery .list-gallery-box .box-item .content-box {
    background: rgba(18, 18, 18, 0.87);
    padding: 27px 10px 18px 20px;
    /*position: absolute;*/
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 2;
}

.section-gallery .main-gallery .list-gallery-box .box-item .content-box .icon-box {
    float: left;
    margin-top: -8px;
    padding-right: 20px;
    position: relative;
    z-index: 2;
}

.section-gallery .main-gallery .list-gallery-box .box-item .content-box .icon-box span {
    font-size: 33px;
}

.section-gallery .main-gallery .list-gallery-box .box-item .content-box h5.title-box {
    position: relative;
    z-index: 2;
    font-size: 14px;
}

.section-gallery .main-gallery .list-gallery-box .box-item .content-box h5.title-box a {
    color: white;
}

.section-gallery .main-gallery .list-gallery-box .box-item .content-box h5.title-box a:hover {
    color: #43bc75;
}

.section-gallery .main-gallery .list-gallery-box .box-item .btn-box {
    position: absolute;
    top: 0;
    left: 38%;
    opacity: 0;
    transition: 0.5s ease-in-out;
}

.section-gallery .main-gallery .list-gallery-box .box-item .btn-box a.btn-main-2 {
    background: #43bc75;
    color: white;
    font-size: 48px;
    border-radius: 5px;
    padding: 27px 20px;
}

.section-gallery .main-gallery .list-gallery-box .box-item .btn-box a.btn-main-2:hover {
    background: #121212;
    transition: 0.5s ease-in-out;
}

.section-gallery .main-gallery .list-gallery-box .box-item:nth-child(1) .content-box .icon-box span {
    color: #ce3612;
}

.section-gallery .main-gallery .list-gallery-box .box-item:nth-child(2) .content-box .icon-box span {
    color: #43bc75;
}

.section-gallery .main-gallery .list-gallery-box .box-item:nth-child(3) .content-box .icon-box span {
    color: #f15e28;
}

.section-gallery .main-gallery .list-gallery-box .box-item:nth-child(4) .content-box .icon-box span {
    color: #ffb701;
}

.section-gallery .main-gallery .list-gallery-box .box-item:nth-child(5) .content-box .icon-box span {
    color: #43bc75;
}

.section-gallery .main-gallery .list-gallery-box .box-item:nth-child(6) {
    margin-right: 0;
}

.section-gallery .main-gallery .list-gallery-box .box-item:nth-child(6) .content-box .icon-box span {
    color: #81dfd9;
}

.section-gallery .main-gallery .list-gallery-box .box-item:hover .img-box img {
    -webkit-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    transition: all 0.3s ease;
}

.section-gallery .main-gallery .list-gallery-box .box-item:hover .btn-box {
    opacity: 1;
    top: 31%;
    transition: 0.5s ease-in-out;
    transition-delay: 0.3s;
}

.section-gallery .main-gallery .btn-gallery {
    text-align: center;
    margin-top: 70px;
}

.section-gallery .main-gallery .btn-gallery .btn-main {
    background: #121212;
    color: white;
    padding: 30px 38px 27px 47px;
    font-size: 18px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.section-gallery .main-gallery .btn-gallery .btn-main span {
    font-weight: bold;
}

/***
  
  ====================================================================
  13.	Testimonials Section
  ====================================================================
  
   ***/

.testimonial-top-gap {
    padding-top: 120px;
}

.section-testimonials {
    background: #fff7f3;
}

.section-testimonials .main-testimonials {
    position: relative;
}

.section-testimonials .main-testimonials .info .list-img-team {
    position: absolute;
    z-index: 9;
    top: 50px;
    right: 349px;
}

.section-testimonials .main-testimonials .info .list-img-team img {
    margin-left: -36px;
}

.section-testimonials .main-testimonials .info .list-img-team img:nth-child(1) {
    margin-left: 0;
}

.section-testimonials .main-testimonials .info .list-img-team .number-team {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    padding-top: 15px;
    margin-left: -36px;
    background: #ffb701;
}

.section-testimonials .main-testimonials .info span.icon-inverted-commas {
    font-size: 120px;
    position: absolute;
    top: 39px;
    right: 49px;
    color: #43bc75;
    z-index: 99;
}

.section-testimonials .main-testimonials .themesflat-carousel-box {
    position: absolute;
    top: 10%;
    left: 42.7%;
}

.section-testimonials .main-testimonials .themesflat-carousel-box .themesflat-testimonial .testimonials-item .img-box {
    max-width: 670px;
}

.section-testimonials .main-testimonials .themesflat-carousel-box .themesflat-testimonial .testimonials-item .box-content {
    background: white;
    width: 670px;
    border-radius: 5px;
    padding: 62px 58px 50px 58px;
}

.section-testimonials .main-testimonials .themesflat-carousel-box .themesflat-testimonial .testimonials-item .box-content h4.text {
    /*text-decoration: underline;*/
    line-height: 1.5;
    text-decoration-color: rgba(18, 18, 18, 0.4);
    font-weight: 700;
}

.section-testimonials .main-testimonials .themesflat-carousel-box .themesflat-testimonial .testimonials-item .box-content h5 {
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 45px;
    margin-left: 9px;
}

.section-testimonials .main-testimonials .themesflat-carousel-box .themesflat-testimonial .testimonials-item .box-content p {
    font-size: 14px;
    margin-left: 9px;
    margin-top: 3px;
}

.section-testimonials .main-testimonials .themesflat-carousel-box .owl-nav {
    display: flex;
    position: absolute;
    top: 67%;
    left: 14.5%;
}

.section-testimonials .main-testimonials .themesflat-carousel-box .owl-nav .owl-prev,
.section-testimonials .main-testimonials .themesflat-carousel-box .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    margin-right: 12px;
    font-size: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 1px solid rgba(18, 18, 18, 0.1);
    transition: 0.5s ease-in-out;
}

.section-testimonials .main-testimonials .themesflat-carousel-box .owl-nav .owl-prev::before {
    content: "\eac9";
    font-size: 16px;
    font-family: 'IcoFont';
    color: #121212;
}

.section-testimonials .main-testimonials .themesflat-carousel-box .owl-nav .owl-next::before {
    content: "\eaca";
    font-size: 16px;
    font-family: 'IcoFont';
    color: #121212;
}

.section-testimonials .main-testimonials .themesflat-carousel-box .owl-nav .owl-prev::after,
.section-testimonials .main-testimonials .themesflat-carousel-box .owl-nav .owl-next::after {
    content: '';
    width: 100%;
    height: 100%;
    clip: rect(0px, 0px, 0px, 0px);
    border: 1px solid #43bc75;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.5s ease-in-out;
}

.section-testimonials .main-testimonials .themesflat-carousel-box .owl-nav .owl-prev.disabled,
.section-testimonials .main-testimonials .themesflat-carousel-box .owl-nav .owl-next.disabled {
    background: rgba(67, 188, 117, 0.102);
    border-color: transparent;
    transition: 0.5s ease-in-out;
}

.section-testimonials .main-testimonials .themesflat-carousel-box .owl-nav .owl-prev:hover,
.section-testimonials .main-testimonials .themesflat-carousel-box .owl-nav .owl-next:hover {
    background: rgba(67, 188, 117, 0.102);
    border-color: transparent;
    transition: 0.5s ease-in-out;
}

.section-testimonials .main-testimonials .themesflat-carousel-box .owl-nav .owl-prev.disabled:after,
.section-testimonials .main-testimonials .themesflat-carousel-box .owl-nav .owl-next.disabled:after {
    opacity: 1 !important;
    transition: 0.5s ease-in-out;
    transform: rotate(135deg);
    clip: rect(0px, 42px, 32px, 0px);
}

.section-testimonials .main-testimonials .themesflat-carousel-box .owl-nav .owl-prev:hover::after,
.section-testimonials .main-testimonials .themesflat-carousel-box .owl-nav .owl-next:hover::after {
    opacity: 1;
    transition: 0.5s ease-in-out;
    transform: rotate(135deg);
    clip: rect(0px, 42px, 32px, 0px);
}

.section-testimonials .main-testimonials .themesflat-carousel-box .owl-dots {
    display: none;
}

/***
  
  ====================================================================
  14.	Team Section
  ====================================================================
  
   ***/
.section-team {
    background: #f2eae8;
}

.section-team .intro {
    text-align: center;
    margin-top:24px;
}

.section-team .intro h3.title {
    margin-top: -16px;
}

.section-team .main-team {
    padding-top: 62px;
}

.section-team .main-team .list-team-box {
    display: flex;
}

.section-team .img-box {
    display: none;
}

.section-team .info {
    display: none;
}

.section-team .main-team .list-team-box .box-item {
    background: #f1f1f1;
}

.section-team .main-team .list-team-box .box-item {
    width: 33%;
    margin-right: 30px;
    background: #f1f1f1;
    position: relative;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 26px;
}

.section-team .main-team .list-team-box .box-item:nth-last-child(1) {
    margin-right: 0;
}

.section-team .main-team .list-team-box .box-item .img-box img {
    /*-webkit-filter: grayscale(100%);
            -ms-filter: grayscale(100%);
            -moz-filter: grayscale(100%);*/
    transition: all 0.3s ease;
    width: auto;
}

.section-team .main-team .list-team-box .box-item a.info {
    position: absolute;
    top: 176px;
    right: 45px;
    top: 250px;
    right: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #43bc75;
    font-size: 14px;
    color: white;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-team .main-team .list-team-box .box-item h5.name {
    text-transform: capitalize;
    font-weight: bold;
    margin-top: 27px;
    margin-left: 17px;
}

.section-team .main-team .list-team-box .box-item p {
    font-size: 14px;
    margin-top: 2px;
    color: #777777;
}

.section-team .main-team .list-team-box .box-item:hover .img-box img {
    -webkit-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    transition: all 0.3s ease;
}

.section-team .main-team .list-team-box .box-item:hover a.info {
    opacity: 1;
    top: 176px;
    right: 45px;
    transition: 0.5s ease-in-out;
    transition-delay: 0.2s;
}

.section-team .main-team .btn-team {
    text-align: center;
    margin-top: 70px;
}

.section-team .main-team .btn-team .btn-main {
    background: #121212;
    color: white;
    padding: 32px 45px 26px 45px;
    font-size: 18px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.section-team .main-team .btn-team .btn-main span {
    font-weight: bold;
}

.section-team.style-2 {
    background: #f2f2f2;
}

.section-team.style-2 .main-team {
    display: flex;
    padding-top: 0;
}

.section-team.style-2 .main-team .list-team-box {
    width: 75%;
}

.section-team.style-2 .main-team .list-team-box .themesflat-carousel-box {
    width: 100%;
}

.section-team.style-2 .main-team .list-team-box .box-item {
    width: 100%;
    margin-right: 0;
    padding-left: 30px;
    padding-right: 30px;
}

.section-team.style-2 .main-team .list-team-box .owl-dots {
    display: none;
}

.section-team.style-2 .main-team .list-team-box .owl-nav {
    position: absolute;
    right: -314px;
    top: 246px;
    display: flex;
}

.section-team.style-2 .main-team .list-team-box .owl-nav .owl-prev,
.section-team.style-2 .main-team .list-team-box .owl-nav .owl-next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: transparent;
    margin-right: 20px;
    font-size: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 1px solid rgba(18, 18, 18, 0.1);
    transition: 0.5s ease-in-out;
}

.section-team.style-2 .main-team .list-team-box .owl-nav .owl-prev::before {
    content: "\eac9";
    font-size: 18px;
    font-family: 'IcoFont';
    color: #121212;
}

.section-team.style-2 .main-team .list-team-box .owl-nav .owl-next::before {
    content: "\eaca";
    font-size: 18px;
    font-family: 'IcoFont';
    color: #121212;
}

.section-team.style-2 .main-team .list-team-box .owl-nav .owl-prev::after,
.section-team.style-2 .main-team .list-team-box .owl-nav .owl-next::after {
    content: '';
    width: 100%;
    height: 100%;
    clip: rect(0px, 0px, 0px, 0px);
    border: 1px solid #43bc75;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.5s ease-in-out;
}

.section-team.style-2 .main-team .list-team-box .owl-nav .owl-prev.disabled,
.section-team.style-2 .main-team .list-team-box .owl-nav .owl-next.disabled {
    background: rgba(67, 188, 117, 0.102);
    border-color: transparent;
    transition: 0.5s ease-in-out;
}

.section-team.style-2 .main-team .list-team-box .owl-nav .owl-prev:hover,
.section-team.style-2 .main-team .list-team-box .owl-nav .owl-next:hover {
    background: rgba(67, 188, 117, 0.102);
    border-color: transparent;
    transition: 0.5s ease-in-out;
}

.section-team.style-2 .main-team .list-team-box .owl-nav .owl-prev.disabled:after,
.section-team.style-2 .main-team .list-team-box .owl-nav .owl-next.disabled:after {
    opacity: 1 !important;
    transition: 0.5s ease-in-out;
    transform: rotate(135deg);
    clip: rect(0px, 70px, 50px, 0px);
}

.section-team.style-2 .main-team .list-team-box .owl-nav .owl-prev:hover::after,
.section-team.style-2 .main-team .list-team-box .owl-nav .owl-next:hover::after {
    opacity: 1;
    transition: 0.5s ease-in-out;
    transform: rotate(135deg);
    clip: rect(0px, 70px, 50px, 0px);
}

.section-team.style-2 .main-team .team-control {
    width: 25%;
    text-align: right;
}

.section-team.style-2 .main-team .team-control h3.title {
    font-size: 32px;
    line-height: 1.5;
    margin-top: -4px;
}

/***
  
  ====================================================================
  15.	Facts Section
  ====================================================================
  
   ***/
.section-facts {
    position: relative;
    background: url("../images/background/bg-facts.jpg") no-repeat;
    background-size: cover;
}

.section-facts .tf-container {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section-facts .tf-container img {
    -webkit-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
}

.section-facts .main-facts .intro {
    text-align: center;
}

.section-facts .main-facts .intro h3.title {
    color: #fff;
    margin-top: -10px;
    margin-left: -110px;
}

.section-facts .main-facts .intro p.money {
    font-size: 120px;
    color: #43bc75;
    font-weight: bold;
    margin-left: -100px;
    line-height: 1;
    margin-top: 46px;
}

.section-facts .main-facts .content {
    display: flex;
    padding-top: 40px;
}

.section-facts .main-facts .content .question {
    width: 42.8%;
}

.section-facts .main-facts .content .question h4.title {
    color: #fff;
    font-weight: bold;
}

.section-facts .main-facts .content .question ul.list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 39px;
}

.section-facts .main-facts .content .question ul.list li {
    width: 40%;
    margin-bottom: 6px;
}

.section-facts .main-facts .content .question ul.list li p {
    color: rgba(255, 255, 255, 0.7);
}

.section-facts .main-facts .content .newsletter-form {
    width: 57.2%;
    background: white;
    margin-top: 6px;
    padding: 63px 99px 71px 98px;
}

.section-facts .main-facts .content .newsletter-form h4 {
    font-weight: bold;
}

.section-facts .main-facts .content .newsletter-form p {
    font-size: 14px;
    color: #777777;
    margin-top: 19px;
    margin-left: 7px;
}

.section-facts .main-facts .content .newsletter-form p span {
    color: #f15e28;
}

.section-facts .main-facts .content .newsletter-form form {
    margin-top: 43px;
    margin-left: 3px;
}

.section-facts .main-facts .content .newsletter-form form .form-group {
    position: relative;
}

.section-facts .main-facts .content .newsletter-form form .form-group input {
    border: 1px solid rgba(17, 22, 30, 0.1);
    background: #f3f3f4;
    font-size: 13px;
    color: #777777;
    padding: 26px 250px 25px 27px;
}

.section-facts .main-facts .content .newsletter-form form .form-group input:focus {
    border-color: #43bc75;
    color: #121212;
}

.section-facts .main-facts .content .newsletter-form form .form-group button.theme-btn {
    background: #43bc75;
    margin-left: -4px;
    font-size: 23px;
    color: white;
    position: absolute;
    top: 0;
    right: 0;
    padding: 23px 29px 23px 29px;
}

.section-facts .main-facts .content .newsletter-form form .form-group button.theme-btn i {
    position: relative;
    z-index: 99;
}

.section-facts .main-facts .content .newsletter-form form .form-group button.theme-btn::before,
.section-facts .main-facts .content .newsletter-form form .form-group button.theme-btn::after {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    background: #f15e28;
    transition: 0.5s ease-in-out;
}

.section-facts .main-facts .content .newsletter-form form .form-group button.theme-btn::before {
    left: 0;
}

.section-facts .main-facts .content .newsletter-form form .form-group button.theme-btn::after {
    right: 0;
}

.section-facts .main-facts .content .newsletter-form form .form-group button.theme-btn:hover:before,
.section-facts .main-facts .content .newsletter-form form .form-group button.theme-btn:hover:after {
    width: 100%;
    transition: 0.5s ease-in-out;
}

/***
  
  ====================================================================
  16.	Blog Section
  ====================================================================
  
   ***/
.section-blog {
    background: #f2f2f2;
}

.section-blog .blog-main {
    display: flex;
}

.section-blog .blog-main .blog-list-main {
    width: 75%;
}

.section-blog .blog-main .blog-list-main .box-item {
    border-radius: 5px;
    position: relative;
}

.section-blog .blog-main .blog-list-main .box-item .click-img {
    width: 100%;
}

.section-blog .blog-main .blog-list-main .box-item:hover .img-box img {
    -webkit-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    transition: 0.5s ease-in-out;
}

.section-blog .blog-main .blog-list-main .box-item:hover .meta {
    top: 16%;
    opacity: 1;
    transition: 0.5s ease-in-out;
    transition-delay: 0.2s;
}

.section-blog .blog-main .blog-list-main .box-item .img-box img {
    -webkit-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    transition: 0.5s ease-in-out;
}

.section-blog .blog-main .blog-list-main .box-item:nth-last-child(1) {
    margin-right: 0;
}

.section-blog .blog-main .blog-list-main .box-item .meta {
    position: absolute;
    top: 0;
    left: 37%;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #121212;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: 0.5s ease-in-out;
}

.section-blog .blog-main .blog-list-main .box-item .meta a {
    color: white;
    text-transform: uppercase;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    font-weight: bold;
}

.section-blog .blog-main .blog-list-main .box-item .meta a:hover {
    color: #43bc75;
    transition: 0.3s ease-in-out;
}

.section-blog .blog-main .blog-list-main .box-item .category {
    width: 95px;
    height: 32px;
    position: absolute;
    top: 45%;
    right: 19px;
    text-align: center;
}

.section-blog .blog-main .blog-list-main .box-item .category a {
    width: 100%;
    height: 100%;
    font-size: 13px;
    font-weight: bold;
    background: #43bc75;
    color: white;
    border-radius: 3px;
    padding-top: 9px;
}

.section-blog .blog-main .blog-list-main .box-item .category a:hover {
    background: #121212;
    transition: 0.3s ease-in-out;
}

.section-blog .blog-main .blog-list-main .box-item .content-box {
    padding-top: 23px;
}

.section-blog .blog-main .blog-list-main .box-item .content-box a {
    color: #121212;
}

.section-blog .blog-main .blog-list-main .box-item .content-box a:hover {
    color: #43bc75;
    transition: 0.3s ease-in-out;
}

.section-blog .blog-main .blog-list-main .box-item .content-box a h5 {
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0.1px;
}

.section-blog .blog-main .blog-list-main .box-item .content-box p {
    font-size: 14px;
    margin-top: 8px;
}

.section-blog .blog-main .blog-list-main .box-item .content-box .btn-box {
    margin-top: 23px;
}

.section-blog .blog-main .blog-list-main .box-item .content-box .btn-box .btn-main {
    background: white;
    color: #777777;
    padding: 16px 26px 16px 29px;
    font-size: 14px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.section-blog .blog-main .blog-list-main .box-item .content-box .btn-box .btn-main span {
    font-weight: bold;
}

.section-blog .blog-main .blog-list-main .box-item .content-box .btn-box .btn-main.active {
    background: #43bc75 !important;
    color: white;
}

.section-blog .blog-main .blog-list-main .box-item .content-box .btn-box .btn-main:hover {
    color: white;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.section-blog .blog-main .blog-list-main .box-item .content-box .wishlist {
    position: absolute;
    bottom: 15px;
    right: 0;
}

.section-blog .blog-main .blog-list-main .box-item .content-box .wishlist a {
    font-size: 24px;
    color: #777777;
}

.section-blog .blog-main .blog-list-main .box-item .content-box .wishlist a:hover {
    color: #43bc75;
}

.section-blog .blog-main .blog-list-main .owl-dots {
    display: none;
}

.section-blog .blog-main .blog-list-main .owl-nav {
    position: absolute;
    right: -314px;
    top: 246px;
    display: flex;
}

.section-blog .blog-main .blog-list-main .owl-nav .owl-prev,
.section-blog .blog-main .blog-list-main .owl-nav .owl-next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: transparent;
    margin-right: 20px;
    font-size: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 1px solid rgba(18, 18, 18, 0.1);
    transition: 0.5s ease-in-out;
}

.section-blog .blog-main .blog-list-main .owl-nav .owl-prev::before {
    content: "\eac9";
    font-size: 18px;
    font-family: 'IcoFont';
    color: #121212;
}

.section-blog .blog-main .blog-list-main .owl-nav .owl-next::before {
    content: "\eaca";
    font-size: 18px;
    font-family: 'IcoFont';
    color: #121212;
}

.section-blog .blog-main .blog-list-main .owl-nav .owl-prev::after,
.section-blog .blog-main .blog-list-main .owl-nav .owl-next::after {
    content: '';
    width: 100%;
    height: 100%;
    clip: rect(0px, 0px, 0px, 0px);
    border: 1px solid #43bc75;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.5s ease-in-out;
}

.section-blog .blog-main .blog-list-main .owl-nav .owl-prev.disabled,
.section-blog .blog-main .blog-list-main .owl-nav .owl-next.disabled {
    background: rgba(67, 188, 117, 0.102);
    border-color: transparent;
    transition: 0.5s ease-in-out;
}

.section-blog .blog-main .blog-list-main .owl-nav .owl-prev:hover,
.section-blog .blog-main .blog-list-main .owl-nav .owl-next:hover {
    background: rgba(67, 188, 117, 0.102);
    border-color: transparent;
    transition: 0.5s ease-in-out;
}

.section-blog .blog-main .blog-list-main .owl-nav .owl-prev.disabled:after,
.section-blog .blog-main .blog-list-main .owl-nav .owl-next.disabled:after {
    opacity: 1 !important;
    transition: 0.5s ease-in-out;
    transform: rotate(135deg);
    clip: rect(0px, 70px, 50px, 0px);
}

.section-blog .blog-main .blog-list-main .owl-nav .owl-prev:hover::after,
.section-blog .blog-main .blog-list-main .owl-nav .owl-next:hover::after {
    opacity: 1;
    transition: 0.5s ease-in-out;
    transform: rotate(135deg);
    clip: rect(0px, 70px, 50px, 0px);
}

.section-blog .blog-main .blog-control {
    width: 25%;
    text-align: right;
}

.section-blog .blog-main .blog-control h3 {
    font-size: 32px;
    line-height: 1.5;
    margin-top: -4px;
}

.section-blog.style-2 {
    background: none;
}

.section-blog.style-2 .intro {
    text-align: center;
}

.section-blog.style-2 .intro h3.title {
    margin-top: -13px;
}

.section-blog.style-2 .blog-main {
    padding-top: 60px;
}

.section-blog.style-2 .blog-main .blog-list-main {
    width: 100%;
    display: flex;
}

.section-blog.style-2 .blog-main .blog-list-main .box-item {
    margin-right: 30px;
}

.section-blog.style-2 .blog-main .blog-list-main .box-item:nth-child(4) {
    margin-right: 0;
}

.section-blog.style-2 .blog-main .blog-list-main .box-item .content-box {
    padding-top: 27px;
}

.section-blog.style-2 .blog-main .blog-list-main .box-item .content-box .btn-box .btn-main {
    background: #f2f2f2;
}

.section-blog.s1 .blog-main {
    display: block;
}

.section-blog.s1 .blog-main .blog-list-main .box-item .content-box .btn-box .btn-main {
    background: #fff;
}

/***
  
  ====================================================================
  17.	Event Section
  ====================================================================
  
   ***/
.section-event {
    background: #ffffff;
}

.section-event .main-event {
    display: flex;
}

.section-event .main-event .event-control {
    width: 25%;
}

.section-event .main-event .event-control h3.title {
    font-size: 32px;
    margin-top: -3px;
    letter-spacing: -0.5px;
    line-height: 1.5;
}

.section-event .main-event .event-list-main {
    width: 75%;
    padding-left: 110px;
}

.section-event .main-event .event-list-main .list-event-box {
    display: flex;
}

.section-event .main-event .event-list-main .list-event-box .box-item {
    width: 100%;
    position: relative;
    padding-left: 130px;
}

.section-event .main-event .event-list-main .list-event-box .box-item:nth-child(1) .time {
    background: #43bc75;
    /*background:transparent;*/
}

.section-event .main-event .event-list-main .list-event-box .box-item:nth-child(2) {
    margin-right: 0;
    margin-top: 33px;
}

.section-event .main-event .event-list-main .list-event-box .box-item:nth-child(2) .time {
    background: #ffb701;
}

.section-event .main-event .event-list-main .list-event-box .box-item .time {
    width: 100px;
    height: 100px;
    padding: 10px;
    border-radius: 10px;
    /*border-top-left-radius: 80%;*/
    /*border-bottom-left-radius: 70%;*/
    /*border-top-right-radius: 90%;*/
    /*border-bottom-right-radius: 100%;*/
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
}

.section-event .main-event .event-list-main .list-event-box .box-item .time span {
    display: none;
    font-weight: bold;
    font-size: 18px;
    color: white;
    line-height: 1.2;
}

.section-event .main-event .event-list-main .list-event-box .box-item .content h5.title {
    line-height: 25px;
    margin-top: -8px;
    letter-spacing: 0.2px;
    font-size: 14px;
}

.section-event .main-event .event-list-main .list-event-box .box-item .content h5.title a {
    color: #121212;
}

.section-event .main-event .event-list-main .list-event-box .box-item .content h5.title a:hover {
    color: #43bc75;
    transition: all 0.3s ease;
}

.section-event .main-event .event-list-main .list-event-box .box-item .content p.vanue {
    font-size: 14px;
    margin-top: 17px;
}

.section-event .main-event .event-list-main .list-event-box .box-item .content p.vanue span {
    color: #43bc75;
}

.section-event .main-event .event-list-main .list-event-box .box-item .content .author {
    position: relative;
    margin-bottom: 15px;
    padding-left: 12px;
}


.section-event .main-event .event-list-main .list-event-box .box-item .content .author::before {
    content: '';
    width: 2px;
    height: 100%;
    background: #121212;
    position: absolute;
    left: 0;
    top: 0;
}

.section-event .main-event .event-list-main .list-event-box .box-item .content .author h6 {
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1;
}

.section-event .main-event .event-list-main .list-event-box .box-item .content .author p {
    font-size: 14px;
    padding-top: 10px;
    line-height: 1;
}

.section-event .main-event .event-list-main .list-event-box.s2 .box-item:nth-child(1) .time {
    background: #f15e28;
}

.section-event .main-event .event-list-main .list-event-box.s2 .box-item:nth-child(2) {
    margin-right: 0;
    margin-top: 33px;
}

.section-event .main-event .event-list-main .list-event-box.s2 .box-item:nth-child(2) .time {
    background: #5d2645;
}

.section-event .main-event .event-list-main .owl-dots {
    display: none;
}

.section-event .main-event .event-list-main .owl-nav {
    position: absolute;
    left: -52.5%;
    top: 248px;
    display: flex;
}

.section-event .main-event .event-list-main .owl-nav .owl-prev,
.section-event .main-event .event-list-main .owl-nav .owl-next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: transparent;
    margin-right: 20px;
    font-size: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 1px solid rgba(18, 18, 18, 0.1);
    transition: 0.5s ease-in-out;
}

.section-event .main-event .event-list-main .owl-nav .owl-prev::before {
    content: "\eac9";
    font-size: 18px;
    font-family: 'IcoFont';
    color: #121212;
}

.section-event .main-event .event-list-main .owl-nav .owl-next::before {
    content: "\eaca";
    font-size: 18px;
    font-family: 'IcoFont';
    color: #121212;
}

.section-event .main-event .event-list-main .owl-nav .owl-prev::after,
.section-event .main-event .event-list-main .owl-nav .owl-next::after {
    content: '';
    width: 100%;
    height: 100%;
    clip: rect(0px, 0px, 0px, 0px);
    border: 1px solid #43bc75;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.5s ease-in-out;
}

.section-event .main-event .event-list-main .owl-nav .owl-prev.disabled,
.section-event .main-event .event-list-main .owl-nav .owl-next.disabled {
    background: rgba(67, 188, 117, 0.102);
    border-color: transparent;
    transition: 0.5s ease-in-out;
}

.section-event .main-event .event-list-main .owl-nav .owl-prev:hover,
.section-event .main-event .event-list-main .owl-nav .owl-next:hover {
    background: rgba(67, 188, 117, 0.102);
    border-color: transparent;
    transition: 0.5s ease-in-out;
}

.section-event .main-event .event-list-main .owl-nav .owl-prev.disabled:after,
.section-event .main-event .event-list-main .owl-nav .owl-next.disabled:after {
    opacity: 1 !important;
    transition: 0.5s ease-in-out;
    transform: rotate(135deg);
    clip: rect(0px, 70px, 50px, 0px);
}

.section-event .main-event .event-list-main .owl-nav .owl-prev:hover::after,
.section-event .main-event .event-list-main .owl-nav .owl-next:hover::after {
    opacity: 1;
    transition: 0.5s ease-in-out;
    transform: rotate(135deg);
    clip: rect(0px, 70px, 50px, 0px);
}

.section-event.style-1 .list-event-box {
    flex-wrap: wrap;
}

.section-event.s1 {
    padding-bottom: 101px !important;
}

.section-event.s1 .main-event .event-list-main {
    width: 100%;
    padding-left: 0;
}

.section-event.s1 .main-event .event-list-main .list-event-box {
    display: flex;
}

.section-event.s1 .main-event .event-list-main .list-event-box .box-item {
    width: 33.33%;
    margin-right: 30px;
}

.section-event.s1 .main-event .event-list-main .list-event-box .box-item:nth-child(2) {
    margin-top: 0;
}

.section-event.s1 .main-event .event-list-main .list-event-box .box-item:nth-child(2) .time {
    background: #57a7dc;
    /*background:transparent;*/
}

.section-event.s1 .main-event .event-list-main .list-event-box .box-item:nth-child(3) {
    margin-right: 0;
}

.section-event.s1 .main-event .event-list-main .list-event-box .box-item:nth-child(3) .time {
    background: #f15e28;
    /*background: transparent;*/
}

.section-event.s1 .main-event .event-list-main .list-event-box.s2 .box-item {
    width: 33.33%;
    margin-right: 30px;
}

.section-event.s1 .main-event .event-list-main .list-event-box.s2 .box-item:nth-child(1) .time {
    background: #ffb701;
    /*background: transparent;*/

}

.section-event.s1 .main-event .event-list-main .list-event-box.s2 .box-item:nth-child(2) .time {
    background: #6f5bc6;
    /*background: transparent;*/
}

.section-event.s1 .main-event .event-list-main .list-event-box.s2 .box-item:nth-child(3) {
    margin-right: 0;
}

.section-event.s1 .main-event .event-list-main .list-event-box.s2 .box-item:nth-child(3) .time {
    background: #5d2645;
    /*background: transparent;*/
}

/***
  
  ====================================================================
  18.	Page Title
  ====================================================================
  
   ***/
/*.page-title {
    background: url("../images/background/about_us_1920x550.jpg") no-repeat;
    background-size: cover;
    padding-top: 279px !important;
    padding-bottom: 185px !important; }*/
.page-title .main-pagetitle {
    display: flex;
}

.page-title .main-pagetitle .title {
    width: 50%;
}

.page-title .main-pagetitle .title h2 {
    font-size: 60px;
    color: black;
}

.page-title .main-pagetitle .group-donat {
    width: 50%;
    text-align: right;
    padding-top: 4px;
}

.page-title .main-pagetitle .group-donat .form-donat .form-group input {
    padding: 15px 10px 15px 15px;
    width: 257px;
}

.page-title .main-pagetitle .group-donat .form-donat .form-group button.btn-main {
    padding: 30px 32px 28px 33px;
}

.page-title .main-pagetitle .group-donat .select-selected {
    padding: 25px 40px 21px 20px;
}

.page-title .main-pagetitle .group-donat .select-selected:after {
    top: 32px;
}

.page-title .main-pagetitle .group-donat .select-items div {
    padding: 10px 40px 10px 20px;
}

.page-title.s1 {
    padding-bottom: 303px !important;
}

/***
  
  ====================================================================
  19.	Project Details
  ====================================================================
  
   ***/
.section-project-details {
    background: #f3f3f4;
}

.section-project-details .main-project-details {
    display: flex;
}

.section-project-details .main-project-details .project-content {
    margin-top: -118px;
    width: 66%;
    margin-right: 30px;
}

.section-project-details .main-project-details .project-content .themesflat-portfolio {
    padding-bottom: 38px;
}

.section-project-details .main-project-details .project-content p {
    font-size: 14px;
    color: #777777;
    line-height: 2.143;
}

.section-project-details .main-project-details .project-content .box-video {
    margin-top: 60px;
    margin-bottom: 40px;
}

.section-project-details .main-project-details .project-content .form-review .list-star {
    margin: 0;
}

.section-project-details .main-project-details .project-content .form-review .list-star li {
    display: inline-block;
}

.section-project-details .main-project-details .project-content .form-review .list-star li a {
    color: #777777;
}

.section-project-details .main-project-details .project-content .form-review .list-star li a i {
    font-size: 12px;
}

.section-project-details .main-project-details .project-content .form-review .list-star li a i:before {
    margin-right: -2px;
}

.section-project-details .main-project-details .project-content .boxitem .box-item-content .content-box {
    padding: 24px 30px 26px 30px;
}

.section-project-details .main-project-details .project-content .boxitem .box-item-content .content-box h6.subtitle {
    padding-left: 3px;
}

.section-project-details .main-project-details .project-content .boxitem .box-item-content .content-box h5.title {
    margin-top: 10px;
}

.section-project-details .main-project-details .project-content .img-detail {
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
}

.section-project-details .main-project-details .project-content .img-detail img.img-dt {
    padding-right: 20px;
    width: 50%;
}

.section-project-details .main-project-details .slidebar {
    margin-top: -118px;
}

/***
  
  ====================================================================
  20.	Blog Details
  ====================================================================
  
   ***/
.section-blog-details {
    background: #f3f3f4;
}

.section-blog-details .main-blog-details {
    display: flex;
}

.section-blog-details .main-blog-details .blog-content {
    width: 66%;
    margin-right: 30px;
}

.section-blog-details .main-blog-details .blog-content .themesflat-portfolio {
    padding-bottom: 16px;
}

.section-blog-details .main-blog-details .blog-content .themesflat-portfolio .blog-item .boxitem .imgbox {
    position: relative;
}

.section-blog-details .main-blog-details .blog-content .themesflat-portfolio .blog-item .boxitem .imgbox .category {
    width: 95px;
    height: 32px;
    position: absolute;
    bottom: -15px;
    right: 19px;
    text-align: center;
}

.section-blog-details .main-blog-details .blog-content .themesflat-portfolio .blog-item .boxitem .imgbox .category a {
    width: 100%;
    height: 100%;
    font-size: 13px;
    font-weight: bold;
    background: #43bc75;
    color: white;
    border-radius: 3px;
    padding-top: 9px;
}

.section-blog-details .main-blog-details .blog-content .themesflat-portfolio .blog-item .boxitem .content-box h4 {
    margin-top: 43px;
}

.section-blog-details .main-blog-details .blog-content p {
    font-size: 14px;
    color: #777777;
    line-height: 2.143;
}

.section-blog-details .main-blog-details .blog-content .video-blog {
    display: flex;
    margin-top: 60px;
    margin-bottom: 40px;
}

.section-blog-details .main-blog-details .blog-content .video-blog .box-video {
    width: 61%;
    margin-right: 30px;
    background: url("../images/background/bg-video-2.jpg");
}

.section-blog-details .main-blog-details .blog-content .video-blog .box-video .box .flat-video-fancybox a .crirle {
    width: 145px;
    height: 145px;
}

.section-blog-details .main-blog-details .blog-content .video-blog .box-video .box .flat-video-fancybox a .crirle::before {
    content: '';
    width: 125px;
    height: 125px;
    clip: rect(0px, 151px, 160px, 26px);
    top: 11px;
    left: 12px;
}

.section-blog-details .main-blog-details .blog-content .video-blog .box-video .box .flat-video-fancybox a .crirle span.ripple {
    width: 145px;
    height: 145px;
}

.section-blog-details .main-blog-details .blog-content .video-blog .box-video .box .flat-video-fancybox a .crirle span.ripple::before {
    width: 145px;
    height: 145px;
}

.section-blog-details .main-blog-details .blog-content .video-blog .box-video .box .flat-video-fancybox a .crirle span.ripple::after {
    width: 145px;
    height: 145px;
}

.section-blog-details .main-blog-details .blog-content .form-review .list-star {
    margin: 0;
}

.section-blog-details .main-blog-details .blog-content .form-review .list-star li {
    display: inline-block;
}

.section-blog-details .main-blog-details .blog-content .form-review .list-star li a {
    color: #777777;
}

.section-blog-details .main-blog-details .blog-content .form-review .list-star li a i {
    font-size: 12px;
}

.section-blog-details .main-blog-details .blog-content .form-review .list-star li a i:before {
    margin-right: -2px;
}

.section-blog-details .main-blog-details .blog-content .featured {
    border: 5px solid #f15e28;
    padding: 25px 36px 28px 46px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.section-blog-details .main-blog-details .blog-content .img-detail {
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
}

.section-blog-details .main-blog-details .blog-content .img-detail img.img-dt {
    padding-right: 20px;
    width: 50%;
}

/***
  
  ====================================================================
  21.	Contact
  ====================================================================
  
   ***/
.section-contact {
    position: relative;
    z-index: 99;
    background: #ffffff;
    margin-top:20px;
}

.section-contact .contact-main .map-contact {
    position: relative;
    display: flex;
}

.section-contact .contact-main .map-contact .themesflat-map-1 {
    width: 50%;
    margin-top: 50px;
    margin-right: 30px;
}

.section-contact .contact-main .map-contact .themesflat-map-1 iframe {
    border: 0;
    width: 100%;
    height: 561px;
}

.section-contact .contact-main .map-contact .info-contact {
    background: #f3f3f4;
    padding: 20px 0px 75px 0px;
    border-bottom: 2px solid #43bc75;
}

.section-contact .contact-main .map-contact .info-contact .address {
    padding-bottom: 26px;
}

.section-contact .contact-main .map-contact .info-contact .telephone {
    padding-top: 110px;
    padding-bottom: 26px;
}

.section-contact .contact-main .map-contact .info-contact .telephone span {
    margin-top: -3px;
}

.section-contact .contact-main .map-contact .info-contact .email {
    padding-bottom: 26px;
}

.section-contact .contact-main .map-contact .info-contact .email span {
    margin-top: -3px;
}

.section-contact .contact-main .map-contact .info-contact .social.padding-top-70 {
    padding-top: 51px;
}
a.mail {
    margin-left: 100px;
}
.section-contact .contact-main .map-contact .info-contact .social.padding-top-70 ul.list-social {
    width: 72%;
    float: right;
    margin: 0;
    line-height: 0;
}

.section-contact .contact-main .map-contact .info-contact .social.padding-top-70 ul.list-social li {
    display: inline-block;
    padding-right: 30px;
    margin-top: 2px;
}

.section-contact .contact-main .map-contact .info-contact .social.padding-top-70 ul.list-social li a {
    font-size: 14px;
    color: #777777;
}

.section-contact .contact-main .map-contact .info-contact .social.padding-top-70 ul.list-social li a:hover {
    color: #43bc75;
}

.section-contact .contact-main .map-contact .info-contact h5 {
    font-weight: 600;
    display: inline;
    width: 28%;
}

.section-contact .contact-main .map-contact .info-contact span {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    float: right;
    width: 72%;
    margin-top: -9px;
    line-height: 1.7;
}

.section-contact .contact-main .form-main-contact {
    padding-top: 64px;
    display: flex;
}

.section-contact .contact-main .form-main-contact .form-contact {
    width: 100%;
}

.section-contact .contact-main .form-main-contact .form-contact h4 {
    font-weight: 600;
    padding-bottom: 36px;
}

.section-contact .contact-main .form-main-contact .form-contact p {
    font-size: 14px;
    margin-bottom: 8px;
}

.section-contact .contact-main .form-main-contact .themesflat-contact-form.style-2 {
    padding-top: 36px;
}

/***
  
  ====================================================================
  22.	Event Details
  ====================================================================
  
   ***/
.section-event-details {
    background: #f3f3f4;
}

.section-event-details .main-event-details {
    display: flex;
}

.section-event-details .main-event-details .event-content {
    width: 66%;
    margin-right: 30px;
}

.section-event-details .main-event-details .event-content .themesflat-portfolio .event-item .boxitem .content-box {
    padding-top: 0;
}

.section-event-details .main-event-details .event-content .themesflat-portfolio .event-item .boxitem .content-box .event-time {
    border-radius: 5px;
    padding-bottom: 29px;
}

.section-event-details .main-event-details .event-content .themesflat-portfolio .event-item .boxitem .content-box .event-time .top {
    background: #43bc75;
    text-align: center;
    padding-top: 19px;
    padding-bottom: 6px;
}

.section-event-details .main-event-details .event-content .themesflat-portfolio .event-item .boxitem .content-box .event-time .top h3 {
    color: white;
    font-size: 45px;
    font-weight: bold;
    padding-bottom: 5px;
}

.section-event-details .main-event-details .event-content .themesflat-portfolio .event-item .boxitem .content-box .event-time .top p {
    font-size: 16px;
    color: white;
}

.section-event-details .main-event-details .event-content .themesflat-portfolio .event-item .boxitem .content-box .event-time div#eventCountdown {
    background: #fff;
    padding: 42px 10px 42px 10px;
}

.section-event-details .main-event-details .event-content .themesflat-portfolio .event-item .boxitem .content-box .event-time div#eventCountdown .countdown-section {
    width: 20%;
    padding: 0px 80px;
}

.section-event-details .main-event-details .event-content .themesflat-portfolio .event-item .boxitem .content-box .event-time div#eventCountdown span.countdown-amount {
    font-size: 32px;
    color: #121212;
    font-weight: bold;
}

.section-event-details .main-event-details .event-content .themesflat-portfolio .event-item .boxitem .content-box .event-time div#eventCountdown .countdown-period {
    font-size: 14px;
    text-transform: uppercase;
    color: #777777;
    padding-top: 20px;
}

.section-event-details .main-event-details .event-content .themesflat-portfolio .event-item .boxitem .content-box .box-video {
    margin-bottom: 64px;
    margin-top: 60px;
}

.section-event-details .main-event-details .event-content p {
    font-size: 14px;
    color: #777777;
    line-height: 2.143;
}

.section-event-details .main-event-details .event-content .img-grounp {
    display: flex;
    margin-top: 60px;
    margin-bottom: 40px;
}

.section-event-details .main-event-details .event-content .img-grounp img:nth-child(1) {
    padding-right: 30px;
}

/***
  
  ====================================================================
  23.	Footer
  ====================================================================
  
   ***/
footer a {
    color: #ffffff;
}

footer a:hover {
    color: #000000;
}

footer.footer {
    margin-top: 50px;
    padding-bottom: 47px;
    padding-top: 47px;
    background-color: #f15e28;
}

footer.footer .main-footer .top-footer {
    display: flex;
}

footer.footer .main-footer .top-footer .left {
    width: 50%;
}

footer.footer .main-footer .top-footer .left .logo {

    width: 200px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer.footer .main-footer .top-footer .right {
    width: 50%;
    text-align: right;
}

footer.footer .main-footer .top-footer .right ul.list-social {
    padding-top: 48px;
}

footer.footer .main-footer .top-footer .right ul.list-social li {
    display: inline-block;
    padding-left: 15px;
    padding-left: 22px;
}

footer.footer .main-footer .top-footer .right ul.list-social li a {
    font-size: 24px;
    color: #777777;
}

footer.footer .main-footer .top-footer .right ul.list-social li a:hover {
    color: #43bc75;
    transition: 0.5s ease-in-out;
}

footer.footer .main-footer .top-footer .right ul.list-social li a.active {
    color: #43bc75;
}

footer.footer .main-footer .content-footer {
    display: flex;
    padding-top: 65px;
}

footer.footer .main-footer .content-footer .widget {
    width: 25%;
    padding-left: 4px;
}

footer.footer .main-footer .content-footer .widget h5.title {
    font-weight: bold;
    color: #ffffff;
    font-size: 19px;
}

footer.footer .main-footer .content-footer .widget ul.list {
    padding-top: 25px;
    margin-left: -3px;
}

footer.footer .main-footer .content-footer .widget ul.list li {
    padding-bottom: 33px;
}

footer.footer .main-footer .content-footer .widget ul.list li i {
    color: #ffffff;
    margin-right: 3px;
}

footer.footer .main-footer .content-footer .widget ul.list li a {
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: -0.2px;
    position: relative;
    font-size: 15px;
}

footer.footer .main-footer .content-footer .widget ul.list li a i {
    margin-right: 3px;
}

footer.footer .main-footer .content-footer .widget ul.list li a:after {
    content: "";
    width: 0;
    height: 1px;
    bottom: 0;
    position: absolute;
    left: auto;
    right: 0;
    z-index: 1;
    -webkit-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    -o-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    background: transparent;
}

footer.footer .main-footer .content-footer .widget ul.list li a:hover {
    color: #000000;
}

footer.footer .main-footer .content-footer .widget ul.list li a:hover:after {
    width: 100%;
    left: 0;
    right: auto;
}

footer.footer .main-footer .content-footer .widget-about {
    padding-left: 47px;
    width: 20%;
}

footer.footer .main-footer .content-footer .widget-surve {
    width: 30%;
    padding-left: 129px;
}

footer.footer .main-footer .content-footer .widget-surve ul.list li {
    padding-bottom: 30px;
}

footer.footer .main-footer .content-footer .widget-surve ul.list li a {
    font-size: 19px;
    font-weight: bold;
    color: #ffffff;
    position: relative;
}

footer.footer .main-footer .content-footer .widget-surve ul.list li a:hover {
    color: #43bc75;
    transition: 0.5s ease-in-out;
}

footer.footer .main-footer .content-footer .widget-surve ul.list li a:after {
    content: "";
    width: 0;
    height: 1px;
    bottom: 0;
    position: absolute;
    left: auto;
    right: 0;
    z-index: 1;
    -webkit-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    -o-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    background: #43bc75;
}

footer.footer .main-footer .content-footer .widget-surve ul.list li a:hover:after {
    width: 100%;
    left: 0;
    right: auto;
}

footer.footer .main-footer .content-footer .widget-surve ul.list li a.active {
    color: #43bc75;
}

footer.footer .main-footer .content-footer .widget-surve ul.list li a.active:after {
    width: 100%;
    left: 0;
    right: auto;
}

footer.footer .main-footer .content-footer .widget-text {
    width: 40%;
    padding-left: 20px;
}

footer.footer .main-footer .content-footer .widget-text h2 {
    line-height: 1;
    color: #43bc75;
    margin-top: -3px;
    letter-spacing: 0.8px;
}

footer.footer .main-footer .content-footer .widget-text h3 {
    font-weight: 600;
    font-size: 32px;
    color: #ffffff;
}

footer.footer .main-footer .content-footer .widget-text .address,
footer.footer .main-footer .content-footer .widget-text .phone {
    padding-top: 10px;
    display: flex;
    align-items: center;
}

footer.footer .main-footer .content-footer .widget-text .address h6,
footer.footer .main-footer .content-footer .widget-text .phone h6 {
    color: #121212;
    font-weight: bold;
}

footer.footer .main-footer .content-footer .widget-text .address p {
    font-size: 15px !important;
}

footer.footer .main-footer .content-footer .widget-text .address p,
footer.footer .main-footer .content-footer .widget-text .phone p {
    font-size: 18px;
    color: #ffffff;
    padding-left: 30px;
    margin-top: 8px;
}

footer.footer .main-footer .content-footer .widget-text .phone {
    padding-top: 0;
    margin-top: -10px;
}

footer.footer .main-footer .content-footer .widget-text .phone p {
    padding-left: 103px;
}

footer.footer.style-2 {
    background: #121212;
}

footer.footer.style-2 .main-footer .content-footer .widget h5.title {
    color: white;
}

footer.footer.style-2 .main-footer .content-footer .widget-surve ul.list li a {
    color: white;
}

footer.footer.style-2 .main-footer .content-footer .widget-surve ul.list li a:hover {
    color: #43bc75;
    transition: all 0.3s ease;
}

footer.footer.style-2 .main-footer .content-footer .widget-surve ul.list li a.active {
    color: #43bc75;
}

footer.footer.style-2 .main-footer .content-footer .widget-text h3 {
    color: white;
}

footer.footer.style-2 .main-footer .content-footer .widget-text .address h6,
footer.footer.style-2 .main-footer .content-footer .widget-text .phone h6 {
    color: white;
}

.bottom-footer {
    background: #0e0e0e;
    text-align: center;
    padding: 10px 0;
}

.bottom-footer .content p {
    color: #777777;
    margin-bottom: 0;
}

.bottom-footer .content p span {
    color: #f86048;
}

footer h3 {
    color: #ffffff;
}

/*# sourceMappingURL=style.css.map */

.tz-gallery .col-md-4 {
    padding-bottom: 30px;
}


table {
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
}

table caption {
    font-size: 1.5em;
    margin: .5em 0 .75em;
}

table tr {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    padding: .35em;
}

table th,
table td {
    padding: .625em;
    text-align: center;
}

table th {
    font-size: .85em;
    letter-spacing: .1em;
    text-transform: uppercase;
}

@media screen and (max-width: 600px) {
    table {
        border: 0;
    }

    table caption {
        font-size: 1.3em;
    }

    table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    table tr {
        border-bottom: 3px solid #ddd;
        display: block;
        margin-bottom: .625em;
    }

    table td {
        border-bottom: 1px solid #ddd;
        display: block;
        font-size: .8em;
        text-align: right;
    }

    table td::before {
        /*
      * aria-label has no advantage, it won't be read inside a table
      content: attr(aria-label);
      */
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
    }

    table td:last-child {
        border-bottom: 0;
    }

    .mob-hide {
        display: none;
    }

    table td::before {
        text-transform: capitalize;
    }
}

footer .form-donat .form-group button.btn-main {
    padding: 30px 80px 30px 80px !important;
    border: 2px solid #ffffff;
}

footer .form-donat .link-box {
    margin-top: 60px;
}

footer .side-menu__sep {
    width: 100%;
}

.top-banner-img {
    background: none !important;
    padding-top: 0px !important;
}

.top-banner-img .container {
    position: relative;
    padding-top: 50px;
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    text-align: left;

}

.desk-hide {
    display: none;
    padding-top: 0px !important;
}

.mob-hide {
    margin-bottom: 137px !important;
}

.hidden-div {
    visibility: hidden !important;
}

.helpline {
    text-align: center;
    color: #fff;
}

.vision-mission .main-about {
    padding-top: 30px;
}

.vision-mission h4 {
    text-align: center;
}

.vision-mission p {
    text-align: center;
}

ul.list-social {
    display: flex;
    gap: 10px;
    margin: 30px;
}
.topbar {
    background: #293b97;
    text-align: center;
}

p.top_text {
    color: #fff;
    font-weight: 400;
    letter-spacing: 0.6px;
    font-size: 16px;
    height: 40px;
    padding: 5px;
}

h3.abt_title {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}
h4.m_sub_title {
    text-align: center;
    margin-bottom: 15px;
    margin-top: 15px;
}
p.m_sub_title {
    padding: 0px 10px 10px 10px;
    text-align: center;
    font-size: 16px;
    margin-bottom: 10px;

}
.list-team-box {
    background: #f1f1f1;
    position: relative;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 26px;
}
h5.name {
    text-transform: capitalize;
    font-weight: bold;
    line-height: 25px;
    text-align: center;
}
.contact-main {
    margin-top: 25px;
}
h4.c_title {
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 0.6px;
}
h4.c_main_title {
    font-size: 21px;
    text-align: center;
    line-height: 30px;
    font-weight: 600;
    letter-spacing: 0.6px;
}
p.c_add {
    margin-top: 24px;
    color: #000;
    line-height: 25px;
    text-align: justify;
}
.social_icon {
    padding: 40px 0px 50px 30px;
}
i#s_icon {
    margin: 5px;
}
h4.c_title_talks {
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 0.6px;
}
form.form-submit.contact-form.wpcf7-form {
    padding: 10px;
    margin-top: -35px;
}
iframe.map {
    height: 400px;
}