@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 200;
    font-display: fallback;
    src: url(../fonts/Montserrat-ExtraLight.woff2) format('woff2'), url(../fonts/Montserrat-ExtraLight.woff) format('woff');
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    font-display: fallback;
    src: url(../fonts/Montserrat-Light.woff2) format('woff2'), url(../fonts/Montserrat-Light.woff) format('woff');
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: normal; /*400*/
    font-display: fallback;
    src: url(../fonts/Montserrat-Regular.woff2) format('woff2'), url(../fonts/Montserrat-Regular.woff) format('woff');
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-display: fallback;
    src: url(../fonts/Montserrat-Bold.woff2) format('woff2'), url(../fonts/Montserrat-Bold.woff) format('woff');
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 900;
    font-display: fallback;
    src: url(../fonts/Montserrat-ExtraBold.woff2) format('woff2'), url(../fonts/Montserrat-ExtraBold.woff) format('woff');
}

@font-face {
    font-family: 'Impact';
    font-style: normal;
    font-weight: 700;
    font-display: fallback;
    src: url(../fonts/Impact.woff2) format('woff2'), url(../fonts/Impact.woff) format('woff');
}

body {
    color: #373737;
    background: #fff;
    font-family: Montserrat, "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6em;
    -webkit-font-variant-ligatures: none;
    font-variant-ligatures: none;
    /*overflow-anchor: none;*/
}
@media (max-width: 991px) {
    body {
        font-size: 17px;
    }
}

a{
    color: #1b9581;
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover, a:focus{
    color: #295f5c;
    text-decoration: none;
}

.inline-block{
    display: inline-block;
}



/** WRAP **/
#wrap{
    position: relative;
    padding-top: 0px;
    overflow: hidden;
}
@media (max-width: 1199px) {
    #wrap{
        padding-top: 0px;
    }
}

/** HEADER **/
#header{
    background: #f9f9f9;
    background: none;
    margin: 0px;
    font-size: 0;
    line-height: 0;
    position: relative;
}
#header:before,
#header:after{
    content: " ";
    display: table;
    clear: both;
}
#header .left-logo {
    display: inline-block;
    margin: 0px;
    padding: 0px;
    font-size: 0px;
    line-height: 0px;
    font-weight: normal;
    
}
#header .container-fluid .left-logo {
    margin-left: 30px;
}
#header .left-logo > img {
    height: 100px;
    float: left;
}


#header .parts-container {
    float: right;
    margin-right: 30px;
    margin-top: 10px;
    margin-bottom: 25px;
    position: relative;
    z-index: 4;
}
#header .parts-container .lang-box {
    float: left;
    margin: 0px;
    position: relative
}
#header .parts-container .lang-box a {
    display: inline-block;
}
#header .parts-container .lang-box a:not(:first-child){
    margin-left: 20px;
}
#header .parts-container .lang-box .txt-box {
    display: inline-block;
    width: 40px;
    padding: 10px 0px;
    text-decoration: none;
    color: #9d9fa2;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    text-transform: capitalize;
    float: left;
    text-align: center;
    transition: color 0.3s ease;
}
#header .parts-container .lang-box a.active .txt-box,
#header .parts-container .lang-box a:hover .txt-box,
#header .parts-container .lang-box a:focus .txt-box {
    text-decoration: none;
    color: #000000;
}
#header .parts-container .lang-box .img-box{
    display: inline-block;
    padding: 0px 0px;
    font-size: 0;
    line-height: 0;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}
#header .parts-container .lang-box .img-box img{
    height: 30px;
}
#header .parts-container .lang-box a.active .img-box,
#header .parts-container .lang-box a:hover .img-box,
#header .parts-container .lang-box a:focus .img-box{
    opacity: 1;
}
@media (max-width: 991px){
    #header .container-fluid .left-logo {
        margin-left: 15px;
    }
    #header .left-logo > img {
        height: 100px
    }
    #header .parts-container {
        margin-right: 15px;
        margin-top: 20px;
    }
}
@media (max-width: 767px){
}
 
#header.skew-left,
#header.skew-right{
    position: relative;
    background: #f9f9f9;
    padding-top: 30px;
    padding-bottom: 60px;
    overflow: hidden;
}
#header.skew-left::after,
#header.skew-right::after{
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 100px;
    -webkit-backface-visibility: hidden;
    background: #ffffff;
}
#header.skew-left::after{
    -webkit-transform: skewY(2deg);
    -moz-transform: skewY(2deg);
    -ms-transform: skewY(2deg);
    -o-transform: skewY(2deg);
    transform: skewY(2deg);
}
#header.skew-right::after{
    -webkit-transform: skewY(-2deg);
    -moz-transform: skewY(-2deg);
    -ms-transform: skewY(-2deg);
    -o-transform: skewY(-2deg);
    transform: skewY(-2deg);
}
@media (max-width: 1199px){
    #header.skew-left,
    #header.skew-right{
        padding-top: 10px;
        padding-bottom: 50px;
    }
    #header.skew-left::after,
    #header.skew-right::after{
        bottom: -40px;
        height: 80px;
    }
    #header.skew-left::after{
        -webkit-transform: skewY(3deg);
        -moz-transform: skewY(3deg);
        -ms-transform: skewY(3deg);
        -o-transform: skewY(3deg);
        transform: skewY(3deg);
    }
    #header.skew-right::after{
        -webkit-transform: skewY(-3deg);
        -moz-transform: skewY(-3deg);
        -ms-transform: skewY(-3deg);
        -o-transform: skewY(-3deg);
        transform: skewY(-3deg);
    }
}
@media (max-width: 991px){
    #header.skew-left::after{
        -webkit-transform: skewY(4deg);
        -moz-transform: skewY(4deg);
        -ms-transform: skewY(4deg);
        -o-transform: skewY(4deg);
        transform: skewY(4deg);
    }
    #header.skew-right::after{
        -webkit-transform: skewY(-4deg);
        -moz-transform: skewY(-4deg);
        -ms-transform: skewY(-4deg);
        -o-transform: skewY(-4deg);
        transform: skewY(-4deg);
    }
}

/** HEADER END **/

.subheader-container{
    margin: 0 0 40px;
}

/** CONTENT **/

.nav-label-2{
    margin: 60px 0px 30px;
    font-weight: 300;
    font-size: 28px;
    line-height: 34px;
    text-transform: uppercase;
    letter-spacing: 0.015em;
}
.nav-label-2:first-child{
    margin-top: 0px;
}
.nav-label-3{
    margin: 60px 0px 30px;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #8e8e8e;
}
.nav-label-3:first-child{
    margin-top: 0px;
}
@media (max-width: 991px){
    .nav-label-2{
        font-size: 24px;
        line-height: 30px;
        margin: 30px 0px 15px;
    }
    .nav-label-2:first-child{
        margin-top: 0px;
    }
    .nav-label-3{
        font-size: 16px;
        line-height: 20px;
        margin: 30px 0px 15px;
    }
    .nav-label-3:first-child{
        margin-top: 0px;
    }
}
@media (max-width: 767px){
    .nav-label-2{
        font-size: 20px;
        line-height: 24px;
    }
    .nav-label-3{
        font-size: 14px;
        line-height: 18px;
    }
}

/* content */
.content-container{
}
.content-container:first-child{
    margin-top: 60px;
}
.content-container:not(:last-child){
    margin-bottom: 60px;
}
.content-container .description{
}
.content-container .description:not(last-child){
    margin-bottom: 60px;
}
.content-container .description p:last-child{
    margin-bottom: 0px;
}
@media (max-width: 991px){
    .content-container:not(:last-child){
        margin-bottom: 30px;
    }
}

.media-embed-container{
    max-width: 80%;
    background: #ffffff;
    margin: 0px auto 15px;
    text-align: center;
    font-size: 0;
    line-height: 0;
}
.media-embed-container .iframely-embed{
    max-width: 100% !important;
}
.media-embed-container iframe{
    margin: 0px !important;
    max-width: 100% !important;
    display: inline-block !important;
}
@media (max-width: 767px){
    .media-embed-container{
        max-width: none;
        margin: 0px -15px 15px;
    }
    .media-embed-container iframe{
        max-width: 100% !important;
    }
}

.content-container .description .embed-responsive,
.content-container .description img,
.show-description .embed-responsive,
.show-description img{
    max-width: 100%;
    background: #e5e5e5;
    margin: 0px auto 30px;
}
.content-container .description .embed-responsive-5by5,
.show-description .embed-responsive-5by5 {
    width: 100%;
    padding-bottom: 100%;
}
.content-container .description .embed-responsive-16by9,
.show-description .embed-responsive-16by9 {
    width: 100%;
    padding-bottom: 56.25%;
}
.content-container .description .embed-responsive-4by3,
.show-description .embed-responsive-4by3 {
    width: 100%;
    padding-bottom: 75%;
}
.content-container .embed-responsive-facebook-portrait,
.show-description .embed-responsive-facebook-portrait {
    width: 100%;
    padding-bottom: 178.6%;
}
.content-container .embed-responsive-facebook-post,
.show-description .embed-responsive-facebook-post {
    width: 100%;
    padding-bottom: 66.57%;
}
@media (max-width: 767px){
    .content-container .description .embed-responsive,
    .content-container .description img,
    .show-description .embed-responsive,
    .show-description img{
        max-width: 100%;
    }
}
@media (min-width: 768px){
    .content-container .description .embed-responsive-5by5,
    .show-description .embed-responsive-5by5 {
        width: 80%;
        padding-bottom: 80%;
    }
    .content-container .description .embed-responsive-16by9,
    .show-description .embed-responsive-16by9 {
        width: 80%;
        padding-bottom: 45%;
    }
    .content-container .description .embed-responsive-4by3,
    .show-description .embed-responsive-4by3 {
        width: 80%;
        padding-bottom: 60%;
    }
    .content-container .embed-responsive-facebook-portrait,
    .show-description .embed-responsive-facebook-portrait {
        width: 50%;
        padding-bottom: 89%;
    }
    .content-container .embed-responsive-facebook-post,
    .show-description .embed-responsive-facebook-post {
        width: 80%;
        padding-bottom: 53.26%;
    }
}

.content-container .carousel-box{
    margin-top: 60px;
}
.content-container .carousel-box:not(:last-child){
    margin-bottom: 60px;
}
.content-container .carousel-content .carousel-indicators{
    position: absolute;
    top: 15px;
    left: 15px;
    bottom: auto;
    z-index: 2;
    margin: 0px;
    padding: 0px;
    text-align: left;
    line-height:0;
    font-size:0;
    overflow:hidden;
    width: auto;
    padding: 10px 0px;
    max-width: 100%;
}
.content-container .carousel-content .carousel-indicators li{
    display: inline-block;
    padding: 0px;
    margin: 0px 9px 10px;
    border: 0px;
    width: 20px;
    height: 20px;
    background: #fff;
    position: relative;
    border-radius: 3px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
}
.content-container .carousel-content .carousel-indicators li.active{
    margin: 0px 9px 10px;
    width: 20px;
    height: 20px;
    background: #f7bd87;
}
/*@media (max-width: 1439px) {
}
@media (max-width: 1199px){
}*/
@media (max-width: 991px){
    
}
@media (max-width: 767px){
    
}
/* content end */

/* UL 
.content-container ul{
    list-style: none;
    padding-left: 0px;
}
.content-container ul li{
    position: relative;
    padding-left: 35px;
    margin-bottom: 5px;
    line-height: 25px;
}
.content-container ul li:before{
    display: inline-block;
    content: "";
    position: absolute;
    top: 8px;
    left: 14px;
    background: #ae8b00;
    width: 8px;
    height: 8px;
    border-radius: 8px;
}
@media (max-width: 991px) {
    .content-container ul li{
        padding-left: 20px;
    }
    .content-container ul li:before{
        top: 9px;
        width: 6px;
        height: 6px;
        border-radius: 6px;
    }
}
/* UL END */

/* CKEDITOR */
.text-colored{
    color: #ae8b00;
}
.formatted-img-subtitle-text{
    text-align: center;
    font-size: 90%;
    font-weight: 700;
    margin-top: -10px;
}
/* CKEDITOR END */

/* files container */
.show-more-files-container{
    margin: 0px;
}
.show-more-files-container:not(:last-child){
    margin-bottom: 60px;
}
.show-more-files-container .file-box{
    overflow: hidden;
}
.show-more-files-container .file-box .icon{
    float: left;
    font-size: 1.2em;
    width: 20px;
    height: 30px;
    line-height: 30px;
    margin-right: 10px;
}
.show-more-files-container .file-box .icon.bi-file-word-o{ color: #248bd0; }
.show-more-files-container .file-box .icon.bi-file-excel-o{ color: #3aa595; }
.show-more-files-container .file-box .icon.bi-file-pdf-o{ color: #eb3d3e; }
.show-more-files-container .file-box .icon.bi-file-archive-o{ color: #1695c0; }
.show-more-files-container .file-box .icon.bi-file-text-o{ color: #248bd0; }
.show-more-files-container .file-box .icon.bi-file-powerpoint-o{ color: #eb3d3e; }
.show-more-files-container .file-box .icon.bi-file-image-o{ color: #8c5fd6; }
.show-more-files-container .file-box .icon.bi-file-movie-o{ color: #8c5fd6; }
.show-more-files-container .file-box .text{
    line-height: 30px;
    overflow: hidden;
    display: block;
}
/* files container end */

/* images container */
.show-more-images-container{
    margin-top: -15px;
    margin-bottom: -15px;
}
.show-more-images-box{
    margin: 15px auto 15px;
}
/* images container end */

/* youtube container */
.show-more-youtube-videos-box{
    margin: 0px auto 30px;
    width: 100%;
}
@media (max-width: 767px){
    .show-more-youtube-videos-box{
        width: 100%;
    }
}
.show-more-youtube-videos-box .img-box{
    position: relative;
    cursor: pointer;
    display: block;
}
.show-more-youtube-videos-box .img-box .bi {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    font-size: 80px;
    color: #ff0000;
    margin-top: -40px;
    margin-left: -40px;
}
.show-more-youtube-videos-box .img-box img{
    width: 100%;
    background: #eaeaea;
}
.show-more-youtube-videos-box .subtitle{
    font-size: 90%;
    margin: 5px 0px 0px;
}
/* youtube container end */

/*@media (max-width: 1439px) {
}
@media (max-width: 1199px){
}*/
@media (max-width: 991px){
    
}
@media (max-width: 767px){
    
}

/* show media box */
.show-media-box{
    display: block;
    margin-bottom: 30px;
}
.show-media-box,
a.show-media-box:focus,
a.show-media-box:hover{
    text-decoration: none;
    color: #373737;
}
.show-media-box .title{
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    margin: 10px 0px 0px;
}
.show-media-box .image-box{
    position: relative;
    display: block;
}
.show-media-box .image-box img{
    display: block;
    width: 100%;
    max-width: 100%;
    background: #f7f7f7;
}
.show-media-box .image-box .bi{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    font-size: 60px;
    margin-top: -40px;
    margin-left: -40px;
    color: #d2d2d2;
    color: rgba(255,255,255,0.8);
}
.show-media-box .subtitle{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
}
@media (max-width: 991px){
    .show-media-box .title{
        font-size: 12px;
        line-height: 15px;
        margin: 5px 0px 0px;
    }
    .show-media-box .subtitle{
        font-size: 12px;
        line-height: 16px;
        padding: 8px 10px;
    }
}
@media (max-width: 767px) {
    .show-media-container.space-xs{
        margin-bottom: -14px;
    }
    .space-xs > .row .show-media-box{
        margin-bottom: 14px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .show-media-container.space-sm{
        margin-bottom: -20px;
    }
    .space-sm > .row .show-media-box{
        margin-bottom: 20px;
    }
}
@media (min-width: 1200px) and (max-width: 1439px) {
    .show-media-container.space-lg{
        margin-bottom: -30px;
    }
    .space-lg > .row .show-media-box{
        margin-bottom: 30px;
    }
}
@media (min-width: 1440px){
    .show-media-container.space-xl{
        margin-bottom: -90px;
    }
    .space-xl > .row .show-media-box{
        margin-bottom: 90px;
    }
}
/* show media box end */

/* nav-label start */
.nav-label-container{
    margin: 100px 0px 40px;
}
.nav-label-container.mt-0{
    margin-top: 0;
}
.nav-label{
    margin: 100px 0px 40px;
    font-size: 70px;
    line-height: 1.2em;
    font-weight: 900;
    color: #cbcbcb;
}
.nav-label-container .nav-label{
    margin: 0px;
}
@media (max-width: 1199px){
    .nav-label-container{
        margin-bottom: 30px;
    }
    .nav-label{
        margin: 60px 0px 30px;
        font-size: 60px;
    }
}
@media (max-width: 991px){
    .nav-label-container{
        margin-bottom: 30px;
    }
    .nav-label{
        margin: 60px 0px 30px;
        font-size: 56px;
    }
}
@media (max-width: 767px){
    .nav-label-container{
        margin-top: 40px;
        margin-bottom: 20px;
    }
    .nav-label{
        margin: 40px 0px 20px;
        font-size: 36px;
    }
}
@media (max-width: 480px){
    .nav-label{
        font-size: 26px;
    }
}
/* nav-label end */





/** CONTENT END **/

/** FOOTER **/

/* footer legalul */
html,body {
    height: 100%;
}
#wrap {
    min-height: 100%;
    height: auto;
    margin: 0px auto -250px;
    padding-bottom: 250px;
}
#footer {
    height: 150px;
}
@media (max-width: 991px){
    /*#wrap {
        min-height: 0;
        margin: 0 auto 0px;
        padding-bottom: 0px;
    }
    #footer {
        height: auto;
    }*/
    #wrap {
        min-height: 100%;
        height: auto;
        margin: 0px auto -200px;
        padding-bottom: 200px;
    }
    #footer {
        height: 100px;
    }
}
/* footer legalul end*/

#footer{
    background: #1b9581;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    margin-top: 100px;
    position: relative;
    padding-top: 40px;
    padding-bottom: 60px;
}
#footer::before{
    content: '';
    position: absolute;
    z-index: 0;
    top: -40px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 100px;
    -webkit-backface-visibility: hidden;
    background: #1b9581;
    -webkit-transform: skewY(-2deg);
    -moz-transform: skewY(-2deg);
    -ms-transform: skewY(-2deg);
    -o-transform: skewY(-2deg);
    transform: skewY(-2deg);
}

#footer a{
    color: #231f20;
    text-decoration: none;
    transition: color 0.3s ease;
}
#footer a:focus,
#footer a:hover{
    color: #ae8b00;
    text-decoration: none;
}

#footer .logo-container{
    font-size: 0px;
    line-height: 0px;
    text-align: center;
}
#footer .logo-box{
    float: left;
    margin: 0 30px;
    height: 50px;
}
#footer .logo-box a{
    display: inline-block;
}
#footer .logo-box img{
    height: 50px;
}
#footer .logo-box.bigger img{
    height: 70px;
    margin-top: -10px;
}

@media (max-width: 1199px){
    #footer::before{
        -webkit-transform: skewY(-3deg);
        -moz-transform: skewY(-3deg);
        -ms-transform: skewY(-3deg);
        -o-transform: skewY(-3deg);
        transform: skewY(-3deg);
    }
}
@media (max-width: 991px){
    #footer{
        padding-top: 20px;
        padding-bottom: 40px;
    }
    #footer::before{
        -webkit-transform: skewY(-4deg);
        -moz-transform: skewY(-4deg);
        -ms-transform: skewY(-4deg);
        -o-transform: skewY(-4deg);
        transform: skewY(-4deg);
    }
    #footer .logo-box{
        text-align: center;
        margin: 0;
        height: auto;
    }
    #footer .logo-box img{
        height: 40px;
    }
    #footer .logo-box.bigger img{
        height: 50px;
        margin-top: -5px;
    }
}
@media (max-width: 767px){
    #footer .logo-box.bigger img,
    #footer .logo-box img{
        height: auto;
        max-height: 50px;
        max-width: 100%;
        margin-top: 0px;
    }
}
/** FOOTER END **/