:root {
    --primary-color: #0B4422;
    --primary-rgb: rgb(11, 68, 34);
    --secondary-color: #269B56; 
    --secondary-rgb: rgb(38, 155, 86);
    --third-color: #0B5869;
    --third-rgb: rgb(11, 88, 105);
}

body, html, input, select, textarea, h1, h2, h3, h4 ,h5, p, span {
    font-family: 'Baloo 2', cursive!important;
}

body, html {
    background-color: #F5EFE4;
}

.grecaptcha-badge {
    display: none!important;
}

img, iframe {
    max-width: 100%;
    max-height: 100%;
}

a:hover {
    text-decoration: none!important;
}

button {
    border: 0;
    background: transparent;
}

.hideOverflowOnMobile {
    overflow: hidden;
}

#scrollUp {
    bottom: 20px;
    right: 15px;
    background: #0B4422 none repeat scroll 0 0;
}

.grow {
    cursor: pointer;
    transition: transform 0.35s;
}

.grow:hover {
    transform: scale(1.1);
}

.mg-auto {
    margin: auto;
}

.checkbox_container {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 12px;
    line-height: 20px;
}

/* Hide the browser's default checkbox */
.checkbox_container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkbox_checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    border-radius: 3px;
    background-color: #fff;
}

/* When the checkbox is checked, add a blue background */
.checkbox_container input:checked ~ .checkbox_checkmark {
    background-color: #046CFC;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox_checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox_container input:checked ~ .checkbox_checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox_container .checkbox_checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.bg_outer {
    overflow: hidden;
    background-color: #F5EFE4;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mobile_sidebar {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
}

#mobile_sidebar {
    width: 350px;
    position: fixed;
    top: 0;
    right: -350px;
    height: 100vh;
    z-index: 1051;
    background: #F5EFE4;
    color: #F5EFE4;
    transition: all 0.3s;
    overflow-y: scroll;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
    box-shadow: -5px 1px 10px 0px rgba(0,0,0,0.31);
    -webkit-box-shadow: -5px 1px 10px 0px rgba(0,0,0,0.31);
    -moz-box-shadow: -5px 1px 10px 0px rgba(0,0,0,0.31);
    padding: 0;
}

#mobile_sidebar.active {
    right: 0;
}

#sidebar_dismiss {
/*    width: 25px;*/
/*    height: 25px;*/
    line-height: 25px;
    font-size: 20px;
    text-align: center;
/*    background: #269B56;*/
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    border-radius: 15px;
    color: #000;
}

#sidebar_dismiss:hover {
    color: #269B56;
}

.sidebar_overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    z-index: 998;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.sidebar_overlay.active {
    display: block;
    opacity: 1;
}

.mobile_topnav {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.mobile_nav_logo {
    width: 100px;
}

.expand_nav_button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    padding: 8px;
    border: 1px solid #0B4422;
    border-radius: 50%;
}

.expand_nav_button .sidebar_lines {
    width: 100%;
    display: block;
}

.expand_nav_button .sidebar_lines p {
    width: 75%;
    height: 2px;
    display: block;
    margin-right: 0;
    margin-left: auto;
}

.mobile_sidebar_outer.soft_top_nav {
    position: absolute;
    z-index: 100;
}

.mobile_sidebar_outer .expand_nav_button .sidebar_lines p {
    background-color: #0B4422;
}

.expand_nav_button .sidebar_lines p:first-child {
    margin-bottom: 4px;
    width: 100%;
}

.expand_nav_button .sidebar_lines p:nth-child(2) {
    margin-top: 4px;
    margin-bottom: 4px;
    width: 70%;
}

.expand_nav_button .sidebar_lines p:last-child {
    margin-top: 4px;
    width: 100%;
}

.expand_nav_button:hover .sidebar_lines p:first-child, .expand_nav_button:hover .sidebar_lines p:last-child {
    animation: sidebar_move_3 1s infinite linear;
}

.expand_nav_button:hover .sidebar_lines p:nth-child(2) {
    animation: sidebar_move_2 1s infinite linear;
}

@keyframes sidebar_move_2 {
    0%   {width: 70%} 20%  {width: 100%} 40%  {width: 0%} 60%  {width: 26%} 80%  {width: 52%} 100% {width: 80%}
}

@keyframes sidebar_move_3 {
    0%   {width: 100%} 25%  {width: 0%} 50%  {width: 30%} 75%  {width: 65%} 100% {width: 100%}
}

.sidebar_outer {
    padding-left: 15px;
    padding-right: 15px;
}

.sidebar_outer .sidebar_header {
    padding: 30px 0px 30px 0px;
}

.offcanvas_main_menu_outer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.offcanvas_main_menu {
    padding-top: 80px;
    padding-bottom: 50px;
    width: 100%;
}

.offcanvas_main_menu li a {
    border: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 30px;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1;
    text-transform: capitalize;
    position: relative;
    width: calc(100% - 25px);
    font-family: 'Lato', sans-serif!important;
}

.offcanvas_main_menu li span.menu-expand {
    right: 30px;
    top: 8px;
}

.offcanvas_main_menu li {
    color: #000;
    cursor: pointer;
}

.offcanvas_main_menu li a i {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -20px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    line-height: 1;
}

.offcanvas_main_menu li:hover, .offcanvas_main_menu li.active {
    background-color: #0B4422;
}

.offcanvas_main_menu li:hover > a, .offcanvas_main_menu li:hover > span,
.offcanvas_main_menu li.active > a, .offcanvas_main_menu li.active > span {
    color: #F5EFE4;
}

.offcanvas_main_menu li:hover > span.menu-expand {
    color: #0B4422;
}

.offcanvas_main_menu li:hover > a i,
.offcanvas_main_menu li.active > a i {
    opacity: 1;
    visibility: visible;
}

.offcanvas_main_menu li ul {
    background-color: #F5EFE4;
}

.offcanvas_main_menu > li.menu-item-has-children {
    background-color: transparent;
}

.offcanvas_main_menu > li.menu-item-has-children > a {
    color: #0B4422;
    font-weight: bold;
    font-size: 21px;
}

.offcanvas_main_menu .sub-menu .sub-menu {
    padding-top: 10px;
    padding-bottom: 10px;
}

.offcanvas_main_menu li ul.sub-menu {
    padding-left: 0;
}

.offcanvas_main_menu li ul.sub-menu li > a {
    padding-left: 50px;
}

.offcanvas_main_menu li ul.sub-menu li ul.sub-menu li > a {
    padding-left: 70px;
}

.mobile_sidebar_outer .header_container {
    padding-top: 20px;
    padding-bottom: 20px;
/*    background-color: rgba(255, 255, 255, 0.5);*/
/*    background: rgb(160,196,192);*/
/*    background: -moz-linear-gradient(90deg, rgba(160,196,192,0.75) 0%, rgba(184,239,174,0.75) 25%, rgba(229,228,190,0.75) 66%, rgba(200,194,193,0.75) 88%);*/
/*    background: -webkit-linear-gradient(90deg, rgba(160,196,192,0.75) 0%, rgba(184,239,174,0.75) 25%, rgba(229,228,190,0.75) 66%, rgba(200,194,193,0.75) 88%);*/
/*    background: linear-gradient(90deg, rgba(160,196,192,0.75) 0%, rgba(184,239,174,0.75) 25%, rgba(229,228,190,0.75) 66%, rgba(200,194,193,0.75) 88%);*/
/*    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a0c4c0",endColorstr="#c8c2c1",GradientType=1);*/
    z-index: 1050;
}

.mobile_sidebar_outer.soft_top_nav .header_container {
    background: transparent;
}

.footer_section .footer_logo {
    max-width: 200px;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
}

.footer_section .footer_divider {
    background-color: #0B4422;
    width: 100%;
    height: 2px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.footer_section .footer_section_top .secondary_title, .footer_section .footer_section_top .primary_description {
    text-align: right;
}

.footer_section .footer_section_bottom h2 {
    font-weight: bold;
    margin-bottom: 15px;
}

.footer_section .footer_section_bottom a:hover {
    color: #269B56;
}   

.footer_section .footer_copyright {
    font-size: 12px;
    line-height: 18px;
    color: #0B4422;
    margin: 50px auto auto auto;
    text-align: center;
}

.footer_section .footer_nav[attr-id="1"] {
    text-align: left;
}
.footer_section .footer_nav[attr-id="2"] {
    text-align: center;
}
.footer_section .footer_nav[attr-id="3"] {
    text-align: right;
}

.footer_section .footer_icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 15px;
}

.footer_section .footer_icons a {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0B4422;
    border: 1px solid #0B4422;
    border-radius: 50%;
    color: #fff;
}

.footer_section .footer_icons a:hover {
    background-color: transparent;
    color: #0B4422;
}

.footer_section .footer_icons a:not(:first-child) {
    margin-left: 10px;
}

.footer_section .footer_icons a i {
    font-size: 14px;
    line-height: 1;
}

#fp-nav ul li a span {
    background: #0B4422!important;
    border: 1px solid #269B56!important;
}

.primary_title {
    font-size: 50px;
    line-height: 56px;
    font-weight: bold;
    color: #0B4422;
    margin: auto 0;
}

.primary_title span {
    font-weight: bold;
    color: #269B56;
}

.primary_description {
    font-size: 16px;
    line-height: 22px;
    font-weight: normal;
    color: #0B4422;
    margin: auto 0;
}

.primary_description span {
    font-weight: bold;
    color: #269B56;
}

.primary_description a:hover {
    color: #269B56;
}

.secondary_title {
    font-size: 35px;
    line-height: 41px;
    font-weight: bold;
    color: #0B4422;
    margin: auto 0;
}

.secondary_title span {
    font-weight: bold;
    color: #269B56;
}

.secondary_description {
    font-size: 14px;
    line-height: 20px;
    font-weight: normal;
    color: #0B4422;
    margin: auto 0;
}

.gradient_button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.full_width {
    width: 100%;
}

.full_height {
    height: 100%;
}

.flex_left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.flex_center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex_right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.fp-scroll-down-arrow {
    left: calc(50% - 47px);
    top: calc(100% - 120px);
    cursor: pointer;
    animation: arrow .5s infinite ease-out alternate;
    position: absolute;
    z-index: 999999;
    transform: rotate(-90deg)
}

.fp-scroll-arrow {
    display: block;
    width: 1.5em;
    height: .85em;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 60px;
}

.fp-arrow-sliding .fp-arrow {
    width: .4em;
    height: .4em;
    border: .1em solid;
    border-color: #fff transparent transparent #fff;
    transform: rotate(-45deg)
}

.fp-scroll-arrow:hover,.fp-arrow:hover {
    cursor: pointer
}

.fp-scroll-arrow:hover .fp-arrow {
    border-color: #0B4422 transparent transparent #0B4422;
}

.fp-arrow-sliding {
    opacity: 0;
    position: absolute;
    -webkit-animation: slide 2s linear infinite;
    animation: slide 2s linear infinite
}

.fp-delay-1 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s
}

@-webkit-keyframes slide {
    0% {
        opacity: 0;
        transform: translateX(.75em)
    }

    20% {
        opacity: 1;
        transform: translateX(.45em)
    }

    80% {
        opacity: 1;
        transform: translateX(-.45em)
    }

    to {
        opacity: 0;
        transform: translateX(-.75em)
    }
}

@keyframes slide {
    0% {
        opacity: 0;
        transform: translateX(.75em)
    }

    20% {
        opacity: 1;
        transform: translateX(.45em)
    }

    80% {
        opacity: 1;
        transform: translateX(-.45em)
    }

    to {
        opacity: 0;
        transform: translateX(-.75em)
    }
}

.polygonizr_default, .polygonizr_spiral {
    opacity: 0.5;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sweet_account.sweet_video_play {
    padding: 0!important;
    background-color: transparent!important;
    width: 750px!important;
    max-width: 100%!important;
}

.sweet_account.sweet_video_play .video_play_frame {
    position: relative;
    overflow: hidden;
}

.sweet_account.sweet_video_play .video_play_loading {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    line-height: 1;
    color: #0B4422;
}

.sweet_account.sweet_video_play iframe {
    position: relative;
    z-index: 1;
    width: 100%;
}

.sweet_account.sweet_video_play .video_play_frame img {
    position: relative;
    z-index: 1;
    width: 100%;
}

.sweet_account.sweet_video_play .video_play_frame img.fixed_height {
    width: auto;
}

.sweet_account .popup_close {
    position: absolute;
    right: 0;
    top: 0;
    background-color: #0B4422;
    border: 1px solid #0B4422;
    z-index: 2;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    line-height: 1;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    border-radius: 0 0 0 5px;
    animation: 1s popup_fade;
    animation-fill-mode: forwards;
    visibility: hidden;
}

@keyframes popup_fade {
    99% {
        visibility: hidden;
    }
    100% {
        visibility: visible;
    }
}

.sweet_account .popup_close:hover {
    background-color: transparent;
    color: #fff;
}

.swal2-container.swal2-backdrop-show {
    background-color: rgba(0, 0, 0, 0.6)!important;
}

.general_background {
    background: rgb(160,196,192);
    background: -moz-linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    background: -webkit-linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    background: linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a0c4c0",endColorstr="#c8c2c1",GradientType=1);
}

.general_top_arrow {
    background: rgb(11,88,105);
    background: -moz-linear-gradient(180deg, rgba(11,88,105,1) 0%, rgba(63,164,41,0.6) 70%, rgba(63,164,41,0) 100%);
    background: -webkit-linear-gradient(180deg, rgba(11,88,105,1) 0%, rgba(63,164,41,0.6) 70%, rgba(63,164,41,0) 100%);
    background: linear-gradient(180deg, rgba(11,88,105,1) 0%, rgba(63,164,41,0.6) 70%, rgba(63,164,41,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b5869",endColorstr="#3fa429",GradientType=1);
    height: 150px;
    width: 5px;
    position: absolute;
    left: 100px;
    bottom: 0%;
    border-radius: 5px 5px 0 0;
    opacity: 0;
}

.full_background_image {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

@keyframes top_arrow {
    0% {
        bottom: 0%;
        opacity: 1;
    }
    100% {
        bottom: 100%;
        opacity: 0;
    }
}

.general_right_arrow {
    background: rgb(11,88,105);
    background: -moz-linear-gradient(270deg, rgba(11,88,105,1) 0%, rgba(63,164,41,0.6) 70%, rgba(63,164,41,0) 100%);
    background: -webkit-linear-gradient(270deg, rgba(11,88,105,1) 0%, rgba(63,164,41,0.6) 70%, rgba(63,164,41,0) 100%);
    background: linear-gradient(270deg, rgba(11,88,105,1) 0%, rgba(63,164,41,0.6) 70%, rgba(63,164,41,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b5869",endColorstr="#3fa429",GradientType=1);
    height: 5px;
    width: 150px;
    position: absolute;
    top: 100px;
    left: 0%;
    border-radius: 0 5px 5px 0;
    opacity: 0;
}

@keyframes right_arrow {
    0% {
        left: 0;
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

.general_left_arrow {
    background: rgb(11,88,105);
    background: -moz-linear-gradient(90deg, rgba(11,88,105,1) 0%, rgba(63,164,41,0.6) 70%, rgba(63,164,41,0) 100%);
    background: -webkit-linear-gradient(90deg, rgba(11,88,105,1) 0%, rgba(63,164,41,0.6) 70%, rgba(63,164,41,0) 100%);
    background: linear-gradient(90deg, rgba(11,88,105,1) 0%, rgba(63,164,41,0.6) 70%, rgba(63,164,41,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b5869",endColorstr="#3fa429",GradientType=1);
    height: 5px;
    width: 150px;
    position: absolute;
    bottom: 100px;
    right: 0%;
    border-radius: 0 5px 5px 0;
    opacity: 0;
}

@keyframes left_arrow {
    0% {
        right: 0;
        opacity: 1;
    }
    100% {
        right: 100%;
        opacity: 0;
    }
}

.video_popup.video_button {
    cursor: pointer;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video_popup.video_button:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.video_popup.video_button .video_popup_play {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video_popup.video_button .video_popup_play i {
    font-size: 65px;
    line-height: 1;
    color: #fff;
}

.video_popup.video_button :hover .video_popup_play i {
    color: #0B4422;
}

.owl-nav {
    width: 75px;
    display: flex;
    justify-content: space-between;
}

.owl-nav .owl-prev, .owl-nav .owl-next {
    color: #0B4422;
    border: 1px solid #0B4422;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    line-height: 1;
}

.owl-nav .owl-prev.disabled, .owl-nav .owl-next.disabled {
    border-color: transparent;
    opacity: 0.5;
    cursor: not-allowed;
}

.general_image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.general_image img {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
}

.general_background_image {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.highlight_background {
    background: rgb(11,88,105);
    background: -moz-linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 80%, rgba(63,164,41,0) 100%);
    background: -webkit-linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 80%, rgba(63,164,41,0) 100%);
    background: linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 80%, rgba(63,164,41,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b5869",endColorstr="#3fa429",GradientType=1);
    padding: 15px 25px;
}

.no_overflow, .content_overflow.lock_overflow  {
    overflow: hidden;
}

.form-group label {
    color: #0B4422;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 8px;
}

.form-group input, .form-group textarea, .form-group select {
    background-color: transparent!important;
    border: 0!important;
    border-bottom: 2px solid #0B4422!important;
    border-radius: 0;
    font-size: 14px;
    line-height: 20px;
    outline: 0!important;
    box-shadow: initial!important;
    padding: 5px 10px!important;
}

.form-group button {
    border: 1px solid #0B4422;
    border-radius: 25px;
    padding: 5px 25px;
    text-transform: uppercase;
    color: #0B4422;
    font-size: 14px;
    line-height: 20px;
    margin-top: 30px;
}

.form-group button:hover {
    background-color: #0B4422;
    color: #fff;
}

.sweet_account.success.swal2-popup {
    background: #0B4422!important;
    border-radius: 25px!important;
    overflow: hidden;
}

.sweet_account.success .swal2-html-container {
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 20px;
}

.sweet_account.success .swal2-confirm {
    background-color: #269B56!important;
    border: 1px solid #fff!important;
    border-radius: 25px!important;
    padding: 5px 50px!important;
    font-size: 14px!important;
    line-height: 20px!important;
}

.sweet_account.success .swal2-confirm:hover {
    background-color: transparent!important;
    color: #269B56!important;
}

.general_background_dots {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background-image: url('../img/background_dots.gif');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: cover;
    opacity: 0.75;
}

.logo_dots {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.logo_dots img, .owl-carousel .owl-item .logo_dots img {
    width: 15px;
    padding-top: 2px;
}

.logo_dots2 img {
    width: 10px!important;
    padding-top: 4px!important;
}

.logo_dots3 i {
    font-size: 5px;
    line-height: 24px;
}

.logo_dots .logo_description {
    width: calc(100% - 15px);
    padding-left: 8px;
}

.line_dots {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.line_dots img, .owl-carousel .owl-item .line_dots img {
    width: 50px;
    padding-top: 10px;
    padding-left: 15px;
    padding-right: 5px;
}

.line_dots .logo_description {
    width: calc(100% - 50px);
    padding-left: 8px;
}

.read_more_outer {
    visibility: hidden;
}

.read_more_outer .read_more_content {
    overflow-y: hidden;
    -webkit-transition: max-height 350ms; 
    -moz-transition: max-height 350ms; 
    -ms-transition: max-height 350ms; 
    -o-transition: max-height 350ms; 
    transition: max-height 350ms;
}

.read_more_outer .read_more_child {
    font-size: 10px;
    line-height: 12px;
    text-align: center;
    margin: 5px auto auto auto;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none!important;
    text-transform: uppercase;
    color: #0B4422;
    font-weight: bold;
    display: none;
}

.read_more_outer .read_more_child:hover {
    color: #269B56;
}

.read_more_outer .read_more_child.active {
    display: flex;
}

.read_more_outer .read_more_child i {
    padding-right: 5px;
}

.typeit_content br:last-of-type {
    display: none;
}

.fp-slides .slide .fp-overflow {
    overflow-x: hidden;
}

.edit_page {
    position: absolute;
    right: 15px;
    bottom: 15px;
    z-index: 100;
}

.edit_page a {
    background-color: #000;
    border: 1px solid #000;
    color: #fff;
    border-radius: 50%;
    overflow: hidden;
    font-size: 18px;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px 0 0 3px;
}

.edit_page a:hover {
    background-color: transparent;
    color: #000;
}

.page_loader_outer {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgb(160,196,192);
    background: -moz-linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    background: -webkit-linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    background: linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a0c4c0",endColorstr="#c8c2c1",GradientType=1);
    z-index: 3000;
}
.page_loader_bar {
    width: 10px;
    height: 60px;
    background: #269B56;
    display: inline-block;
    transform-origin: bottom center;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    animation: page_loader 1.2s linear infinite;
    margin-left: 2px;
    margin-right: 2px;
}
.page_loader_bar1 {
    animation-delay: 0.1s;
    transform: scaleY(0.1);
}
.page_loader_bar2 {
    animation-delay: 0.2s;
    transform: scaleY(0.2);
}
.page_loader_bar3 {
    animation-delay: 0.3s;
    transform: scaleY(0.3);
}
.page_loader_bar4 {
    animation-delay: 0.4s;
    transform: scaleY(0.4);
}
.page_loader_bar5 {
    animation-delay: 0.5s;
    transform: scaleY(0.5);
}
.page_loader_bar6 {
    animation-delay: 0.6s;
    transform: scaleY(0.6);
}
.page_loader_bar7 {
    animation-delay: 0.7s;
    transform: scaleY(0.7);
}
.page_loader_bar8 {
    animation-delay: 0.8s;
    transform: scaleY(0.8);
}
@keyframes page_loader {
    0% {
        transform: scaleY(0.1);
        background: ;
    }
    50% {
        transform: scaleY(1);
        background: #0B4422;
    }
    100% {
        transform: scaleY(0.1);
        background: transparent;
    }
}

.home_banner {
    width: 100%;
    height: 100%;
    margin: auto;
}

.home_banner video {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    min-height: 100%;
    min-width: 100%;
}

.home_banner:before {
    content: '';
    pointer-events: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background: rgb(160,196,192);
    background: -moz-linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    background: -webkit-linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    background: linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a0c4c0",endColorstr="#c8c2c1",GradientType=1);
    opacity: 0.85;
    z-index: 1;
}

.home_banner .home_banner_content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    position: relative;
}

.home_banner .home_banner_content .home_banner_center {
    text-align: center;
    margin: auto;
    max-width: 600px;
}

.home_banner .home_banner_content .home_banner_center .primary_title {
    margin-bottom: 30px;
}

.home_banner .home_banner_content .home_banner_center .primary_description {
    margin-bottom: 30px;
}

.home_banner .home_banner_content .home_banner_center .home_banner_tagline .primary_description {
    margin-bottom: 0;
}

.home_banner .home_banner_content .home_banner_center .home_banner_button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 15px;
}

.home_banner .home_banner_content .home_banner_center .home_banner_button a {
    background: rgb(11,88,105);
    background: -moz-linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    background: -webkit-linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    background: linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b5869",endColorstr="#3fa429",GradientType=1);
    border-radius: 25px;
    padding: 5px 25px;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    border: 1px solid #fff;
}

.home_banner .home_banner_content .home_banner_center .home_banner_button a i {
    display: none;
    margin-left: 15px;
}

.home_banner .home_banner_content .home_banner_center .home_banner_button a:hover {
    background: transparent;
    color: #0B5869;
    border-color: #0B5869;
}

.home_banner .home_banner_content .home_banner_center .home_banner_button a:hover i {
    display: block;
}

.home_banner .home_banner_content .home_banner_center .home_banner_button a p {
    margin: auto 0;
}

.home_identity_section .home_banner_line {
    height: 15px;
    margin-bottom: 6px;
    margin-right: 8px;
/*    transition: all 1.5s ease;*/
/*    opacity:1;*/
/*    transform: rotate(0deg);*/
    -webkit-animation: rotating 5s linear infinite;
    animation: rotating 5s linear infinite
}

.home_identity_section .home_identity_content_item .line_dots img {

}


.home_banner_section .home_banner .home_banner_logos {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home_banner_section.active .home_banner_logos {
    animation-duration: 2s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 2s;
    -webkit-animation-fill-mode: forwards;
    animation-name: bounceInDown;
    -webkit-animation-name: bounceInDown;
}

.home_banner_section .home_banner .home_banner_logos img {
    margin: 50px 15px 0 15px;
    width: 100px;
}

.home_banner_section.active .home_banner_logos .home_banner_logo_img {
    width: 120px;
    height: 100px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin: 50px 15px 0 15px;
}
/*.home_banner .home_banner_line.active {
    opacity:1;
    transform:rotate(1800deg);
    transform: rotateY(360deg);
}*/

@-webkit-keyframes rotating {
    0% {
        transform: rotateY(0deg);
    }
    25% {
        transform: rotateY(180deg);
    }
    50% {
        transform: rotateY(360deg);
    }
    75% {
        transform: rotateY(180deg);
    }
    to {
        transform: rotateY(0deg);
    }
}

@keyframes rotating {
    0% {
        transform: rotateY(0deg);
    }
    25% {
        transform: rotateY(180deg);
    }
    50% {
        transform: rotateY(360deg);
    }
    75% {
        transform: rotateY(180deg);
    }
    to {
        transform: rotateY(0deg);
    }
}

/*.home_banner .home_banner_line.home_banner_line_revert {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    margin-left: 8px;
    margin-right: 0px;
}*/

.home_identity_section .home_banner_fonts strong {
    font-size: 150%;
    font-weight: 900;
}

.home_identity_section .home_banner_fonts strong br {
    display: none;
}

.home_banner_section.active .primary_title {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}

.home_banner_section.active .primary_description {
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1.5s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}

.home_banner_section.active .home_banner_button {
    animation-duration: 2s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 2s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}

.home_about_section .primary_title {
    font-size: 100px;
    line-height: 1;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.home_about_section .primary_description {
    text-align: right;
    width: 100%;
/*    max-width: 500px;*/
    max-width: 70%;
    margin: auto 0 auto auto;
}

.home_about_section .primary_description .typeit_content {
    font-weight: bold;
    color: #269B56;
}

.home_about_section.active .slide.active .general_top_arrow {
    animation: top_arrow 1.5s linear forwards;
}

.home_about_section.active .slide.active .general_right_arrow {
    animation: right_arrow 1.5s linear forwards;
}

.home_about_section.active .slide.active .general_left_arrow {
    animation: left_arrow 1.5s linear forwards;
}

.home_about_section.active .slide.active .primary_title {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInLeft;
    -webkit-animation-name: fadeInLeft;
}

.home_identity_section .home_identity_content .primary_title {
    margin-left: -200px;
    margin-top: -30px;
    margin-bottom: 50px;
}

.home_identity_section .home_identity_section_inner {
    overflow-x: hidden;
    padding-top: 50px!important;
    padding-bottom: 50px;
}

.home_identity_section .home_identity_content .highlight_background {
    margin-left: -100px;
    margin-bottom: 30px;
}

.home_identity_section .home_identity_content .highlight_background h2 {
    color: #fff;
    font-size: 20px;
    line-height: 24px;
}

.home_identity_section .home_identity_content a {
    text-decoration: underline;
}

.home_identity_section .home_identity_content .logo_dots {
    margin-left: 25px;
}

.home_identity_section .home_identity_content .logo_dots strong, .home_identity_section .home_identity_content .line_dots strong {
    font-size: 16px;
    color: #269B56;
    font-family: 'Lato', sans-serif!important;
}

.home_identity_section .home_identity_content .logo_description, .home_identity_section .home_banner_fonts {
    font-family: 'Lato', sans-serif!important;
}

.home_identity_section .home_identity_content .home_identity_content_box {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.home_identity_section .home_identity_content .home_identity_content_box .logo_dots3 {
    width: 240px;
}

.home_identity_section .home_identity_content .home_identity_content_box .logo_dots3 img {
    width: 35px;
}

.home_identity_section .home_identity_content .home_identity_content_box .logo_dots2 img {
    padding-top: 5px!important;
}

.home_identity_section .home_identity_content .home_identity_content_box .home_identity_content_item {
    width: calc(100% - 240px);
}

.home_identity_section.active .primary_title {
    animation-duration: 2s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 2s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInLeft;
    -webkit-animation-name: fadeInLeft;
}

.home_identity_section.active .highlight_background, .home_identity_section.active .primary_description {
    animation-duration: 2s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 2s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInRight;
    -webkit-animation-name: fadeInRight;
}

.home_bold .primary_title {
    font-size: 65px;
    line-height: 80px;
}

.home_director {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home_director:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background: rgb(160,196,192);
    background: -moz-linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    background: -webkit-linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    background: linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a0c4c0",endColorstr="#c8c2c1",GradientType=1);
    opacity: 0.3;
}

.home_director .home_director_content {
    position: relative;
    z-index: 1;
}

.home_director .home_director_content .primary_title {
    color: #fff;
    margin-bottom: 30px;
}

.home_director .home_director_content .home_director_name {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-align: right;
    margin-bottom: 30px;
}

.home_director .home_director_content .home_director_name p {
    color: #fff;
}

.home_director .home_director_content .home_director_name .home_direct_line {
    height: 1px;
    width: 100px;
    background-color: #fff;
}

.home_director .home_director_content .primary_description {
    color: #fff;
}

.home_director.active .home_director_content .primary_title {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
}

.home_director.active .home_director_content .home_director_name, .home_director.active .primary_description {
    animation-duration: 2s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 2s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}

.home_key .home_key_background {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 70%;
    background: rgb(160,196,192);
    background: -moz-linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    background: -webkit-linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    background: linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a0c4c0",endColorstr="#c8c2c1",GradientType=1);
}

.home_key .secondary_title {
    margin: auto;
}

.home_key .slide .home_key_box {
    width: 60%;
    margin: auto auto auto 0;
    height: 100%;
}

.home_key .slide .home_key_box .home_content_key_icon {
    width: 100%;
    margin: auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.home_key .slide .home_key_box .home_content_key_copywriting {
    text-align: center;
}

.home_key .slide .home_key_box .home_content_key_copywriting p {
    color: #fff;
}

.home_key.active .secondary_title {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInRight;
    -webkit-animation-name: fadeInRight;
}

.home_key.active .slide .home_key_box {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInLeft;
    -webkit-animation-name: fadeInLeft;
}

.home_key.active .slide.active .general_top_arrow {
    animation: top_arrow 1.5s linear forwards;
}

.home_key.active .slide.active .general_right_arrow {
    animation: right_arrow 1.5s linear forwards;
}

.home_key.active .slide.active .general_left_arrow {
    animation: left_arrow 1.5s linear forwards;
}

.home_explore .fp-overflow {
    height: 100%;
}

.home_explore .home_explore_box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-left: -15px;
    margin-right: -15px;
}

.home_explore .home_explore_box .home_explore_title {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
}

.home_explore .home_explore_box .home_explore_title .primary_title {
    margin-bottom: 30px;
}

.home_explore .home_explore_box .home_explore_content {
    width: 50%;
}

.home_explore .home_explore_box .home_explore_content .owl-nav {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    align-items: center;
}

.home_explore .home_explore_box .owl-stage-outer, .home_explore .home_explore_box .owl-stage, .home_explore .home_explore_box .owl-item {
    height: 100%;
}

.home_explore .home_explore_box a {
    position: relative;
    height: 100%;
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: calc(100% - 100px);
    background-position: center;
    background-repeat: initial;
    background-size: cover;
    padding-left: 20px;
    padding-right: 20px;
}

.home_explore .home_explore_box a img {
    width: 100%;
    margin-bottom: 30px;
}

.home_explore .home_explore_box a h2 {
    color: #fff;
    text-align: center;
}

.home_explore .home_explore_box a {
    background-image: none!important;
    background: rgb(11,88,105)!important;
    background: -moz-linear-gradient(180deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%)!important;
    background: -webkit-linear-gradient(180deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%)!important;
    background: linear-gradient(180deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%)!important;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b5869",endColorstr="#3fa429",GradientType=1)!important;
}

.home_explore.active .home_explore_title {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}

.home_explore.active .home_explore_content {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
}

.home_product {
    background: rgb(160,196,192);
    background: -moz-linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    background: -webkit-linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    background: linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a0c4c0",endColorstr="#c8c2c1",GradientType=1);
}

.home_product .home_product_box {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.home_product .home_product_box .home_product_box_inner {
    overflow: hidden;
}

.home_product .home_product_box .home_product_box_inner .home_product_content, .home_product .home_product_box .home_product_box_inner .home_product_content .owl-nav {
    margin-top: 30px;
}

.home_product .home_product_box .home_product_box_inner .owl-stage-outer .primary_description {
    background: rgb(11,88,105);
    background: -moz-linear-gradient(270deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 90%, rgba(63,164,41,0) 100%);
    background: -webkit-linear-gradient(270deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 90%, rgba(63,164,41,0) 100%);
    background: linear-gradient(270deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 90%, rgba(63,164,41,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b5869",endColorstr="#3fa429",GradientType=1);
    color: #fff;
    padding: 30px 15px 30px 45px;
}

.home_product .home_product_video {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.home_product.active .home_product_box {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInLeft;
    -webkit-animation-name: fadeInLeft;
}

.home_product.active .home_product_video {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInRight;
    -webkit-animation-name: fadeInRight;
}

.home_interview {
    background: rgb(160,196,192);
    background: -moz-linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    background: -webkit-linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    background: linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a0c4c0",endColorstr="#c8c2c1",GradientType=1);
}

.home_interview .home_interview_box {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    margin: auto 0 auto auto;
}

.home_interview .home_interview_title {
    padding-left: 30px;
}

.home_interview .home_interview_box .home_interview_box_inner {
    overflow: hidden;
}

.home_interview .home_interview_box .home_interview_box_inner .home_interview_content, .home_interview .home_interview_box .home_interview_box_inner .home_interview_content .owl-nav {
    margin-top: 30px;
}

.home_interview .home_interview_box .home_interview_box_inner .home_interview_content .owl-nav {
    margin-left: 30px;
}

.home_interview .home_interview_box .home_interview_box_inner .owl-stage-outer .primary_description {
    background: rgb(11,88,105);
    background: -moz-linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 90%, rgba(63,164,41,0) 100%);
    background: -webkit-linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 90%, rgba(63,164,41,0) 100%);
    background: linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 90%, rgba(63,164,41,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b5869",endColorstr="#3fa429",GradientType=1);
    color: #fff;
    padding: 30px 45px 30px 30px;
}

.home_interview .home_interview_video {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}


.home_interview.active .home_interview_box {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInLeftBig;
    -webkit-animation-name: fadeInLeftBig;
}

.home_interview.active .home_interview_video {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInRightBig;
    -webkit-animation-name: fadeInRightBig;
}

.contact_section .contact_background {
    background: rgb(160,196,192);
    background: -moz-linear-gradient(135deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    background: -webkit-linear-gradient(135deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    background: linear-gradient(135deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a0c4c0",endColorstr="#c8c2c1",GradientType=1);
    width: calc((100% / 12) * 5);
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.contact_section2 p, .contact_section2 h2, .contact_section2 a, .contact_section2 span {
    font-family: 'Lato', sans-serif!important;
}

.contact_section2 .contact_background {
    width: 100%;
}

.contact_section2 .primary_title {
    font-size: 45px;
    line-height: 50px;
    text-align: center;
}

.contact_section2 .contact_main_title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.contact_section2 .contact_main_title .secondary_title {
    margin-bottom: 0;
}

.contact_section2 .contact_main_title .contact_information_inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: 30px;
    margin-top: 5px;
}

.contact_section2 .contact_main_title .contact_information_inner i {
    margin-bottom: 0!important;
}

.contact_section .contact_form, .contact_section .grow_form {
    margin-top: 25px;
}

.contact_section .contact_form.contact_section2_content {
    margin-top: 30px;
    padding-top: 10px;
}

.contact_section .contact_section_header .contact_information {
    margin-top: 40px;
}

.contact_section .contact_information {
    padding-left: 15px;
    padding-right: 15px;
}

.contact_section .contact_section2_header {
    margin-bottom: 50px;
}

.contact_section .contact_section2_header .form-button {
    text-align: center;
}

.contact_section .contact_information .contact_information_inner {
/*    display: flex;*/
    justify-content: flex-start;
    align-items: flex-start;
}

.contact_section .contact_information .contact_information_inner.contact_information_space {
    margin-bottom: 12px;
}

/*.contact_section .contact_information .contact_information_inner:not(:last-child) {
    margin-bottom: 10px;
}*/

.contact_section .contact_information i, .contact_section2 .contact_main_title .contact_information_inner i {
    font-size: 22px;
    line-height: 22px;
    color: #0B4422;
    margin-bottom: 10px;
    margin-right: 8px;
}

.contact_section .contact_information i.fa-small {
    font-size: 20px;
    line-height: 22px;
}

.contact_section .contact_segment .contact_inquiries {
    margin-top: 0;
}

.contact_sub_title .secondary_title, .contact_highlight_title .secondary_title {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 0px;
    font-weight: 600;
}

.contact_sub_title .secondary_title {
    margin-top: 10px;
    margin-bottom: 10px;
}

.contact_highlight_title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: rgb(11,88,105);
    background: -moz-linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    background: -webkit-linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    background: linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b5869",endColorstr="#3fa429",GradientType=1);
    padding: 8px 15px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.contact_highlight_title .secondary_title {
    color: #fff;
    text-transform: uppercase;
    font-weight: normal;
}

.contact_second_title .contact_highlight_title {
    margin-top: 40px;
}

.contact_second_title .contact_information {
    margin-bottom: 50px;
}

.contact_segment {
    position: relative;
}

.contact_section.active .contact_information {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInLeftBig;
    -webkit-animation-name: fadeInLeftBig;
}

.contact_section.active .contact_form {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInRightBig;
    -webkit-animation-name: fadeInRightBig;
}

.contact_section .contact_inquiries .primary_description {
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 15px;
    line-height: 18px;
}

.contact_section .contact_inquiries a {
    display: block;
    font-weight: normal;
    margin-top: 3px;
}

.contact_section .contact_description {
    padding-right: 20%;
}

.contact_section .contact_description .primary_title {
    margin-bottom: 30px;
    color: #269B56;
}

.contact_section .contact_description .primary_description {
    text-align: justify;
}

.contact_section.active .contact_description .primary_title {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInLeftBig;
    -webkit-animation-name: fadeInLeftBig;
}

.contact_section.active .contact_description .primary_description {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInRightBig;
    -webkit-animation-name: fadeInRightBig;
}

.contact_section.active .contact_information .primary_description {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInRightBig;
    -webkit-animation-name: fadeInRightBig;
}

.me_banner {
    background-position: right bottom;
    background-size: cover;
    background-repeat: no-repeat;
}

.me_banner.active .primary_title {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}

.me_banner.active .primary_description {
    animation-duration: 2s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 2s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}

.me_banner .primary_title {
    color: #fff;
    margin-bottom: 30px;
}

.me_banner .primary_title span {
    color: #AEE536;
}

.me_banner .primary_description {
    color: #fff;
}

.me_about .polygonizr_spiral {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.me_about .me_content {
    position: relative;
    z-index: 1;
}

.me_about.active .primary_description {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}

.me_about .me_content .primary_title {
    text-align: center;
    color: #000;
}

.me_about .me_content .primary_title[attr-child="1"] {
    text-align: left;
}

.me_about .me_content .primary_title[attr-child="2"] {
    text-align: right;
    margin-top: 30px;
    margin-bottom: 30px;
}

.me_about .me_content .primary_description {
    text-align: justify;
    margin: auto 0 0 0;
    width: 70%;
}

.me_about.active .general_top_arrow {
    animation: top_arrow 1.5s linear forwards;
}

.me_about.active .general_right_arrow {
    animation: right_arrow 1.5s linear forwards;
}

.me_about.active .general_left_arrow {
    animation: left_arrow 1.5s linear forwards;
}

.me_value.active .secondary_title {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}

.me_value.active .primary_description {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInDownBig;
    -webkit-animation-name: fadeInDownBig;
}

.me_value .primary_description {
    margin-top: 30px;
}

.me_value .value_image {
    margin-top: 30px;
}

.me_value .me_value_image {
    width: 100%;
    height: 100%;
    background-image: url(/assets/img/me-gear.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right bottom;
}

.me_value.active .value_image_fade {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}

.me_value.active .value_image .value_image_fade {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
}

.me_services .me_services_content {
    margin-top: 50px;
}

.me_services .primary_description {
    background: rgb(189,228,42);
    background: -moz-linear-gradient(90deg, rgba(189,228,42,0) 0%, rgba(189,228,42,1) 25%, rgba(189,228,42,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(189,228,42,0) 0%, rgba(189,228,42,1) 25%, rgba(189,228,42,1) 100%);
    background: linear-gradient(90deg, rgba(189,228,42,0) 0%, rgba(189,228,42,1) 25%, rgba(189,228,42,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#bde42a",endColorstr="#bde42a",GradientType=1);
    padding: 30px 50px;
    font-weight: bold;
    margin-bottom: 30px;
}

.me_services .me_services_cover {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.me_services .content_overflow {
    width: 50%;
    margin: auto auto auto 0;
}

.me_services.active .me_services_content {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInLeft;
    -webkit-animation-name: fadeInLeft;
}

.me_services.active .me_services_cover {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInRight;
    -webkit-animation-name: fadeInRight;
}

.me_elv {
    background: rgb(160,196,192);
    background: -moz-linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    background: -webkit-linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    background: linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a0c4c0",endColorstr="#c8c2c1",GradientType=1);
}

.me_elv .me_elv_content {
    margin-top: 50px;
}

.me_elv .primary_title {
    padding-left: 30px;
/*    color: #fff;*/
}

.me_elv .owl-nav .owl-prev, .me_elv .owl-nav .owl-next {
/*    color: #fff;*/
/*    border-color: #fff;*/
}

.me_elv .owl-nav {
    margin-left: 30px;
}

.me_elv .primary_description {
    background: rgb(189,228,42);
    background: -moz-linear-gradient(270deg, rgba(189,228,42,0) 0%, rgba(189,228,42,1) 25%, rgba(189,228,42,1) 100%);
    background: -webkit-linear-gradient(270deg, rgba(189,228,42,0) 0%, rgba(189,228,42,1) 25%, rgba(189,228,42,1) 100%);
    background: linear-gradient(270deg, rgba(189,228,42,0) 0%, rgba(189,228,42,1) 25%, rgba(189,228,42,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#bde42a",endColorstr="#bde42a",GradientType=1);
    padding: 30px 50px;
    font-weight: bold;
    margin-bottom: 30px;
}

.me_elv .me_elv_cover {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.me_elv .content_overflow {
    width: 50%;
    margin: auto 0 auto auto;
}

.me_elv.active .me_elv_content {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}

.me_elv.active .me_elv_cover {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
}

.me_operation .me_operation_content {
    margin-top: 50px;
}

.me_operation .primary_description {
    background: rgb(189,228,42);
    background: -moz-linear-gradient(90deg, rgba(189,228,42,0) 0%, rgba(189,228,42,1) 25%, rgba(189,228,42,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(189,228,42,0) 0%, rgba(189,228,42,1) 25%, rgba(189,228,42,1) 100%);
    background: linear-gradient(90deg, rgba(189,228,42,0) 0%, rgba(189,228,42,1) 25%, rgba(189,228,42,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#bde42a",endColorstr="#bde42a",GradientType=1);
    padding: 30px 50px;
    font-weight: bold;
    margin-bottom: 30px;
}

.me_operation .me_operation_cover {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.me_operation .content_overflow {
    width: 50%;
    margin: auto auto auto 0;
}

.me_operation.active .me_operation_content {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInLeft;
    -webkit-animation-name: fadeInLeft;
}

.me_operation.active .me_operation_cover {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInRight;
    -webkit-animation-name: fadeInRight;
}

.green_service_banner {
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
}

.green_service_banner:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background-color: rgba(0, 0, 0, 0.75);
    pointer-events: none;
}

.green_service_banner .primary_title {
    color: #BEE52A;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInLeft;
    -webkit-animation-name: fadeInLeft;
    margin-bottom: 30px;
}

.green_service_banner .primary_description {
    color: #fff;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInRight;
    -webkit-animation-name: fadeInRight;
}

.green_service_content .green_service_content_top .secondary_title {
    border-right: 2px solid #0B4422;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.green_service_content .green_service_content_top .primary_description {
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 75%;
    margin: auto 0 auto auto;
    text-align: right;
}

.green_service_content_top {
    margin-top: 30px;
    margin-bottom: 30px;
}

.green_service_content_cover {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100%;
}

.green_service_content_bottom .card_dipult, .green_service_content_bottom .card_accor {
    background-color: transparent;
}

.green_service_content_bottom .card-header.card_accor button.btn-link {
    background-color: #BEE52A;
    border: 0;
    color: #0B4422;
    font-size: 20px;
    line-height: 28px;
    font-weight: bold;
}

.green_service_content_bottom .card-header.card_accor button.btn-link.collapsed {
    background-color: transparent;
}

.green_service_content_bottom .card__accordion .wpb_wrapper {
    font-size: 14px;
    line-height: 20px;
    color: #0B4422;
    text-align: justify;
}

.green_service_content_bottom .btn-link .fa-plus {
    display: none;
}

.green_service_content_bottom .btn-link.collapsed .fa-minus {
    display: none;
}
.green_service_content_bottom .btn-link.collapsed .fa-plus {
    display: block;
}

.green_service_clean_energy.active .green_service_content_top {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
}

.green_service_clean_energy.active .green_service_content_bottom {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}

.green_service_renewable_energy {
    background: rgb(160,196,192);
    background: -moz-linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    background: -webkit-linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    background: linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a0c4c0",endColorstr="#c8c2c1",GradientType=1);
}

.green_service_renewable_energy .green_service_renewable_energy_inner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.green_service_renewable_energy .green_service_renewable_energy_inner .slide {
    position: relative;
}

.green_service_renewable_energy .green_service_renewable_energy_inner .slide .edit_page {
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.green_service_renewable_energy .green_service_renewable_energy_inner .slide .edit_page a {
    margin: auto;
}

.green_service_renewable_energy .green_service_content .green_service_content_top .primary_description {
    width: 85%;
}

.green_service_renewable_energy.active .slide.active .green_service_content_cover {
    display: none;
}

.green_service_renewable_energy.active .slide.active .card__accordion {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInRight;
    -webkit-animation-name: fadeInRight;
}

.green_service_renewable_energy.sess_service .logo_dots2 img {
    -webkit-animation: rotating 7s linear infinite;
    animation: rotating 7s linear infinite
}

.green_service_about {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.green_service_about .green_service_about_content .secondary_title {
    margin-bottom: 30px;
}

.green_service_about.active .green_service_about_content {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}

.green_service_about.active .general_image {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
}

.green_service_about .green_service_about_inner {
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.green_service_about .secondary_title, .green_service_about .primary_description {
    color: #fff;
}

.green_service_banner .home_banner_button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 35px;
    margin-bottom: 15px;
}

.green_service_banner .home_banner_button a {
    background: rgb(11,88,105);
    background: -moz-linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    background: -webkit-linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    background: linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b5869",endColorstr="#3fa429",GradientType=1);
    border-radius: 25px;
    padding: 5px 25px;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    border: 1px solid #fff;
}

.green_service_banner .home_banner_button a i {
    display: none;
    margin-left: 15px;
}

.green_service_banner .home_banner_button a:hover {
    background: transparent;
    color: #0B5869;
    border-color: #0B5869;
}

.green_service_banner .home_banner_button a:hover i {
    display: block;
}

.green_service_banner .home_banner_button a p {
    margin: auto 0;
}

.energy_solution .energy_solution_cw {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
}

.energy_solution .energy_solution_cw .energy_solution_inner {
    width: 100%;
}

.energy_solution .energy_solution_cw .brochure_carousel_content {
    padding-bottom: 15px;
}

.energy_solution .brochure_carousel .owl-nav {
    width: 100%;
    margin-top: 15px;
}

.energy_solution .green_service_attachment {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 8px;
}

.energy_solution .green_service_attachment a {
    color: #fff;
    border: 1px solid #0B4422;
    border-radius: 25px;
    padding: 5px 35px;
    display: block;
    font-size: 14px;
    line-height: 20px;
    background-color: #0B4422;
}

.energy_solution .green_service_attachment a:hover {
    background-color: transparent;
    color: #0B4422;
}

.green_service_framework .green_service_attachment {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 8px;
    margin-bottom: 15px;
}

.green_service_framework .green_service_attachment a {
    color: #fff;
    border: 1px solid #0B4422;
    background-color: #0B4422;
    border-radius: 25px;
    padding: 5px 35px;
    display: block;
    font-size: 14px;
    line-height: 20px;
}

.green_service_framework .green_service_attachment a:hover {
    background-color: transparent;
    color: #0B4422;
}

.green_service_framework .green_service_framework_content {
    margin-top: 30px;
}

.green_service_framework .green_service_framework_copywrite {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: -150px;
}

.green_service_framework .green_service_framework_cw {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
} 

.green_service_framework .green_service_framework_cw .green_service_framework_inner {
    width: 100%;
} 

.green_service_framework .green_service_framework_copywrite .primary_description {
    text-align: justify;
}

.green_service_framework .green_service_framework_copywrite .read_more_outer {
    visibility: visible;
    background: rgb(11,88,105);
    background: -moz-linear-gradient(90deg, rgba(11,88,105,1) 0%, rgba(63,164,41,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(11,88,105,1) 0%, rgba(63,164,41,1) 100%);
    background: linear-gradient(90deg, rgba(11,88,105,1) 0%, rgba(63,164,41,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b5869",endColorstr="#3fa429",GradientType=1);
    padding: 15px 25px;
}

.green_service_framework .green_service_framework_copywrite .read_more_outer .primary_description, .green_service_framework .green_service_framework_copywrite .read_more_outer .read_more_child {
    color: #fff;
}

.green_service_framework.active .general_image {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}

.green_service_framework.active .green_service_framework_copywrite {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
}

.grow_banner .grow_banner_inner {
    position: relative;
    z-index: 1;
}

.grow_banner .grow_banner_inner .primary_description {
    margin-top: 30px;
    text-align: justify;
}

.grow_banner .grow_banner_inner span {
    color: #0B4422;
}

.grow_banner .full_background_image {
    opacity: 0.2;
}

.grow_banner.active .primary_description {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}

.grow_partner .grow_partner_button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.grow_partner .grow_partner_button a {
    background: rgb(11,88,105);
    background: -moz-linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    background: -webkit-linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    background: linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b5869",endColorstr="#3fa429",GradientType=1);
    border-radius: 25px;
    padding: 10px 50px;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    border: 1px solid #fff;
}

.grow_partner .grow_partner_button a i {
    display: none;
    margin-left: 15px;
}

.grow_partner .grow_partner_button a:hover {
    background: transparent;
    color: #0B5869;
    border-color: #0B5869;
}

.grow_partner .grow_partner_button a:hover i {
    display: block;
}

.grow_partner .grow_partner_button a p {
    margin: auto 0;
}

.grow_partner .grow_partner_content {
    display: none;
}

.grow_partner .grow_partner_content .primary_title {
    margin-bottom: 30px;
}

.grow_partner .grow_partner_content.active .primary_title {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInLeft;
    -webkit-animation-name: fadeInLeft;
}

.grow_partner .grow_partner_content.active .primary_description {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInRight;
    -webkit-animation-name: fadeInRight;
}

.career_positions .fp-slidesNav {
    text-align: center;
}

.career_positions .fp-slidesNav ul li a span {
    background-color: #269B56;
}

.career_positions .green_service_content_top .secondary_title {
    border-right: 0;
}

.career_positions .video_popup.general_image {
    cursor: pointer;
}

.cs_banner {
    background-color: rgba(0, 0, 0, 0.75);
}

.cs_banner .cs_banner_background {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    opacity: 0.5;
}

.cs_banner .cs_banner_content {
    position: relative;
    z-index: 1;
}

.cs_banner .cs_banner_content .primary_title, .cs_banner .cs_banner_content .primary_title span{
    color: #fff;
}

.cs_banner .cs_banner_content .primary_title {
    width: 85%;
    margin: auto auto auto 0;
    text-align: justify;
}

.cs_banner .cs_banner_content .secondary_title {
    color: #BDE42A;
    text-align: right;
    width: 85%;
    margin: 30px 0 30px auto;
    text-align: justify;
}

.cs_banner .cs_banner_content .primary_description {
    color: #fff;
    text-align: justify;
}

.cs_banner.active .cs_banner_content .primary_title {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInLeft;
    -webkit-animation-name: fadeInLeft;
}

.cs_banner.active .cs_banner_content .secondary_title {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInRight;
    -webkit-animation-name: fadeInRight;
}

.cs_banner.active .cs_banner_content .primary_description {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}

.cs_category .cs_category_outer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 1;
}

.cs_category .cs_category_outer .cs_category_inner {
    width: 100%;
}

.cs_category .cs_image_background {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    cursor: pointer;
}

.cs_category .primary_title, .cs_category .primary_title span {
    color: #269B56;
}

.cs_category .primary_title {
    margin-bottom: 30px;
}

.cs_category .fp-slidesNav {
    text-align: center;
}

.cs_category .fp-slidesNav ul li a span {
    background-color: #269B56;
}

.cs_category .cs_event_outer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.cs_category .cs_event_outer .cs_event_inner {
    width: 100%;
}

.cs_category .owl-nav {
    margin-top: 15px;
}

.cs_category .cs_category_background_left {
    background: rgb(160,196,192);
    background: -moz-linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%, rgba(200,194,193,0) 100%);
    background: -webkit-linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%, rgba(200,194,193,0) 100%);
    background: linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%, rgba(200,194,193,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a0c4c0",endColorstr="#c8c2c1",GradientType=1);
    width: 75%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    opacity: 0.5;
}

.cs_category .cs_category_background_right {
    background: rgb(160,196,192);
    background: -moz-linear-gradient(270deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%, rgba(200,194,193,0) 100%);
    background: -webkit-linear-gradient(270deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%, rgba(200,194,193,0) 100%);
    background: linear-gradient(270deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%, rgba(200,194,193,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a0c4c0",endColorstr="#c8c2c1",GradientType=1);
    width: 75%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    opacity: 0.5;
}

.me_gallery .me_gallery_row {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.me_gallery .me_gallery_row .me_gallery_outer {
    -ms-flex: 0 0 calc(100% / 6);
    -webkit-box-flex: 0;
    flex: 0 0 calc(100% / 6);
    max-width: calc(100% / 6);
    cursor: pointer;
    position: relative;
}

.me_gallery .me_gallery_row .me_gallery_outer:hover img {
    display: block!important;
}

.me_gallery .me_gallery_row .me_gallery_outer:hover .me_gallery_background {
    display: none!important;
}

.me_gallery .me_gallery_background {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: none;
}

.me_ses .secondary_title {
    color: #269B56;
}

.me_ses .primary_title {
    text-align: right;
}

.me_ses.me_gallery .me_gallery_row .me_gallery_outer {
    -ms-flex: 0 0 calc(100% / 5);
    -webkit-box-flex: 0;
    flex: 0 0 calc(100% / 5);
    max-width: calc(100% / 5);
    cursor: pointer;
    position: relative;
}

.me_ses .content_overflow {
    position: relative;
    z-index: 1;
}

.me_gallery .me_gallery_background_left {
    background: rgb(160,196,192);
    background: -moz-linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%, rgba(200,194,193,0) 100%);
    background: -webkit-linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%, rgba(200,194,193,0) 100%);
    background: linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%, rgba(200,194,193,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a0c4c0",endColorstr="#c8c2c1",GradientType=1);
    width: 65%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    opacity: 0.5;
}

.me_gallery .me_gallery_background_right {
    background: rgb(160,196,192);
    background: -moz-linear-gradient(270deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%, rgba(200,194,193,0) 100%);
    background: -webkit-linear-gradient(270deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%, rgba(200,194,193,0) 100%);
    background: linear-gradient(270deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%, rgba(200,194,193,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a0c4c0",endColorstr="#c8c2c1",GradientType=1);
    width: 65%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    opacity: 0.5;
}

.es_banner .primary_title {
    margin-bottom: 50px;
}

.es_banner .primary_description {
    margin-top: 30px;
    text-align: justify;
}

.es_banner .es_banner_outer {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.es_banner .es_banner_outer .es_banner_inner {
    width: 100%;
} 

.es_banner .es_banner_copywrite {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.es_banner .slide[attr-id="1"] .es_banner_copywrite {
    margin-right: -150px;
}

.es_banner .slide[attr-id="2"] .es_banner_copywrite {
    margin-left: -150px;
}

.es_banner .es_banner_copywrite .read_more_outer {
    background: rgb(11,88,105);
    background: -moz-linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.9) 100%);
    background: -webkit-linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.9) 100%);
    background: linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.9) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b5869",endColorstr="#3fa429",GradientType=1);
    padding: 15px 25px;
}


.es_banner .es_banner_copywrite .read_more_outer .secondary_title, .es_banner .es_banner_copywrite .read_more_outer .primary_description, .es_banner .es_banner_copywrite .read_more_outer .read_more_child {
    color: #fff;
}
.es_banner .fp-slidesNav {
    text-align: center;
}

.es_banner .fp-slidesNav ul li a span {
    background-color: #269B56;
}

.es_banner.active .slide .general_image {
    height: 100%;
}

.es_banner.active .slide.active .general_image {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInLeft;
    -webkit-animation-name: fadeInLeft;
}

.es_banner.active .slide.active .es_banner_copywrite {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInRight;
    -webkit-animation-name: fadeInRight;
}

.es_banner .slide {
    position: relative;
}

.image_background {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.listing_section .listing_button {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.listing_section .listing_button a {
    background: rgb(11,88,105);
    background: -moz-linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    background: -webkit-linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    background: linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b5869",endColorstr="#3fa429",GradientType=1);
    border-radius: 25px;
    padding: 5px 25px;
    color: #fff;
    border: 1px solid #fff;
    font-weight: normal;
    margin-left: 8px;
    margin-right: 8px;
}

.listing_section .listing_button a:hover, .listing_section .listing_button a.active {
    background: transparent;
    color: rgb(11,88,105);
    border-color: rgb(11,88,105);
}

.listing_section .listing_information {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.listing_section .listing_rows {
    display: none;
}

.listing_section .listing_rows .listing_information:not(:last-child):after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 50%;
    height: 1px;
    margin: auto;
    background-color: #BEE52A;
}

.listing_section .listing_information .listing_content {
    width: calc(100% - 150px);
    padding: 15px 0 15px 15px;
}

.listing_section .listing_information .listing_content_button {
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.listing_section .listing_information .listing_content_button a {
    font-size: 14px;
    line-height: 20px;
    background: rgb(11,88,105);
    background: -moz-linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    background: -webkit-linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    background: linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b5869",endColorstr="#3fa429",GradientType=1);
    color: #fff;
    padding: 5px 25px;
    border-radius: 25px;
    border: 1px solid #fff;
}

.listing_section .listing_information .listing_content_button a:hover {
    color: rgb(11,88,105);
    border-color: rgb(11,88,105);
    background: transparent;
}

.listing_section .secondary_title {
    font-size: 22px;
    line-height: 28px;
}

.listing_section .listing_item {
    display: block;
    cursor: pointer;
    margin-bottom: 15px;
}

.listing_section .listing_item img {
    width: 100%;
}

.listing_section .listing_item p {
    margin-top: 10px;
}

.listing_section .listing_item:hover img {
    box-shadow: 5px 5px 18px 0px rgba(0,0,0,0.3);
    -webkit-box-shadow: 5px 5px 18px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 5px 5px 18px 0px rgba(0,0,0,0.3);
}

.listing_section .listing_item .listing_image {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.35s;
}

.listing_section .listing_item:hover .listing_image {
    transform: scale(1.1);
}

.listing_section .listing_item:hover p {
    font-weight: bold;
}

.listing_section .listing_item p {
    text-align: center;
    z-index: 1;
    position: relative;
}

.about_us_banner {
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.about_us_about.active .general_top_arrow {
    animation: top_arrow 1.5s linear forwards;
}

.about_us_about.active .general_right_arrow {
    animation: right_arrow 1.5s linear forwards;
}

.about_us_about.active .general_left_arrow {
    animation: left_arrow 1.5s linear forwards;
}

.about_us_about.active .primary_title {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInLeft;
    -webkit-animation-name: fadeInLeft;
}

.about_us_about .primary_description {
    margin: 30px auto auto auto;
    text-align: justify;
}

.about_us_about.active .read_more_outer {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInRight;
    -webkit-animation-name: fadeInRight;
}

.about_us_content .about_us_content_container {
    margin-top: 50px;
    margin-bottom: 50px;
}

.about_us_content .secondary_title {
    margin-bottom: 30px;
}

.about_us_content .general_image {
    -webkit-box-shadow: 10px 10px 30px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 30px 0px rgba(0,0,0,0.75);
    box-shadow: 10px 10px 30px 0px rgba(0,0,0,0.75);
}

.about_us_content .about_us_content_writing_outer {
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 30px;
    padding-right: 30px;
}

.about_us_content .about_us_content_writing_outer .about_us_content .about_us_content_writing_outer {
    width: 100%;
}

.about_us_content.active .about_us_content_container .secondary_title {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInLeftBig;
    -webkit-animation-name: fadeInLeftBig;
}

.about_us_content.active .about_us_content_container .primary_description {
    animation-duration: 2s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 2s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInRightBig;
    -webkit-animation-name: fadeInRightBig;
}

.about_us_business .primary_title {
    text-align: center;
    margin-bottom: 30px;
}

.about_us_business .primary_description {
    text-align: center;
}

.about_us_business.active .primary_title {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    animation-name: bounceInDown;
    -webkit-animation-name: bounceInDown;
}

.about_us_business.active .primary_description {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    animation-name: bounceInUp;
    -webkit-animation-name: bounceInUp;
}

.about_us_subsidiaries .primary_description, .about_us_subsidiaries .secondary_title {
    text-align: center;
    margin-bottom: 30px;
}

.about_us_speech .primary_description span {
    font-weight: bold;
    color: #fff;
}

.about_us_speech.home_director:before {
    opacity: 0.75;
}

.about_us_speech.home_director .primary_title {
    color: #0B4422;
}

.about_us_subsidiaries .about_us_button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about_us_subsidiaries .about_us_button a {
    background: rgb(11,88,105);
    background: -moz-linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    background: -webkit-linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    background: linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b5869",endColorstr="#3fa429",GradientType=1);
    border-radius: 25px;
    padding: 10px 50px;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    border: 1px solid #fff;
}

.about_us_subsidiaries .about_us_button a i {
    display: none;
    margin-left: 15px;
}

.about_us_subsidiaries .about_us_button a:hover {
    background: transparent;
    color: #0B5869;
    border-color: #0B5869;
}

.about_us_subsidiaries .about_us_button a:hover i {
    display: block;
}

.about_us_subsidiaries .about_us_button a p {
    margin: auto 0;
}

.about_us_subsidiaries.active .about_us_button {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInLeftBig;
    -webkit-animation-name: fadeInLeftBig;
}

.sd_banner.active .general_top_arrow {
    animation: top_arrow 1.5s linear forwards;
}

.sd_banner.active .general_right_arrow {
    animation: right_arrow 1.5s linear forwards;
}

.sd_banner.active .general_left_arrow {
    animation: left_arrow 1.5s linear forwards;
}

.sd_banner .sd_banner_content {
    position: relative;
    z-index: 1;
}

.sd_banner .sd_banner_content .primary_title {
    margin-bottom: 30px;
}

.sd_banner.active .primary_title {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInLeftBig;
    -webkit-animation-name: fadeInLeftBig;
}

.sd_banner.active .primary_description {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInRightBig;
    -webkit-animation-name: fadeInRightBig;
}

.sd_about .primary_description {
    margin-bottom: 30px;
}

.sd_about.active .general_image_outer:nth-child(1) .general_image {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInUpBig;
    -webkit-animation-name: fadeInUpBig;
}
.sd_about.active .general_image_outer:nth-child(2) .general_image {
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1.5s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInUpBig;
    -webkit-animation-name: fadeInUpBig;
}
.sd_about.active .general_image_outer:nth-child(3) .general_image {
    animation-duration: 2s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 2s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInUpBig;
    -webkit-animation-name: fadeInUpBig;
}

.sd_about .general_image_outer .general_image{
    -webkit-box-shadow: 5px 5px 15px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 5px 5px 15px 0px rgba(0,0,0,0.25);
    box-shadow: 5px 5px 15px 0px rgba(0,0,0,0.25);
    margin-bottom: 15px;
}

.sd_about .about_us_button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sd_about .about_us_button a {
    background: rgb(11,88,105);
    background: -moz-linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    background: -webkit-linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    background: linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b5869",endColorstr="#3fa429",GradientType=1);
    border-radius: 25px;
    padding: 10px 50px;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    border: 1px solid #fff;
}

.sd_about .about_us_button a i {
    display: none;
    margin-left: 15px;
}

.sd_about .about_us_button a:hover {
    background: transparent;
    color: #0B5869;
    border-color: #0B5869;
}

.sd_about .about_us_button a:hover i {
    display: block;
}

.sd_about .about_us_button a p {
    margin: auto 0;
}

.sd_about .about_us_button {
    margin-top: 30px;
}

.sd_about.active .about_us_button {
    animation-duration: 2.5s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 2.5s;
    -webkit-animation-fill-mode: forwards;
    animation-name: bounceInLeft;
    -webkit-animation-name: bounceInLeft;
}

.sd_speech:before {
    background: rgba(0, 0, 0, 0.25);
    opacity: 1;
}

.sd_speech .primary_title {
    text-align: center;
}

.csr_category .cs_event_inner .secondary_title {
    padding: 15px 20px;
    color: #fff;
    position: relative;
    z-index: 5;
}

.csr_category:nth-child(odd) .cs_event_inner .secondary_title {
    background: rgb(11,88,105);
    background: -moz-linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 80%, rgba(63,164,41,0) 100%);
    background: -webkit-linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 80%, rgba(63,164,41,0) 100%);
    background: linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 80%, rgba(63,164,41,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b5869",endColorstr="#3fa429",GradientType=1);
    margin-bottom: 30px;
    margin-left: -75px;
}

.csr_category:nth-child(odd) .cs_event_outer {
    justify-content: flex-start;
}

.csr_category:nth-child(even) .cs_event_inner .secondary_title {
    background: rgb(11,88,105);
    background: -moz-linear-gradient(270deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 80%, rgba(63,164,41,0) 100%);
    background: -webkit-linear-gradient(270deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 80%, rgba(63,164,41,0) 100%);
    background: linear-gradient(270deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 80%, rgba(63,164,41,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b5869",endColorstr="#3fa429",GradientType=1);
    margin-bottom: 30px;
    margin-right: -75px;
    text-align: right;
}

.csr_category:nth-child(even) .cs_event_outer {
    justify-content: flex-end;
}

.csr_category.active .primary_title {
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1.5s;
    -webkit-animation-fill-mode: forwards;
    animation-name: bounceInUp;
    -webkit-animation-name: bounceInUp;
}

.csr_data .secondary_title {
    text-align: center;
}

.csr_data .secondary_title b {
    color: #269B56;
}

.csr_data .csr_data_outer {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.csr_data .csr_data_outer .csr_data_form {
    width: 150px;
    text-align: center;
}

.csr_data .csr_data_outer .csr_data_birdman {
    width: calc(100% - 150px);
    text-align: center;
}

.csr_data .csr_data_outer .csr_data_birdman .primary_title {
    font-size: 75px;
    line-height: 1;
}

.csr_data.active .csr_data_form {
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1.5s;
    -webkit-animation-fill-mode: forwards;
    animation-name: bounceInLeft;
    -webkit-animation-name: bounceInLeft;
}

.group_companies_banner .home_banner:before {
    opacity: 0.9;
}

.companies_content .primary_description {
    text-align: center;
    margin-bottom: 20px;
}

.companies_content .primary_title {
    text-align: center;
    margin-bottom: 20px;
}

.companies_content .secondary_title {
    color: #0B5869;
    text-align: center;
    margin-bottom: 20px;
}

.companies_content .general_image {
    margin-bottom: 15px;
}

.companies_content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: rgb(160,196,192);
    background: -moz-linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    background: -webkit-linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    background: linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a0c4c0",endColorstr="#c8c2c1",GradientType=1);
    width: 100%;
    margin: auto;
}

.companies_content .content_overflow {
    position: relative;
    z-index: 1;
}

.companies_content.active .companies_box_outer {
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1.5s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}

.companies_footprint .primary_title {
    margin-bottom: 30px;
    text-align: center;
}

.companies_footprint {
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: cover;
}

.companies_footprint:before {
    pointer-events: none;
    content: '';
    background: rgb(160,196,192);
    background: -moz-linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    background: -webkit-linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    background: linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a0c4c0",endColorstr="#c8c2c1",GradientType=1);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    opacity: 0.4;
}

.companies_footprint .content_overflow {
    position: relative;
    z-index: 1;
}

.companies_footprint .logo_dots2 img {
    -webkit-animation: rotating 7s linear infinite;
    animation: rotating 7s linear infinite
}

.bd_banner .bd_button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bd_banner .bd_button a {
    border-radius: 25px;
    padding: 10px 50px;
    font-size: 14px;
    line-height: 20px;
    background: transparent;
    color: #0B5869;
    border: 1px solid #0B5869;
}

.bd_banner .bd_button a i {
    display: none;
    margin-left: 15px;
}

.bd_banner .bd_button a:hover {
    color: #fff;
    border-color: #fff;
    background: rgb(11,88,105);
    background: -moz-linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    background: -webkit-linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    background: linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b5869",endColorstr="#3fa429",GradientType=1);
}

.bd_banner .bd_button a:hover i {
    display: block;
}

.bd_banner .bd_button a p {
    margin: auto 0;
}

.bd_banner.active .bd_button {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInLeftBig;
    -webkit-animation-name: fadeInLeftBig;
}

.bd_content .bd_content_outer {
    padding-top: 30px;
    padding-bottom: 30px;
}

.bd_content .bd_content_outer:not(:last-child) {
    margin-bottom: 30px;
}

.bd_content .bd_content_outer:nth-child(even) {
    background: rgb(160,196,192);
    background: -moz-linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    background: -webkit-linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    background: linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a0c4c0",endColorstr="#c8c2c1",GradientType=1);
}

.bd_content .bd_content_inner {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -30px;
    margin-right: -30px;
}

.bd_content .bd_content_outer .bd_content_title, .bd_content .bd_content_outer .bd_content_description {
    width: 50%;
    height: 100%;
    margin: auto;
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
}

.bd_content .bd_content_outer .bd_content_description:before {
    content: '';
    pointer-events: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 1px;
    margin: auto;
    background-color: #0B4422;
}

.bd_content .bd_content_outer .bd_content_title .primary_description {
    color: #269B56;
}

.bd_content .bd_content_outer .bd_content_description {
    text-align: justify;
}

.bd_content.active .bd_content_outer:nth-child(odd) .bd_content_inner {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInLeftBig;
    -webkit-animation-name: fadeInLeftBig;
}
.bd_content.active .bd_content_outer:nth-child(even) .bd_content_inner {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInRightBig;
    -webkit-animation-name: fadeInRightBig;
}

.milestone_content .milestone_title {
    display: flex;
    justify-content: center;
    align-items: center;
}

.milestone_content .milestone_title h1 {
    font-size: 80px;
    line-height: 1;
    color: #269B56;
    margin-bottom: 50px;
}

.milestone_content .milestones_copywriting {
    padding-left: 30px;
    padding-bottom: 15px;
}

.milestone_content .milestones_copywriting p {
    text-align: justify;
    margin-bottom: 8px;
}

.milestone_content .milestone_outer .owl-nav {
    margin-top: 15px;
    margin-bottom: 30px;
}

.milestone_content .milestone_outer .owl-prev:not(.disabled), .milestone_content .milestone_outer .owl-next:not(.disabled) {
    cursor: pointer;
}

.milestone_content .logo_dots2 img {
    -webkit-animation: rotating 8s linear infinite;
    animation: rotating 8s linear infinite
}

.certification_content .primary_title {
    text-align: center;
    margin-bottom: 50px;
}

.certification_content .certification_box {
    text-align: center;
    padding: 10px 0;
}

.certification_content .certification_box  .certification_box_cw {
    padding: 15px;
}

.certification_content .certification_box_inner {
    background-color: #F5EFE4;
    border-radius: 8px;
    overflow: hidden;
}

.certification_content .certification_box img {
    width: 35px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.certification_content .certification_box .primary_description {
    font-weight: bold;
}

.certification_content .certification_box a {
    background: rgb(11,88,105);
    background: -moz-linear-gradient(90deg, rgba(11,88,105,1) 0%, rgba(63,164,41,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(11,88,105,1) 0%, rgba(63,164,41,1) 100%);
    background: linear-gradient(90deg, rgba(11,88,105,1) 0%, rgba(63,164,41,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b5869",endColorstr="#3fa429",GradientType=1);
    color: #fff;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-content: center;
}

.certification_content .certification_box a:hover {
    background: #fff;
    color: #0B4422;
}

.certification_content .certification_list .certification_box {
/*    max-width: calc(100% / 5);*/
/*    width: calc(100% / 5)!important;*/
    width: 100%;
}

.sp_content .sp_content_cw {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.sp_content.active .general_image {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInLeftBig;
    -webkit-animation-name: fadeInLeftBig;
}
.sp_content.active .sp_content_cw {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInRightBig;
    -webkit-animation-name: fadeInRightBig;
}

.sp_pdf .sp_pdf_outer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sp_pdf .sp_pdf_outer img {
    width: 35px;
}

.sp_pdf .sp_pdf_outer .sp_pdf_cw {
    width: calc(100% - 150px);
    text-align: left;
    padding-left: 30px;
    padding-right: 30px;
}

.sp_pdf .sp_pdf_outer .sp_pdf_read {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 115px;
    opacity: 0;
    visibility: hidden;
}

.sp_pdf .sp_pdf_outer .sp_pdf_read i {
    margin-left: 5px;
    color: #0B4422;
}

.sp_pdf.listing_section .listing_button a {
    border-radius: 0;
    background: #D4F5CE;
    border: 0;
    color: #0B4422;
    padding: 20px;
    margin-left: 3px;
    margin-right: 3px;
}

.sp_pdf.listing_section .listing_button a:hover, .sp_pdf.listing_section .listing_button a.active {
    background: rgb(11,88,105);
    background: -moz-linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    background: -webkit-linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    background: linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b5869",endColorstr="#3fa429",GradientType=1);
    color: #fff;
}

.sp_pdf.listing_section .listing_button {
    margin-bottom: 0;
}

.sp_pdf .listing_rows a {
    background-color: #D4F5CE;
    display: block;
    padding: 30px 15px;
}

.sp_pdf .listing_rows a:hover {
    background: rgb(11,88,105);
    background: -moz-linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    background: -webkit-linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    background: linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b5869",endColorstr="#3fa429",GradientType=1);
}

.sp_pdf .listing_rows a:hover .secondary_title, .sp_pdf .listing_rows a:hover .primary_description, .sp_pdf .listing_rows a:hover .sp_pdf_read i {
    color: #fff;
}

.sp_pdf .listing_rows a:hover .sp_pdf_read {
    opacity: 1;
    visibility: visible;
}

.mobile_nav_tabs {
    padding-top: 5px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.nav_profile {
    margin-right: 15px;
    margin-top: 3px;
/*     max-width: 230px; */
}

.nav_profile button {
    background: rgb(11,88,105);
    background: -moz-linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    background: -webkit-linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    background: linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b5869",endColorstr="#3fa429",GradientType=1);
    border-radius: 25px;
    padding: 5px 25px;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    border: 1px solid #fff;
    width: 100%;
}

.nav_profile ul {
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.26s ease;
    max-height: 0;
    overflow: hidden;
    position: relative;
}

.nav_profile ul:before {
    position: absolute;
    content: '';
    pointer-events: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 100%;
/*
    background: rgb(160,196,192);
    background: -moz-linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    background: -webkit-linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    background: linear-gradient(90deg, rgba(160,196,192,1) 0%, rgba(184,239,174,1) 25%, rgba(229,228,190,1) 66%, rgba(200,194,193,1) 88%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a0c4c0",endColorstr="#c8c2c1",GradientType=1);
*/
    background-color: #F5EFE4;
    opacity: 1;
    border-radius: 8px;
}

.nav_profile:hover ul {
    max-height: initial;
    transform: scaleY(1);
}

.nav_profile ul li a {
    text-align: left;
    padding: 5px 15px;
    display: block;
    position: relative;
}

.nav_profile ul li:not(:last-child) a:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: calc(100% - 30px);
    background-color: #269B56;
    margin: auto;
    height: 1px;
}

.nav_profile ul li a p {
    font-size: 12px;
    line-height: 18px;
    color: #000;
/*     font-weight: bold; */
    font-family: 'Lato', sans-serif!important;
}

.nav_profile ul li a:hover p {
    color: #0B4422;
}

.nav_profile ul li a .logo_dots p {
    margin-left: 5px;
}

.sweet_account.sweet_video_play.sweet_our_profile {
    width: initial!important;
}

.sweet_account.sweet_account .popup_close:hover {
    color: #0B4422;
}

.our_profile_popup {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background-color: #fff;
}

.our_profile_popup .our_profile_content {
    max-width: 1170px;
}

.our_profile_popup .our_profile_download, .our_profile_popup .our_profile_completed_download {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
    margin-bottom: 6px;
}

.our_profile_popup .our_profile_download a, .our_profile_popup .our_profile_completed_download a {
    background: rgb(11,88,105);
    background: -moz-linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    background: -webkit-linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    background: linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b5869",endColorstr="#3fa429",GradientType=1);
    border-radius: 25px;
    padding: 5px 25px;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    border: 1px solid #fff;
    display: block;
}

.our_profile_popup .our_profile_download a:hover, .our_profile_popup .our_profile_completed_download a:hover {
    background: transparent;
    border-color: #0B4422;
    color: #0B4422;
}

.our_profile_popup .our_profile_completed_download a.downloaded {
    color: #6c757d;
    border-color: #6c757d;
    background: transparent;
    pointer-events: none;
}

.our_profile_popup .our_profile_form, .our_profile_popup .our_profile_completed {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: calc(100% - 100px);
    z-index: 1;
    display: none;
    justify-content: center;
    align-items: center;
    margin: auto;
}


.our_profile_popup .our_profile_form .primary_description, .our_profile_popup .our_profile_completed .primary_description {
    font-weight: bold;
    margin-bottom: 30px;
}

.our_profile_popup .our_profile_form form, .our_profile_popup .our_profile_completed .our_profile_completed_inner {
    background-color: #F5EFE4;
    padding: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.our_profile_popup .our_profile_download_cancel, .our_profile_popup .our_profile_completed_close {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
}

.our_profile_popup .our_profile_download_cancel a, .our_profile_popup .our_profile_completed_close a {
    display: block;
    font-size: 12px;
    line-height: 18px;
    color: #dc3545;
}

.our_profile_popup .our_profile_download_cancel a:hover, .our_profile_popup .our_profile_completed_close a:hover {
    text-decoration: underline;
}

.break_line {
    display: block;
    width: 100%;
    height: 8px;
}

.esg_header {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: rgb(11,68,34);
    background: -moz-linear-gradient(180deg, rgba(11,68,34,1) 0%, rgba(63,162,41,1) 50%);
    background: -webkit-linear-gradient(180deg, rgba(11,68,34,1) 0%, rgba(63,162,41,1) 50%);
    background: linear-gradient(180deg, rgba(11,68,34,1) 0%, rgba(63,162,41,1) 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b4422",endColorstr="#3fa229",GradientType=1); 
    display: flex;
    justify-content: center;
    align-items: center;
}

.esg_header img {
    height: 125px;
    position: relative;
    z-index: 1;
    -webkit-animation: circle_rotate 30s linear infinite;
    -moz-animation: circle_rotate 30s linear infinite;
    -ms-animation: circle_rotate 30s linear infinite;
    -o-animation: circle_rotate 30s linear infinite;
    animation: circle_rotate 30s linear infinite;
    box-shadow: 5px 5px 15px -1px rgba(0,0,0,0.54);
    -webkit-box-shadow: 5px 5px 15px -1px rgba(0,0,0,0.54);
    -moz-box-shadow: 5px 5px 15px -1px rgba(0,0,0,0.54);
    border-radius: 50%;
}

.esg_header:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 50%;
    bottom: 0;
    left: 0;
    right: 0;
    transform: skewY(-8deg); 
    background-color: #F3EDE2;
}

.esg_header:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 50%;
    bottom: 0;
    left: 0;
    right: 0;
    transform: skewY(8deg); 
    background-color: #F3EDE2;
}

@keyframes circle_rotate {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes circle_rotate /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.esg_content_box {
    position: relative;
    z-index: 1;
    margin-top: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.esg_content_box .primary_title, .esg_content_box .secondary_title {
    animation-duration: 2s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 2s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInLeftBig;
    -webkit-animation-name: fadeInLeftBig;
}

.esg_banner_content.active .primary_title {
    animation-duration: 2s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 2s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
}

.esg_banner_content.active .primary_description {
    animation-duration: 2s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 2s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}

.esg_content h2 {
    margin-top: 15px;
    color: #3FA229;
}

.marquee {
    overflow: hidden;
    opacity: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    z-index: 2;
}

.marquee_ready {
    background: rgb(11,68,34);
    background: -moz-linear-gradient(90deg, rgba(11,68,34,1) 0%, rgba(63,162,41,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(11,68,34,1) 0%, rgba(63,162,41,1) 100%);
    background: linear-gradient(90deg, rgba(11,68,34,1) 0%, rgba(63,162,41,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b4422",endColorstr="#3fa229",GradientType=1);
}

.marquee_ready p {
    color: #fff;
}

.esg_banner_content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-position: center;
    background-size: cover;
    transform:scale(0);
/*    transition: all 1s ease-in;*/
    overflow: hidden;
    margin: auto;
    border-radius: 50%;
}

.esg_banner_content.active {
    animation: esg_banners 1s linear forwards;
    -webkit-animation: esg_banners 1s linear forwards;
}

@keyframes esg_banners {
  0% {
    transform: scale(0);
  }
  50% {
    border-radius: 50%;
  }
  100% {
    transform: scale(1);
    border-radius: 0;
    width: 100%;
    height: 100%;
  }
}

.esg_banner_content .primary_title {
    color: #fff;
}

.esg_banner_content .primary_description {
    color: #fff;
    margin-top: 50px;
}

.esg_banner_content .esg_banner_inner {
    max-width: 700px;
    margin: auto;
}

.esg_banner h1, .esg_banner h2, .esg_banner p {
    font-family: 'Lato', sans-serif!important;
}

.esg_content_about .about_us_button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 75px;
}

.esg_content_about .about_us_button a {
    background: rgb(11,88,105);
    background: -moz-linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    background: -webkit-linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    background: linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b5869",endColorstr="#3fa429",GradientType=1);
    border-radius: 25px;
    padding: 10px 50px;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    border: 1px solid #fff;
    margin-left: 15px;
    margin-right: 15px;
}

.esg_content_about .about_us_button a i {
    display: none;
    margin-left: 15px;
}

.esg_content_about .about_us_button a:hover {
    background: transparent;
    color: #0B5869;
    border-color: #0B5869;
}

.esg_content_about .about_us_button a:hover i {
    display: block;
}

.esg_content_about .about_us_button a p {
    margin: auto 0;
}

.esg_content_about.active .about_us_button {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInLeftBig;
    -webkit-animation-name: fadeInLeftBig;
}

.esg_content_about.active .esg_about_flex {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInRight;
    -webkit-animation-name: fadeInRight;
}

.esg_content_about .esg_about_flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.esg_content_about .esg_about_flex .esg_content_amount {
    text-align: center;
}

.esg_content_about .esg_about_flex .esg_content_amount h1 {
    font-size: 75px;
    line-height: 75px;
    color: #269B56;
}

.esg_content_about.active .esg_about_amounts {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeIn;
    -webkit-animation-name: fadeIn;
}

.esg_milestone .secondary_title {
    max-width: 700px;
    margin: auto auto 50px auto;
    color: #269B56;
}

.esg_milestone .cs_event_inner img {
    width: 100px;
    margin-bottom: 30px;
}

.esg_milestone .cs_event_inner .esg_milestone_title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.esg_milestone .cs_event_inner .esg_milestone_title .secondary_title {
    text-align: left;
    margin: auto 0 auto 0;
    color: #0B5869;
}

.esg_milestone .cs_event_inner .esg_milestone_title a {
    border-radius: 25px;
    padding: 5px 30px;
    font-size: 14px;
    line-height: 20px;
    color: #0B5869;
    border: 1px solid #0B5869;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 30px;
}

.esg_milestone .cs_event_inner .esg_milestone_title a i {
    display: none;
    margin-left: 15px;
}

.esg_milestone .cs_event_inner .esg_milestone_title a:hover {
    background: rgb(11,88,105);
    background: -moz-linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    background: -webkit-linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    background: linear-gradient(90deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b5869",endColorstr="#3fa429",GradientType=1);
    color: #fff;
    border-color: #fff;
}

.esg_milestone .cs_event_inner .esg_milestone_title a:hover i {
    display: block;
}

.esg_milestone .cs_event_inner .esg_milestone_title a p {
    margin: auto 0;
}

.esg_milestone .cs_event_outer {
    overflow: hidden;
}

/*.esg_milestone {
    background-color: #C1EAB4;
}

.esg_milestone.odd {
    background-color: #AEE536;
}*/

.esg_milestone .fp-slidesNav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.esg_milestone .fp-slidesNav ul {
    position: relative;
}

.esg_milestone .fp-slidesNav ul:before {
    content: '';
    height: 2px;
    width: calc(100% + 100px);
    background: rgb(11,68,34);
    background: -moz-linear-gradient(90deg, rgba(11,68,34,0) 0%, rgba(20,85,35,1) 15%, rgba(55,147,40,1) 85%, rgba(63,162,41,0) 100%);
    background: -webkit-linear-gradient(90deg, rgba(11,68,34,0) 0%, rgba(20,85,35,1) 15%, rgba(55,147,40,1) 85%, rgba(63,162,41,0) 100%);
    background: linear-gradient(90deg, rgba(11,68,34,0) 0%, rgba(20,85,35,1) 15%, rgba(55,147,40,1) 85%, rgba(63,162,41,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b4422",endColorstr="#3fa229",GradientType=1);
    position: absolute;
    top: -7px;
    bottom: 0;
    margin: auto;
    left: -50px;
    right: 0;
}

.esg_milestone.cs_category .fp-slidesNav ul li a span {
    height: 12px!important;
    width: 12px!important;
    margin: -6px 0 0 -6px!important;
}

.esg_milestone.cs_category .fp-slidesNav ul li a.active span {
    background-color: #0B4422;
}


.esg_milestone.active .cs_category_inner > .secondary_title {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}

.esg_milestone .slide .cs_event_inner {
    text-align: center;
}

.esg_milestone.active .slide.active .cs_event_inner {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInRight;
    -webkit-animation-name: fadeInRight;
}

.esg_leading {
    background: rgb(243,237,226);
    background: -moz-linear-gradient(90deg, rgba(243,237,226,1) 0%, rgba(232,233,209,1) 40%, rgba(166,195,190,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(243,237,226,1) 0%, rgba(232,233,209,1) 40%, rgba(166,195,190,1) 100%);
    background: linear-gradient(90deg, rgba(243,237,226,1) 0%, rgba(232,233,209,1) 40%, rgba(166,195,190,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f3ede2",endColorstr="#a6c3be",GradientType=1);
}

.esg_leading.active .esg_leading_contents {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInRight;
    -webkit-animation-name: fadeInRight;
}

.esg_leading:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background-image: url('/assets/img/background_nets.png');
    background-repeat: no-repeat;
    background-position: right top;
    background-size: contain;
    animation: bg_zoom 20s infinite;
    -webkit-animation: bg_zoom 20s infinite;
}

@keyframes bg_zoom {
  0% {
    background-size: 50%;

  }
  50% {
    background-size: 60%;
  }
  100% {
    background-size: 50%;
  }
}

.esg_leading .esg_leading_contents {
    margin-top: 50px;
    margin-left: 30px;
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 30px;
    position: relative;
    z-index: 1;
}

.esg_leading .esg_leading_contents:before {
    content: '';
    height: 100%;
    width: 1px;
    background-color: #0B4422;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.esg_leading.esg_statement:before {
    background-position: left bottom;
}

.esg_leading.esg_statement {
    background: rgb(243,237,226);
    background: -moz-linear-gradient(270deg, rgba(243,237,226,1) 0%, rgba(232,233,209,1) 40%, rgba(166,195,190,1) 100%);
    background: -webkit-linear-gradient(270deg, rgba(243,237,226,1) 0%, rgba(232,233,209,1) 40%, rgba(166,195,190,1) 100%);
    background: linear-gradient(270deg, rgba(243,237,226,1) 0%, rgba(232,233,209,1) 40%, rgba(166,195,190,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f3ede2",endColorstr="#a6c3be",GradientType=1);
}

.esg_leading.esg_statement .esg_leading_contents {
    margin-top: 50px;
    margin-left: 0px;
    margin-right: 30px;
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 0px;
    padding-right: 30px;
}

.esg_leading.esg_statement .esg_leading_contents:before {
    left: auto;
    right: 0;
}

.esg_statement.active .esg_leading_contents {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInLeft;
    -webkit-animation-name: fadeInLeft;
}

.esg_statement .esg_leading_content_box {
    margin-top: 30px;
}

.esg_statement .esg_leading_box {
    background: rgb(11,88,105);
    background: -moz-linear-gradient(180deg, rgba(11,88,105,1) 0%, rgba(38,155,86,0.5) 100%);
    background: -webkit-linear-gradient(180deg, rgba(11,88,105,1) 0%, rgba(38,155,86,0.5) 100%);
    background: linear-gradient(180deg, rgba(11,88,105,1) 0%, rgba(38,155,86,0.5) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b5869",endColorstr="#269b56",GradientType=1);
    padding: 30px 30px 30px 30px;
    height: 100%;
}

.esg_statement .esg_leading_box .secondary_title {
    color: #fff;
    margin-bottom: 30px;
}

.esg_statement .esg_leading_box .primary_description {
    color: #fff;
}

.esg_statement .esg_leading_box .logo_dots {
    margin-top: 10px;
    margin-bottom: 10px;
}

.esg_affirmative:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 70%;
    width: 100%;
    margin: auto;
    background: rgb(243,237,226);
    background: -moz-linear-gradient(90deg, rgba(243,237,226,1) 0%, rgba(232,233,209,1) 40%, rgba(166,195,190,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(243,237,226,1) 0%, rgba(232,233,209,1) 40%, rgba(166,195,190,1) 100%);
    background: linear-gradient(90deg, rgba(243,237,226,1) 0%, rgba(232,233,209,1) 40%, rgba(166,195,190,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f3ede2",endColorstr="#a6c3be",GradientType=1);
}

.esg_affirmative:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    margin: auto;
    width: 100%;
    background-color: #32616c;
}

.esg_affirmative_quote {
    padding-bottom: 50px;
}

.esg_affirmative_quote .primary_title {
    text-align: right;
    color: #0B4422;
}

.esg_affirmative_quote .secondary_title {
    text-align: right;
    color: #0B5869;
    max-width: 75%;
    margin: auto 0 auto auto;
}

.esg_affirmative_quote .secondary_description {
    margin-top: 30px;
    text-align: right;
}

.esg_affirmative .cs_category_outer {
    position: relative;
    z-index: 1;
}

.esg_affirmative_content {
    background-color: #32616c;
}

.esg_affirmative_content .read_more_content {
    margin-top: 50px;
}

.esg_affirmative_content .esg_affirmative_position {
    margin-top: 30px;
}

.esg_affirmative_content .esg_affirmative_position .primary_description {
    font-weight: bold;
}

.esg_affirmative_content p {
    color: #fff;
}

.esg_affirmative_content .read_more_outer .read_more_child {
    color: #fff;
}

.esg_affirmative .esg_affirmative_profile {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50%;
    border-radius: 50%;
    border: 4px solid #fff;
    width: 100%;
    margin-top: -50px;
}

.esg_affirmative.active .slide.active .esg_affirmative_quote {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInLeft;
    -webkit-animation-name: fadeInLeft;
}

.esg_affirmative.active .slide.active .read_more_outer {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInRight;
    -webkit-animation-name: fadeInRight;
}

.esg_affirmative.cs_category .fp-slidesNav ul li a span {
    background-color: #aee536;
}

.esg_diversity.active .esg_diversity_bottom {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}

.esg_diversity .esg_diversity_circle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.esg_diversity .esg_diversity_circle .esg_selector_outer {
    padding: 30px 50px;
}

.esg_diversity .esg_diversity_circle .esg_selector {
    width: 250px;
    height: 250px;
    position: relative;
}

.esg_diversity .esg_diversity_circle .esg_selector ul {
    position: absolute;
    list-style: none;
    padding: 0;
    margin: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.esg_diversity .esg_diversity_circle .esg_selector ul li {
    position: absolute;
    width: 0;
    height: 100%;
    margin: 0 50%;
    -webkit-transform: rotate(-360deg);
    transition: all 0.1s ease-in-out;
}

.esg_diversity .esg_diversity_circle .esg_selector.open ul li {
    transition: all 1.5s ease-in-out;
}

.esg_diversity .esg_diversity_circle .esg_selector li label { 
    position: absolute;
    left: 50%;
    bottom: 100%;
    width: 0;
    height: 0;
    line-height: 1px;
    margin-left: 0;
    background: #269B56;
    border-radius: 50%;
    text-align: center;
    font-size: 1px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.8s ease-in-out, color 0.1s, background 0.1s;
    width: 10px;
    height: 10px;
    margin-left: -40px;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.5);
}

.esg_diversity .esg_diversity_circle .esg_selector li.active label {
    background: #BEE52A;
}

.esg_diversity .esg_diversity_circle .esg_selector .primary_title {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #D9F3D0;
    border-radius: 50%;
    margin: auto;
}

.esg_diversity .esg_diversity_circle .secondary_title {
    width: calc((100% - 250px) / 2);
}

.esg_diversity .esg_diversity_circle .secondary_title:first-child {
    text-align: right;
}

.esg_diversity .esg_diversity_circle .secondary_title:last-child {
    text-align: left;
}

.esg_diversity .esg_diversity_inner > .primary_description {
    margin-top: 15px;
}

.esg_diversity {
    background-color: #0B4422;
}

.esg_diversity .general_background_dots {
    opacity: 0.25;
}

.esg_diversity .esg_diversity_outer {
    position: relative;
    z-index: 1;
}

.esg_diversity .esg_diversity_inner {
    text-align: center;
}

.esg_diversity .esg_diversity_inner h1, .esg_diversity .esg_diversity_inner h2, .esg_diversity .esg_diversity_inner p, .esg_diversity .esg_diversity_inner h1 span {
    color: #fff;
}

.esg_diversity .esg_diversity_inner h2 {
    font-size: 25px;
    line-height: 31px;
}

.esg_diversity .esg_diversity_bottom {
    background-color: #BEE52A;
    padding: 30px 15px;
    border-radius: 15px;
}

.esg_diversity .esg_diversity_bottom p {
    color: #0B4422;
}

.esg_diversity .esg_diversity_bottom_content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.esg_diversity .esg_diversity_bottom_content h2 {
    text-align: center;
    width: calc(100% / 2);
    color: #0B4422;
}

.esg_abouts.active p {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
}

.esg_abouts p {
    text-align: justify;
    font-size: 18px;
    line-height: 24px;
}

.esg_events.active .feature_photo_outer {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    animation-name: fadeInUpBig;
    -webkit-animation-name: fadeInUpBig;
}

.esg_events {
    background-color: #D9F3D0;
}

.esg_events .secondary_description {
    text-align: center;
}

.esg_events .secondary_description b {
    font-size: 130%;
    font-family: 'Lato', sans-serif!important;
}

.d3_carousel {
    width: 100%;
    visibility: hidden;
}

.d3_carousel a {
    display: flex!important;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0px 8px 10px -5px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 8px 10px -5px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 8px 10px -5px rgba(0,0,0,0.75);
}

.d3_carousel a:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background: rgb(11,88,105);
    background: -moz-linear-gradient(0deg, rgba(11,88,105,1) 0%, rgba(36,123,74,0.4) 35%, rgba(243,237,226,0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(11,88,105,1) 0%, rgba(36,123,74,0.4) 35%, rgba(243,237,226,0) 100%);
    background: linear-gradient(0deg, rgba(11,88,105,1) 0%, rgba(36,123,74,0.4) 35%, rgba(243,237,226,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b5869",endColorstr="#f3ede2",GradientType=1);
}

.d3_carousel a:not(.active):before {
    background: rgba(0, 0, 0, 0.35);
}

.d3_carousel a p {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 0 5px 5px 5px;
}

.d3_carousel_nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.d3_carousel_nav button {
    color: #0B4422;
    border: 1px solid #0B4422;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    line-height: 1;
}

.event_3d_popup_header {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.event_3d_popup_header:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background: rgb(11,88,105);
    background: -moz-linear-gradient(0deg, rgba(11,88,105,1) 0%, rgba(36,123,74,0.4) 35%, rgba(243,237,226,0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(11,88,105,1) 0%, rgba(36,123,74,0.4) 35%, rgba(243,237,226,0) 100%);
    background: linear-gradient(0deg, rgba(11,88,105,1) 0%, rgba(36,123,74,0.4) 35%, rgba(243,237,226,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b5869",endColorstr="#f3ede2",GradientType=1);
}

.event_3d_popup_header .event_3d_popup_header_content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 5px 15px;
}

.event_3d_popup_header .event_3d_popup_header_content .event_3d_popup_header_left {
    width: 70%;
}

.event_3d_popup_header .event_3d_popup_header_content .event_3d_popup_header_right {
    width: 30%;
}

.event_3d_popup_header .event_3d_popup_header_content .event_3d_popup_header_right img {
    width: 100%;
}

.event_3d_popup_header .event_3d_popup_header_content h2, .event_3d_popup_header .event_3d_popup_header_content p {
    color: #fff;
    text-align: left;
}

.event_3d_popup .event_3d_popup_message {
    background-color: #0B5869;
    padding: 0px 8px 8px 8px;
}

.event_3d_popup .event_3d_popup_message p {
    color: #fff;
    text-align: justify;
    padding: 0px 10px;
}

.event_3d_popup .event_3d_popup_footer {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}

.event_3d_popup .event_3d_popup_footer .event_3d_popup_image_outer {
    -ms-flex: 0 0 20%;
    -webkit-box-flex: 0;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 5px 5px;
}

.event_3d_popup .event_3d_popup_footer .event_3d_popup_images {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.event_3d_popup .event_3d_popup_footer .event_3d_popup_images.active {
    opacity: 0.65;
}

.sweet_account.sweet_3d_event .popup_close {
    animation: initial;
    visibility: visible;
}

/*.csr_banner .esg_header img {
    height: 13px;
    -webkit-animation: circle_rotate 35s linear infinite;
    -moz-animation: circle_rotate 35s linear infinite;
    -ms-animation: circle_rotate 35s linear infinite;
    -o-animation: circle_rotate 35s linear infinite;
    animation: circle_rotate 35s linear infinite;
}*/

.csr_events.active .feature_photo_outer {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    animation-name: fadeInDownBig;
    -webkit-animation-name: fadeInDownBig;
}

@keyframes star_zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.home_banner_content h1, .home_banner_content h2, .home_banner_content p, .home_banner_content span, .grow_banner h1, .grow_banner h2, .grow_banner p, .grow_banner span, .me_banner_content h1, .me_banner_content h2, .me_banner_content p, .me_banner_content span, .sd_banner h1, .sd_banner h2, .sd_banner p, .sd_banner span, .cs_banner h1, .cs_banner h2, .cs_banner p, .cs_banner span, .contact_section_header h1, .contact_section_header h2, .contact_section_header p, .contact_section_header span {
    font-family: 'Lato', sans-serif!important;
}

.companies_box_outer {
    height: 100%;
    padding-bottom: 15px;
}

.companies_box_inner {
    background-image: url('/assets/img/background_box.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right bottom;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
    margin-bottom: 15px;
}

.companies_content .companies_box_inner h2, .companies_content .companies_box_inner p {
    text-align: justify;
    color: #fff;
}

.companies_box_inner .companies_box_footer {
    margin-top: 30px;
}

.esg_info .primary_title {
    max-width: 700px;
    margin: auto auto 50px auto;
    color: #269B56;
    text-align: center;
    font-size: 30px;
    line-height: 36px;
}

.esg_info_box {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.esg_info_box .secondary_title {
    text-align: left;
    font-size: 25px;
    line-height: 31px;
}

.esg_info_box .esg_info_box_inner {
    background: rgb(11,88,105);
    background: -moz-linear-gradient(270deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    background: -webkit-linear-gradient(270deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    background: linear-gradient(270deg, rgba(11,88,105,0.9) 0%, rgba(63,164,41,0.6) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b5869",endColorstr="#3fa429",GradientType=1);
    padding: 15px 15px 15px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 500px 500px 0;
    width: 70%;
    margin-bottom: 15px;
}

.esg_info_box[count="1"] .esg_info_box_inner {
    margin-right: 10%;
}

.esg_info_box[count="2"] .esg_info_box_inner {
    margin-right: 20%;
}

.esg_info_box[count="3"] .esg_info_box_inner {
    margin-right: 30%;
}

.esg_info_box[count="4"] .esg_info_box_inner {
    margin-right: 40%;
}

.esg_info_box .esg_info_box_inner .esg_info_body {
    width: calc(100% - 90px);
}

.esg_info_box .esg_info_box_inner .esg_info_image {
    width: 90px;
    height: 85px;
}

.esg_info_box .esg_info_box_inner .esg_info_body p {
    color: #fff;
}

.esg_info_box .esg_info_box_inner .esg_info_image .esg_info_image_inner {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
}

.esg_info_box .esg_info_box_inner .esg_info_button {
    display: flex;
    justify-content: flex-start;
    align-content: center;
}

.esg_info_box .esg_info_box_inner a {
    border-radius: 25px;
    padding: 5px 30px;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    border: 1px solid #fff;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px auto auto 0;
}

.esg_info_box .esg_info_box_inner a i {
    display: none;
    margin-left: 15px;
}

.esg_info_box .esg_info_box_inner a:hover i {
    display: block;
}

.esg_info_box .esg_info_box_inner a p {
    margin: auto 0;
}

.esg_info.active .slide.active .esg_info_box[count="0"] .esg_info_box_inner {
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-name: fadeInRightBig;
    -webkit-animation-name: fadeInRightBig;
}
.esg_info.active .slide.active .esg_info_box[count="1"] .esg_info_box_inner {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    animation-name: fadeInRightBig;
    -webkit-animation-name: fadeInRightBig;
}
.esg_info.active .slide.active .esg_info_box[count="2"] .esg_info_box_inner {
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1.5s;
    -webkit-animation-fill-mode: forwards;
    animation-name: fadeInRightBig;
    -webkit-animation-name: fadeInRightBig;
}
.esg_info.active .slide.active .esg_info_box[count="3"] .esg_info_box_inner {
    animation-duration: 2s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 2s;
    -webkit-animation-fill-mode: forwards;
    animation-name: fadeInRightBig;
    -webkit-animation-name: fadeInRightBig;
}
.esg_info.active .slide.active .esg_info_box[count="4"] .esg_info_box_inner {
    animation-duration: 2.5s;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 2.5s;
    -webkit-animation-fill-mode: forwards;
    animation-name: fadeInRightBig;
    -webkit-animation-name: fadeInRightBig;
}

.newsletter_section.listing_section .listing_item {
    padding-left: 15px;
    padding-right: 15px;
}

.our_profile_language_box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.our_profile_language_box .our_profile_language_box_outer {
    display: block;
    padding: 15px 30px;
    border-radius: 8px;
}

.our_profile_language_box .our_profile_language_box_outer .our_profile_language_select {
    background-color: #fff;
    border: 1px solid #269B56;
    color: #269B56;
    border-radius: 8px;
    padding: 2px 30px;
    margin: 0 15px;
    box-shadow: 0px 0px 37px 0px rgba(0,0,0,0.35);
    -webkit-box-shadow: 0px 0px 37px 0px rgba(0,0,0,0.35);
    -moz-box-shadow: 0px 0px 37px 0px rgba(0,0,0,0.35);
}

.our_profile_language_box .our_profile_language_box_outer .our_profile_language_select:hover {
    background-color: #269B56;
    color: #fff;
}



@media only screen and (max-width: 767px) {

    @-webkit-keyframes fadeInRight {
      from {
        opacity: 0;
/*        -webkit-transform: translate3d(100%, 0, 0);*/
/*        transform: translate3d(100%, 0, 0);*/
      }

      to {
        opacity: 1;
/*        -webkit-transform: none;*/
/*        transform: none;*/
      }
    }

    @keyframes fadeInRight {
      from {
        opacity: 0;
/*        -webkit-transform: translate3d(100%, 0, 0);*/
/*        transform: translate3d(100%, 0, 0);*/
      }

      to {
        opacity: 1;
/*        -webkit-transform: none;*/
/*        transform: none;*/
      }
    }

    @-webkit-keyframes fadeInRightBig {
      from {
        opacity: 0;
/*        -webkit-transform: translate3d(100%, 0, 0);*/
/*        transform: translate3d(100%, 0, 0);*/
      }

      to {
        opacity: 1;
/*        -webkit-transform: none;*/
/*        transform: none;*/
      }
    }

    @keyframes fadeInRightBig {
      from {
        opacity: 0;
/*        -webkit-transform: translate3d(100%, 0, 0);*/
/*        transform: translate3d(100%, 0, 0);*/
      }

      to {
        opacity: 1;
/*        -webkit-transform: none;*/
/*        transform: none;*/
      }
    }

    #mobile_sidebar {
        width: 300px;
        right: -300px;
    }

    #fp-nav.fp-right {
        right: 0px!important;
    }

    .offcanvas_main_menu li a {
        padding-left: 20px;
        width: calc(100% - 20px);
    }

    .offcanvas_main_menu > li.menu-item-has-children > a {
        font-size: 18px;
    }

    .offcanvas_main_menu li ul.sub-menu li > a {
        padding-left: 35px;
    }

    .offcanvas_main_menu li a {
        font-size: 14px;
    }

    .offcanvas_main_menu li a i {
        right: -15px;
        font-size: 14px;
    }

    .offcanvas_main_menu li ul.sub-menu li ul.sub-menu li > a {
        padding-left: 50px;
    }

    .sweet_account.sweet_video_play {
        max-width: 100%!important;
        padding: 15px!important;
    }

    .primary_title {
        font-size: 30px;
        line-height: 36px;
    }

    .primary_description {
        font-size: 12px;
        line-height: 18px;
    }

    .secondary_title {
        font-size: 20px;
        line-height: 28px;
    }

    .footer_section .footer_divider {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .footer_section .footer_logo {
        display: none;
    }

    .footer_section .footer_section_top .secondary_title, .footer_section .footer_section_top .primary_description {
        text-align: center;
    }

    .footer_section .footer_nav[attr-id="1"] {
        text-align: left;
    }
    .footer_section .footer_nav[attr-id="2"] {
        text-align: right;
    }
    .footer_section .footer_nav[attr-id="3"] {
        margin-top: 30px;
        text-align: center;
    }

    .footer_section .footer_copyright {
        font-size: 10px;
        line-height: 16px;
        margin-top: 30px;
    }

    .home_about_section .primary_title {
        font-size: 35px;
    }

    .home_identity_section {
        display: block;
    }

    .home_identity_section .general_background_image {
        margin-left: -15px;
        margin-right: -15px;
        height: 300px;
    }

    .home_identity_section.active .primary_title {
        margin-left: 0;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .home_identity_section .home_identity_content .highlight_background {
        margin-left: -15px;
        margin-right: -15px;
        margin-bottom: 20px;
    }

    .home_bold .primary_title {
        font-size: 45px;
        line-height: 51px;
    }

    .home_key .slide .home_key_box {
        width: 100%;
    }

    .home_explore .full_height, .home_explore .fp-overflow {
        height: auto;
    }

    .home_explore .home_explore_box {
        display: block;
    }

    .home_explore .home_explore_box .home_explore_title {
        margin-bottom: 30px;
        width: 100%;
    }

    .home_explore .home_explore_box .home_explore_content {
        width: 100%;
    }

    .home_explore .home_explore_box a {
        padding-top: 30px;
        padding-bottom: 15px;
        width: 100%;
    }

    .home_explore .home_explore_carousel {
        padding-bottom: 35px;
    }

    .home_explore .home_explore_box .home_explore_content .owl-nav {
        left: 0;
        right: 0;
        top: initial;
    }

    .home_product .full_height {
        height: auto;
    }

    .home_product .home_product_box {
        width: 100%;
    }

    .home_product .home_product_video {
        position: relative;
        width: 100%;
        height: 300px;
        margin-top: 50px;
    }

    .home_interview .full_height {
        height: auto;
    }

    .home_interview .home_interview_box {
        width: 100%;
    }

    .home_interview .home_interview_video {
        position: relative;
        width: 100%;
        height: 300px;
        margin-bottom: 50px;
    }

    .about_us_content .about_us_content_writing_outer {
        margin-top: 15px;
    }

    .listing_section .listing_button a {
        margin-bottom: 8px;
    }

    .companies_content .general_image_outer .general_image { 
        animation: initial!important;
        opacity: 1!important;
    }

    /*.certification_content .certification_list .certification_box {
        max-width: calc(100% / 2);
        width: calc(100% / 2)!important;
    }*/

    .me_value .value_image_fade {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .me_services .content_overflow, .me_elv .content_overflow, .me_operation .content_overflow {
        width: 100%;
    }

    .me_services .me_services_cover, .me_elv .me_elv_cover, .me_operation .me_operation_cover {
        margin-top: 15px;
        position: relative;
        left: 0px;
        right: 0px;
        width: 100%;
        opacity: 1;
        top: 0px;
        height: 250px;
    }

    .green_service_content_cover {
        height: 175px;
    }

    .green_service_framework .green_service_framework_copywrite {
        margin: auto;
    }

    .csr_category .cs_event_inner .secondary_title {
        margin: 15px auto!important;
    }

    .csr_category .cs_event_outer {
        padding-bottom: 15px;
    }

    .csr_data .csr_data_outer .csr_data_form {
        width: 75px;
    }

    .csr_data .csr_data_outer .csr_data_birdman {
        width: calc(100% - 75px);
    }

    .sp_pdf .sp_pdf_outer .sp_pdf_cw {
        width: calc(100% - 35px);
    }

    .sp_pdf .sp_pdf_outer .sp_pdf_read {
        display: none!important;
    }

    .es_banner .slide .es_banner_copywrite  {
        margin: auto!important;
    }

    .es_banner .image_background {
        height: 200px;
    }

    .es_banner .primary_title {
        margin-bottom: 20px;
    }

    .me_gallery .me_gallery_row .me_gallery_outer {
        -ms-flex: 0 0 calc(100% / 3);
        -webkit-box-flex: 0;
        flex: 0 0 calc(100% / 3);
        max-width: calc(100% / 3);
        cursor: pointer;
        position: relative;
    }

    .contact_section .contact_background {
        width: calc((100% / 12) * 9);
    }

    .contact_section .grow_form, .contact_section .career_form, .contact_section .internship_form, .contact_section .contact_form {
        margin-top: 50px;
    }

    .contact_section2 .contact_background {
        width: 100%;
    }

    .contact_section2 .contact_form {
        margin-top: 0;
    }

    .contact_section2 .contact_sub_title .secondary_title {
        font-size: 18px;
    }

    .contact_sub_title .primary_description a {
        width: 100%;
    }

    .contact_section .contact_information .contact_information_inner {
        margin-bottom: 30px;
    }

    .contact_section2 .contact_main_title .secondary_title {
        margin-top: 20px;
    }

    .contact_section .contact_information {
        padding-top: ;
    }

    .contact_segment {
        padding-top: 0;
    }

    .image_background {
        height: 250px;
    }

    .nav_profile {
        max-width: 175px;
        margin-right: 5px;
    }

    .nav_profile button {
        padding: 5px 15px;
        font-size: 12px;
        line-height: 18px;
    }

    .nav_profile ul li a {
        font-size: 12px;
        line-height: 18px;
    }

    .logo_dots3 i {
        line-height: 17px;
    }

    .home_identity_section .home_identity_content .home_identity_content_box {
        display: block;
    }

    .home_identity_section .home_identity_content .home_identity_content_box .logo_dots {
        width: 100%;
    }

    .home_identity_section .home_identity_content .home_identity_content_box .home_identity_content_item {
        width: 100%;
        margin-left: 25px;
    }

    .home_identity_section .home_identity_content .logo_dots strong, .home_identity_section .home_identity_content .line_dots strong {
        font-size: 12px;
    }

    .home_identity_section .home_identity_content .home_identity_content_box .logo_dots2 img {
        padding-top: 3px!important;
    }

    .esg_content_about .about_us_button {
        display: block;
        margin-top: 25px;
        margin-bottom: 50px;
    }

    .esg_content_about .about_us_button a:first-child {
        margin-bottom: 15px;
    }

    .esg_milestone .cs_event_inner img {
        width: 75px;
    }

    .esg_leading.esg_statement .esg_leading_contents {
        margin-top: 25px;
    }

    .esg_statement .esg_leading_content_box .col-md-5:first-child {
        margin-bottom: 15px;
    }

    .esg_diversity .esg_diversity_circle {
        display: block;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .esg_diversity .esg_diversity_circle .secondary_title {
        width: 100%;
        text-align: center!important;
        font-size: 14px;
        line-height: 20px;
    }

    .esg_diversity .esg_diversity_circle .esg_selector_outer {
        padding: 30px 25px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .esg_diversity .esg_diversity_circle .esg_selector {
        width: 150px;
        height: 150px;
    }

    .esg_diversity .esg_diversity_bottom {
        padding: 15px 8px;
    }

    .esg_diversity .esg_diversity_bottom_content {
        display: block;
    }

    .esg_diversity .esg_diversity_bottom_content h2 {
        width: 100%;
        font-size: 14px;
        line-height: 20px;
    }

    .esg_diversity .esg_diversity_bottom_content h2:first-child {
        margin-bottom: 10px;
    }

    .esg_abouts p {
        padding: 0 15px;
    }

    .sweet_3d_event .swal2-content {
        position: relative;
    }

    .esg_affirmative_quote .secondary_title {
        max-width: 100%;
        font-size: 15px;
        line-height: 20px;
    }

    .esg_affirmative .esg_affirmative_profile {
        width: 150px;
        height: 150px!important;
        margin-top: -30px;
    }

    .esg_affirmative_quote .secondary_description {
        margin-top: 15px;
        margin-bottom: 15px;
        font-size: 12px;
        line-height: 16px;
    }

    .esg_affirmative_quote {
        padding-right: 15px;
        padding-bottom: 25px;
    }

    .esg_affirmative_content .read_more_content {
        margin-top: 15px;
    }

    .esg_affirmative_content .esg_affirmative_position {
        margin-top: 20px;
    }

    .esg_abouts p {
        font-size: 14px;
        line-height: 20px;
    }

    .esg_info_box .esg_info_box_inner {
        width: 100%;
        margin-right: 0!important;
        margin-bottom: 10px;
    }

    .esg_info .primary_title {
        margin-bottom: 25px;
        font-size: 25px;
        line-height: 31px;
    }

    .esg_info_box .secondary_title {
        text-align: left;
        font-size: 20px;
        line-height: 26px;
    }

    .esg_info_box .esg_info_box_inner .esg_info_body {
        width: calc(100% - 70px);
    }

    .esg_info_box .esg_info_box_inner .esg_info_image {
        width: 70px;
        height: 50px;
    }

    .esg_info_box .esg_info_box_inner a {
        font-size: 10px;
        line-height: 16px;
        margin-top: 8px;
    }

    .home_banner_section.active .home_banner_logos .home_banner_logo_img {
        width: 85px;
        height: 65px;
        margin-left: 5px;
        margin-right: 5px;
    }
}