/*Info bar */
.info-bar {
    padding: 28px 0 29px;
    background-color: #666666;
}

.info-bar .para-18 {
    max-width: calc(100% - 178px);
    color: #fff;
    font-size: 23px;
}

.info-bar a {
    position: absolute;
    height: 50px;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
}


.msg-pop-up {
    display: none;
    float: left;
    width: 100%;
    padding-top: 56px;
}

.msg-pop-up h4 {
    color: #e81c21;
    font-size: 24px;
}

.msg-pop-up p {
    margin-top: 12px;
}

.pop-up-inner {
    padding: 14px 0 14px 40px;
    border: 1px solid #e81c21;
}

.protection-ff .msg-pop-up {
    display: block;
}

.generic-grid-overlay {
    cursor: pointer;
}

.generic-grid-overlay .overlay-content-wrapper {
    display: none !important;
}

.generic-content-video-overlay {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    background: rgba(1, 1, 1, 0.6);
    pointer-events: none;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.generic-content-video-overlay.active .video-inner {
    opacity: 0;
    -webkit-animation: showVideo-1 1.25s forwards;
    -moz-animation: showVideo-1 1.25s forwards;
    -ms-animation: showVideo-1 1.25s forwards;
    animation: showVideo-1 1.25s forwards;
}
.generic-content-video-overlay .video-inner{
    max-height: 380px;
}
.generic-content-video-overlay .video-inner .iframe-container{
    height: 380px;
}
.generic-content-video-overlay.active .video-inner {
    opacity: 1;
}

.no-tb-border {
    border-top: none !important;
    border-bottom: none !important;
}
table.no-tb-border {
    border-top: none !important;
    border-bottom: none !important;
}

table.no-tb-border tr {
    border-top: none !important;
    border-bottom: none !important;
}

.generic-content-video-overlay .video-inner {
    position: relative;
    padding: 0 20px;
    -webkit-animation: hideVideo 0.25s forwards;
    -moz-animation: hideVideo 0.25s forwards;
    -ms-animation: hideVideo 0.25s forwards;
    animation: hideVideo 0.25s forwards;
    max-width: 1020px;
    width: 100%;
    margin: 0 auto;
}

.generic-content-video-overlay .iframe-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.generic-content-video-overlay.active {
    pointer-events: auto;
    z-index: 9;
    opacity: 1;
    visibility: visible;
}

.generic-content-video-overlay .video-player {
    width: 100%;
    height: 100%;
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

.generic-content-video-overlay.active .overlay-close {
    width: 28px;
    height: 28px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 999;
    cursor: pointer;
    opacity: 1;
    -webkit-transition-delay: 1.2s;
    transition-delay: 1.2s;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    /* background: rgba(1,1,1,0.2); */
}

.generic-content-video-overlay.active .overlay-close .before,
.generic-content-video-overlay.active .overlay-close .after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    margin-top: -2px;
    background: #fff;
    opacity: 0;
    -webkit-transition: opacity 0s;
    -moz-transition: opacity 0s;
    -ms-transition: opacity 0s;
    -o-transition: opacity 0s;
    transition: opacity 0s;
}

.generic-content-video-overlay.active .overlay-close .before {
    -webkit-animation-name: closeiconbefore;
    -moz-animation-name: closeiconbefore;
    -ms-animation-name: closeiconbefore;
    -o-animation-name: closeiconbefore;
    animation-name: closeiconbefore;
    -webkit-animation-delay: 1200ms;
    -moz-animation-delay: 1200ms;
    -ms-animation-delay: 1200ms;
    -o-animation-delay: 1200ms;
    animation-delay: 1200ms;
    -webkit-animation-duration: 400ms;
    -moz-animation-duration: 400ms;
    -ms-animation-duration: 400ms;
    -o-animation-duration: 400ms;
    animation-duration: 400ms;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -ms-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    height: 3px;
}

.generic-content-video-overlay.active .overlay-close .after {
    -webkit-animation-name: closeiconafter;
    -moz-animation-name: closeiconafter;
    -ms-animation-name: closeiconafter;
    -o-animation-name: closeiconafter;
    animation-name: closeiconafter;
    -webkit-animation-delay: 1400ms;
    -moz-animation-delay: 1400ms;
    -ms-animation-delay: 1400ms;
    -o-animation-delay: 1400ms;
    animation-delay: 1400ms;
    -webkit-animation-duration: 400ms;
    -moz-animation-duration: 400ms;
    -ms-animation-duration: 400ms;
    -o-animation-duration: 400ms;
    animation-duration: 400ms;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -ms-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    height: 3px;
}

.generic-content-overlay .overlay-content h4 {
    position: relative;
    color: #fff;
    margin-bottom: 32px;
}

.generic-content-overlay .overlay-content h4:after {
    content: "";
    position: absolute;
    bottom: -17px;
    left: 0;
    width: 213px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
}

.generic-content-overlay .overlay-content p {
    color: #fff;
    font-weight: 400;
}

.generic-content-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 1, 1, 0.6);
    padding: 40px 20px;
    z-index: -1;
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.generic-content-overlay .overlay-content .overlay-btn {
    display: inline-block;
}

.generic-content-overlay .overlay-content a.transparent-btn {
    margin-top: 18px;
    margin-right: 10px;
    border: 1px solid #fff;
    padding: 15px 19px 13px;
}

.generic-content-overlay .overlay-content a.hyperlink-effect ~ a.hyperlink-effect:before {
    content: '';
    left: -10px;
    position: absolute;
    border-left: 2px solid #fff;
    top: 1px;
    height: 17px;
}

.generic-content-overlay .overlay-content a.hyperlink-effect {
    color: #fff;
    position: relative;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    margin-left: 12px;
}

.generic-content-overlay .close-overlay:before, .generic-content-overlay .close-overlay:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    margin-top: -4px;
    background: #fff;
    opacity: 0;
    -webkit-transition: opacity 0s;
    -moz-transition: opacity 0s;
    -ms-transition: opacity 0s;
    -o-transition: opacity 0s;
    transition: opacity 0s;
}

.generic-content-overlay.active .overlay-content .close-overlay:before {
    -webkit-animation-name: closeiconbefore;
    -moz-animation-name: closeiconbefore;
    -ms-animation-name: closeiconbefore;
    -o-animation-name: closeiconbefore;
    animation-name: closeiconbefore;
    -webkit-animation-delay: 400ms;
    -moz-animation-delay: 400ms;
    -ms-animation-delay: 400ms;
    -o-animation-delay: 400ms;
    animation-delay: 400ms;
    -webkit-animation-duration: 400ms;
    -moz-animation-duration: 400ms;
    -ms-animation-duration: 400ms;
    -o-animation-duration: 400ms;
    animation-duration: 400ms;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -ms-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    height: 3px;
}

.generic-content-overlay.active .overlay-content .close-overlay:after {
    -webkit-animation-name: closeiconafter;
    -moz-animation-name: closeiconafter;
    -ms-animation-name: closeiconafter;
    -o-animation-name: closeiconafter;
    animation-name: closeiconafter;
    -webkit-animation-delay: 600ms;
    -moz-animation-delay: 600ms;
    -ms-animation-delay: 600ms;
    -o-animation-delay: 600ms;
    animation-delay: 600ms;
    -webkit-animation-duration: 400ms;
    -moz-animation-duration: 400ms;
    -ms-animation-duration: 400ms;
    -o-animation-duration: 400ms;
    animation-duration: 300ms;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -ms-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    height: 3px;
}

.generic-content-overlay.active {
    z-index: 9;
    opacity: 1;
}

.generic-content-overlay .overlay-content {
    position: relative;
    background: #00ace0;
    height: 380px;
    width: 100%;
    max-width: 1020px;
    text-align: left;
    padding: 66px 99px 40px;
    margin: 0 auto;
    overflow: auto;
}

.generic-content-overlay.active .overlay-content .close-overlay {
    position: absolute;
    top: 19px;
    right: 18px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    z-index: 10;
    opacity: 1;
    pointer-events: auto;
    -webkit-transition: all 0s 0.3s;
    -moz-transition: all 0s 0.3s;
    -ms-transition: all 0s 0.3s;
    -o-transition: all 0s 0.3s;
    transition: all 0s 0.3s;
}

.section-downloads {
    padding: 60px 0 0;
}

.section-downloads .tabs-container {
    float: left;
    width: 100%;
}

.section-downloads li {
    display: inline-block;
    font-weight: 700;
    cursor: pointer;
}

.section-downloads .tabs ul {
    border-bottom: 1px solid #c1c1c1;
}

.section-downloads .tabs li {
    padding: 13px 86px;
    border: 1px solid #c1c1c1;
    border-bottom: 0;
    background: #333333;
    position: relative;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.section-downloads .tabs li.active {
    background: #fff;
    color: #000;
    border: 1px solid #c1c1c1;
    border-bottom: 0;
}

.section-downloads .tabs li.active:after {
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    bottom: -1px;
    left: 0;
    background: #fff;
}

.section-downloads .tabs-content {
    float: left;
    width: 100%;
}
.section-downloads .tabs-content .top-tabs > iframe{
    width: calc(100% - 20px);
    height: 830px;
    border: 0;
}
.section-downloads .tabs-content .col-two:first-of-type,
.section-downloads.col-expand .col-two {
    width: 57%;
}

.section-downloads .tabs-content .col-two:last-of-type,
.section-downloads.col-expand .col-two:last-of-type {
    width: 43%;
}

.section-downloads .bottom-tabs .view-tabs {
    width: 43%;
}

.section-downloads .tabs-content .col-two,
.section-downloads.col-expand .col-two {
    padding: 0 15px;
    height: auto;
}

.section-downloads .tabs-content .bottom-tabs .col-two,
.section-downloads.col-expand .bottom-tabs .col-two {
    padding: 0 20px;
}

.section-downloads .tabs-content .bottom-tabs .col-two:last-child,
.section-downloads.col-expand .bottom-tabs .col-two:last-child {
    padding: 0 20px 0 22px;
}

.section-downloads .tabs-content .bottom-tabs .col-two:first-child,
.section-downloads.col-expand .bottom-tabs .col-two:first-child {
    max-width: 530px;
}

.section-downloads .tabs-content .col-two:last-child,
.section-downloads.col-expand .col-two:last-child {
    padding: 0 20px 0 12px;
}

.section-downloads .second-tabs {
    padding-top: 19px;
}

.section-downloads .bottom-tabs .second-tabs {
    padding-top: 20px;
}

.section-downloads .second-tabs ul {
    font-size: 0;
    display: inline-block;
    margin-right: 8px;
}

.section-downloads .second-tabs li {
    padding: 9px 20px 7px;
    font-size: 12px;
    letter-spacing: 0.044em;
    background: #333333;
    color: #fff;
    text-transform: uppercase;
    position: relative;
}

.section-downloads.col-expand .third-tabs.three-tabs li, .section-downloads .multi-tab.three-tabs li {
    width: 33.33%;
}

.section-downloads .second-tabs li.active {
    background: #00ace0;
    color: #fff;
}

.section-downloads .second-tabs li.active:after {
    content: '';
    display: block;
    position: absolute;
    left: calc(50% - 10px);
    border-color: #00ace0 transparent transparent transparent;
    border-style: solid;
    border-width: 7px 7px 7px 7px;
    bottom: -14px;
}

.section-downloads .second-tabs-content {
    padding: 20px 0;
    display: none;
    opacity: 0;
}

.section-downloads .second-tabs-content:first-child {
    opacity: 1;
    display: block;
}

.section-downloads .cta-link {
    line-height: 1.6;
    display: inline-block;
    color: #00ace0;
}

.section-downloads .second-tabs-content h6 {
    margin-bottom: 10px;
}

.section-downloads .second-tabs-content p {
    line-height: 1.7;
    color: #333;
    padding-bottom: 10px;
}

.section-downloads .second-tabs-content p.small {
    font-size: 12px;
    line-height: 1.5;
    color: #000000;
}

.section-downloads .second-tabs-content p a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: #00ace0;
    font-weight: 700;
}

.section-downloads .second-tabs-content p a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #00ace0;
    -webkit-transform: scale3d(0, 1, 1);
    -moz-transform: scale3d(0, 1, 1);
    -ms-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transition: -webkit-transform 0.1s;
    -moz-transition: trasform 0.1s;
    -ms-transition: trasform 0.1s;
    transition: transform 0.1s;
}

.section-downloads .second-tabs-content p a:hover:before {
    -webkit-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.section-downloads .dropdown-box {
    display: initial;
}

.section-downloads .col-two .select-tabs,
.section-downloads .col-two .bottom-links {
    display: none;
    opacity: 0;
}

.section-downloads .col-two .select-tabs:first-child {
    display: block;
    opacity: 1;
}

.section-downloads .col-two .bottom-links:nth-child(2) {
    display: block;
    opacity: 1;
}

.section-downloads .top-tabs {
    border: 1px solid #c1c1c1;
    border-top: none;
    padding: 20px 0 19px 25px;
}

.section-downloads .select-box {
    height: inherit;
    display: none;
}

.section-downloads .select-box:first-child {
    display: block;
}

.section-downloads .select-box select {
    height: 54px;
    width: 50%;
    background: #fff;
    border: 1px solid #666666;
    max-width: 265px;
    padding: 0 19px;
    margin-bottom: 5px;
    -webkit-appearance: none;
    border-radius: 0;
}

.section-downloads .third-tabs-container .select-box select {
    margin-bottom: 10px;
}

.section-downloads .select-box button {
    padding: 11px 20px 10px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.025em;
}

.section-downloads .view-tabs .select-box button {
    margin-top: 1px;
    margin-left: 6px;
    padding: 11px 32px 10px;
}

.section-downloads .view-tabs .select-box form input {
    width: calc(100% - 164px);
    max-width: 265px;
    display: inline-block;
    background: #fff;
    border: 1px solid #666;
    border-radius: 0;
    padding: 11px 25px 11px 10px;
    height: 53px;
    vertical-align: top;
    font-weight: 700;
    font-family: "Gotham A", "Gotham B";
    font-size: 18px;
}

.section-downloads #cloud .view-tabs .select-box button {
    padding: 11px 29px 10px;
}

.section-downloads .select-box .links {
    max-width: 360px;
    font-size: 0;
    padding: 24px 0px 22px 30px;
}

.section-tabs .section-downloads .select-box .links,
.section-downloads .top-tabs .select-box .links {
    display: inline-block;
}

.section-downloads.col-expand .select-box .links {
    padding: 24px 0px 60px 30px;
}

.section-downloads .select-box .links a,
.section-downloads .second-tabs .cta-link {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: #00ace0;
    font-weight: 700;
    line-height: 1.6;
    margin: 0 25px 2px 0;
}

.section-downloads .second-tabs a.tab-link {
    font-weight: 400;
    display: inline-block;
    word-break: break-word;
    width: calc(80% - 104px);
}

.section-downloads .second-tabs a.tab-link:after {
    display: none;
}

.section-downloads.col-expand .tab-overview.tab-inner-content {
    width: 100%;
    padding: 20px 30px;
}

.section-downloads .tab-overview p {
    display: inline-block;
    font-weight: 400;
    margin-right: 5px;
    vertical-align: top;
}

.section-downloads .tab-overview .cta-link {
    margin-right: 0;
    font-size: 16px;
}

.section-downloads .second-tabs-content.tab-overview,
.section-downloads .tab-overview .second-tabs {
    padding-top: 0;
}

.section-downloads.col-expand .tabs-parent {
    background: #f3f3f3;
    border: none;
    padding: 20px 25px 19px;
}

.section-downloads.col-expand .tab-inner-content {
    background: #fff;
    float: left;
    position: relative;
    padding: 20px 0;
}

.section-downloads .upper-tab {
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.section-downloads .upper-tab:after {
    content: '';
    border-bottom: 1px solid #ccc;
    width: calc(100% - 35px);
    position: absolute;
    bottom: 0;
    left: calc(0px + 15px);
}

.section-downloads .sub-inner {
    margin-bottom: 20px;
}

.section-downloads .sub-inner:last-child {
    margin-bottom: 0;
}

.blue-content {
    color: #00ace0;
    font-size: 16px;
    margin: 0;
    position: relative;
    font-weight: 400;
}

.cta-link {
    position: relative;
    font-weight: 700;
}

.section-downloads .select-box .links a:hover:before,
.cta-link:hover:before,
.blue-content:hover:before {
    -webkit-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.section-downloads .select-box .links a:before,
.cta-link:before,
.blue-content:before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #00ace0;
    -webkit-transform: scale3d(0, 1, 1);
    -moz-transform: scale3d(0, 1, 1);
    -ms-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transition: -webkit-transform 0.1s;
    -moz-transition: trasform 0.1s;
    -ms-transition: trasform 0.1s;
    transition: transform 0.1s;
}

.cta-link:before,
.section-downloads .select-box .links a:before {
    width: calc(100% - 12px);
}

.section-tabs .col-outer .col-two {
    width: calc(50% - 11px);
    height: 212px;
    overflow: hidden;
    margin: 0px 5px 10px 6px;
    cursor: pointer;
}

.section-tabs .col-outer .col-two > a {
    display: block;
    height: inherit;
}

.section-downloads .select-box .links a:after,
.cta-link:after {
    content: '>';
    position: relative;
    display: inline-block;
    padding-left: 2px;
}

.section-downloads .bottom-tabs .select-box button {
    width: 39%;
    max-width: 213px;
    padding: 11px 20px 12px;

}

.section-downloads .bottom-tabs .select-box .version-select button {
    margin-top: 10px;
}

.section-downloads .bottom-tabs {
    padding: 0;
    margin-bottom: 80px;
    border-left: 1px solid #c1c1c1;
    border-right: 1px solid #c1c1c1;
}

.solution-customer-slider {
    padding: 0;
    overflow: hidden;
}

.solution-customer-slider .col-two {
    height: 538px;
}

.solution-customer-slider .col-two:first-child {
    padding: 30px;
}

.solution-customer-slider .col-two .content-wrap {
    position: relative;
    max-width: 455px;
    margin: 0 auto;
    padding-top: 5px;
}

.solution-customer-slider .col-two:first-child .v-middle-wrapper {
    overflow: auto;
}

.solution-customer-slider .content-wrap .v-middle {
    padding: 10px 0;
}

.solution-customer-slider .overlay-logo .v-middle-inner {
    max-width: 200px;
    margin: 0 auto;
}

.solution-customer-slider .slick-slider {
    float: left;
    width: 100%;
}

.solution-customer-slider .col-two-outer {
    float: left;
}

.solution-customer-slider .col-two p {
    color: #fff;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.735;
    margin: 0 auto;
}

.solution-customer-slider .col-two .bg-img {
    height: inherit;
}

.solution-customer-slider .col-two h6 {
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
    margin-top: 20px;
}

.solution-customer-slider .col-two span {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.735;
}

.solution-customer-slider .col-two .cta-box {
    padding: 10px 0;
}

.solution-customer-slider .arrow-icon {
    position: absolute;
    width: 100%;
    bottom: 44%;
    padding: 0px 46px;
}

.solution-customer-slider .arrow-icon .prev {
    left: 0;
    float: left;
    cursor: pointer;
    width: 36px;
    height: 60px;
}

.solution-customer-slider .arrow-icon .next {
    cursor: pointer;
    right: 0;
    float: right;
    width: 36px;
    height: 60px;
}

.solution-customer-slider .arrow-icon .prev img,
.solution-customer-slider .arrow-icon .next img {
    width: 100%;
    height: 100%;
}

.solution-customer-slider .slick-prev.slick-arrow,
.solution-customer-slider .slick-next.slick-arrow {
    display: none !important;
}

@media all and (-ms-high-contrast: none) {
    .section-downloads .select-box {
        float: left;
    }

    .section-downloads .dropdown-box {
        display: inline;
        float: left;
    }

    .section-downloads .view-tabs .select-box button,
    .section-downloads .view-tabs .select-box form input {
        float: left;
    }
}

.section-downloads .bottom-tabs:after, .section-downloads .top-tabs:after {
    content: "";
    clear: both;
    display: block;
}

.section-downloads .third-tabs li {
    padding: 17px 29px 16px;
    width: 50%;
    float: left;
    cursor: pointer;
    font-size: 18px;
    display: inline-block;
}

.section-downloads .third-tabs li > span {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    display: table-cell;
    vertical-align: middle;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}

.section-downloads .third-tabs li {
    border-bottom: 1px solid #c1c1c1;
    border-right: 1px solid #c1c1c1;
    background-color: #333;
    position: relative;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}

.section-downloads .third-tabs li.active {
    background-color: #fff;
}

.section-downloads .third-tabs li.active > span {
    color: #000;
}

.section-downloads .third-tabs li:hover {
    background-color: #fff;
}

.section-downloads .third-tabs li:hover > span {
    color: #00ace0;
}

.section-downloads .third-tabs li:last-child {
    border-right: 0;
}

.section-downloads .third-tabs li:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -1px;
    left: 0;
    opacity: 0;
}

.section-downloads .third-tabs li.active:after {
    opacity: 1;
    border-bottom: 1px solid #fff;
}

.section-downloads .third-tabs li:hover:after {
    opacity: 1;
}

.section-downloads .third-tabs-container {
    float: left;
    width: 100%;
    padding-top: 19px;
    padding-bottom: 20px;
    opacity: 1;
    display: none;
    border-bottom: 1px solid #c1c1c1;
}

.section-downloads.col-expand#n1ql .tab-inner-content {
    background: #272822;
    width: 100%;
    padding: 18px 25px 33px;
}

.section-downloads#n1ql .type-wrap span {
    color: #fff;
    font-weight: 400;
    font-family: 'Courier', sans-serif;
}

.section-downloads.col-expand#n1ql .col-two .hide-div {
    opacity: 0;
    height: 100%;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    line-height: 1.5;
}

.section-downloads.col-expand#n1ql .col-two .hide-div::first-line {
    line-height: 0;
}

@-moz-document url-prefix() {
    .section-downloads.col-expand#n1ql .col-two .hide-div {
        margin-top: -20px;
    }
}

.section-downloads#n1ql .top-tabs .col-two:last-child .inner-content {
    padding-top: 15px;
}

.section-downloads.col-expand#n1ql .col-two pre code {
    font-weight: 400;
}

.section-downloads.col-expand#n1ql .output-code {
    color: #fff;
    font-weight: 400;
    font-family: 'Courier', sans-serif;
}

.section-downloads.col-expand#n1ql .output-code span {
    font-weight: 400;
    font-family: 'Courier', sans-serif;
    line-height: 1.5;
}

.section-downloads .tab-inner-content .run-btn {
    float: left;
    width: 100%;
    text-align: center;
    padding-right: 85px;
    margin-bottom: 20px;
}

.section-downloads .tab-inner-content .run-btn > button {
    border: 1px solid #d3d3d3;
    background: transparent;
    color: #d3d3d3;
    font-size: 18px;
    font-weight: 700;
    padding: 12px 20px 11px;
    cursor: pointer;
    border-radius: 0;
    text-transform: capitalize;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.section-downloads .tab-inner-content .run-btn > button:hover {
    border: 1px solid #d3d3d3;
    color: #000;
    background: #d3d3d3;
}

.section-downloads#n1ql .top-tabs {
    border: 0;
    padding: 20px 30px 1px 30px;
    background: #f3f3f3;
}

.section-downloads#n1ql .top-tabs .col-two {
    background: #333333;
    margin: 0 5px;
    width: calc(50% - 10px);
    padding: 0;
    height: 100% !important;
}

.section-downloads#n1ql .top-tabs .col-two .inner-content {
    height: 210px;
    overflow: auto;
    padding: 20px;
    margin-right: 15px;
}

@media all and (-ms-high-contrast: none) {
    .section-downloads#n1ql #typed-strings {
        display: block !important;
    }

    *::-ms-backdrop, .section-downloads#n1ql #typed-strings {
        display: block !important;
    }

    #n1ql .col-two .hide-div {
        opacity: 1 !important;
    }

    *::-ms-backdrop, #n1ql .col-two .hide-div {
        opacity: 1 !important;
    }
}

.section-downloads#n1ql .col-two .type-wrap {
    height: 100%;
}

.section-downloads#n1ql .links > a {
    margin: 0 15px 0 5px;
}

.section-downloads#n1ql .top-tabs .col-two .inner-content::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: transparent;
}

.section-downloads#n1ql .top-tabs .col-two .inner-content::-webkit-scrollbar-track {
    background: #333;
}

.section-downloads#n1ql .top-tabs .col-two .inner-content::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #666;
}

.section-downloads#n1ql pre[class*="language-"] {
    background: transparent;
    padding: 0;
    line-height: 1;
}

.section-downloads#n1ql pre[class*="language-"] code,
.section-downloads#n1ql pre[class*="language-"] code span {
    font-family: 'Courier', sans-serif;
}

.section-downloads#n1ql code[class*="language-"] {
    line-height: 1;
}

.section-downloads#n1ql .token.keyword {
    color: #b36cdb;
}

.section-downloads#n1ql .token.string {
    color: #00ace0;
}

@media (max-width: 1240px) and (min-width: 992px) {
    .info-bar a {
        right: 40px;
    }

    .section-downloads .top-tabs {
        padding-left: 20px;
        padding-bottom: 24px;
    }

    .section-downloads .select-box select {
        width: 49%;
    }

    .section-downloads .bottom-tabs .select-box button {
        padding: 13px 20px 13px;
    }

    .section-downloads .select-box .links {
        padding-top: 15px;
    }

    .section-downloads .tabs li {
        padding: 13px 60px;
    }

    .section-downloads .third-tabs li {
        font-size: 16px;
    }

    .section-downloads .third-tabs li > span {
        font-size: 16px;
    }

    .section-downloads .select-box button {
        font-size: 16px;
    }

    .section-downloads .view-tabs .select-box button,
    .section-downloads #cloud .view-tabs .select-box button{
        padding: 12px 26px;
    }

    .section-downloads #container .view-tabs .select-box button{
        padding: 12px 26px;
    }

    .section-downloads {
        padding: 40px 0 0;
    }

    .section-downloads .second-tabs a.tab-link {
        width: calc(83% - 100px);
    }

    .solution-customer-slider .col-two p {
        font-size: 20px;
        margin: 0 25px;
    }

    .solution-customer-slider .arrow-icon {
        padding: 0px 20px;
    }

    .solution-customer-slider .arrow-icon .prev,
    .solution-customer-slider .arrow-icon .next {
        max-width: 25px;
    }

    .solution-customer-slider .col-two-outer .col-two {
        height: 500px;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .section-downloads .select-box select {
        width: 100%;
        max-width: 100%;
        margin-bottom: 10px;
    }

    .section-downloads .view-tabs .select-box button {
        padding: 12px 30px;
    }

    .section-downloads .second-tabs {
        padding-top: 10px;
    }

    .section-downloads .select-box .links {
        padding-top: 10px;
    }

    .section-downloads .view-tabs .select-box button {
        margin-left: 0;
        margin-top: 10px;
    }

    .section-downloads .select-box .links a {
        font-size: 13px;
        margin: 0 20px 2px 0;
    }

    .section-downloads .top-tabs {
        padding-bottom: 20px;
    }

    .section-downloads .tabs li {
        padding: 13px 50px;
    }

    .section-downloads .third-tabs li {
        font-size: 15px;
    }

    .section-downloads .third-tabs li > span {
        font-size: 15px;
    }

    .section-downloads.col-expand .third-tabs li,
    .section-downloads .multi-tab li {
        padding: 15px;
    }

    .section-downloads .select-box button {
        font-size: 15px;
    }

    .section-downloads {
        padding: 40px 0 0;
    }

    .section-downloads .bottom-tabs {
        margin-bottom: 40px;
    }

    .section-tabs .info-block .text-with-button h6 {
        max-width: 450px;
    }

    .section-downloads .bottom-tabs .select-box button {
        padding: 14px 20px 14px;
    }

    .section-downloads .second-tabs a.tab-link {
        width: calc(100% - 90px);
    }

    .project-content {
        padding-top: 10px;
    }

    .solution-customer-slider .col-two .content-wrap {
        padding: 0 50px;
    }

    .solution-customer-slider .col-two p {
        font-size: 18px;
    }

    .solution-customer-slider .col-two span {
        font-size: 17px;
    }

    .solution-customer-slider .arrow-icon {
        bottom: 45%;
    }

    .solution-customer-slider .arrow-icon {
        padding: 0 15px;
    }

    .solution-customer-slider .arrow-icon .prev,
    .solution-customer-slider .arrow-icon .next {
        width: 25px;
    }

    .solution-customer-slider .overlay-logo .v-middle-inner {
        max-width: 160px;
    }

    .solution-customer-slider .col-two-outer .col-two {
        height: 420px;
    }
}

@media (max-width: 595px) and (min-width: 481px) {
    .section-downloads .view-tabs .selectboxit-container {
        width: calc(100% - 134px);
        max-width: inherit;
    }

    .section-downloads.col-expand .third-tabs li {
        border-left: 1px solid #ccc;
        border-right: 1px solid #ccc;
    }

    .section-downloads .multi-tab li {
        border-right: none;
    }

    .section-downloads .second-tabs a.tab-link {
        width: calc(100% - 80px);
    }

    .solution-customer-slider .col-two p {
        font-size: 20px;
    }

    .solution-customer-slider .overlay-logo .v-middle-inner {
        max-width: 140px;
    }

    .solution-customer-slider .col-two h6,
    .solution-customer-slider .col-two span {
        font-size: 16px;
    }
}

@media (max-height: 450px) {
    .generic-content-video-overlay .iframe-container {
        max-height: 234px;
    }
}

@media (max-width: 767px) {

    .section-downloads .select-box .links a {
        font-size: 12px;
        margin: 0 20px 2px 0;
    }

    .generic-content-video-overlay.active .overlay-close {
        top: -30px;
        width: 22px;
        height: 22px;
    }

    .section-downloads .select-box .links {
        padding-top: 10px;
    }

    .section-downloads .tabs-content .col-two:first-of-type,
    .section-downloads.col-expand .col-two:first-of-type,
    .section-downloads .tabs-content .col-two:last-of-type,
    .section-downloads.col-expand .col-two:last-of-type {
        width: 100%;
    }

    .generic-content-overlay .overlay-content {
        padding: 45px 20px;
        height: calc(100vh - 80px) !important;
    }

    .generic-content-overlay .overlay-content a.hyperlink-effect {
        font-size: 16px;
    }

    .section-downloads .tabs-content .col-two {
        padding: 0 20px;
    }

    .section-downloads .selectboxit-container .selectboxit {
        padding: 5px 10px 5px;
    }

    .section-downloads .view-tabs .select-box form input {
        padding: 5px 10px 5px;
        height: 42px;
    }

    .section-downloads .select-option label {
        top: 36px;
    }

    .section-downloads .view-tabs .select-box button{
        padding: 8px 26px;
    }

    .section-downloads #cloud .view-tabs .select-box button{
        padding: 8px 25px;
    }

    .section-downloads #container .view-tabs .select-box button {
        padding: 8px 22px;
    }

    .section-downloads .tabs-content .col-two:last-child,
    .section-downloads.col-expand .col-two:last-child,
    .section-downloads #container .col-two:last-child {
        padding: 0 20px 0 20px;
    }

    .section-downloads .second-tabs {
        padding-top: 0;
    }

    .section-downloads .third-tabs-container .second-tabs {
        padding-top: 20px;
    }

    .section-downloads .third-tabs-container .second-tabs-content {
        padding-bottom: 0;
    }

    .section-downloads .tabs li {
        padding: 13px 30px;
    }

    .section-downloads.col-expand .tab-overview.tab-inner-content {
        padding: 10px 20px;
    }

    .section-downloads .select-box select {
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
    }

    .section-downloads .third-tabs li {
        font-size: 14px;
    }

    .section-downloads .third-tabs li > span {
        font-size: 14px;
    }

    .section-downloads .select-box button {
        font-size: 14px;
    }

    .section-downloads .bottom-tabs .view-tabs {
        width: 100%;
    }

    .section-downloads .bottom-tabs .select-box button {
        width: auto;
        max-width: none;
        padding: 8px 26px 9px;
    }

    .section-downloads .third-tabs li {
        display: table;
    }

    .section-downloads .bottom-tabs .select1, .section-downloads .bottom-tabs .select2 {
        max-width: 265px;
    }

    .project-content {
        padding-top: 10px;
    }

    .section-downloads .tab-overview .sub-inner p {
        width: 100%;
    }

    .solution-customer-slider .col-two-outer {
        display: grid;
    }

    .solution-customer-slider .col-two-outer .col-two:first-child {
        order: 2;
        -webkit-order: 2;
        padding: 0 20px;
    }

    .solution-customer-slider .col-two-outer .col-two:last-child {
        order: 1;
        -webkit-order: 1;
    }

    .solution-customer-slider .arrow-icon {
        bottom: 72%;
    }

    .solution-customer-slider .col-two h6 {
        margin-top: 10px;
    }

    .solution-customer-slider .content-wrap .v-middle {
        padding: 10px 20px;
    }

    .section-downloads#n1ql .top-tabs .col-two {
        margin: 5px 0;
        width: 100%;
        padding: 10px;
    }

    .section-downloads#n1ql .top-tabs .col-two .inner-content {
        height: 150px;
        padding: 10px;
        margin-right: 0px;
    }

    .section-downloads .tab-inner-content .run-btn {
        padding-right: 0;
    }

    .section-downloads .tab-inner-content .run-btn > button {
        font-size: 16px;
        padding: 8px 15px;
    }

    .section-downloads#n1ql .top-tabs {
        padding: 20px 20px 0;
    }

    .section-downloads#n1ql .top-tabs .col-two:last-child .inner-content {
        padding-top: 10px;
        height: 205px;
    }

    .section-downloads .cta-link {
        font-size: 14px;
    }
}

@media (max-width: 767px) and (min-width: 596px) {
    .info-bar a {
        height: 46px;
    }

    .info-bar .para-18 {
        font-size: 20px;
        line-height: 1.3;
    }

    .section-downloads .selectboxit-container span,
    .section-downloads .selectboxit-container .selectboxit-options a,
    .section-downloads .view-tabs .select-box form input {
        font-size: 16px;
    }

    .section-downloads {
        padding: 40px 0 0;
    }

    .section-tabs .info-block .text-with-button h6 {
        font-size: 20px;
        max-width: 330px;
    }

    .section-tabs .info-block .text-with-button {
        padding-left: 15px;
    }

    .section-downloads .bottom-tabs {
        margin-bottom: 40px;
    }

    .section-downloads .tab-overview .cta-link {
        font-size: 16px;
    }

    .section-downloads .top-tabs {
        padding: 20px 0;
    }

    .section-downloads.col-expand .top-tabs {
        padding: 20px 25px;
    }

    .section-downloads .second-tabs a.tab-link {
        width: 100%;
    }

    .solution-customer-slider .col-two-outer .col-two {
        height: 350px;
    }

    .solution-customer-slider .arrow-icon .prev,
    .solution-customer-slider .arrow-icon .next {
        max-width: 25px;
    }

    .solution-customer-slider .col-two p {
        font-size: 22px;
    }

    .solution-customer-slider .overlay-logo .v-middle-inner {
        max-width: 160px;
    }

    .solution-customer-slider .col-two h6,
    .solution-customer-slider .col-two span {
        font-size: 17px;
    }

    .msg-pop-up p {
        margin-top: 10px;
    }
}

@media (max-width: 595px) {
    .info-bar a {
        height: 40px;
        right: 0;
        position: relative;
        margin-top: 20px;
    }

    .info-bar .para-18 {
        max-width: 100%;
        font-size: 18px;
        line-height: 1.3;
    }

    .info-bar .content-wrap {
        text-align: center;
    }

    .section-downloads .tabs li {
        padding: 13px 20px;
        text-align: center;
        float: left;
        display: block;
        width: 50%;
    }
    .section-downloads.iframe-tabs .tabs ul{
        font-size: 0;
    }
    .section-downloads.iframe-tabs .tabs li {
        padding: 13px 15px;
        text-align: center;
        float: none;
        display: inline-block;
        /*width: 33.33%;*/
    }
    .section-downloads.iframe-tabs .tabs li:last-child{
        border-left: 1px solid #c1c1c1;
    }
    .solution-customer-slider .col-two-outer .col-two:first-child {
        height: 350px;
    }

    .solution-customer-slider .col-two .content-wrap {
        max-width: 100%;
    }

    .section-downloads {
        padding: 30px 0 0;
    }

    .section-downloads .tabs li:last-child {
        border-left: 0;
    }

    .section-downloads .third-tabs li.active:after {
        bottom: 0;
    }

    .section-downloads .bottom-tabs {
        margin-bottom: 30px;
    }

    .section-downloads .tab-overview .cta-link {
        font-size: 14px;
    }

    .section-downloads .top-tabs {
        padding: 20px 0;
    }

    .section-downloads.col-expand .top-tabs {
        padding: 20px;
    }

    .solution-customer-slider .col-two-outer .col-two {
        height: 300px;
    }

    .solution-customer-slider .arrow-icon {
        padding: 0 20px;
    }

    .solution-customer-slider .arrow-icon .prev,
    .solution-customer-slider .arrow-icon .next {
        max-width: 20px;
    }
}

@media (max-width: 480px) {
    .section-downloads li {
        display: block;
    }

    .generic-content-overlay .overlay-content .overlay-btn {
        display: block;
        margin-top: 20px;
    }

    .section-downloads .second-tabs li.active:after {
        display: none;
    }

    .section-downloads .third-tabs li {
        width: 100%;
    }

    .section-downloads .third-tabs li {
        border-right: 0;
    }

    .section-downloads .third-tabs li.active:after {
        display: none;
    }

    .section-downloads .bottom-tabs .select-box button {
        width: auto;
    }

    .section-downloads .view-tabs .selectboxit-container {
        width: 100%;
        max-width: inherit;
    }

    .section-downloads .view-tabs .select-box button {
        margin-left: 0;
        margin-top: 10px;
    }

    .section-downloads .second-tabs a.tab-link {
        display: block;
        width: 100%;
    }

    .solution-customer-slider .col-two p {
        font-size: 18px;
    }

    .solution-customer-slider .overlay-logo .v-middle-inner {
        max-width: 120px;
    }

    .solution-customer-slider .col-two h6,
    .solution-customer-slider .col-two span {
        font-size: 15px;
    }

    .solution-customer-slider .col-two .cta-effect {
        font-size: 15px;
    }
}

.form-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(51, 51, 51, 0.8);
    z-index: 11;
    display: none;
    opacity: 0;
    overflow: scroll;
    top: 0;
}

.form-overlay .v-middle-inner {
    padding: 0 20px;
}

.form-overlay .form {
    position: relative;
    max-width: 740px;
    padding: 55px 20px 40px;
    margin: 30px auto;
    background: #fff;
    overflow: hidden;
}

.form-overlay .form h4 {
    letter-spacing: -0.025em;
    margin-bottom: 6px;
}

.form-overlay .form p {
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 14px;
}

.form-overlay .close-btn {
    position: absolute;
    background: #e81c21;
    right: 0;
    top: 0;
    width: 51px;
    padding: 14px 0;
    height: 48px;
    cursor: pointer;
}

.code-intro,
.col-expand {
    float: left;
    width: 100%;
    display: none;
    padding-bottom: 10px;
}

.code-intro .code-intro-container {
    position: relative;
}

.section-downloads.col-expand {
    padding: 0;
}

.section-tabs .col-outer .col-three.col-two-block {
    width: calc(50% - 11px);
}

.section-tabs .col-outer .hide {
    display: none !important;
}

.section-tabs .info-block {
    display: table;
    width: 100%;
    height: 100%;
    padding: 19px 28px 20px;
}

.section-tabs .info-block .text-with-button h6 {
    float: left;
    margin-top: 9px;
}

.section-tabs .image {
    display: table-cell;
    vertical-align: middle;
    width: 76px;
}

.section-tabs .image img {
    display: block;
}

.section-tabs .info-block .text-with-button {
    display: table-cell;
    vertical-align: middle;
    padding-left: 20px;
}

.section-tabs .info-block .text-with-button .close-btn {
    float: right;
    border: 1px solid #000;
    background: #000;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 17px 7px;
    cursor: pointer;
    margin-top: 1px;
    border-radius: 0;
    text-transform: capitalize;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.section-tabs .info-block .text-with-button .close-btn:hover {
    border: 1px solid #000;
    color: #000;
    background: transparent;
}

.section-tabs .tabset {
    float: left;
    width: 128px;
    vertical-align: top;
}

.section-tabs .pro-tabs {
    padding: 19px 28px 0px;
}

.section-tabs .pro-tabs:after {
    content: "";
    clear: both;
    display: block;
}

.code-intro .links,
#n1ql .links {
    float: left;
    width: 100%;
    text-align: right;
    padding-top: 15px;
    padding: 18px 28px 18px;
}

#n1ql .links {
    padding: 18px 0;
}

.section-downloads.col-expand .third-tabs li,
.section-downloads .multi-tab li {
    width: 25%;
}

.section-downloads .lower-tabs {
    border-top: 1px solid #c1c1c1;
}

.section-tabs .links > h6 {
    font-size: 16px;
    letter-spacing: -0.024em;
    display: inline-block;
}

.section-tabs .links > a {
    color: #00ace0;
    font-weight: 700;
    margin: 0 20px;
    position: relative;
}

.code-intro .links > a:before,
#n1ql .links > a:before {
    content: '>';
    position: absolute;
    right: -15px;
    top: 2px;
    -webkit-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.code-intro .links > a:after,
#n1ql .links > a:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #00ace0;
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -ms-transform: scale3d(0, 1, 1);
    -o-transform: scale3d(0, 1, 1);
    -moz-transform: scale3d(0, 1, 1);
    -webkit-transition: -webkit-transform 0.1s;
    transition: transform 0.1s;
    -ms-transition: transform 0.1s;
    -o-transition: transform 0.1s;
    -moz-transition: transform 0.1s;
}

.code-intro .links > a:hover:after,
#n1ql .links > a:hover:after {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    -o-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
}

.section-tabs .tabset li a {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    position: relative;
}

.section-tabs .tabset li {
    padding: 28px 30px 25px;
    border-bottom: 1px solid #7b7b7b;
    background: #666666;
    cursor: pointer;
}

.section-tabs .code-mobile .tabset li {
    padding: 28px 15px 25px;
}

.section-tabs .text-holder {
    position: relative;
}

.black-box {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #272822;
    right: 0;
    bottom: 0;
}

.section-tabs .code-mobile .tab-content {
    height: 258px;
}

.section-tabs .tabset li a:after {
    content: '';
    background: #fff;
    width: 100%;
    position: absolute;
    height: 1px;
    bottom: -3px;
    left: 0;
    -webkit-transform: scale3d(0, 1, 1);
    -moz-transform: scale3d(0, 1, 1);
    -ms-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transition: -webkit-transform 0.1s;
    -moz-transition: transform 0.1s;
    -ms-transition: transform 0.1s;
    transition: transform 0.1s;
}

.section-tabs .tabset li:hover a:after {
    -webkit-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.section-tabs .tabset li:last-child {
    border-bottom: 0;
}

.section-tabs .text-holder .code-heading:first-child {
    margin-top: 10px;
}

.section-tabs .code-intro .tab-content pre {
    white-space: normal;
    margin: .5em 0 0 .5em;
    padding: 0 10px;
    height: 390px;
}

.section-tabs .code-intro .tab-content pre span {
    font-family: 'Courier', sans-serif;
}

.section-tabs .text-holder .code-heading {
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    display: block;
    margin: 20px 15px 0;
    line-height: 1;
    font-family: "Gotham A", "Gotham B" !important;
}

.section-tabs .tabset li.active {
    background: #000000;
    border-bottom: 0;
}

.section-tabs .code-box {
    float: left;
    width: calc(100% - 128px);
    background: #272822;
}

.section-tabs .tab-content {
    float: left;
    width: calc(100% - 8px);
    background: #272822;
    color: #fff;
    font-weight: bold;
    height: 398px;
    margin: 10px 0;
    overflow: hidden;
}

.section-tabs .code-intro.code-mobile .tab-content pre {
    height: 250px;
}

.section-tabs .tab-content pre::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: transparent;
}

.section-tabs .tab-content pre::-webkit-scrollbar-track {
    background: #272822;
}

.section-tabs .tab-content pre::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #666;
}

.section-tabs .tab-content .tab {
    display: none;
    opacity: 0;
}

.section-tabs .tab-content .tab.active {
    display: block;
    opacity: 1;
}

.section-tabs .tab-toggle {
    display: none;
}

/* leadership-intro */

.leadership-intro h4,
.section-boards h2,
.leadership-block h2 {
    font-size: 42px;
}

.intro-block-platform .content-900 h4:after {
    height: 2px;
    background: #333;
}

@media (max-width: 1024px) and (min-width: 768px) {
    .section-tabs .tabset li a {
        font-size: 15px;
    }

    .section-tabs .tabset li {
        padding: 20px 24px;
    }

    .section-tabs .tab-content {
        height: 320px;
    }

    .section-tabs .code-intro .tab-content pre {
        height: 312px;
    }

    .section-tabs .links > h6, .section-tabs .links > a {
        font-size: 15px;
    }
}

@media (max-width: 767px) {

    .section-tabs .tabset {
        float: none;
        width: 100%;
        vertical-align: top;
        position: relative;
    }

    .section-tabs .code-box {
        width: 100%;
    }

    .section-tabs .tab-content {
        float: left;
        width: calc(100% - 8px);
    }

    .section-tabs .info-block {
        padding: 20px 15px;
    }

    .section-tabs .tab-toggle {
        display: block;
        background: #000 !important;
        border: 1px solid #d9dae0;
        width: 100%;
        padding: 10px;
        text-align: left;
        text-transform: uppercase;
        margin-bottom: 6px;
        cursor: pointer;
        position: relative;
        color: #fff;
    }

    .section-tabs .tab-toggle span {
        font-weight: 700;
        font-size: 14px;
    }

    .section-tabs .tabset ul {
        position: absolute;
        top: 46px;
        left: 0;
        width: 100%;
        display: none;
        z-index: 2;
    }

    .section-tabs .tab-toggle .caret {
        content: "";
        background-image: url(../images/White_Caret.svg);
        width: 18px;
        height: 12px;
        position: absolute;
        right: 24px;
        top: 16px;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .section-tabs .tab-toggle .closeup {
        transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        -webkit-transform: rotate(-180deg);
        -moz-transform: rotate(-180deg);
    }

    .section-tabs .col-outer .col-three.col-two-block {
        width: 100%;
    }

    .section-tabs .tabset li a {
        font-size: 14px;
    }

    .section-tabs .tabset li,
    .section-tabs .code-mobile .tabset li {
        padding: 10px;
    }

    .section-tabs .links > h6, .section-tabs .links > a {
        font-size: 14px;
    }

    .section-tabs .links > a {
        margin: 0 20px 0 10px;
    }

    .section-downloads .tabs-content .bottom-tabs .col-two:first-child,
    .section-downloads.col-expand .bottom-tabs .col-two:first-child {
        max-width: 100%;
    }

    .blue-content {
        font-size: 14px;
    }

    .msg-pop-up {
        padding-top: 30px;
    }

    .pop-up-inner {
        padding: 17px 20px;
    }
}

@media (max-width: 595px) {
    .section-tabs .links {
        text-align: left;
        padding: 20px 10px;
    }

    #n1ql .links {
        text-align: left;
        padding: 20px 0px;
    }

    #n1ql .links > a,
    .section-downloads#n1ql .links > a {
        margin: 0;
    }

    #n1ql .links > h6 {
        margin: 0 0 10px 0;
    }

    .section-downloads.col-expand .third-tabs li,
    .section-downloads .multi-tab li {
        width: 100%;
    }

    .section-downloads.col-expand .third-tabs.three-tabs li, .section-downloads .multi-tab.three-tabs li {
        width: 100%;
    }

    .section-tabs .links > h6 {
        margin: 0 0 10px 10px;
        display: block;
    }

    .section-tabs .image {
        display: block;
        margin: 0 auto 8px;
    }

    .section-tabs .info-block .text-with-button {
        display: block;
        text-align: center;
        padding-left: 0;
    }

    .section-tabs .info-block .text-with-button h6 {
        margin: 8px auto;
        font-size: 20px;
        float: none;
    }

    .section-tabs .info-block .text-with-button .close-btn {
        padding: 7px 10px;
        float: none;
    }

    .section-downloads .second-tabs ul {
        margin: 0 0 10px;
        display: block;
    }

    .section-downloads .selectboxit-container span,
    .section-downloads .selectboxit-container .selectboxit-options a,
    .section-downloads .view-tabs .select-box form input{
        font-size: 14px;
    }

    .section-tabs .pro-tabs {
        padding: 20px 20px 0;
    }
}

@media (max-width: 480px) {
    .section-tabs .info-block {
        padding: 19px 20px 20px;
    }

    .section-tabs .info-block .text-with-button {
        display: block;
    }

    .section-tabs .info-block .text-with-button h6 {
        font-size: 18px;
    }

    .code-intro .links > a:before {
        right: -12px;
    }

    .section-tabs .code-intro .links > a {
        margin: 0 8px 0 10px;
    }
}

/* Partner slider */

.partner-slider .col-four {
    text-align: center;
    padding: 10px 20px;
}

.partner-slider .col-four:focus {
    outline: none;
}

.partner-slider h2,
.solution-col-grid h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 50px;
    letter-spacing: -0.025em;
}

.solution-col-grid h2 {
    margin-bottom: 54px;
}

.partner-slider .image {
    width: 100%;
    margin: 0 auto 10px;
    max-width: 200px;
    position: relative;
    cursor: pointer;
}

.partner-slider .image .v-middle {
    vertical-align: bottom;
}

.partner-slider .content {
    margin-top: 23px;
}

.partner-slider .content p {
    position: relative;
    z-index: 2;
    line-height: 1.7;
}

.partner-slider .image-wrap {
    position: relative;
    padding: 0 15px;
}

.partner-slider .shadow-image {
    padding: 0 15px;
}

.partner-slider .partner-content {
    overflow: hidden;
    padding: 10px 0 13px;
    margin: 0 10px;
}

.partner-slider a.blue-link {
    padding: 0;
    margin: 14px auto;
    font-size: 18px;
}

.partner-slider .partner-content .slick-dots {
    text-align: center;
    float: left;
    overflow: hidden;
    width: 100%;
    margin-top: 30px;
}

.partner-slider .partner-content .slick-dots li {
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 1px solid #000;
    border-radius: 50%;
    margin: 0 2px;
    cursor: pointer;
}

.partner-slider .partner-content .slick-dots li.slick-active {
    width: 10px;
    height: 10px;
    background: #000;
    position: relative;
}

.view-all-btn {
    margin: 20px auto;
    text-align: center;
    display: inline-block;
    position: relative;
    width: 100%;
}

.view-all-btn a {
    text-transform: none;
}

.partner-slider .partner-content .slick-arrow {
    display: none !important;
}

.partner-slider .partner-outer {
    position: relative;
}

.partner-slider .partner-outer .slider-button {
    position: absolute;
    bottom: 190px;
    width: 100%;
}

.partner-slider .partner-outer .slider-button .next {
    float: right;
    width: 16px;
    cursor: pointer;
    text-align: right;
    position: absolute;
    right: -15px;
}

.partner-slider .partner-outer .slider-button .prev {
    float: left;
    width: 16px;
    cursor: pointer;
    position: absolute;
    left: -15px;
}

/* Section Boards*/

.section-boards {
    text-align: center;
    padding: 75px 0 93px;
}

.section-boards h2 {
    margin-bottom: 25px;
    letter-spacing: -0.022em;
}

.section-boards .pro-tabs {
    float: left;
    width: 100%;
}

.section-boards .tabset {
    float: left;
    width: 329px;
    background: #000;
    padding: 43px 0 60px;
}

.section-boards .tab-list .tab {
    background: #f3f3f3;
    display: none;
    text-align: left;
}

.section-boards .tab-list .tab .text-holder {
    padding: 20px 0;
}

.section-boards .tabset a:before {
    content: '';
    position: absolute;
    width: 9px;
    height: 0;
    background: #ea2328;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.section-boards .tab-content h2,
.section-boards .tabset h2 {
    font-size: 38px;
    font-weight: 400;
    line-height: 1.2;
    display: inline-block;
    float: left;
}

.section-boards .tab-content h6,
.section-boards .tabset h6 {
    color: #919191;
    font-weight: 400;
}

.section-boards .tab-content p {
    padding: 29px 0;
    line-height: 1.7;
    font-weight: 400;
}

.section-boards .tabset li > a {
    position: relative;
    display: block;
    padding: 16px 28px;
}

.section-boards .heading-links {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.connect-links {
    float: right;
}

.connect-links span {
    color: #000;
    margin: 10px 14px;
    font-weight: 700;
}

.section-boards .social-link,
.leadership-block .social-link {
    width: 18px;
    height: 15px;
    position: relative;
    display: inline-block;
    margin: 12px 7px;
    cursor: pointer;
}

.section-boards .social-link img,
.leadership-block .social-link img {
    width: 100%;
    height: 100%;
}

.section-boards .tabset a span:first-child {
    display: block;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    text-align: left;
    padding-bottom: 10px;
}

.section-boards .tabset a span:last-child {
    color: #b6b6b6;
    font-size: 14px;
    display: block;
    text-align: left;
    font-weight: 400;
}

.section-boards .tab-content {
    float: left;
    width: calc(100% - 329px);
    color: #fff;
    font-weight: bold;
    padding: 52px 22px 52px 58px;
    overflow: scroll;
    text-align: left;
}

.section-boards .tab-content .tab {
    display: none;
    opacity: 0;
}

.section-boards .tab-content .tab.active {
    display: block;
    opacity: 1;
}

.section-boards .tab-toggle {
    display: none;
}

/*
* Content with Graphic
*/
.content-graphic {
    background-color: #000;
    padding: 0;
}

.content-graphic .col-left {
    position: relative;
    width: 50%;
    float: left;
    padding: 150px 0 150px 20px;
}

.content-graphic .col-left .dummy-image {
    position: absolute;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    z-index: 5;
    height: 500px;
    width: 500px;
    top: calc(50% - 250px);
    cursor: pointer;
}

.content-graphic .col-left .dummy-image > img {
    width: 100%;
}

.content-graphic .col-left .dummy-image:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
    transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

.content-graphic .col-right {
    position: relative;
    width: 50%;
    float: left;
    padding: 150px 20px 150px 0;
}

.content-graphic .col-inner {
    position: relative;
    height: 500px;
    width: 100%;
    overflow: hidden;
}

.content-graphic .col-inner .content-wrapper {
    max-width: 540px;
    width: 100%;
    height: 100%;
    padding: 18px 35px 0 46px;
}

.content-graphic .col-inner h2 {
    color: #fff;
    font-size: 42px;
    line-height: 1.22;
    letter-spacing: -0.022em;
}

.content-graphic .col-inner p {
    color: #fff;
    padding: 13px 0 24px;
    font-weight: 400;
    line-height: 1.68;
}

.content-graphic .wheel-loader {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 1);
}

.content-graphic1 .wheel-loader {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 1);
    display: none;
    z-index: 21;
    left: 0;
}

.content-graphic1 .preloader-wrap {
    position: relative;
    margin-top: 8px;
    background: rgba(0, 0, 0, 1);
    z-index: 2;
}

.content-graphic1 .preloader-wrap .text {
    color: #fff;
    margin-top: 12px;
    font-weight: 400;
    font-size: 14px;
}

.content-graphic1 .preloader-wrap .percentage {
    z-index: 100;
    border: 1px solid #ccc;
    text-align: center;
    color: #fff;
    line-height: 30px;
    font-size: 15px;
}

.content-graphic1 .preloader-wrap .loader {
    height: 8px;
    max-width: 200px;

    background: #333;
    border-radius: 20px;
    font-weight: 300;
    margin: auto;
}

.content-graphic1 .preloader-wrap .loader:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.content-graphic1 .preloader-wrap .trackbar {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    color: #fff;
    text-align: center;
    line-height: 30px;
    overflow: hidden;
    position: relative;
    opacity: 0.99;
}

.content-graphic1 .preloader-wrap .loadbar {
    width: 0%;
    height: 100%;
    background: #cb312b;
    box-shadow: 0px 0px 14px 1px #008737;
    position: absolute;
    top: 0;
    left: 0;
    animation: flicker 5s infinite;
    overflow: hidden;
}

.content-graphic .wheel-loader .v-middle-inner {
    text-align: center;
}

.content-graphic .col-inner .transparent-btn {
    border: 1px solid #fff;
    padding: 16px;
    border-radius: 0;
}

.content-graphic .col-two .transparent-btn:hover {
    border: 1px solid #e81c21;
}

.content-graphic .v-middle-inner {
    text-align: left;
}

.content-graphic .graphic-img {
    width: 500px !important;
    height: 500px !important;
    margin: 0 auto;
}

.content-graphic1 .graphic-img {
    opacity: 1;
    visibility: hidden;
}

.content-graphic .slide-item:focus,
.content-graphic .slide-item {
    outline: none;
}

.content-graphic .graphic-img canvas {
    width: 500px !important;
    height: 500px !important;
}

.content-graphic .get-started-content {
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    height: 100%;
}

.content-graphic .slider-content {
    position: relative;
    max-height: 490px;
    width: 100%;
    padding: 0 0 0 45px;
    margin-right: 20px;
}

.content-graphic .content-slider {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    width: 100%;
}

.content-graphic .content-slider.active {
    position: relative;
    visibility: visible;
    opacity: 1;
}

.content-graphic .info-tooltip {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    width: 20px;
    height: 20px;
    margin: 0 5px;
}

.content-graphic .tooltip-text {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
}

.content-graphic .info-tooltip img {
    width: 100%;
    height: 100%;
}

.content-graphic .slider-content .tooltip-text p {
    color: #333;
    font-size: 14px;
    padding-bottom: 0;
}

.content-graphic .tip-arrow {
    content: " ";
    position: absolute;
    opacity: 0;
    visibility: hidden;
    bottom: 100%;
    left: 50%;
    margin-left: -15px;
    border-width: 15px;
    border-style: solid;
    border-color: transparent transparent white transparent;
}

.content-graphic .para-info {
    position: relative;
    display: none;
    width: 100%;
}

.content-graphic .inner-box.active .para-info {
    display: inline-block;
}

.content-graphic .inner-box.active .tooltip-text {
    opacity: 1;
    visibility: visible;
    background-color: #fff;
    padding: 20px;
}

.content-graphic .inner-box.active .tip-arrow {
    opacity: 1;
    visibility: visible;
}

.content-graphic .inner-box.active.tool-top .tooltip-text {
    top: auto;
    bottom: 75px;
}

.content-graphic .inner-box.active.tool-top .tip-arrow {
    transform: rotate(-180deg);
    bottom: 45px;
    top: auto;
}

.content-graphic .slider-content .inner-box-content {
    position: relative;
}

/*.content-graphic .slider-content .inner-box-content:before {
  position: absolute;
  content: '';
  top: -10px;
  z-index: 2;
  height: 40px;
  width: 100%;
  background: -moz-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.75) 20%, rgba(0,0,0,0.6) 44%, rgba(0,0,0,0.4) 71%, rgba(0,0,0,0.01) 100%);
background: -webkit-linear-gradient(top, rgba(0,0,0,1) 0%,rgba(0,0,0,0.75) 20%,rgba(0,0,0,0.6) 44%,rgba(0,0,0,0.4) 71%,rgba(0,0,0,0.01) 100%);
background: linear-gradient(to bottom, rgba(0,0,0,1) 0%,rgba(0,0,0,0.75) 20%,rgba(0,0,0,0.6) 44%,rgba(0,0,0,0.4) 71%,rgba(0,0,0,0.01) 100%);
}*/
/*.content-graphic .slider-content:after {
  position: absolute;
  content: '';
  bottom: 0;
  z-index: 2;
  height: 30px;
  width: 100%;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 15%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0.9) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 15%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0.9) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 15%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0.9) 100%);

}*/

.content-graphic .slider-button {
    position: absolute;
    width: 50px;
    height: 25px;
    right: 0;
    top: 0;
    z-index: 2;
    background-color: #000;
}

.content-graphic .slider-button .prev {
    position: absolute;
    left: 0;
    top: 0;
    width: 14px;
    cursor: pointer;
}

.content-graphic .slider-button .next {
    position: absolute;
    right: 0;
    top: 0;
    width: 14px;
    cursor: pointer;
}

.content-graphic .slider-button .prev img,
.content-graphic .slider-button .next img {
    width: 100%;
    height: 100%;
}

.content-graphic .slick-slider button {
    display: none !important;
}

.content-graphic .slider-content h4 {
    color: #fff;
    margin-bottom: 10px;
    width: calc(100% - 60px);
}

.content-graphic .slider-content h4:after {
    content: '';
    position: absolute;
    border-bottom: 1px solid #fff;
    left: 0;
    bottom: 0;
}

.content-graphic .slider-content p {
    padding: 10px 0;
    color: #fff;
}

.content-graphic .expand-overlay {
    position: relative;
    cursor: pointer;
}

.content-graphic .expand-overlay .expand-image {
    position: absolute;
    width: 32px;
    height: 32px;
    left: calc(50% - 16px);
    top: calc(50% - 16px);
    opacity: 0;
    z-index: 1;
    background-image: url('/images/svgs/expand-icon.svg');
    background-repeat: no-repeat;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.content-graphic .image-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    z-index: 12;
    overflow: hidden;
    overflow-y: scroll;
}

.content-graphic .image-overlay .overlay-content {
    width: 100%;
    position: relative;
}

.content-graphic .image-overlay .overlay-content .image-slider {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 100px;
    position: relative;
}

.content-graphic .image-overlay .overlay-content .expand-image {
    display: none;
}

.content-graphic .image-overlay .overlay-content .image {
    position: absolute;
    top: 0;
    left: auto;
    opacity: 0;
    width: 100%;
    z-index: -1;
}

.content-graphic .image-overlay .overlay-content .image img {
    transform: scale(1.2);
    -ms-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.content-graphic .image-overlay .overlay-content .image .image-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.content-graphic .image-overlay .overlay-content .image.active {
    position: relative;
    left: 0;
    opacity: 1;
    z-index: 1;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.content-graphic .image-overlay .overlay-content .image:after {
    display: none;
}

.content-graphic .image-overlay .overlay-content .image-nav {
    position: absolute;
    top: calc(50% - 22px);
    width: calc(100%);
    z-index: 3;
}

.content-graphic .image-overlay .overlay-content .image-nav .next {
    float: right;
}

.content-graphic .image-overlay .overlay-content .image-nav .prev {
    float: left;
}

.content-graphic .image-overlay .overlay-content .image-nav .next, .content-graphic .image-overlay .overlay-content .image-nav .prev {
    width: 44px;
    background: #555555;
    padding: 5px;
    border-radius: 50%;
    cursor: pointer;
}

.content-graphic .image-overlay .overlay-content h6 {
    color: #fff;
    margin-top: 55px;
}

.content-graphic .image-overlay .close-icon {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 28px;
    height: 21px;
    cursor: pointer;
    z-index: 3;
}

.content-graphic .image-overlay .overlay-content {
    margin-top: -20px;
}

.content-graphic .image-overlay .zoom-in-out {
    position: absolute;
    bottom: 6%;
    width: 100%;
    font-size: 0;
    z-index: 3;
    left: 0;
}

.content-graphic .image-overlay .zoom-in-out .scale-div {
    display: inline-block;
    background: #555555;
    margin: 0;
    padding: 5px;
    cursor: pointer;
    height: 42px;
    width: 42px;
}

.content-graphic .image-overlay .close-icon:after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.content-graphic .image-overlay .close-icon:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.content-graphic .image-overlay .close-icon:before, .content-graphic .image-overlay .close-icon:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 3px;
    opacity: 1;
    margin-top: -4px;
    background: #fff;
}

.content-graphic .image-overlay .v-middle-inner {
    text-align: center;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1280px;
}

.content-graphic .expand-overlay .image:hover .expand-image {
    opacity: 1;
}

.content-graphic .expand-overlay .expand-image > span {
    color: #fff;
    font-weight: 700;
    position: relative;
    right: 11px;
    top: 8px;
}

.content-graphic .expand-overlay .image {
    position: relative;
    margin-bottom: 10px;
    text-align: center;
}

.content-graphic .expand-overlay .image .content {
    display: none;
}

.content-graphic .expand-overlay .image img {
    display: inline-block;
}

.content-graphic .expand-overlay .image:after {
    content: '';
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    top: 0;
    left: 0;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.content-graphic .expand-overlay .image:hover:after {
    opacity: 1;
}

.content-graphic .inner-box {
    position: relative;
    width: calc(100% - 22px);
    height: 445px;
    overflow-y: scroll;
    overflow-x: hidden;
    padding-right: 60px;
    padding-bottom: 30px;
}

.content-graphic .inner-box ul {
    padding-left: 19px;
}

.content-graphic .inner-box ul > li {
    color: #fff;
    font-weight: 400;
    line-height: 1.4;
    list-style-type: disc;
    padding-bottom: 10px;
    font-size: 16px;
}

.content-graphic .inner-box::-webkit-scrollbar {
    width: 6px;
    height: 0;
    background-color: transparent;
}

.content-graphic .inner-box::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    border-radius: 3px;
    z-index: 2;
}

.content-graphic .slider-content .link-container {
    padding-bottom: 20px;
}

.content-graphic .slider-content .link-container .title {
    font-weight: 700;
    padding-top: 10px;
    padding-bottom: 0;
}

.content-graphic .slider-content .link-container p {
    padding: 0;
    line-height: 1.5;
}

.content-graphic .slider-content .link-container p a {
    margin: 0;
    margin-bottom: 8px;
}

@media screen and (max-width: 1224px) and (min-width: 1025px) {
    .section-boards {
        padding: 75px 0;
    }

    .content-graphic .col-inner .content-wrapper {
        padding: 0 0 0 40px;
    }

    .content-graphic .graphic-img,
    .content-graphic .graphic-img canvas {
        width: 450px !important;
        height: 450px !important;
    }

    .content-graphic .col-left .dummy-image {
        top: calc(50% - 225px);
        height: 450px;
        width: 450px;
    }
}

@media (max-width: 1240px) and (min-width: 1025px) {
    .leadership-intro h4,
    .leadership-block h2,
    .section-boards h2 {
        font-size: 38px;
    }

    .section-boards .tab-content h2,
    .partner-slider h2,
    .solution-col-grid h2,
    .section-boards .tabset h2 {
        font-size: 36px;
    }

    .section-boards .tabset {
        padding: 50px 0;
        width: 290px;
    }

    .section-boards .tab-content {
        width: calc(100% - 290px);
        padding: 40px 0 10px 30px;
    }

    .section-boards .tab-content p {
        padding: 20px 0 0;
        font-size: 15px;
    }

    .content-graphic .col-left {
        padding: 100px 0;
    }

    .content-graphic .col-right {
        padding: 100px 0;
    }

    .content-graphic .col-inner h2 {
        font-size: 40px;
    }

    .content-graphic .image-overlay .overlay-content .image .image-wrapper {
        max-width: 610px;
    }
}

@media (max-width: 1024px) and (min-width: 992px) {
    .content-graphic .image-overlay .overlay-content .image .image-wrapper {
        max-width: 570px;
    }

    .leadership-intro h4,
    .leadership-block h2,
    .section-boards h2 {
        font-size: 34px;
    }

    .section-boards .tab-content h2,
    .section-boards .tabset h2,
    .partner-slider h2,
    .solution-col-grid h2 {
        font-size: 34px;
    }

    .section-boards .tabset {
        padding: 40px 0;
        width: 280px;
    }

    .section-boards .tab-content {
        width: calc(100% - 280px);
        padding: 30px 0 10px 30px;
    }

    .section-boards .tabset a span:first-child {
        font-size: 18px;
    }

    .section-boards .tab-content p {
        padding: 20px 0;
        font-size: 15px;
    }

    .section-boards .tabset li > a:before {
        width: 7px;
    }

    .section-boards {
        padding: 60px 0;
    }

    .content-graphic .col-inner .content-wrapper {
        padding: 0 0 0 40px;
    }

    .content-graphic .graphic-img,
    .content-graphic .graphic-img canvas {
        width: 450px !important;
        height: 450px !important;
    }

    .content-graphic .col-left .dummy-image {
        top: calc(50% - 225px);
        height: 450px;
        width: 450px;
    }

    .content-graphic .col-left {
        padding: 80px 0;
    }

    .content-graphic .col-right {
        padding: 80px 0;
    }

    .content-graphic .col-inner h2 {
        font-size: 36px;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .content-graphic .image-overlay .overlay-content .image img {
        transform-origin: 0 0;
        transform: scale(1);
        -moz-transform: scale(1);
        -webkit-ransform: scale(1);
        -ms-ransform: scale(1);
    }

    .leadership-intro h4,
    .leadership-block h2,
    .section-boards h2 {
        font-size: 32px;
    }

    .section-boards .tab-content h2,
    .section-boards .tabset h2,
    .partner-slider h2,
    .solution-col-grid h2 {
        font-size: 32px;
    }

    .section-boards .tabset {
        padding: 40px 0;
        width: 230px;
    }

    .section-boards .tab-content {
        width: calc(100% - 230px);
        padding: 30px 0 0 20px;
    }

    .section-boards .tabset a span:first-child {
        font-size: 18px;
    }

    .section-boards .tab-content p {
        padding: 10px 0 0;
        font-size: 14px;
    }

    .section-boards .tabset li > a:before {
        width: 7px;
    }

    .partner-slider h2,
    .solution-col-grid h2 {
        margin-bottom: 40px;
    }

    .partner-slider .partner-content .slick-dots {
        margin-top: 15px;
    }

    .section-boards {
        padding: 50px 0;
    }

    .partner-slider .container {
        padding: 0 30px;
    }

    .content-graphic .graphic-img,
    .content-graphic .graphic-img canvas {
        width: 360px !important;
        height: 360px !important;
    }

    .content-graphic .col-left .dummy-image {
        top: calc(50% - 180px);
        height: 360px;
        width: 360px;
    }

    .content-graphic .col-inner .content-wrapper {
        padding: 0 15px 0 45px;
    }

    .content-graphic .image-overlay .overlay-content .image-slider {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 50px;
    }

    .content-graphic .col-inner h2 {
        font-size: 30px;
    }

    .content-graphic .col-left {
        padding: 60px 0 60px 0;
    }

    .content-graphic .col-right {
        padding: 60px 20px 60px 0;
    }

    .content-graphic .inner-box {
        height: 425px;
    }
}

@media (min-width: 768px) {
    .section-boards .tabset li > a:hover:before {
        opacity: 1;
        height: 100%;
    }
}

@media (max-width: 767px) {
    .content-graphic .image-overlay .close-icon {
        top: 10%;
    }

    .content-graphic .inner-box ul.detail > li {
        font-size: 14px;
    }

    .content-graphic .slider-content:before {
        top: 70px;
    }

    .content-graphic .slider-content:after {
        bottom: 15px;
    }

    .content-graphic1 .preloader-wrap .text {
        font-size: 13px;
    }

    .content-graphic .image-overlay .overlay-content .image img {
        transform-origin: 0 0;
        transform: scale(1);
        -moz-transform: scale(1);
        -webkit-ransform: scale(1);
        -ms-ransform: scale(1);
    }

    .content-graphic1 .wheel-loader img {
        max-width: 80px;
    }

    .content-graphic1 .preloader-wrap .loader {
        height: 6px;
        max-width: 140px;
    }

    .content-graphic .image-overlay .overlay-content .image-nav .next, .content-graphic .image-overlay .overlay-content .image-nav .prev {
        width: 32px;
        padding: 2px;
    }

    .content-graphic .inner-box {
        padding-right: 20px;
        width: 100%;
    }

    .content-graphic .image-overlay .overlay-content .image-nav {
        position: absolute;
        top: calc(50% - 22px);
        left: -10px;
        width: calc(100% + 20px);
        z-index: 3;
    }

    .content-graphic .image-overlay .zoom-in-out {
        position: absolute;
        bottom: 12px;
    }

    .content-graphic .image-overlay .overlay-content {
        padding: 90px 0;
    }

    .content-graphic .image-overlay .overlay-content .image-slider {
        padding: 0 10px;
        position: relative;
    }

    .section-boards .tabset {
        float: left;
        width: 100%;
        padding: 0;
    }

    .section-boards .tab-content {
        width: 100%;
        height: auto;
        padding: 30px 20px;
        display: none;
    }

    .section-boards .tabset li > a {
        padding: 15px;
    }

    .section-boards .tabset li > a:before {
        width: 5px;
    }

    .partner-slider h2,
    .solution-col-grid h2 {
        margin-bottom: 20px;
    }

    .section-boards .tabset li.toggle-active > a:before {
        opacity: 1;
        height: 100%;
    }

    .section-boards .tab-list .tab .heading-links h2 {
        padding: 0;
        margin-bottom: 10px;
    }

    .partner-slider .container {
        padding: 0 30px;
    }

    .content-graphic .col-left,
    .content-graphic .col-right {
        width: 100%;
    }

    .content-graphic .col-inner .content-wrapper {
        position: relative;
        margin: 0 auto;
        padding: 20px 0 0;
    }

    .content-graphic .col-inner .content-wrapper .v-middle {
        vertical-align: top;
    }

    .content-graphic .v-middle-inner {
        text-align: center;
    }

    .content-graphic .slider-button {
        right: 0;
        width: 100%;
        height: 35px;
    }

    .content-graphic .slider-button .prev,
    .content-graphic .slider-button .next {
        width: 20px;
    }

    .content-graphic .slide-item h4 {
        margin-top: 45px;
    }
}

@media (min-width: 768px) {
    .section-boards .tab-list .tab {
        display: none !important;
    }

    .section-boards .tabset li.active > a:before {
        opacity: 1;
        height: 100%;
    }
}

@media (max-width: 767px) and (min-width: 596px) {
    .leadership-intro h4,
    .leadership-block h2,
    .section-boards h2 {
        font-size: 28px;
    }

    .section-boards .tab-content h2,
    .section-boards .tabset h2,
    .partner-slider h2,
    .solution-col-grid h2 {
        font-size: 30px;
    }

    .content-graphic .col-left .dummy-image {
        top: 40px;
        left: calc(50% - 180px);
        height: 360px;
        width: 360px;
    }

    .section-boards .tabset a span:first-child {
        font-size: 18px;
        padding-bottom: 5px;
    }

    .section-boards .tab-content p {
        padding: 10px 0 0;
    }

    .section-boards .tabset p {
        padding-top: 10px;
    }

    .partner-slider .partner-content .slick-dots {
        margin-top: 15px;
    }

    .section-boards {
        padding: 40px 0;
    }

    .partner-slider a.blue-link {
        font-size: 16px;
    }

    .content-graphic .graphic-img,
    .content-graphic .graphic-img canvas {
        width: 360px !important;
        height: 360px !important;
    }

    .content-graphic .col-left .dummy-image {
        top: calc(50% - 180px);
        height: 360px;
        width: 360px;
    }

    .content-graphic .slider-button .next {
        right: 20px;
    }

    .content-graphic .slider-button .prev {
        left: 20px;
    }

    .content-graphic .slider-content {
        padding: 0 20px;
    }

    .content-graphic .inner-box {
        height: 280px;
    }

    .content-graphic .col-inner {
        height: 360px;
        /*/ / overflow: scroll;*/
    }

    .content-graphic .col-left,
    .content-graphic .col-right {
        padding: 40px 20px;
    }

    .content-graphic .col-inner h2 {
        font-size: 28px;
    }
}

@media (max-width: 595px) {
    .section-boards .tabset a span:first-child {
        font-size: 16px;
        padding-bottom: 5px;
    }

    .section-boards .tab-toggle .copytext > span:first-child {
        font-size: 14px;
    }

    .section-boards .tab-toggle .copytext > span:last-child {
        font-size: 12px;
    }

    .content-graphic .col-left .dummy-image {
        top: 40px;
        left: calc(50% - 140px);
        width: 280px;
        height: 280px;
    }

    .section-boards .tab-list {
        top: 61px;
    }

    .section-boards .tab-content h2 {
        padding: 0;
    }

    .section-downloads .bottom-tabs .select-box .version-select button {
        margin-top: 0;
    }

    .partner-slider .partner-content .slick-dots {
        margin-top: 10px;
    }

    .partner-slider a.blue-link {
        font-size: 14px;
    }

    .content-graphic .col-left,
    .content-graphic .col-right {
        padding: 30px 20px;
    }

    .content-graphic .graphic-img,
    .content-graphic .graphic-img canvas {
        width: 280px !important;
        height: 280px !important;
        overflow: hidden;
    }

    .content-graphic .col-left .dummy-image {
        top: calc(50% - 140px);
        height: 280px;
        width: 280px;
    }

    .content-graphic .col-inner {
        height: 300px;
    }

    .content-graphic .col-inner h2 {
        padding: 0;
    }

    .content-graphic .slider-button .next {
        right: 10px;
    }

    .content-graphic .slider-button .prev {
        left: 10px;
    }

    .content-graphic .slider-content {
        padding: 0 10px;
    }

    .content-graphic .slider-button .next,
    .content-graphic .slider-button .prev {
        width: 15px;
        overflow: hidden;
    }
}

@media (max-width: 595px) and (min-width: 481px) {
    .leadership-intro h4,
    .leadership-block h2,
    .section-boards h2 {
        font-size: 26px;
    }

    .section-boards .tab-content h2,
    .section-boards .tabset h2,
    .partner-slider h2,
    .solution-col-grid h2 {
        font-size: 24px;
    }

    .content-graphic .inner-box {
        height: 230px;
    }

    .section-boards .tab-content p {
        padding: 20px 0 0;
    }

    .section-boards .tabset p {
        padding-top: 10px;
    }

    .section-boards {
        padding: 30px 0;
    }

    .partner-slider .partner-outer .slider-button {
        bottom: 160px;
    }

    .content-graphic .col-inner h2 {
        font-size: 24px;
    }

    .msg-pop-up h4 {
        font-size: 22px;
    }

    .msg-pop-up p {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .leadership-intro h4,
    .leadership-block h2,
    .section-boards h2 {
        font-size: 24px;
    }

    .content-graphic .graphic-img,
    .content-graphic .graphic-img canvas {
        width: 250px !important;
        height: 250px !important;
        overflow: hidden;
    }

    .content-graphic .col-left, .content-graphic .col-right {
        padding: 30px 10px;
    }

    .section-boards .tab-content h2,
    .section-boards .tabset h2,
    .partner-slider h2,
    .solution-col-grid h2 {
        font-size: 22px;
    }

    .content-graphic .inner-box {
        height: 200px;
    }

    .section-boards .text-holder {
        position: relative;
    }

    .section-boards .heading-links {
        width: 100%;
        position: inherit;
        overflow: visible;
        float: left;
    }

    .connect-links {
        position: absolute;
        top: 70px;
        left: 0;
    }

    .leadership-info .social-links span {
        margin-right: 8px;
    }

    .section-boards .social-link {
        margin: 5px 7px;
    }

    .connect-links span {
        margin-left: 0;
    }

    .section-boards .tab-content p {
        padding: 40px 0 0;
    }

    .leadership-block .social-link {
        margin: 10px 5px;
    }

    .section-boards .tabset p {
        padding-top: 50px;
    }

    .partner-slider .partner-outer .slider-button {
        bottom: 70px;
    }

    .section-boards {
        padding: 30px 0 10px;
    }

    .partner-slider .partner-outer .slider-button {
        bottom: 140px;
    }

    .partner-slider .partner-outer .slider-button .prev,
    .partner-slider .partner-outer .slider-button .next {
        width: 13px;
    }

    .content-graphic .col-inner h2 {
        font-size: 22px;
    }

    .msg-pop-up h4 {
        font-size: 20px;
        line-height: 1.2;
    }

    .msg-pop-up p {
        margin-top: 5px;
    }
}

/* Promo blade */

.promo-blade .promo-content:after {
    content: '';
    display: block;
    clear: both;
}

.promo-blade .promo-content .col-three {
    position: relative;
    min-height: 172px;
    text-align: center;
    padding: 10px 40px 13px;
    overflow: hidden;
}

.promo-blade .promo-content .col-three:first-child {
    border-left: 1px solid transparent;
}

.promo-blade .promo-content .col-three:nth-child(2),
.promo-blade .promo-content .col-three:last-of-type {
    border-left: 1px solid rgba(0, 0, 0, 0.20);
}

.promo-blade .promo-content .col-three:hover,
.promo-blade .promo-content .col-three:hover + .col-three {
    border-left: 1px solid rgba(51, 51, 51, 0.2);
}

.promo-blade .promo-content h6 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 22px;
}

.promo-blade .promo-content .transparent-btn {
    border: 1px solid #fff;
    padding: 16px 30px;
}

.promo-blade .col-three .transparent-btn:hover {
    color: #00ace0;
    background: #fff;
    border: 1px solid #fff;
}

.promo-blade .promo-content .col-three:before {
    content: '';
    position: absolute;
    top: 100%;
    background: rgba(51, 51, 51, 0.2);
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: top 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    -ms-transition: top 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    -moz-transition: top 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: top 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: top 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.promo-blade .promo-content .col-three:hover:before {
    top: 0;
}

.promo-blade .promo-content .col-three:hover:after,
.promo-blade .promo-content .col-three:hover:before {
    opacity: 1;
}

@media (max-width: 1240px) and (min-width: 1025px) {
    .promo-blade .promo-content .col-three {
        padding: 30px 40px;
    }
}

@media (max-width: 1024px) and (min-width: 992px) {
    .promo-blade .promo-content .col-three {
        padding: 25px 30px;
    }

    .promo-blade .promo-content h6 {
        font-size: 22px;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .promo-blade .promo-content .col-three {
        padding: 20px 20px;
    }

    .promo-blade .col-three .transparent-btn {
        font-size: 16px;
        padding: 15px;
    }

    .promo-blade .promo-content h6 {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .promo-blade .promo-content .col-three {
        padding: 20px 20px;
        min-height: initial;
    }

    .promo-blade .promo-content .hyperlink-btn {
        font-size: 12px;
    }

    .promo-blade .promo-content .col-three:first-child {
        border-top: 1px solid transparent;
        border-left: 1px solid transparent;
    }

    .promo-blade .promo-content .col-three:nth-child(2),
    .promo-blade .promo-content .col-three:last-of-type {
        border-left: 1px solid transparent;
        border-top: 1px solid rgba(0, 0, 0, 0.20);
    }

    .promo-blade .promo-content .col-three:hover,
    .promo-blade .promo-content .col-three:hover + .col-three {
        border-top: 1px solid rgba(51, 51, 51, 0.2);
    }

    .promo-blade .promo-content h6 {
        margin-bottom: 35px;
    }

    .promo-blade .promo-content .col-three {
        padding: 40px 20px;
    }
}

@media (max-width: 767px) and (min-width: 596px) {
    .promo-blade .promo-content h6 {
        font-size: 18px;
    }
}

@media screen and (max-width: 595px) and (min-width: 481px) {
    .promo-blade .promo-content h6 {
        font-size: 18px;
    }
    .section-downloads .view-tabs .select-box form input {
        width: calc(100% - 128px);
        max-width: inherit;
    }
}

@media (max-width: 480px) {
    .promo-blade .promo-content h6 {
        font-size: 16px;
    }
    .section-downloads .view-tabs .select-box form input {
        width: 100%;
        max-width: inherit;
    }
}

/* Additional Links */
.additional-link {
    padding: 0 0 63px 0;
}

.additional-link .col-four {
    min-height: 387px;
    padding: 38px 40px 20px 40px;
}

.additional-link .program-languages {
    background: #666666;
}

.additional-link .light-grey {
    background: #454545;
}

.additional-link .dark-grey {
    background: #333333;
}

.additional-link .black {
    background: #000000;
}

.additional-link .col-four h6 {
    font-size: 18px;
    color: #fff;
}

.additional-link .col-four h6:after {
    content: '';
    display: block;
    height: 1px;
    width: 83px;
    margin: 17px 0;
    background: red;
}

.additional-link .col-four > ul {
    margin: 28px 0 0;
    display: block;
    width: 100%;
}

.additional-link .col-four li {
    margin: 0 0 10px;
    position: relative;
    padding: 0 0 0 21px;
}

.additional-link .col-four .no-inner {
    padding: 0;
}

.additional-link .col-four .no-inner:before {
    display: none;
}

.additional-link .inner-plus > a:before {
    content: '';
    position: absolute;
    left: -17px;
    top: 2px;
    width: 11px;
    height: 11px;
    background: url(../images/additional_list_icon.png) no-repeat;
}

.additional-link .col-four > ul .download-icon li {
    padding-left: 17px;
}

.additional-link .col-four > ul .download-icon li:before {
    content: '';
    position: absolute;
    left: 2px;
    top: 2px;
    width: 9px;
    height: 11px;
    background: url(../images/download_icon.png) no-repeat;
}

.additional-link .col-four li a {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.14px;
    position: relative;
    cursor: pointer;
}

.additional-link .col-four li a:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    -webkit-transform: scale3d(0, 1, 1);
    -moz-transform: scale3d(0, 1, 1);
    -ms-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transition: -webkit-transform 0.1s;
    -moz-transition: trasform 0.1s;
    -ms-transition: trasform 0.1s;
    transition: transform 0.1s;
}

.additional-link .col-four li a:hover:after {
    -webkit-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.additional-link .col-four > ul .inner-links {
    display: none;
}

.additional-link .col-four .inner-links li {
    padding-left: 9px;
    margin: 10px 0 0;
    float: left;
    width: 100%;
}

.additional-link .col-four li a.arrow:before {
    background-position: -11px 0px;
}

.additional-link .col-four li a span {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.14px;
    float: left;
    clear: both;
    line-height: 1.2;
}

/* Section Investors */

.section-investors {
    padding: 98px 0 52px;
}

.investors-wrapper {
    padding: 70px 0;
    text-align: center;
    font-size: 0;
}

.investors-icon {
    width: 25%;
    display: inline-block;
    text-align: center;
    position: relative;
    padding: 0 20px;
    margin: 80px auto 20px;
}

.investors-wrapper .investors-icon .investor-image {
    position: relative;
}

.investors-wrapper .investors-icon .investor-image a {
    cursor: pointer;
    display: inline-block;
}

.investors-wrapper .investors-icon .investor-image a img {
    max-width: 300px;
    max-height: 65px;
    width: 100%;
    height: 100%;
}

.investors-wrapper .investors-icon .investor-image a > img,
.partner-slider .col-four.shadow-hover img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.partner-slider .col-four img {
    width: 100%;
    height: 100%;
}

.investors-wrapper .investors-icon .v-middle {
    position: relative;
}

.investors-wrapper .investors-icon:hover .shadow-image,
.partner-slider .col-four.shadow-hover:hover .shadow-image {
    opacity: 0.5;
}

/*.partner-slider .col-four:hover .shadow-image {*/
/*opacity: 0.5;*/
/*}*/

.investors-wrapper .investors-icon .shadow-image,
.partner-slider .col-four .shadow-image {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    text-align: center;
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.investors-wrapper .investors-icon .shadow-image:before,
.partner-slider .col-four .shadow-image:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 33%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.94) 55%, rgba(255, 255, 255, 0.8) 68%, rgba(255, 255, 255, 0.6) 85%, rgba(255, 255, 255, 0.3) 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 33%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.94) 55%, rgba(255, 255, 255, 0.8) 68%, rgba(255, 255, 255, 0.6) 85%, rgba(255, 255, 255, 0.3) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 33%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.94) 55%, rgba(255, 255, 255, 0.8) 68%, rgba(255, 255, 255, 0.6) 85%, rgba(255, 255, 255, 0.3) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#4dffffff', GradientType=0);
}

.investors-wrapper .investors-icon .shadow-image img,
.partner-slider .col-four .shadow-image img {
    position: relative;
    z-index: 0;
}

/*.investors-wrapper .investors-icon:hover a > img,*/
/*.partner-slider .col-four:hover img {*/
/*-webkit-filter: grayscale(0%);*/
/*filter: grayscale(0%);*/
/*}*/

.section-investors h2 {
    font-size: 48px;
    letter-spacing: -0.025em;
    padding: 0;
}

@media screen and (max-width: 1024px) {
    .graphic-animate .tabs li a:hover:after {
        display: none;
    }

    .graphic-animate .tabs li.active a:hover:after {
        display: block;
    }
}

@media screen and (min-width: 992px) and (max-width: 1023px) {
    .additional-link .col-four {
        padding: 30px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .additional-link .col-four {
        padding: 30px 10px 30px 15px;
    }
}

@media screen and (min-width: 596px) and (max-width: 767px) {
    .additional-link .col-four {
        padding: 20px;
        width: 50%;
    }
}

@media screen and (min-width: 481px) and (max-width: 595px) {
    .additional-link .col-four {
        padding: 20px;
        width: 50%;
    }
}

@media screen and (max-width: 480px) {
    .additional-link .col-four {
        min-height: initial;
        padding: 20px;
    }
}

/* Section tabs */
.section-tabs .tabs {
    border-bottom: 1px solid #c1c1c1;
}

.section-tabs .tabs ul:after {
    content: "";
    clear: both;
    display: block;
}

.section-tabs .tabs li {
    width: 227px;
    height: 42px;
    background: #333333;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    float: left;
    padding-top: 13px;
    margin-right: 5px;
    cursor: pointer;
    letter-spacing: -0.3px;
}

.section-tabs .tabs li.active {
    position: relative;
    background: #fff;
    color: #000;
    border: 1px solid #c1c1c1;
    border-bottom: 0px solid #c1c1c1;
}

.section-tabs .tabs li.active:after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 0;
    border-bottom: 1px solid #fff;
}

.section-tabs .tabs-container .tab-outer {
    border: 1px solid #c1c1c1;
    border-top: 0px solid #c1c1c1;
    float: left;
    width: 100%;
}

.section-tabs .tabs-container .tab-outer .tabs-content {
    padding: 0px 0 29px 0px;
    float: left;
    width: 100%;
}

.section-tabs .tabs-container .col-outer:after {
    content: "";
    clear: both;
    display: block;
}

#mobile,
#container,
#cloud,
#kubernetes{
    display: none;
    opacity: 0;
}

.tab-container {
    position: relative;
}

.section-tabs .col-outer {
    float: left;
    width: 100%;
    padding: 30px 20px 0;
}

.section-tabs .col-outer .col-three {
    width: calc(33.33% - 11px);
    height: 212px;
    overflow: hidden;
    margin: 0 5px 10px 6px;
    cursor: pointer;
}

.section-tabs .pre-intro:before,
.section-tabs .tabs-expand:before {
    content: '';
    position: absolute;
    opacity: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    background: rgba(0, 0, 0, 0.7);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.section-tabs .pre-intro:hover:before,
.section-tabs .tabs-expand:hover:before {
    opacity: 1;

}

.section-tabs .hover-state p {
    color: #fff;
    font-weight: 700;
}

.section-tabs .col-outer .col-three .v-middle {
    padding: 0 15px;
}

.section-tabs .col-outer .col-three .bg-img {
    height: 100%;
}

.section-tabs .col-outer .col-three .bg-img img,
.section-tabs .col-outer .col-two .bg-img img {
    max-width: inherit;
    transition: transform 0.5s ease-in-out;
    -webkit-transition: transform 0.5s ease-in-out;
    -moz-transition: transform 0.5s ease-in-out;
    -ms-transition: transform 0.5s ease-in-out;
    -o-transition: transform 0.5s ease-in-out;
}

.section-tabs .col-outer .col-three:hover .bg-img img,
.section-tabs .col-outer .col-two:hover .bg-img img {
    transform: scale(1.1);
    -ms-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.section-tabs .col-outer .col-three h3,
.section-tabs .col-outer .col-two h3 {
    font-size: 36px;
    color: #fff;
    line-height: 1.2;
    margin-top: 13px;
    text-transform: uppercase;
}

.section-tabs .aditional-links {
    margin-top: 10px;
    padding: 0 26px;
    float: left;
    width: 100%;
}

.section-tabs .aditional-links .text-container {
    background: #000;
    padding: 33px 42px 47px;
}

.section-tabs .aditional-links .para-18 {
    position: relative;
    color: #fff;
    font-weight: 700;
    margin-bottom: 43px;
}

.section-tabs .aditional-links .para-18:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 83px;
    height: 2px;
    background: #ea2328;
}

.section-tabs .aditional-links a {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}

.section-tabs .aditional-links .links-container:after {
    content: "";
    display: block;
    clear: both;
}

.section-tabs .aditional-links ul li {
    margin-bottom: 10px;
}

.section-tabs .col-two .bg-img,
.section-tabs .col-three .bg-img {
    height: inherit;
}

.section-tabs .col-outer > .col-two:before,
.section-tabs .col-outer > .col-three:before {
    content: '';
    opacity: 0;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    z-index: 9;
    background: rgba(0, 0, 0, 0.7);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.section-tabs .col-outer > .get-started-box:before {
    display: none;
}

.section-tabs .col-outer > .get-started-box a:before {
    content: '';
    opacity: 0;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    z-index: 9;
    background: rgba(0, 0, 0, 0.7);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.section-tabs .col-outer > .col-two:hover:before,
.section-tabs .col-outer > .col-three:hover:before,
.section-tabs .col-outer > .get-started-box a:hover:before {
    opacity: 1;
}

@media screen and (max-width: 1224px) and (min-width: 1025px) {
    .section-tabs .col-outer .col-three h3,
    .section-tabs .col-outer .col-two h3 {
        font-size: 32px;
    }

    .section-investors h2 {
        font-size: 34px;
    }

    .investors-icon {
        margin: 50px auto 20px;
    }

    .investors-wrapper {
        padding: 50px 0;
    }

    .section-investors {
        padding: 78px 0 52px;
    }

}

@media screen and (max-width: 1024px) and (min-width: 768px) {
    .section-tabs .col-outer .col-three h3,
    .section-tabs .col-outer .col-two h3 {
        font-size: 28px;
    }

    .section-tabs .col-outer {
        text-align: center;
        font-size: 0;
    }

    .section-tabs .col-outer .col-three {
        width: calc(50% - 11px) !important;
        margin: 0 5px 11px 6px;
        display: inline-block;
    }

    .section-tabs .col-outer .col-two {
        margin-top: 0;
        margin-bottom: 11px;
        width: calc(50% - 11px) !important;
    }

    .additional-link {
        padding: 0 0 40px 0;
    }

    .section-investors {
        padding: 60px 0;
    }

    .investors-icon {
        width: 33.33%;
        margin: 30px 0;
    }

    .investors-wrapper {
        padding: 40px 0;
    }

    .section-investors h2 {
        font-size: 32px;
    }
}

@media screen and (max-width: 767px) and (min-width: 596px) {
    .section-tabs .col-outer .col-three h3,
    .section-tabs .col-outer .col-two h3 {
        font-size: 26px;
    }

    .section-tabs .col-outer {
        text-align: center;
        font-size: 0;
    }

    .section-tabs .col-outer .col-three,
    .section-tabs .col-outer .col-two {
        width: 100% !important;
        margin: 0 0 5px 0;
        display: inline-block;
        float: none;
    }

    .section-tabs .aditional-links {
        padding: 0 20px;
    }

    .section-tabs .aditional-links ul {
        margin-bottom: 30px;
        width: 50%;
    }

    .section-tabs .aditional-links ul:last-child {
        margin-bottom: 0;
    }

    .section-tabs .aditional-links .text-container {
        padding: 30px 20px 30px;
    }

    .section-tabs .aditional-links .para-18 {
        margin-bottom: 30px;
    }

    .section-tabs .aditional-links .para-18:after {
        bottom: -10px;
    }

    .additional-link {
        padding: 0 0 40px 0;
    }

    .investors-icon {
        width: 50%;
        margin: 20px 0;
    }

    .section-investors {
        padding: 40px 0;
    }

    .section-investors h2 {
        font-size: 30px;
    }
}

@media screen and (max-width: 767px) {
    .investors-wrapper {
        padding: 20px 0 0;
    }
}

@media screen and (max-width: 595px) and (min-width: 481px) {
    .section-tabs .col-outer .col-three h3,
    .section-tabs .col-outer .col-two h3 {
        font-size: 24px;
    }

    .section-tabs .col-outer {
        text-align: center;
        font-size: 0;
    }

    .section-tabs .col-outer .col-three,
    .section-tabs .col-outer .col-two {
        width: 100% !important;
        margin: 0 0 5px 0;
        display: inline-block;
        float: none;
    }

    .section-tabs .col-outer .col-three:last-child {
        margin-bottom: 0;
    }

    .section-tabs .tabs-container .tab-outer {
        padding: 0 20px;
    }

    .section-tabs .aditional-links {
        padding: 0 20px;
    }

    .section-tabs .tabs li {
        width: 50%;
        margin-right: 0;
        font-size: 15px;
        padding-top: 15px;
    }

    .section-tabs .aditional-links ul {
        margin-bottom: 0;
        width: 100%;
    }

    .section-tabs .aditional-links ul:last-child {
        margin-bottom: 0;
    }

    .section-tabs .aditional-links .text-container {
        padding: 30px 20px 30px;
    }

    .section-tabs .aditional-links .para-18 {
        margin-bottom: 30px;
    }

    .section-tabs .aditional-links .para-18:after {
        bottom: -10px;
    }

    .investors-icon {
        width: 50%;
        margin: 20px 0;
    }

    .section-investors {
        padding: 30px 0;
    }

    .section-investors h2 {
        font-size: 28px;
    }
}

@media screen and (max-width: 595px) {
    .additional-link {
        padding: 0 0 30px 0;
    }
}

@media screen and (max-width: 480px) {
    .section-tabs .col-outer .col-three h3,
    .section-tabs .col-outer .col-two h3 {
        font-size: 20px;
    }

    .section-tabs .col-outer {
        text-align: center;
        font-size: 0;
    }

    .section-tabs .col-outer .col-three,
    .section-tabs .col-outer .col-two {
        width: 100% !important;
        margin: 0 0 5px 0;
        display: inline-block;
        float: none;
    }

    .section-tabs .aditional-links {
        padding: 0 20px;
    }

    .section-tabs .tabs li {
        width: 50%;
        font-size: 15px;
        padding-top: 15px;
        margin-right: 0;
    }

    .section-tabs .aditional-links ul {
        margin-bottom: 0;
        width: 100%;
    }

    .section-tabs .aditional-links ul:last-child {
        margin-bottom: 0;
    }

    .section-tabs .aditional-links .text-container {
        padding: 30px 20px 30px;
    }

    .section-tabs .aditional-links .para-18 {
        margin-bottom: 30px;
    }

    .section-tabs .aditional-links .para-18:after {
        bottom: -10px;
    }

    .investors-icon {
        width: 100%;
        margin: 0;
        padding: 25px;
    }

    .section-investors {
        padding: 20px 0;
    }

    .section-investors h2 {
        font-size: 26px;
    }
}

.graphic-animate .tabs {
    margin: 0 30px;
}

.graphic-animate .tabs ul {
    text-align: center;
    padding: 0;
    border-bottom: 1px solid #ccc;
}

.graphic-animate .tabs li {
    display: inline-block;
    padding: 0;
    position: relative;
    max-width: 376px;
    width: 100%;
}

.graphic-animate .four.tabs li {
    max-width: 285px;
}

.graphic-animate .animate-container {
    margin: 0 auto;
}

.graphic-animate .tabs li a {
    position: relative;
    display: inline-block;
    font-size: 20px;
    cursor: pointer;
    font-weight: 300;
    padding: 5px 24px 25px;
    color: #666666;
    letter-spacing: -0.024em;
}

.graphic-animate .tabs li a:after {
    content: '';
    position: absolute;
    height: 6px;
    width: 0;
    background: #ea2328;
    bottom: 0;
    left: 0;
    transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.graphic-animate .tabs li.active a:after {
    width: 100%;
}

.graphic-animate .tabs li a:hover:after {
    width: 100%;
}

.graphic-animate .tabs-container .tabs-content {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
    float: left;
    transition: opacity 0.5s ease-in-out;
    -ms-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
    -webkit-transition: opacity 0.5s ease-in-out;
}

.graphic-animate .tabs-container {
    position: relative;
    /* overflow: hidden; */
    margin: 40px 0 0;
    height: 430px;
}

.graphic-animate .tabs li.active a {
    font-size: 30px;
    color: #333;
}

.graphic-animate .tabs-container .tabs-content.active {
    position: relative;
    opacity: 1;
    z-index: 1;
}

.graphic-animate .tabs-container .tabs-content .col-two {
    padding: 0 40px;
}

.graphic-animate .tabs-container .tabs-content .col-two:nth-child(2) {
    margin-top: 50px;
    padding: 0 30px 0 50px;
}

.graphic-animate .col-two p {
    line-height: 1.7;
}

.graphic-animate h2 {
    font-size: 48px;
    max-width: 1000px;
    margin: 0 auto 68px;
    line-height: 1.22;
    letter-spacing: -0.022em;
}

.graphic-animate {
    padding: 130px 0 96px;
    overflow: hidden;
}

.graphic-animate .tabs-content .col-two h6 {
    font-size: 20px;
    line-height: 1.8;
    color: #333333;
    font-weight: 700;
}

.graphic-animate .tabs-content .learn-btn {
    margin-top: 28px;
    float: left;
    width: 100%;
}

@media screen and (max-width: 1240px) and (min-width: 992px) {
    .graphic-animate .tabs li {
        max-width: 290px;
        width: 100%;
    }

    .graphic-animate .four.tabs li {
        max-width: 217px;
    }

    .graphic-animate .tabs {
        margin: 0 10px;
    }

    .graphic-animate .tabs li a {
        font-size: 19px;
        padding: 5px 10px 25px;
    }

    .graphic-animate .tabs li a:after {
        height: 6px;
    }

    .graphic-animate .tabs li.active a {
        font-size: 25px;
    }

    .graphic-animate .tabs-container .tabs-content .col-two {
        padding: 0 30px;
    }

    .graphic-animate h2 {
        font-size: 44px;
        margin: 0 auto 40px;
    }

    .graphic-animate .tabs-container .tabs-content .col-two {
        padding-top: 50px;
    }

    .graphic-animate #animation_container7,
    .graphic-animate canvas#canvas7 {
        max-width: 390px;
        max-height: 297px;
    }

    .graphic-animate #animation_container3,
    .graphic-animate #animation_container3 .animate-canvas {
        max-width: 390px;
        max-height: 297px;
    }

    .graphic-animate #animation_container4,
    .graphic-animate #animation_container4 .animate-canvas {
        max-width: 390px;
        max-height: 297px;
    }

    .graphic-animate h2 {
        font-size: 42px;
        max-width: 860px;
    }

    .graphic-animate {
        padding: 100px 0 70px;
    }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .graphic-animate .tabs li {
        max-width: 230px;
        width: 100%;
    }

    .graphic-animate .four.tabs li {
        max-width: 172px;
    }

    .graphic-animate .tabs {
        margin: 0 10px;
    }

    .graphic-animate .tabs li a {
        font-size: 18px;
        padding: 5px 10px 25px;
    }

    .graphic-animate .tabs li a:after {
        height: 6px;
    }

    .graphic-animate .tabs li.active a {
        font-size: 19px;
        font-weight: 500;
    }

    .graphic-animate .tabs-container .tabs-content .col-two,
    .graphic-animate .tabs-container .tabs-content .col-two:nth-child(2) {
        padding: 0 20px;
    }

    .graphic-animate h2 {
        font-size: 40px;
        margin: 0 auto 35px;
    }

    .graphic-animate .tabs-container .tabs-content .col-two:nth-child(1) {
        padding-top: 40px;
    }

    .graphic-animate #animation_container7,
    .graphic-animate canvas#canvas7 {
        max-width: 304px;
        max-height: 232px;
    }

    .graphic-animate #animation_container3,
    .graphic-animate #animation_container3 .animate-canvas {
        max-width: 304px;
        max-height: 232px;
    }

    .graphic-animate #animation_container4,
    .graphic-animate #animation_container4 .animate-canvas {
        max-width: 304px;
        max-height: 232px;
    }

    .graphic-animate {
        padding: 60px 0 40px;
    }

    .graphic-animate .col-two p {
        font-size: 15px;
    }

    .graphic-animate h2 {
        font-size: 38px;
        margin-bottom: 30px;
        max-width: 800px;
    }

    .graphic-animate .tabs-container {
        margin: 20px 0;
        height: 450px;
    }
}

@media screen and (max-width: 767px) {
    .graphic-animate .tabs ul {
        display: table;
        width: 100%;
        border-bottom: none;
        border-top: 1px solid #dddddd;
        border-left: 1px solid #dddddd;
    }

    .graphic-animate .tabs li {
        display: table-cell;
        vertical-align: middle;
        width: 33.33%;
        max-width: 240px;
        border-bottom: 1px solid #dddddd;
        border-right: 1px solid #dddddd;
        height: 72px;
    }

    .graphic-animate .four.tabs li {
        width: 25%;
        max-width: 180px;
        height: 72px;
    }

    .graphic-animate .tabs li.active {
        background: #ea2328;
    }

    .graphic-animate .tabs li.active a:hover:after {
        display: none;
    }

    .graphic-animate .tabs li.active a,
    .graphic-animate .tabs li a {
        font-weight: 700;
        line-height: 1.2;
    }

    .graphic-animate .tabs li a {
        color: #333333;
    }

    .graphic-animate .tabs li.active a {
        color: #FFFFFF;
    }

    .graphic-animate .tabs {
        margin: 0;
    }

    .graphic-animate .tabs li a:after {
        height: 4px;
        display: none;
    }

    .graphic-animate .tabs-container .tabs-content .col-two:nth-child(2) {
        margin-top: 30px;
        padding: 0 10px;
    }

    .graphic-animate .animate-container {
        margin: 20px auto 0;
    }
}

@media screen and (max-width: 767px) and (min-width: 596px) {
    .graphic-animate .tabs li {
        max-width: inherit;
    }

    .graphic-animate .tabs li a {
        font-size: 18px;
        padding: 15px;
        text-transform: uppercase;
    }

    .graphic-animate .tabs li a:after {
        height: 5px;
    }

    .graphic-animate .tabs li.active a {
        font-size: 18px;
    }

    .graphic-animate .tabs-container .tabs-content .col-two {
        padding: 0 25px;
    }

    .graphic-animate h2 {
        font-size: 35px;
        margin: 0 auto 30px;
    }

    .graphic-animate .tabs-container {
        height: auto;
        margin: 0;
    }

    .graphic-animate {
        padding: 40px 0;
    }

    .graphic-animate h2 {
        font-size: 34px;
        margin-bottom: 25px;
        max-width: 700px;
    }

    .graphic-animate #animation_container7,
    .graphic-animate canvas#canvas7,
    .graphic-animate #animation_container3,
    .graphic-animate #animation_container3 .animate-canvas,
    .graphic-animate #animation_container4,
    .graphic-animate #animation_container4 .animate-canvas {
        max-width: 400px;
        max-height: 310px;
    }
}

@media screen and (max-width: 595px) and (min-width: 481px) {
    .graphic-animate .tabs li a,
    .graphic-animate .tabs li.active a {
        font-size: 14px;
        padding: 18px 10px;
    }
}

@media screen and (max-width: 595px) {
    .graphic-animate .tabs li a {
        font-size: 14px;
        text-transform: uppercase;
    }

    .graphic-animate #animation_container7,
    .graphic-animate canvas#canvas7,
    .graphic-animate #animation_container3,
    .graphic-animate #animation_container3 .animate-canvas,
    .graphic-animate #animation_container4,
    .graphic-animate #animation_container4 .animate-canvas {
        max-width: 280px;
        max-height: 220px;
    }

    .graphic-animate #animation_container7 {
        margin: 0 auto;
    }

    .graphic-animate {
        padding: 40px 0;
    }

    .graphic-animate .tabs-container .tabs-content {
        width: 100%;
    }

    .graphic-animate .tabs-container .tabs-content .col-two {
        padding: 0;
    }

    .graphic-animate .tabs-container {
        height: 521px;
        margin: 0;
    }

    .graphic-animate h2 {
        font-size: 28px;
        margin-bottom: 25px;
        padding: 0;
    }

    .graphic-animate .tabs ul {
        border-top: 0;
    }

    .graphic-animate .tabs li {
        border-top: 1px solid #dddddd;
        overflow: hidden;
    }
}

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

    .graphic-animate .tabs li a,
    .graphic-animate .tabs li.active a {
        font-size: 12px;
        padding: 22px 4px;
    }

    .graphic-animate .tabs li {
        max-width: 93px;
    }

    .graphic-animate .four.tabs li {
        max-width: 69px;
    }
}

@media screen and (max-width: 320px) {
    .graphic-animate .tabs li a,
    .graphic-animate .tabs li.active a {
        font-size: 11px;
    }
}

/* Page download accordian */
.page-download-accordian {
    display: block;
    border-top: 1px solid #cccccc;
    padding: 24px 0 0px;
    width: calc(100% - 58px);
    margin: 0 auto;
}

.accodian-bottom {
    position: relative;
    width: 100%;
    float: left;
    padding-top: 20px;
    display: none;
}

.accodian-bottom:nth-child(3) {
    display: block;
}

.page-download-accordian.active-accordian {
    padding: 24px 0 38px;
}

.page-download-accordian .accordian-title {
    display: inline-block;
    cursor: pointer;
}

.page-download-accordian .accordian-title:after {
    content: "";
    display: block;
    clear: both;
}

.page-download-accordian .accordian-title span {
    position: relative;
    border: 2px solid #000;
    height: 22px;
    width: 22px;
    float: left;
}

.page-download-accordian .accordian-title span:before {
    content: "";
    position: absolute;
    top: 8px;
    left: 4px;
    width: 10px;
    height: 2px;
    background: #000;
}

.page-download-accordian .accordian-title span:after {
    content: "";
    position: absolute;
    top: 4px;
    left: 8px;
    width: 2px;
    height: 10px;
    background: #000;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.page-download-accordian .accordian-title.active span:after {
    height: 2px;
    top: 8px;
}

.page-download-accordian .accordian-title p {
    color: #00ace0;
    font-weight: 700;
    float: left;
    padding: 2px 10px;
    text-transform: none;
}

.page-download-accordian .accordian-block {
    display: none;
    padding: 21px 29px 0;
    overflow: hidden;
}

.page-download-accordian .accordian-block > p {
    display: block;
    color: #333333;
    font-weight: 400;
    margin-bottom: 24px;
}

.page-download-accordian .accordian-block table {
    width: 100%;
    border-top: 1px solid #474747;
    border-left: 1px solid #474747;
}

.page-download-accordian .accordian-block table .para-18 {
    color: #fff;
    font-weight: 700;
    padding-top: 2px;
}

.page-download-accordian .accordian-block table tbody .para-18 {
    letter-spacing: -1px;
}

.page-download-accordian .accordian-block table thead {
    background: #666666;
}

.page-download-accordian .accordian-block table thead td:nth-child(1),
.page-download-accordian .accordian-block table tbody td:nth-child(1) {
    width: 16.1%;
}

.page-download-accordian .accordian-block table td {
    height: 60px;
    vertical-align: middle;
    border-bottom: 1px solid #474747;
    border-right: 1px solid #474747;
    width: 27.96%;
    text-align: center;
}

.page-download-accordian .accordian-block table tbody td {
    background: #545454;
}

.page-download-accordian .accordian-block table tbody td:nth-child(1) {
    background: #666666;
}

.page-download-accordian .accordian-block table td p {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    padding-top: 3px;
}

.page-download-accordian .accordian-block table td a {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    padding-top: 3px;
}

.page-download-accordian .accordian-block table td a:after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 0;
    border-top: 1px solid #b7b7b7;
    border-bottom: 1px solid #a2a2a2;
    -webkit-transform: scale3d(0, 1, 1);
    -moz-transform: scale3d(0, 1, 1);
    -ms-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transition: -webkit-transform 0.1s;
    -moz-transition: trasform 0.1s;
    -ms-transition: trasform 0.1s;
    transition: transform 0.1s;
}

.page-download-accordian .accordian-block table td a:hover:after {
    -webkit-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

/* Enquiry Form */
.enquiry-form {
    padding: 96px 0 79px;
}

.enquiry-form form {
    max-width: 580px;
    width: 100%;
    margin: 23px auto;
}

.enquiry-form .head h4 {
    letter-spacing: -0.025em;
    margin-bottom: 6px;
}

.enquiry-form .head p {
    color: #000;
    font-weight: 400;

}

.enquiry-form .input-box,
.enquiry-form .text-box {
    width: 100%;
    margin-bottom: 9px;
    float: left;
    border: 1px solid #666;
    background: #fff;
    overflow: hidden;
    position: relative;
}

.enquiry-form .input-box input,
.enquiry-form .text-box textarea {
    border: none;
    width: 100%;
    padding: 14px 9px 14px;
    font-size: 14px;
    font-weight: 700;
    color: #666666;
}

.enquiry-form .select-box {
    float: left;
    width: 100%;
    margin-bottom: 9px;
}

.enquiry-form .select-box select {
    width: 100%;
    height: 54px;
    background: #fff;
    border: 1px solid #666;
    border-radius: 0 !important;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #666666;
    -webkit-appearance: none;
    padding: 0 9px 7px;
}

.enquiry-form .text-box {
    font-size: 0;
}

.enquiry-form .text-box textarea {
    padding: 10px 10px;
    max-width: 578px;
    min-width: 578px;
    min-height: 145px;
}

.enquiry-form .text-box textarea:focus {
    outline: none;
}

.enquiry-form .col-two:first-of-type {
    padding-right: 5px;
}

.enquiry-form .col-two:nth-child(2) {
    padding-left: 4px;
}

.enquiry-form label {
    float: left;
    position: absolute;
    padding: 7px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #666;
}

.enquiry-form .registration-btn {
    float: left;
    margin: 21px auto;
    text-align: center;
    width: 100%;
}

.enquiry-form .registration-btn .red-btn {
    padding: 11px 82px 10px 77px;
}

.enquiry-form .input-box input {
    border-bottom: 1px solid #fff;
}

.enquiry-form .input-box input.has-error,
.enquiry-form .input-box input.input-error,
.enquiry-form .text-box textarea.input-error,
.enquiry-form .select-box select.has-error ~ .selectboxit-container,
.enquiry-form .select-box select.input-error ~ .selectboxit-container {
    border-bottom: 1px solid #e81c21;
}

@media screen and (max-width: 1224px) and (min-width: 992px) {
    .page-download-accordian .accordian-title {
        margin-bottom: 15px;
    }

    .page-download-accordian {
        padding: 20px 0 0px;
        width: calc(100% - 40px);
    }

    .page-download-accordian.active-accordian {
        padding: 20px 0 40px;
    }

    .page-download-accordian .accordian-block {
        padding: 0 20px 0;
    }

    .enquiry-form {
        padding: 50px 0;
    }

    .enquiry-form .registration-btn {
        margin: 20px auto 0;
    }

    .content-graphic .col-left {
        padding-left: 0;
    }

    .content-graphic .col-right {
        padding-right: 40px;
    }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .page-download-accordian .accordian-title {
        margin-bottom: 10px;
    }

    .page-download-accordian {
        padding: 20px 0 0px;
        width: calc(100% - 40px);
    }

    .page-download-accordian.active-accordian {
        padding: 20px 0 30px;
    }

    .page-download-accordian .accordian-block {
        padding: 0 20px 0;
    }

    .page-download-accordian .accordian-block > p {
        margin-bottom: 20px;
    }

    .page-download-accordian .accordian-block table thead td:nth-child(1),
    .page-download-accordian .accordian-block table tbody td:nth-child(1) {
        width: 20%;
    }

    .page-download-accordian .accordian-block table td {
        width: 26.66%;
    }
}

@media screen and (max-width: 767px) {
    .enquiry-form .col-two:first-of-type,
    .enquiry-form .col-two:nth-child(2) {
        padding: 0;
    }

    .enquiry-form .registration-btn {
        margin: 15px auto 0;
    }
}

@media screen and (max-width: 767px) and (min-width: 596px) {
    .page-download-accordian .accordian-title {
        margin-bottom: 10px;
    }

    .page-download-accordian {
        padding: 20px 0 0px;
        width: calc(100% - 40px);
    }

    .page-download-accordian.active-accordian {
        padding: 20px 0 30px;
    }

    .page-download-accordian .accordian-block {
        padding: 0 10px 0;
    }

    .page-download-accordian .accordian-block > p {
        margin-bottom: 15px;
    }

    .page-download-accordian .accordian-block table thead td:nth-child(1),
    .page-download-accordian .accordian-block table tbody td:nth-child(1) {
        width: 20%;
    }

    .page-download-accordian .accordian-block table td {
        width: 26.66%;
        height: 50px;
    }

    .page-download-accordian .accordian-block .table-container {
        overflow: scroll;
    }

    .page-download-accordian .accordian-block table {
        width: 644px;
    }

    .page-download-accordian .accordian-block table td a {
        font-size: 14px;
    }
}

@media screen and (max-width: 595px) and (min-width: 481px) {
    .page-download-accordian .accordian-title {
        margin-bottom: 10px;
    }

    .page-download-accordian {
        padding: 20px 0 0px;
        width: calc(100% - 40px);
    }

    .page-download-accordian.active-accordian {
        padding: 20px 0 0;
    }

    .page-download-accordian .accordian-block {
        padding: 0 10px 0;
    }

    .page-download-accordian .accordian-block > p {
        margin-bottom: 15px;
    }

    .page-download-accordian .accordian-block table thead td:nth-child(1),
    .page-download-accordian .accordian-block table tbody td:nth-child(1) {
        width: 20%;
    }

    .page-download-accordian .accordian-block table td {
        width: 26.66%;
        height: 50px;
    }

    .page-download-accordian .accordian-block .table-container {
        overflow: scroll;
    }

    .page-download-accordian .accordian-block table {
        width: 644px;
    }

    .page-download-accordian .accordian-block table td a {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .page-download-accordian .accordian-title {
        position: relative;
        margin-bottom: 10px;
    }

    .page-download-accordian {
        padding: 20px 0 0px;
        width: calc(100% - 40px);
    }

    .page-download-accordian.active-accordian {
        padding: 20px 0 0;
    }

    .page-download-accordian .accordian-title span {
        position: absolute;
        top: 0;
        left: 0;
    }

    .page-download-accordian .accordian-title p {
        padding: 2px 10px 2px 32px;
    }

    .page-download-accordian .accordian-block {
        padding: 0 10px 0;
    }

    .page-download-accordian .accordian-block > p {
        margin-bottom: 15px;
    }

    .page-download-accordian .accordian-block table thead td:nth-child(1),
    .page-download-accordian .accordian-block table tbody td:nth-child(1) {
        width: 20%;
    }

    .page-download-accordian .accordian-block table td {
        width: 26.66%;
        height: 40px;
    }

    .page-download-accordian .accordian-block .table-container {
        overflow: scroll;
    }

    .page-download-accordian .accordian-block table {
        width: 644px;
    }

    .page-download-accordian .accordian-block table td a {
        font-size: 14px;
    }
}

/* upper case select */
.enquiry-form .selectboxit-container span.selectboxit-text[data-val=""] {
    text-transform: uppercase;
}

/* checkbox */
.enquiry-form .terms-container {
    width: 100%;
    overflow: hidden;
    padding-top: 15px;
}

.enquiry-form .terms-container .checkbox-message-container {
    display: inline-block;
    width: 95%;
}

.enquiry-form .checkbox-container {
    float: left;
    padding-left: 1px;
}

.enquiry-form .terms-container .checkbox-message {
    text-align: left;
}

.enquiry-form .checkbox-container input[type="checkbox"] {
    margin-top: 3px;
}

.enquiry-form .checkbox-container input[type="checkbox"].has-error {
    outline: 1px solid red;
}

/*
* Infographic Section
*/
.infographic {
    position: relative;
    overflow: hidden;
    padding: 107px 0 46px;
}

.infographic h2 {
    text-align: center;
    font-size: 48px;
    max-width: 870px;
    margin: 0 auto;
    letter-spacing: -0.024em;
    line-height: 1.21;
}

.infographic .text {
    margin-bottom: 78px;
}

.infographic .container {
    max-width: 1220px;
}

.infographic .tabs ul {
    text-align: center;
    padding: 0;
    border-bottom: 1px solid #ccc;
}

.infographic .tabs li {
    display: inline-block;
    padding: 0;
    max-width: 320px;
    width: 100%;
    position: relative;
    cursor: pointer;
}

.infographic .tabs li a {
    position: relative;
    display: inline-block;
    font-size: 20px;
    font-weight: 300;
    padding: 5px 39px 25px;
    color: #666666;
    letter-spacing: -0.024em;
}

.infographic .tabs li.active a {
    color: #333;
    font-size: 30px;
}

.infographic .tabs li a:after {
    content: '';
    position: absolute;
    height: 7px;
    width: 0;
    background: #ea2328;
    bottom: 0;
    left: 0;
    transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.infographic .tabs li.active a:after {
    width: 100%;
}

.infographic .tabs li a:hover:after {
    width: 100%;
}

.infographic .tabs-content {
    padding: 59px 0 30px;
    float: left;
    width: 100%;
}

.infographic .inner-tabs {
    max-width: 320px;
    width: 100%;
    float: left;
}

.infographic .inner-tabs-content .col-two {
    height: 394px;
}

.infographic .inner-tabs-content .col-two:nth-child(2) {
    width: 100%;
    max-width: calc(100% - 320px);
    padding: 10px 29px;
}

.infographic .inner-tabs-content .col-two:last-child {
    width: 100%;
    max-width: 320px;
    padding: 30px 26px;
    overflow: auto;
}

.infographic .inner-tabs .tabs-list {
    padding: 38px 50px 30px 38px;
    cursor: pointer;
    height: 198px;
    width: calc(100% - 20px);
    float: right;
}

.infographic .inner-tabs .tabs-list.active {
    width: 100%;
}

.infographic .inner-tabs .tabs-list.yellow.active {
    background: -moz-linear-gradient(left, #fc9c0c 60%, #eb4971 100%);
    background: -webkit-linear-gradient(left, #fc9c0c 60%, #eb4971 100%);
    background: linear-gradient(to right, #fc9c0c 60%, #eb4971 100%);
}

.infographic .inner-tabs .tabs-list.blue-bg.active {
    background: rgb(179, 108, 219);
    background: -moz-linear-gradient(-45deg, rgba(0, 172, 224, 1) 0%, rgba(179, 108, 219, 1) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(0, 172, 224, 1) 0%, rgba(179, 108, 219, 1) 100%);
    background: linear-gradient(80deg, rgba(0, 172, 224, 1) 0%, rgba(179, 108, 219, 1) 100%);
}

.infographic .inner-tabs-container .inner-tabs-content .tabs-list h5,
.infographic .inner-tabs .tabs-list h5 {
    padding-bottom: 16px;
    border-bottom: 1px solid #a6a6a6;
    font-weight: 300;
    font-size: 24px;
    letter-spacing: -0.025em;
    color: #333;
}

.infographic .inner-tabs .tabs-list.active h5,
.infographic .inner-tabs-container .inner-tabs-content .tabs-list h5 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);;
}

.infographic .inner-tabs .tabs-list h6 {
    padding: 18px 0 5px;
    font-size: 18px;
    color: #333;
}

.infographic .inner-tabs-container .inner-tabs-content .tabs-list p,
.infographic .inner-tabs .tabs-list p {
    font-size: 18px;
    font-weight: 400;
    max-width: 240px;
    line-height: 1.38;
}

.infographic .inner-tabs-container .inner-tabs-content .tabs-list h5,
.infographic .inner-tabs-container .inner-tabs-content .tabs-list h6,
.infographic .inner-tabs-container .inner-tabs-content .tabs-list p,
.infographic .inner-tabs .tabs-list.active h5,
.infographic .inner-tabs .tabs-list.active h6,
.infographic .inner-tabs .tabs-list.active p {
    color: #fff;
}

.infographic .inner-tabs-container {
    max-width: calc(100% - 320px);
    width: 100%;
    vertical-align: top;
    border: 1px solid #dddddd;
    float: left;
}

.infographic .inner-tabs-container p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 1.73;
}

.infographic .inner-tabs-container .inner-tabs-content {
    display: none;
    overflow: hidden;
}

.infographic .inner-tabs-container .inner-tabs-content.active {
    display: block;
}

.infographic .tabs-container {
    position: relative;
}

.infographic .tabs-content {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease-in-out;
    -ms-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
    -webkit-transition: opacity 0.5s ease-in-out;
}

.infographic .tabs-content.tabs-active {
    position: relative;
    opacity: 1;
    z-index: 1;
}

.infographic .inner-tabs-content .hyperlink-effect {
    position: relative;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.025em;
    display: inline-block;
    margin-top: 28px;
}

.infographic .hyperlink-effect:before {
    content: '>';
    position: absolute;
    right: -15px;
    top: 1px;
    -webkit-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.infographic .inner-tabs-container .inner-tabs-content .tabs-list {
    display: none;
}

.infographic-animate .inner-tabs-content .col-two:nth-child(2) {
    padding: 0px 10px;
}

.infographic-animate .animate-container {
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 1.00);
    width: 512px;
    height: 386px;
}

.infographic-animate .animate-canvas {
    position: absolute;
    display: block;
    background-color: rgb(255, 255, 255);
    width: 512px;
    height: 390px;
}

.infographic-animate .animate-overlay {
    pointer-events: none;
    overflow: hidden;
    width: 512px;
    height: 390px;
    position: absolute;
    left: 0px;
    top: 0px;
    display: block;
}

.download-accordion, .generic-accordion {
    padding: 55px 0 40px;
}

.download-accordion .accordian-outer {
    width: 100%;
    position: relative;
}

.download-accordion .accordian-outer p {
    font-weight: 400;
    padding-bottom: 13px;
}

.download-accordion .select-box {
    display: inline-block;
    width: 300px;
}

.download-accordion .select-box select {
    width: 100%;
    font-weight: 700;
    max-width: 100% !important;
    color: #000;
    font-size: 18px;
    height: 54px !important;
    background: #fff;
    border-radius: 0;
    -webkit-appearance: inherit;
    outline: none;
    border: 1px solid #666;
    padding-left: 25px;
}

.download-accordion .select-box .selectboxit {
    background: #fff;
    border-radius: 0;
    outline: none;
    border: 1px solid #666;
    width: 100% !important;
}

.download-accordion .select-box .selectboxit-container {
    width: 100%;
}

.download-accordion .select-box .selectboxit-container span {
    font-weight: 700;
    max-width: 100% !important;
}

.download-accordion .selectboxit-container .selectboxit-options {
    border-radius: 0;
    width: 100%;
    z-index: 8;
}

.download-accordion .selectboxit-list > .selectboxit-focus > .selectboxit-option-anchor {
    background: #666666;
    color: #fff;
    font-weight: 700;
}

.download-accordion .selectboxit-container .selectboxit-options a {
    font-weight: 700;
    /*z-index: ;*/
}

.download-accordion .selectboxit-default-arrow {
    border-top: 4px solid #666;
}

.download-accordion .accordion-inner,
.generic-accordion .accordion-inner {
    position: relative;
    width: 100%;
    border: 1px solid #c1c1c1;
    margin-top: 12px;
}

.download-accordion .accordion-item,
.generic-accordion .accordion-item {
    position: relative;
    border-bottom: 1px solid #c1c1c1;
}

.download-accordion .item-title:hover,
.generic-accordion .item-title:hover {
    background-color: #f3f3f3;
}

.download-accordion .accordion-item:last-child,
.generic-accordion .accordion-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.download-accordion .accordion-inner p,
.generic-accordion .accordion-inner p {
    width: calc(100% - 45px);
    display: inline-block;
    font-weight: 700;
    color: #333;
    font-size: 18px;
}

.download-accordion .accordion-inner .extend-btn,
.generic-accordion .accordion-inner .extend-btn {
    position: relative;
    width: 20px;
    height: 20px;
    border: 2px solid #333;
}

.download-accordion .btn-plus,
.generic-accordion .btn-plus {
    position: relative;
    transform: scale(0.75);
    width: 18px;
    height: 18px;
    display: inline-block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    cursor: pointer;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    transition: .3s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: transparent;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: transparent;
    vertical-align: middle;
}

.download-accordion .accordion-content,
.generic-accordion .accordion-content {
    display: none;
    padding-bottom: 20px;
}

.download-accordion .accordion-content p,
.generic-accordion .accordion-content p {
    font-weight: 400;
}

.download-accordion .btn-plus:before,
.generic-accordion .btn-plus:before {
    content: "";
    border-radius: 2px;
    display: block;
    width: 10px;
    height: 2px;
    position: absolute;
    top: 7px;
    left: 4px;
    transition: .3s;
    background: black;
}

.download-accordion .btn-plus:after,
.generic-accordion .btn-plus:after {
    content: "";
    border-radius: 2px;
    display: block;
    width: 10px;
    height: 2px;
    position: absolute;
    top: 7px;
    left: 4px;
    transition: .3s;
    background: black;
    transform: rotate(90deg);
}

.download-accordion .btn-plus-minus:before,
.generic-accordion .btn-plus-minus:before {
    transform: rotate(180deg) translate(0, 0);
    width: 8px;
}

.download-accordion .btn-plus-minus:after,
.generic-accordion .btn-plus-minus:after {
    transform: rotate(-180deg) translate(-30%, 0);
    width: 8px;
}

.download-accordion .item-title,
.generic-accordion .item-title {
    padding: 20px 15px 23px 30px;
    cursor: pointer;
}

.download-accordion .detail-content {
    padding: 3px 30px 6px;
}
.generic-accordion .detail-content {
    padding: 3px 15px 6px 20px;
}

.download-accordion table {
    width: 100%;
}

.download-accordion table th {
    font-weight: 700;
    text-align: left;
    padding-right: 10px;
    font-size: 12px;
    color: #53565a;
    padding-bottom: 7px;
}

.download-accordion table tr {
    position: relative;
}

.download-accordion table tr:hover {
    background: #f3f3f3;
    cursor: pointer;
}

.download-accordion table tr td:first-child:after {
    content: "";
    position: absolute;
    top: 0;
    left: -30px;
    width: 30px;
    height: 100%;
    background: #fff;
}

.download-accordion table tr td:last-child:after {
    content: "";
    position: absolute;
    top: 0;
    right: -30px;
    width: 30px;
    height: 100%;
    background: #fff;
}

.download-accordion table tr:hover td:first-child:after,
.download-accordion table tr:hover td:last-child:after {
    background: #f3f3f3;
}

.download-accordion table tr:first-child:hover {
    background: none;
    cursor: auto;
}

.download-accordion table td {
    padding-right: 10px;
    font-weight: 400;
    color: #53565a;
    position: relative;
}

.download-accordion table td:first-child,
.download-accordion table th:first-child {
    width: 16.80%;
}

.download-accordion table td:nth-child(2),
.download-accordion table th:nth-child(2) {
    width: 8.064%;
}

.download-accordion table td:nth-child(3),
.download-accordion table th:nth-child(3) {
    width: 8.9%;
}

.download-accordion table td:nth-child(4),
.download-accordion table th:nth-child(4) {
    width: 44.4%;
}

.download-accordion table td:nth-child(5),
.download-accordion table th:nth-child(5) {
    width: 10.86%;
}

.download-accordion table td:last-child,
.download-accordion table th:last-child {
    width: 10.95%;
}

.download-accordion table td:last-child {
    padding: 8px 0 1px;
}

.download-accordion table td:nth-child(4) {
    font-size: 14px;
}

.download-accordion table td span {
    display: block;
    font-size: 14px;
}

.download-accordion table td span a.blue-link {
    margin: 2px auto;
    font-size: 14px;
}

.download-accordion table td span a.blue-link:after {
    content: ">";
    position: relative;
    top: auto;
    right: auto;
    margin-left: 6px;
}

.download-accordion table td a.red-btn {
    font-size: 14px;
    padding: 10px 17px;
    margin: 4px 0;
}

.download-accordion table td a.red-btn:last-child {
    display: none;
}

.download-accordion .featured-info {
    position: relative;
    padding: 25px 28px 10px;
    margin: 20px 0 21px;
    width: 100%;
    border: 1px solid #c1c1c1;
    float: left;
}

.download-accordion .featured-info h6 {
    font-size: 18px;
    padding-bottom: 15px;
}

.download-accordion .featured-info h2 {
    font-weight: 300;
    padding-bottom: 8px;
}

.download-accordion .featured-info p {
    font-size: 14px;
}

.download-accordion .version-detail {
    width: 75.5%;
    float: left;
    position: relative;
}

.download-accordion .featured-cta {
    width: 24.5%;
    position: absolute;
    right: 0;
    height: 100%;
    top: 0;
}

.download-accordion .featured-cta .links-outer {
    display: table-cell;
    width: 53%;
    height: 100%;
    text-align: left;
    vertical-align: middle;
}

.download-accordion .featured-cta .links-outer span {
    width: 100%;
    display: inline-block;
}

.download-accordion .featured-cta .cta-btn {
    display: table-cell;
    width: 47%;
    height: 100%;
    vertical-align: middle;
}

.download-accordion .featured-cta .cta-btn a {
    font-size: 14px;
    padding: 10px 16px;
}

.download-accordion .featured-cta .cta-btn a:last-child {
    display: none;
}

.download-accordion .featured-info-outer {
    padding-bottom: 20px;
    position: relative;
    float: left;
    width: 100%;
    border-bottom: 1px solid #c1c1c1;
    margin-bottom: 40px;
    overflow: hidden;
}

.download-accordion .featured-cta .links-outer span a {
    margin: 2px auto;
    font-size: 14px;
}

@media screen and (max-width: 1224px) and (min-width: 992px) {
    .download-accordion table td:nth-child(3),
    .download-accordion table th:nth-child(3) {
        width: 14.9%;
    }

    .download-accordion table td:nth-child(4),
    .download-accordion table th:nth-child(4) {
        width: 34.4%;
    }

    .download-accordion table td:last-child,
    .download-accordion table th:last-child {
        width: 15.95%;
    }

    .download-accordion table td span a.blue-link {
        font-size: 12px;
    }

    .download-accordion .featured-cta {
        width: 35%;
    }

    .download-accordion .version-detail {
        width: 65%;
    }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .download-accordion .item-title,
    .generic-accordion .item-title {
        padding: 15px 15px 15px 20px;
    }

    .download-accordion table th {
        display: none;
    }

    .download-accordion .featured-cta {
        width: 40%;
    }

    .download-accordion .version-detail {
        width: 60%;
    }

}

@media screen and (max-width: 991px) {
    .download-accordion table tbody tr:first-child {
        display: none;
    }

    .download-accordion table tr {
        display: block;
        padding-top: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid #c1c1c1;
    }

    .download-accordion table tbody tr:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .download-accordion table td {
        position: relative;
        padding-left: 240px !important;
    }

    .download-accordion table td:before {
        content: attr(data-title);
        position: absolute;
        top: 10px;
        left: 20px;
        font-weight: 600;
        color: #53565a;
        font-size: 14px;
    }

    .download-accordion table td {
        display: block;
        padding: 10px 0;
        width: 100% !important;
    }

    .download-accordion table td .red-btn:first-child {
        display: none;
    }

    .download-accordion table td a.red-btn:last-child {
        display: inline-block;
    }

    .download-accordion .featured-cta .cta-btn a:first-child {
        display: none;
    }

    .download-accordion .featured-cta .cta-btn a:last-child {
        display: inline-block;
    }

    .download-accordion .detail-content {
        padding: 3px 0px 6px;
    }

    .generic-accordion .detail-content {
        padding: 3px 15px 6px 20px;
    }

    .download-accordion table td span a.blue-link {
        font-size: 12px;
    }

    .download-accordion table tr td:first-child:after {
        display: none;
    }

    .download-accordion table tr td:last-child:after {
        display: none;
    }
}

@media screen and (max-width: 767px) and (min-width: 596px) {
    .download-accordion .item-title,
    .generic-accordion .item-title {
        padding: 15px 15px 15px 20px;
    }

    .download-accordion .accordion-inner p,
    .generic-accordion .accordion-inner p {
        font-size: 16px;
        width: calc(100% - 32px);
    }

    .download-accordion .featured-info h6 {
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    .download-accordion,
    .generic-accordion {
        padding: 30px 0;
    }

    .download-accordion .version-detail {
        width: 100%;
    }

    .download-accordion .featured-cta {
        width: 100%;
        position: relative;
    }

    .download-accordion .featured-cta .v-middle-wrapper {
        position: relative;
    }

    .download-accordion .featured-cta .links-outer span {
        width: auto;
        padding-right: 20px;
    }

    .download-accordion .featured-info {
        padding: 15px;
        margin: 10px 0;
    }

    .download-accordion .featured-info-outer {
        padding-bottom: 10px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 595px) {
    .download-accordion .featured-info h6 {
        font-size: 14px;
    }
}

@media screen and (max-width: 595px) and (min-width: 481px) {
    .download-accordion .item-title,
    .generic-accordion .item-title {
        padding: 15px 15px 15px 20px;
    }

    .download-accordion .accordion-inner p,
    .generic-accordion .accordion-inner p {
        font-size: 16px;
        width: calc(100% - 32px);
    }

    .download-accordion table td {
        position: relative;
        padding-left: 140px !important;
    }

    .download-accordion table td:before {
        max-width: 120px;
        line-height: 1.2;
    }

    .download-accordion table td:first-child:before {
        top: 2px;
    }
}

@media screen and (max-width: 480px) {
    .download-accordion .item-title,
    .generic-accordion .item-title {
        padding: 15px 15px 15px 20px;
    }

    .download-accordion .accordion-inner p,
    .generic-accordion .accordion-inner p {
        font-size: 14px;
        width: calc(100% - 32px);
    }

    .download-accordion table td {
        position: relative;
        padding-left: 120px !important;
        font-size: 14px;
    }

    .download-accordion table td:before {
        max-width: 90px;
        line-height: 1.2;
        font-size: 12px;
    }

    .download-accordion table td:first-child:before {
        top: 2px;
    }

    .download-accordion .featured-cta .links-outer {
        display: block;
        width: 100%;
        text-align: center;
        padding-top: 15px;
    }

    .download-accordion .featured-cta .cta-btn {
        display: block;
        width: 100%;
    }
}

/* Feature Carousel */
.featured-carousel {
    padding: 95px 0;
    overflow: hidden;
}

.featured-carousel .slick-slider {
    overflow: hidden;
}

.featured-carousel .wrapper {
    position: relative;
    width: 100%;
}

.featured-carousel .slick-slider:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    background: #fff;
    height: 100%;
}

.featured-carousel .slick-prev,
.featured-carousel .slick-next {
    display: none !important;
}

.featured-carousel .slider-button {
    position: absolute;
    top: calc(50% - 35px);
    width: 100%;
}

.featured-carousel .container {
    max-width: 1290px;
    padding: 0 15px 0 25px;
}

.featured-carousel .slider-button .prev {
    float: left;
    width: 16px;
    cursor: pointer;
    position: absolute;
    left: -40px;
}

.featured-carousel .slider-button .next {
    float: right;
    width: 16px;
    cursor: pointer;
    text-align: right;
    position: absolute;
    right: -30px;
}

.featured-carousel h4 {
    margin-bottom: 32px;
    letter-spacing: -0.022em;
}

.featured-carousel .col-three .cta-effect {
    font-size: 18px;
}

.featured-carousel .col-three {
    overflow: hidden;
    margin-right: 12px;
    width: calc(33.33% - 8px);
    outline: none;
}

.featured-carousel .slick-dots {
    text-align: center;
    float: left;
    overflow: hidden;
    width: 100%;
    margin-top: 30px;
    padding-right: 12px;
}

.featured-carousel .slick-dots li.slick-active {
    width: 10px;
    height: 10px;
    background: #000;
    position: relative;
}

.featured-carousel .slick-dots li {
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 1px solid #000;
    border-radius: 50%;
    margin: 0 2px;
    cursor: pointer;
}

.featured-carousel .slick-dots button {
    display: none;
}

.featured-carousel .col-three .bg-img {
    width: 100%;
    height: 125px;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.featured-carousel .col-three:hover .bg-img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.featured-carousel .col-three .video-box {
    position: relative;
    cursor: pointer;
}

.featured-carousel .col-three h6 {
    color: #fff;
    letter-spacing: -0.022em;
}

.featured-carousel .col-three p {
    color: #fff;
    padding: 17px 0 27px;
    line-height: 1.2;
}

.featured-carousel .featured-content {
    position: relative;
    padding: 20px 20px 25px;
    height: 100%;
}

.featured-carousel .col-three .bg-img img {
    width: 100%;
    position: relative;
    min-height: 100%;
    min-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* Featured Content 4column */

.featured-content-4column {
    padding: 101px 0;
}

.featured-content-4column h4 {
    letter-spacing: -0.025em;
    margin-bottom: 36px;
}

.featured-content-4column h6 {
    color: #fff;
    text-align: left;
    line-height: 1.2;
}

.featured-content-4column p {
    color: #fff;
    font-size: 22px;
    line-height: 1.2;
    text-align: left;
    word-break: break-word;
    -ms-word-break: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
}

.featured-content-4column .col-four:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.65);
    height: 100%;
    width: 100%;
    z-index: 1;
}

.featured-content-4column .col-four {
    width: calc(25% - 3px);
    margin-right: 4px;
    max-height: 310px;
    overflow: hidden;
}

.featured-content-4column .col-four:last-child {
    margin-right: 0
}

.featured-content-4column .col-four a {
    display: block;
}

.featured-content-4column .col-four .v-middle-inner {
    padding: 0 16px 0 18px;
    z-index: 2;
}

.featured-content-4column .col-four .bg-img {
    width: 100%;
    height: 309px;
    max-height: inherit;
}

.featured-content-4column .col-four img {
    max-width: inherit;
    transition: transform 0.5s ease-in-out;
    -webkit-transition: transform 0.5s ease-in-out;
    -moz-transition: transform 0.5s ease-in-out;
    -ms-transition: transform 0.5s ease-in-out;
    -o-transition: transform 0.5s ease-in-out;
}

.featured-content-4column .col-four:hover img {
    transform: scale(1.1);
    -ms-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.featured-content-4column .bottom-cta {
    width: 100%;
    text-align: center;
    margin-top: 35px;
}

@media screen and (max-width: 1360px) and (min-width: 1281px) {
    .featured-carousel .container {
        padding: 0 40px 0 50px;
    }

}

@media screen and (max-width: 1280px) {
    .featured-carousel .container {
        padding: 0 40px 0 52px;
    }
}

@media screen and (max-width: 1280px) and (min-width: 1225px) {
    .infographic .inner-tabs-container p {
        font-size: 14px;
    }
}

@media screen and (max-width: 1224px) and (min-width: 1100px) {
    .infographic-animate .animate-container,
    .infographic-animate .animate-canvas {
        width: 392px !important;
        height: 300px !important;
    }
}

@media screen and (max-width: 1099px) and (min-width: 1024px) {
    .infographic-animate .animate-container,
    .infographic-animate .animate-canvas {
        width: 312px !important;
        height: 240px !important;
    }
}

@media screen and (max-width: 1224px) and (min-width: 1024px) {
    .infographic h2 {
        font-size: 42px;
    }

    .infographic .text {
        margin-bottom: 60px;
    }

    .infographic {
        padding: 80px 0;
    }

    .infographic .tabs li a {
        padding: 5px 20px 25px;
    }

    .infographic .tabs li.active a {
        font-size: 28px;
    }

    .infographic .tabs li {
        max-width: 300px;
    }

    .infographic .tabs-content {
        padding: 40px 0;
    }

    .infographic .inner-tabs-content .col-two:last-child {
        overflow: auto;
    }

    .infographic .inner-tabs,
    .infographic .inner-tabs-content .col-two:last-child {
        max-width: 300px;
    }

    .infographic .inner-tabs-container {
        max-width: calc(100% - 300px);
    }

    .infographic .inner-tabs-content .col-two:nth-child(2) {
        max-width: calc(100% - 300px);
        padding: 10px 15px;
    }

    .infographic .inner-tabs .tabs-list {
        padding: 30px 25px;
    }

    .infographic .inner-tabs-container p {
        font-size: 14px;
    }

    .infographic .inner-tabs-content .col-two:last-child {
        padding: 25px;
    }

    .featured-carousel {
        padding: 80px 0;
    }

    .featured-content-4column {
        padding: 80px 0;
    }
}

@media screen and (max-width: 1023px) and (min-width: 992px) {
    .infographic .text {
        margin-bottom: 50px;
    }

    .infographic {
        padding: 60px 0;
    }

    .infographic .tabs li a {
        padding: 5px 20px 20px;
    }

    .infographic .tabs li.active a {
        font-size: 26px;
    }

    .infographic .tabs li {
        max-width: 300px;
    }

    .infographic .tabs-content {
        padding: 40px 0;
    }

    .infographic .inner-tabs-content .col-two:last-child {
        overflow: auto;
    }

    .infographic .inner-tabs,
    .infographic .inner-tabs-content .col-two:last-child {
        max-width: 280px;
    }

    .infographic .inner-tabs-container {
        max-width: calc(100% - 280px);
    }

    .infographic .inner-tabs-content .col-two:nth-child(2) {
        padding: 10px 15px;
        max-width: calc(100% - 280px);
    }

    .infographic .inner-tabs .tabs-list {
        padding: 30px 25px;
    }

    .infographic .inner-tabs-container p {
        font-size: 12px;
    }

    .infographic .inner-tabs-content .col-two:last-child {
        padding: 25px;
    }

    .infographic-animate .animate-container,
    .infographic-animate .animate-canvas {
        width: 322px !important;
        height: 240px !important;
    }

    .featured-carousel {
        padding: 60px 0;
    }

    .play-btn {
        width: 50px;
        margin: 0 auto;
    }

    .featured-content-4column p {
        font-size: 20px;
    }

    .featured-content-4column {
        padding: 70px 0;
    }

    .featured-content-4column .col-four .bg-img {
        height: 300px;
    }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .enquiry-form {
        padding: 40px 0;
    }

    .enquiry-form .registration-btn {
        margin: 20px auto 0;
    }

    .infographic h2 {
        font-size: 34px;
    }

    .infographic .text {
        margin-bottom: 40px;
    }

    .infographic {
        padding: 50px 0;
    }

    .infographic .tabs li {
        max-width: 220px;
    }

    .infographic .tabs li a {
        padding: 5px 14px 18px;
    }

    .infographic .tabs li.active a {
        font-size: 24px;
    }

    .infographic .inner-tabs .tabs-list {
        padding: 20px;
        height: 191px;
    }

    .infographic .inner-tabs {
        max-width: 230px;
    }

    .infographic .inner-tabs-container {
        max-width: calc(100% - 230px);
    }

    .infographic .inner-tabs .tabs-list h5 {
        font-size: 22px;
    }

    .infographic .inner-tabs .tabs-list h6 {
        padding: 15px 0 5px;
        font-size: 16px;
    }

    .infographic .inner-tabs .tabs-list p {
        font-size: 16px;
    }

    .infographic .inner-tabs-content .col-two:nth-child(2) {
        max-width: calc(100% - 230px);
        padding: 10px 20px;
    }

    .infographic .inner-tabs-content .col-two:last-child {
        max-width: 230px;
        padding: 20px;
    }

    .infographic .inner-tabs-content .col-two {
        height: 380px;
    }

    .infographic .tabs-content {
        padding: 30px 0;
    }

    .infographic .inner-tabs-content .col-two:last-child {
        overflow: auto;
    }

    .infographic-animate .animate-container,
    .infographic-animate .animate-canvas {
        width: 250px !important;
        height: 190px !important;
    }

    .infographic-animate .inner-tabs-content .col-two:nth-child(2) {
        padding: 10px;
    }

    .second-level-banner .v-middle .banner-anchor {
        max-width: calc(100% - 280px);
    }

    .featured-content .cta-animate {
        font-size: 16px;
    }

    .featured-carousel {
        padding: 50px 0;
    }

    .play-btn {
        width: 45px;
        margin: 0 auto;
    }

    .featured-content-4column p {
        font-size: 18px;
    }

    .featured-content-4column {
        padding: 60px 0;
    }

    .featured-content-4column h4 {
        margin-bottom: 30px;
    }

    .featured-content-4column .bottom-cta {
        margin-top: 30px;
    }

    .featured-content-4column .col-four .bg-img {
        height: 280px;
    }

    .featured-carousel .slick-dots {
        margin-top: 20px;
    }

}

@media screen and (max-width: 1024px) {
    .infographic .tabs li.active a:hover:after {
        display: block;
    }

    .infographic .tabs li a:hover:after {
        display: none;
    }

    .touch .grid-container .grid-block.tappable .grid-outer:after {
        top: 0;
    }

    .touch .grid-container .grid-block.tappable .logo-container {
        transform: translateY(-140px);
        -webkit-transform: translateY(-140px);
        -moz-transform: translateY(-140px);
        -ms-transform: translateY(-140px);
        -o-transform: translateY(-140px);
        transform: translateY(-140px);
    }

    .touch .grid-container .grid-block.tappable .grid-outer .text-container p {
        color: #fff;
    }

    .touch .watch-video:after {
        display: none;
    }

    .enquiry-form .text-box textarea {
        resize: none;
    }
}

@media screen and (max-width: 991px) {
    .infographic .inner-tabs-container p {
        font-size: 12px;
    }

    .second-level-banner .v-middle .banner-anchor {
        display: inline-block;
        vertical-align: middle;
    }

    .second-level-banner .v-middle .banner-anchor:after {
        position: relative;
        right: -5px;
        top: 1px;
    }

}

@media screen and (max-width: 767px) {
    .infographic .inner-tabs-container {
        max-width: 100%;
    }

    .infographic .inner-tabs {
        max-width: 100%;
        font-size: 0;
    }

    .infographic .inner-tabs-content .col-two:nth-child(2),
    .infographic .inner-tabs-content .col-two:last-child {
        max-width: 100%;
        height: auto;
        padding: 15px 20px;
    }

    .infographic .tabs-content {
        padding: 20px 0;
    }

    .infographic .inner-tabs-container .inner-tabs-content .tabs-list h6,
    .infographic .inner-tabs .tabs-list h6 {
        padding: 15px 0 5px;
        font-size: 16px;
    }

    .infographic .inner-tabs-container .inner-tabs-content .tabs-list p,
    .infographic .inner-tabs .tabs-list p {
        font-size: 16px;
    }

    .infographic .col-two .image {
        max-width: 300px;
        width: 100%;
        margin: 0 auto;
    }

    .infographic .inner-tabs-content .hyperlink-effect {
        margin: 10px 0;
    }

    .infographic-animate .col-two .image {
        max-width: 100%;
    }

    .featured-content .cta-animate {
        font-size: 14px;
    }

    .featured-carousel h4 {
        margin-bottom: 20px;
    }

    .featured-content-4column .col-four .bg-img {
        height: 260px;
    }

    .infographic .tabs ul {
        display: table;
        width: 100%;
        border-left: 1px solid #dddddd;
        border-bottom: 0;
    }

    .infographic .tabs ul li {
        display: table-cell;
        vertical-align: middle;
        height: 72px;
        width: 33.33%;
        max-width: 100%;
        border-top: 1px solid #dddddd;
        border-right: 1px solid #dddddd;
        border-bottom: 1px solid #ddd;
    }

    .infographic .tabs li.active {
        background: #ea2328;
    }

    .infographic .tabs ul li a {
        padding: 22px 10px;
        font-weight: 600;
        color: #333333;
        text-transform: uppercase;
    }

    .infographic .tabs li.active a {
        color: #FFFFFF;
        text-transform: uppercase;
    }

    .infographic .tabs li.active a:hover:after,
    .infographic .tabs li.active a:after {
        display: none;
    }

    .featured-carousel .slider-button .prev {
        width: 15px;
        left: -35px;
    }

    .featured-carousel .slider-button .next {
        width: 15px;
        right: -25px;
    }
}

@media screen and (max-width: 767px) and (min-width: 596px) {
    .enquiry-form {
        padding: 40px 0;
    }

    .enquiry-form .registration-btn .red-btn {
        padding: 10px 60px;
    }

    .infographic h2 {
        font-size: 32px;
        padding: 0;
    }

    .infographic .text {
        margin-bottom: 30px;
    }

    .infographic {
        padding: 40px 0;
    }

    .infographic .tabs li a,
    .infographic .tabs li.active a {
        font-size: 18px;
    }

    .infographic .tabs li a:after {
        height: 4px;
    }

    .infographic .inner-tabs .tabs-list {
        padding: 30px;
        height: 180px;
    }

    .infographic .inner-tabs .tabs-list h5 {
        padding-bottom: 15px;
        font-size: 22px;
    }

    .infographic .inner-tabs .tabs-list,
    .infographic .inner-tabs .tabs-list.active {
        float: left;
        width: 50%;
    }

    .infographic .tabs li {
        max-width: 180px;
    }

    .infographic-animate .animate-container,
    .infographic-animate .animate-canvas {
        width: 380px !important;
        height: 280px !important;
    }

    .second-level-banner .v-middle .banner-anchor {
        max-width: calc(100% - 230px);
    }

    .featured-carousel {
        padding: 40px 0;
    }

    .featured-carousel .featured-content {
        padding: 15px;
    }

    .featured-carousel .col-three p {
        padding: 10px 0;
    }

    .play-btn {
        width: 40px;
        margin: 0 auto;
    }

    .featured-content-4column .col-four {
        width: calc(50% - 3px);
        margin: 2px;
        max-height: 280px;
    }

    .featured-content-4column .col-four:nth-of-type(2) {
        margin-right: 0
    }

    .featured-content-4column p {
        font-size: 18px;
    }

    .featured-content-4column {
        padding: 40px 0;
    }

    .featured-content-4column h4 {
        margin-bottom: 25px;
    }

    .featured-content-4column .bottom-cta {
        margin-top: 25px;
    }

    .featured-carousel .col-three .cta-effect {
        font-size: 16px;
    }

    .featured-carousel .slick-dots {
        margin-top: 20px;
    }
}

@media screen and (max-width: 595px) and (min-width: 481px) {
    .enquiry-form .registration-btn .red-btn {
        padding: 10px 40px;
    }

    .infographic h2 {
        font-size: 30px;
    }

    .infographic .tabs li a {
        font-size: 14px;
        padding: 5px 20px 10px;
    }

    .infographic .tabs li.active a {
        font-size: 14px;
    }

    .infographic-animate .animate-container,
    .infographic-animate .animate-canvas {
        width: 300px !important;
        height: 230px !important;
    }

    .second-level-banner .v-middle .banner-anchor {
        max-width: calc(100% - 230px);
    }

    .featured-carousel .col-three .cta-effect {
        font-size: 16px;
    }
}

@media screen and (max-width: 595px) {
    .enquiry-form {
        padding: 30px 0;
    }

    .infographic h2 {
        padding: 0;
    }

    .infographic .text {
        margin-bottom: 20px;
    }

    .infographic {
        padding: 30px 0;
    }

    .infographic .tabs li a:after {
        height: 3px;
    }

    .infographic .inner-tabs-container .inner-tabs-content .tabs-list,
    .infographic .inner-tabs .tabs-list {
        padding: 20px;
        height: 150px;
    }

    .infographic .inner-tabs-container .inner-tabs-content .tabs-list h5,
    .infographic .inner-tabs .tabs-list h5 {
        padding-bottom: 10px;
        font-size: 20px;
    }

    .infographic .inner-tabs .tabs-list {
        float: left;
        width: 100%;
    }

    .infographic .inner-tabs-container .inner-tabs-content .tabs-list {
        display: block;
    }

    .infographic .inner-tabs {
        display: none;
    }

    .infographic .inner-tabs-container .inner-tabs-content {
        display: block !important;
        border: 1px solid #dddddd;
    }

    .infographic .inner-tabs-container {
        border: 0;
    }

    .infographic .inner-tabs-container .inner-tabs-content.active {
        margin-bottom: 30px;
    }

    .featured-carousel .col-three {
        margin-right: 0;
        margin-bottom: 12px;
        width: 100%;
    }

    .featured-carousel {
        padding: 30px 0;
    }

    .play-btn {
        width: 50px;
        margin: 0 auto;
    }

    .featured-carousel .col-three p {
        padding: 10px 0;
    }

    .featured-content-4column .col-four {
        width: 100%;
        margin-right: 0;
        margin-top: 4px;
        max-height: 230px;
    }

    .featured-content-4column p {
        font-size: 16px;
    }

    .featured-content-4column {
        padding: 30px 0;
    }

    .featured-content-4column h4 {
        margin-bottom: 20px;
    }

    .featured-content-4column .bottom-cta {
        margin-top: 20px;
    }

    .featured-carousel .slick-dots {
        margin: 0 auto;
    }
}

@media screen and (max-width: 480px) {
    .enquiry-form .input-box input,
    .enquiry-form .text-box textarea {
        padding: 6px 9px;
    }

    .enquiry-form form {
        margin: 10px auto;
    }

    .form-overlay .form p {
        font-size: 13px;
    }

    .form-overlay .close-btn {
        padding: 10px 0;
        height: 35px;
        width: 35px;
    }

    .form-overlay .close-btn img {
        width: 15px;
    }

    .enquiry-form .selectboxit-container .selectboxit {
        padding: 2px 9px;
    }

    .enquiry-form .select-box select {
        width: 100% !important;
        height: 100% !important;
    }

    .form-overlay .form {
        padding: 25px 20px;
        margin: 15px auto;
    }

    .enquiry-form .registration-btn .red-btn {
        padding: 8px 25px;
    }

    .enquiry-form label {
        padding: 12px 9px;
    }

    .enquiry-form .selectboxit-container .selectboxit-options {
        max-height: 70px !important;
    }

    .infographic h2 {
        font-size: 28px;
    }

    .infographic .tabs li a,
    .infographic .tabs li.active a {
        font-size: 13px;
    }

    .infographic-animate .animate-container,
    .infographic-animate .animate-canvas {
        width: 240px !important;
        height: 180px !important;
    }

    .second-level-banner .v-middle .banner-anchor {
        margin: 10px 0;
    }

    .featured-carousel .col-three .cta-effect {
        font-size: 15px;
    }
}

/* Logo Grid */

.logo-grid {
    background: #f3f3f3;
    padding: 38px 0 52px;
    overflow: hidden;
}

.logo-grid > h4 {
    font-weight: 600;
    text-align: center;
}

.logo-grid .overlay-text {
    display: none;
}

.grid-filter .selectboxit-container .selectboxit {
    background: #fff;
    border: 1px solid #c1c1c1;
    border-radius: 0;
    width: 100% !important;
    height: 54px;
}

.grid-filter select {
    background: #fff;
    border: 1px solid #c1c1c1;
    border-radius: 0;
    width: 100% !important;
    height: 54px;
    -webkit-appearance: inherit;
    padding-left: 23px;
    font-weight: 700;
}

.grid-filter .selectboxit-container {
    width: 100%;
}

.grid-filter .selectboxit-container .selectboxit-text {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    width: calc(100% - 30px);
    max-width: inherit !important;
    padding: 12px 14px;
    height: 52px;
}

.grid-filter .selectboxit-container .selectboxit-btn.selectboxit-enabled:focus {
    background-color: #fff !important;
}

.grid-filter .selectboxit-container .selectboxit-options {
    border-radius: 0;
    width: 100%;
}

.grid-filter .selectboxit-list .selectboxit-option-anchor {
    font-weight: 600;
    color: #333333;
}

.grid-filter .selectboxit-list > .selectboxit-focus > .selectboxit-option-anchor {
    background: #666666;
    color: #fff;

}

.grid-filter .selectboxit .selectboxit-option-icon-container {
    display: none;
}

.grid-filter .selectboxit-arrow-container {
    height: 52px;
}

.grid-filter .selectboxit-default-arrow {
    border-top: 7px solid #666666;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
}

/* Filter */
.grid-filter {
    margin: 16px 0 34px;
    position: relative;
}

.grid-filter:after {
    content: "";
    clear: both;
    display: block;
}

.grid-filter form {
    float: left;

}

.grid-filter .filter-item {
    float: left;
    width: 21.37%;
    margin-left: 2.1%;
}

/*.grid-filter .select1{*/
/*width: 21.37%;*/
/*}*/
.grid-filter .select2 {
    display: none;
}

.grid-filter .select3 {
    display: none;
}

.grid-filter .select4 {
    display: none;
}

.grid-filter .search-filter {
    width: 45px;
    height: 54px;
    margin-left: 0;
}

.grid-filter .search-filter input {
    padding: 12px 20px;
    border: 0;
    width: calc(100% - 50px);
    float: left;
    font-weight: 700;
    font-size: 18px;
    color: #333;
    background: #f3f3f3;
}

.grid-filter .search-filter input::-ms-clear {
    display: none;
}

.grid-filter .search-filter input::-webkit-input-placeholder {
    color: #a3a3a3;
    font-weight: 700;
}

.grid-filter .search-filter input::-moz-placeholder {
    color: #a3a3a3;
    font-weight: 700;
}

.grid-filter .search-filter input::-moz-input-placeholder {
    color: #a3a3a3;
    font-weight: 700;
}

.grid-filter .search-filter .search-form input:-ms-input-placeholder {
    color: #666;
    font-weight: 700;
}

.grid-filter .search-form button.submit {
    padding: 0;
    width: 25px;
}

.grid-filter .search-filter .search-btn {
    position: relative;
    width: 50px;
    height: 100%;
    float: left;
    z-index: 1;
    background: transparent;
    cursor: pointer;
}

.grid-filter .search-filter .search-btn .animated-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    right: -6px;
    top: calc(50% - 13px);
}

.grid-filter .search-filter .search-btn .element {
    border: 1px solid #666;
    box-shadow: 0;
    height: 20px;
    margin-bottom: 5px;
}

.grid-filter .search-filter .search-btn .line-search {
    background: #666;
    left: 17px;
    top: -11px;
    height: 10px;
    box-shadow: none;
    position: relative;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 5px;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
}

.grid-filter .search-filter .animated-circle.close1 .line-search {
    height: 20px;
    width: 0;
    left: 25px;
    top: -20px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.grid-filter .search-filter .search-btn .circle-search {
    border: 3px solid #666;
    width: 20px;
    border-radius: 50%;
    left: 0px;
    top: 0px;
}

.grid-filter .search-filter .clear-btn {
    display: none;
    position: relative;
    width: 50px;
    height: 100%;
    float: left;
    background: transparent;
    cursor: pointer;
}

.grid-filter .search-filter .clear-btn:before {
    content: "";
    position: absolute;
    right: 14px;
    top: 17px;
    width: 20px;
    height: 20px;
    background: url(../images/clear.png);
}

/* Grid style */
.grid-container {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 1291px;
    padding: 0 20px;
}

.grid-container:after {
    content: "";
    clear: both;
    display: block;
}

.grid-container .grid-block {
    position: relative;
    width: calc(33.33% - 11px);
    height: 296px;
    margin: 5px 5px 6px 6px;
    float: left;
    padding: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.grid-container .grid-block.show {
    display: block;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.grid-container .grid-block.hide {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.grid-container .grid-outer {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 2;
    background: #fff;
    height: 296px;
    padding: 21px;
    padding-top: 12px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Internet explorer */
.hide-filter .select-outer {
    transform: scale(0.7);
    -ms-transform: scale(0.7);
    opacity: 0;
    transition: transform 0.4s linear, opacity 0.4s 0s linear;
    -ms-transition: transform 0.4s linear, opacity 0.4s 0s linear;
}

.grid-filter .search-form {
    background: #f3f3f3;
    left: 0;
    width: 90%;
    max-width: 100%;
    height: 54px;
    visibility: hidden;
}

.hide-filter .search-filter .search-form {
    padding-left: 0px;
    opacity: 1;
    z-index: 8;
    visibility: visible;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -ms-transition: all 0.4s linear;
    transition: all 0.4s linear;
    -webkit-transition-delay: 300ms, 300ms;
    -moz-transition-delay: 300ms, 300ms;
    -ms-transition-delay: 300ms, 300ms;
    transition-delay: 300ms, 300ms;
}

.hide-filter .select-outer .select-wrap {
    transform: rotateY(30deg);
    -ms-transform: rotateY(30deg);
    transition-delay: 0.9s;
    -ms-transition-delay: 0.9s;
}

.show-filter .select-outer .select-wrap {
    transform: none;
    -ms-transform: none;
    transition: transform 0.4s linear;
    -ms-transition: transform 0.4s linear;
}

.show-filter .select-outer:nth-child(1) .select-wrap {
    transition-delay: 0s;
    -ms-transition-delay: 0s;
}

.show-filter .select-outer:nth-child(2) .select-wrap {
    transition-delay: 35ms;
    -ms-transition-delay: 35ms;
}

.show-filter .select-outer:nth-child(3) .select-wrap {
    transition-delay: 70ms;
    -ms-transition-delay: 70s;
}

.show-filter .select-outer:nth-child(4) .select-wrap {
    transition-delay: 95ms;
    -ms-transition-delay: 95s;
}

.grid-container .grid-outer:after {
    content: '';
    position: absolute;
    top: 100%;
    background: #999999;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-transition: top 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    -ms-transition: top 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    -moz-transition: top 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: top 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: top 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.grid-container .grid-block:hover .grid-outer:after {
    top: 0;
}

.grid-container .grid-outer .extend-icon {
    right: -20px;
    top: -22px;
    position: absolute;
    width: 44px;
    height: 44px;
    transform: rotate(224deg);
    background: #f3f3f3;
}

.grid-container .grid-block .button-box {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.grid-container .grid-block .button-box .transparent-btn {
    border: 1px solid #fff;
    padding: 16px 30px;
}

.grid-container .grid-block .button-box .transparent-btn:hover {
    color: #e81c21;
    background: #fff;
    border: 1px solid #fff;
}

.grid-container .grid-block:hover .button-box {
    -webkit-transform: translateY(-74px);
    -moz-transform: translateY(-74px);
    -ms-transform: translateY(-74px);
    -o-transform: translateY(-74px);
    transform: translateY(-74px);
}

.grid-container .grid-outer .extend-icon:before {
    content: '';
    position: absolute;
    background-image: url(../images/blue_arrow.png);
    right: 24px;
    bottom: 12px;
    width: 100%;
    transform: rotate(136deg);
    height: 100%;
    background-repeat: no-repeat;
}

.grid-container .grid-outer .logo-container {
    position: relative;
    height: 135px;
    width: 100%;
    max-width: 260px;
    margin: 0 auto 9px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.grid-container .logo-container img {
    width: 100%;
    height: 100%;
}

.grid-container .grid-block:hover .logo-container {
    transform: translateY(-140px);
    -webkit-transform: translateY(-140px);
    -moz-transform: translateY(-140px);
    -ms-transform: translateY(-140px);
    -o-transform: translateY(-140px);
    transform: translateY(-140px);
}

.grid-container .grid-outer .divider {
    content: "";
    display: block;
    margin: 0 auto;
    width: 66%;
    height: 1px;
    background: #c1c1c1;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.grid-container .grid-outer .divider:after {
    display: none;
}

.grid-container .grid-block:hover .divider {
    background: #fff;
}

.grid-container .grid-outer .text-container {
    padding: 27px 0px 31px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.grid-container .grid-block:hover .text-container {
    transform: translateY(-120px);
    -ms-transform: translateY(-120px);
    -webkit-transform: translateY(-120px);
    -moz-transform: translateY(-120px);
}

.grid-container .grid-outer .text-container p {
    color: #333333;
    font-weight: 300;
    line-height: 1.2;
    text-align: left;
    text-overflow: ellipsis;
    display: -webkit-box;
    overflow: hidden;
    max-height: 80px;
    -webkit-line-clamp: 4;
    -moz-line-clamp: 4;
    -ms-line-clamp: 4;
    -o-line-clamp: 4;
    line-clamp: 4; /* Number of lines */
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    -o-box-orient: vertical;
    box-orient: vertical;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.grid-container .grid-block:hover p {
    color: #fff;
}

.logo-grid .load-more {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 34px;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 1, 1, 0.6);
    padding: 40px 20px;
    z-index: -1;
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.grid-overlay.active {
    z-index: 9;
    opacity: 1;
}

.grid-overlay .overlay-content {
    position: relative;
    background: #00ace0;
    height: 380px;
    width: 100%;
    max-width: 1020px;
    text-align: left;
    padding: 66px 99px 40px;
    margin: 0 auto;
    overflow: auto;
}

.grid-overlay .overlay-content h4 {
    position: relative;
    color: #fff;
    margin-bottom: 32px;
}

.grid-overlay .overlay-content h4:after {
    content: "";
    position: absolute;
    bottom: -17px;
    left: 0;
    width: 213px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
}

.grid-overlay .overlay-content p {
    color: #fff;
    font-weight: 400;
}

.grid-overlay .overlay-content .overlay-btn {
    display: inline-block;
}

.grid-overlay .overlay-content a.transparent-btn {
    margin-top: 18px;
    margin-right: 10px;
    border: 1px solid #fff;
    padding: 15px 19px 13px;
}

.grid-overlay .overlay-content a.transparent-btn:hover {
    background: #fff;
    color: #00ace0;
}

.grid-overlay .overlay-content a.hyperlink-effect {
    color: #fff;
    position: relative;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    margin-left: 12px;
}

.grid-overlay .overlay-content a.hyperlink-effect ~ a.hyperlink-effect:before {
    content: '';
    left: -10px;
    position: absolute;
    border-left: 2px solid #fff;
    top: 1px;
    height: 17px;
}

.grid-overlay .overlay-content .close-overlay {
    opacity: 0;
}

.grid-overlay .close-overlay:before,
.grid-overlay .close-overlay:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    margin-top: -4px;
    background: #fff;
    opacity: 0;
    -webkit-transition: opacity 0s;
    -moz-transition: opacity 0s;
    -ms-transition: opacity 0s;
    -o-transition: opacity 0s;
    transition: opacity 0s;
}

.search-filter .animated-input {
    width: 54px;
    height: 50px;
    position: absolute;
}

.search-filter .input-circle-search {
    border: 3px solid #666;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    left: 0px;
    top: 0px;
}

.search-filter .input-line-search {
    background: #666;
    left: 17px;
    top: -6px;
    height: 10px;
    position: relative;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 5px;
}

.grid-container .search-form .element-input {
    border: 1px solid #666;
    box-shadow: 0;
    height: 20px;
    margin-bottom: 5px;
    height: 20px;
    margin-bottom: 5px;
}

.grid-overlay.active .overlay-content .close-overlay {
    position: absolute;
    top: 19px;
    right: 18px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    z-index: 10;
    opacity: 1;
    pointer-events: auto;
    -webkit-transition: all 0s 0.3s;
    -moz-transition: all 0s 0.3s;
    -ms-transition: all 0s 0.3s;
    -o-transition: all 0s 0.3s;
    transition: all 0s 0.3s;
}

.grid-overlay.active .overlay-content .close-overlay:after {
    -webkit-animation-name: closeiconafter;
    -moz-animation-name: closeiconafter;
    -ms-animation-name: closeiconafter;
    -o-animation-name: closeiconafter;
    animation-name: closeiconafter;
    -webkit-animation-delay: 600ms;
    -moz-animation-delay: 600ms;
    -ms-animation-delay: 600ms;
    -o-animation-delay: 600ms;
    animation-delay: 600ms;
    -webkit-animation-duration: 400ms;
    -moz-animation-duration: 400ms;
    -ms-animation-duration: 400ms;
    -o-animation-duration: 400ms;
    animation-duration: 300ms;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -ms-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    height: 3px;
}

.grid-overlay.active .overlay-content .close-overlay:before {
    -webkit-animation-name: closeiconbefore;
    -moz-animation-name: closeiconbefore;
    -ms-animation-name: closeiconbefore;
    -o-animation-name: closeiconbefore;
    animation-name: closeiconbefore;
    -webkit-animation-delay: 400ms;
    -moz-animation-delay: 400ms;
    -ms-animation-delay: 400ms;
    -o-animation-delay: 400ms;
    animation-delay: 400ms;
    -webkit-animation-duration: 400ms;
    -moz-animation-duration: 400ms;
    -ms-animation-duration: 400ms;
    -o-animation-duration: 400ms;
    animation-duration: 400ms;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -ms-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    height: 3px;
}

.video-overlay.active .video-inner {
    opacity: 0;
    -webkit-animation: showVideo-1 1.25s forwards;
    -moz-animation: showVideo-1 1.25s forwards;
    -ms-animation: showVideo-1 1.25s forwards;
    animation: showVideo-1 1.25s forwards;
}

.video-overlay .video-inner {
    position: relative;
    -webkit-animation: hideVideo 0.25s forwards;
    -moz-animation: hideVideo 0.25s forwards;
    -ms-animation: hideVideo 0.25s forwards;
    animation: hideVideo 0.25s forwards;
    max-width: 1020px;
    width: 100%;
    margin: 0 auto;
}

.video-overlay {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    pointer-events: none;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

.video-overlay.active {
    pointer-events: auto;
    z-index: 9;
}

.video-overlay.active .video-inner {
    opacity: 1;
}

.video-overlay.active .overlay-close {
    width: 28px;
    height: 28px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 999;
    cursor: pointer;
    opacity: 1;
    -webkit-transition-delay: 1.2s;
    transition-delay: 1.2s;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    /*  background: rgba(1,1,1,0.2);*/
}

.video-overlay.active .overlay-close .after,
.video-overlay.active .overlay-close .before {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    margin-top: -2px;
    background: #fff;
    opacity: 0;
    -webkit-transition: opacity 0s;
    -moz-transition: opacity 0s;
    -ms-transition: opacity 0s;
    -o-transition: opacity 0s;
    transition: opacity 0s;
}

.video-overlay.active .overlay-close .before {
    -webkit-animation-name: closeiconbefore;
    -moz-animation-name: closeiconbefore;
    -ms-animation-name: closeiconbefore;
    -o-animation-name: closeiconbefore;
    animation-name: closeiconbefore;
    -webkit-animation-delay: 1200ms;
    -moz-animation-delay: 1200ms;
    -ms-animation-delay: 1200ms;
    -o-animation-delay: 1200ms;
    animation-delay: 1200ms;
    -webkit-animation-duration: 400ms;
    -moz-animation-duration: 400ms;
    -ms-animation-duration: 400ms;
    -o-animation-duration: 400ms;
    animation-duration: 400ms;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -ms-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    height: 3px;
}

.video-overlay.active .overlay-close .after {
    -webkit-animation-name: closeiconafter;
    -moz-animation-name: closeiconafter;
    -ms-animation-name: closeiconafter;
    -o-animation-name: closeiconafter;
    animation-name: closeiconafter;
    -webkit-animation-delay: 1400ms;
    -moz-animation-delay: 1400ms;
    -ms-animation-delay: 1400ms;
    -o-animation-delay: 1400ms;
    animation-delay: 1400ms;
    -webkit-animation-duration: 400ms;
    -moz-animation-duration: 400ms;
    -ms-animation-duration: 400ms;
    -o-animation-duration: 400ms;
    animation-duration: 400ms;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -ms-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    height: 3px;
}

.video-player {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 382px;
    -webkit-transition: -webkit-transform 1s;
    -ms-transition: transform 1s;
    -moz-transition: transform 1s;
    transition: transform 1s;
    -webkit-transform: scale3d(0.7, 0.7, 1) rotate3d(0, 0, 1, 5deg);
    -ms-transform: scale3d(0.7, 0.7, 1) rotate3d(0, 0, 1, 5deg);
    -moz-transform: scale3d(0.7, 0.7, 1) rotate3d(0, 0, 1, 5deg);
    transform: scale3d(0.7, 0.7, 1) rotate3d(0, 0, 1, 5deg);
}

.video-overlay .video-player {
    width: 100%;
    height: 100%;
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}
.video-overlay .video-inner{
    max-height: 380px;
}

.video-overlay .iframe-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 380px;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

/* Animation for showing the video wrapper */
@-webkit-keyframes showVideo-1 {
    50% {
        width: 50vw;
        height: 50vw;
        opacity: 1;
        -webkit-transform: scale3d(0.5, 0.5, 1) rotate3d(0, 0, 1, -5deg);
        transform: scale3d(0.5, 0.5, 1) rotate3d(0, 0, 1, -5deg);
    }
    100% {
        width: 100vw;
        height: 100vh;
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 0deg);
        transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 0deg);
    }
}

@-ms-keyframes showVideo-1 {
    50% {
        width: 50vw;
        height: 50vw;
        opacity: 1;
        -ms-transform: scale3d(0.5, 0.5, 1) rotate3d(0, 0, 1, -5deg);
        transform: scale3d(0.5, 0.5, 1) rotate3d(0, 0, 1, -5deg);
    }
    100% {
        width: 100vw;
        height: 100vh;
        opacity: 1;
        -ms-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 0deg);
        transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 0deg);
    }
}

@-moz-keyframes showVideo-1 {
    50% {
        width: 50vw;
        height: 50vw;
        opacity: 1;
        -moz-transform: scale3d(0.5, 0.5, 1) rotate3d(0, 0, 1, -5deg);
        transform: scale3d(0.5, 0.5, 1) rotate3d(0, 0, 1, -5deg);
    }
    100% {
        width: 100vw;
        height: 100vh;
        opacity: 1;
        -moz-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 0deg);
        transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 0deg);
    }
}

@keyframes showVideo-1 {
    50% {
        width: 50vw;
        height: 50vw;
        opacity: 1;
        -webkit-transform: scale3d(0.5, 0.5, 1) rotate3d(0, 0, 1, -5deg);
        transform: scale3d(0.5, 0.5, 1) rotate3d(0, 0, 1, -5deg);
    }
    100% {
        width: 100vw;
        height: 100vh;
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 0deg);
        transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 0deg);
    }
}

/* Animation for hiding the video wrapper */
@-webkit-keyframes hideVideo {
    0% {
        width: 100vw;
        height: 100vh;
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 0deg);
        transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 0deg);
    }
    100% {
        width: 100vw;
        height: 100vh;
        opacity: 0;
        -webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 0deg);
        transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 0deg);
    }
}

@-ms-keyframes hideVideo {
    0% {
        width: 100vw;
        height: 100vh;
        opacity: 1;
        -ms-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 0deg);
        transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 0deg);
    }
    100% {
        width: 100vw;
        height: 100vh;
        opacity: 0;
        -ms-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 0deg);
        transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 0deg);
    }
}

@-moz-keyframes hideVideo {
    0% {
        width: 100vw;
        height: 100vh;
        opacity: 1;
        -moz-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 0deg);
        transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 0deg);
    }
    100% {
        width: 100vw;
        height: 100vh;
        opacity: 0;
        -moz-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 0deg);
        transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 0deg);
    }
}

@keyframes hideVideo {
    0% {
        width: 100vw;
        height: 100vh;
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 0deg);
        transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 0deg);
    }
    100% {
        width: 100vw;
        height: 100vh;
        opacity: 0;
        -webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 0deg);
        transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 0deg);
    }
}

@media screen and (max-width: 1224px) and (min-width: 992px) {
    .grid-container {
        padding: 0 35px;
    }

    .grid-overlay .overlay-content {
        padding: 60px 70px;
    }

    .grid-container .grid-block:hover .text-container,
    .touch .grid-container .grid-block.tappable .text-container {
        transform: translateY(-130px);
        -ms-transform: translateY(-130px);
        -webkit-transform: translateY(-130px);
        -moz-transform: translateY(-130px);
        min-height: 130px;
    }

    .grid-container .grid-block:hover .button-box,
    .touch .grid-container .grid-block.tappable .button-box {
        -webkit-transform: translateY(-90px);
        -moz-transform: translateY(-90px);
        -ms-transform: translateY(-90px);
        -o-transform: translateY(-90px);
        transform: translateY(-90px);
    }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .grid-container {
        padding: 0 15px;
    }

    .grid-container .grid-block:hover .text-container,
    .touch .grid-container .grid-block.tappable .text-container {
        transform: translateY(-130px);
        -ms-transform: translateY(-130px);
        -webkit-transform: translateY(-130px);
        -moz-transform: translateY(-130px);
    }

    .grid-container .grid-outer .text-container {
        padding: 20px 0px 20px;
    }

    .grid-filter .filter-item {
        margin: 0;
    }

    .grid-filter .select1 {
        width: 50%;
        padding: 0 10px 10px 0;

    }

    .grid-filter .select2 {
        width: 50%;
        padding: 0 0 10px 10px;
    }

    .grid-filter .select3 {
        width: 50%;
        padding: 0 10px 10px 0;
    }

    .grid-filter .select4 {
        width: 50%;
        padding: 0 0 10px 10px;
    }

    .grid-filter .search-filter {
        width: 50%;
    }

    .grid-overlay .overlay-content {
        padding: 40px 70px;
    }

    .grid-filter {
        margin: 15px 0 25px;
    }

    .grid-container .grid-block .button-box .transparent-btn {
        padding: 15px 12px;
        font-size: 16px;
    }

    .grid-filter form {
        float: left;
        width: 100%;
    }

    .hide-filter .select-outer .select-wrap {
        transform: none;
        -ms-transform: none;;
        transition-delay: 0;
        -ms-transition-delay: 0;
    }

    .hide-filter .select-outer {
        transform: none;
        -ms-transform: none;
        opacity: 1;
        transition: none;
        -ms-transition: none;
    }

    .show-filter .select-outer .select-wrap {
        transform: none;
        -ms-transform: none;
        transition: none;
        -ms-transition: none;
    }

    .show-filter .select-outer:nth-child(1) .select-wrap {
        transition-delay: 0s;
        -ms-transition-delay: 0s;
    }

    .show-filter .select-outer:nth-child(2) .select-wrap {
        transition-delay: 0s;
        -ms-transition-delay: 0s;
    }

    .show-filter .select-outer:nth-child(3) .select-wrap {
        transition-delay: 0s;
        -ms-transition-delay: 0s;
    }

    .show-filter .select-outer:nth-child(4) .select-wrap {
        transition-delay: 0s;
        -ms-transition-delay: 0s;
    }
}

@media screen and (max-width: 767px) {
    .grid-overlay .overlay-content {
        padding: 40px 40px;
        height: 510px !important;
    }

    .grid-filter {
        margin: 15px 0 20px;
    }

    .grid-container .grid-block .button-box .transparent-btn {
        padding: 15px 20px;
    }

    .grid-overlay .overlay-content a.hyperlink-effect {
        font-size: 16px;
    }

    .grid-overlay .overlay-content a.hyperlink-effect:last-of-type:before {
        height: 15px;
    }

    .video-overlay.active {
        background: rgba(1, 1, 1, 0.6);
    }

    .video-overlay.active .overlay-close {
        width: 22px;
        height: 22px;
        top: -30px;
    }
}

@media screen and (max-width: 767px) and (min-width: 596px) {
    .logo-grid {
        padding: 40px 0;
    }

    .grid-container {
        padding: 0 15px;
    }

    .grid-container .grid-block {
        width: calc(50% - 10px);
        margin: 5px;
    }

    .grid-container .grid-outer .text-container {
        padding: 20px 0px 20px;
    }

    .grid-container .grid-block:hover .button-box,
    .touch .grid-container .grid-block.tappable .button-box {
        -webkit-transform: translateY(-55px);
        -moz-transform: translateY(-55px);
        -ms-transform: translateY(-55px);
        -o-transform: translateY(-55px);
        transform: translateY(-55px);
    }

    .touch .grid-container .grid-block.tappable .text-container {
        transform: translateY(-90px);
        -ms-transform: translateY(-90px);
        -webkit-transform: translateY(-90px);
        -o-transform: translateY(-90px);
        -moz-transform: translateY(-90px);
    }

    .grid-filter .filter-item {
        margin: 0;
    }

    .grid-filter .select1 {
        width: 50%;
        padding: 0 10px 10px 0;
    }

    .grid-filter .select2 {
        width: 50%;
        padding: 0 0 10px 10px;
    }

    .grid-filter .select3 {
        width: 50%;
        padding: 0 10px 10px 0;
    }

    .grid-filter .select4 {
        width: 50%;
        padding: 0 0 10px 10px;
    }

    .grid-filter .search-filter {
        width: 100%;
    }

    .logo-grid .load-more {
        margin-top: 20px;
    }

    .grid-filter form {
        float: left;
        width: 100%;
    }

    .hide-filter .select-outer .select-wrap {
        transform: none;
        -ms-transform: none;;
        transition-delay: 0;
        -ms-transition-delay: 0;
    }

    .hide-filter .select-outer {
        transform: none;
        -ms-transform: none;
        opacity: 1;
        transition: none;
        -ms-transition: none;
    }

    .show-filter .select-outer .select-wrap {
        transform: none;
        -ms-transform: none;
        transition: none;
        -ms-transition: none;
    }

    .show-filter .select-outer:nth-child(1) .select-wrap {
        transition-delay: 0s;
        -ms-transition-delay: 0s;
    }

    .show-filter .select-outer:nth-child(2) .select-wrap {
        transition-delay: 0s;
        -ms-transition-delay: 0s;
    }

    .show-filter .select-outer:nth-child(3) .select-wrap {
        transition-delay: 0s;
        -ms-transition-delay: 0s;
    }

    .show-filter .select-outer:nth-child(4) .select-wrap {
        transition-delay: 0s;
        -ms-transition-delay: 0s;
    }
}

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

    .hide-filter .select-outer .select-wrap {
        transform: none;
        -ms-transform: none;;
        transition-delay: 0;
        -ms-transition-delay: 0;
    }

    .hide-filter .select-outer {
        transform: none;
        -ms-transform: none;
        opacity: 1;
        transition: none;
        -ms-transition: none;
    }

    .show-filter .select-outer .select-wrap {
        transform: none;
        -ms-transform: none;
        transition: none;
        -ms-transition: none;
    }

    .show-filter .select-outer:nth-child(1) .select-wrap {
        transition-delay: 0s;
        -ms-transition-delay: 0s;
    }

    .show-filter .select-outer:nth-child(2) .select-wrap {
        transition-delay: 0s;
        -ms-transition-delay: 0s;
    }

    .show-filter .select-outer:nth-child(3) .select-wrap {
        transition-delay: 0s;
        -ms-transition-delay: 0s;
    }

    .show-filter .select-outer:nth-child(4) .select-wrap {
        transition-delay: 0s;
        -ms-transition-delay: 0s;
    }

    .grid-filter .select-outer {
        margin: 0;
    }

    .grid-filter .search-filter input {
        margin-left: 10px;
    }
}

@media screen and (max-width: 595px) and (min-width: 481px) {
    .logo-grid {
        padding: 40px 0;
    }

    .grid-container {
        padding: 0 15px;
    }

    .grid-container .grid-block {
        width: 100%;
        max-width: 420px;
        margin: 5px auto;
        float: none;
    }

    .grid-container .grid-outer .logo-container {
        height: 100px;
    }

    .grid-container .grid-outer .text-container {
        padding: 20px 0px 20px;
    }

    .grid-filter .select1 {
        width: 100%;
        padding: 20px 0 10px 0;
    }

    .grid-filter .select2 {
        width: 100%;
        padding: 0 0 10px 0;
    }

    .grid-filter .select3 {
        width: 100%;
        padding: 0 0 10px 0;
    }

    .grid-filter .select4 {
        width: 100%;
        padding: 0 0 10px 0;
    }

    .grid-filter .search-filter {
        width: 100%;
        margin-top: 0px;
        height: 42px;
    }

    .grid-filter .selectboxit-container .selectboxit-text {
        height: 40px;
        font-size: 14px;
        padding: 5px 14px;
    }

    .grid-filter .selectboxit-container .selectboxit {
        height: 42px;
    }

    .grid-filter .selectboxit-arrow-container {
        height: 40px;
    }

    .grid-filter .search-filter input {
        padding: 10px;
        font-size: 14px;
    }

    .grid-filter .search-filter .search-btn:before {
        top: 11px;
        width: 20px;
        height: 20px;
        background-size: cover;
    }

    .grid-filter .search-filter .clear-btn:before {
        right: 16px;
        top: 13px;
        width: 15px;
        height: 15px;
        background-size: cover;
    }

    .logo-grid .load-more {
        margin-top: 20px;
    }

    .grid-overlay .overlay-content a.transparent-btn {
        padding: 10px 15px;
    }

    .grid-container .grid-block:hover .text-container,
    .touch .grid-container .grid-block.tappable .text-container {
        transform: translateY(-90px);
        -ms-transform: translateY(-90px);
        -webkit-transform: translateY(-90px);
        -o-transform: translateY(-90px);
        -moz-transform: translateY(-90px);
    }

    .grid-container .grid-block:hover .button-box,
    .touch .grid-container .grid-block.tappable .button-box {
        transform: translateY(-30px);
        -webkit-transform: translateY(-30px);
        -moz-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        -o-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

@media screen and (max-width: 480px) {
    .logo-grid {
        padding: 40px 0;
    }

    .grid-container {
        padding: 0 20px;
    }

    .grid-container .grid-block {
        width: 100%;
        margin: 5px 0;
    }

    .grid-container .grid-outer .logo-container {
        height: 130px;
    }

    .grid-container .grid-outer .text-container {
        padding: 20px 0px 20px;
    }

    .grid-filter .select1 {
        width: 100%;
        padding: 20px 0 10px 0;
    }

    .grid-filter .select2 {
        width: 100%;
        padding: 0 0 10px 0;
    }

    .grid-filter .select3 {
        width: 100%;
        padding: 0 0 10px 0;
    }

    .grid-filter .select4 {
        width: 100%;
        padding: 0 0 10px 0;
    }

    .grid-filter .search-filter {
        width: 100%;
        margin-top: 0px;
        height: 42px;
    }

    .grid-filter .selectboxit-container .selectboxit-text {
        height: 40px;
        font-size: 14px;
        padding: 5px 14px;
    }

    .grid-filter .selectboxit-container .selectboxit {
        height: 42px;
    }

    .grid-filter .selectboxit-arrow-container {
        height: 40px;
    }

    .grid-filter .search-filter input {
        padding: 10px 10px 9px;
        font-size: 14px;
    }

    .grid-filter .search-filter .search-btn:before {
        top: 11px;
        width: 20px;
        height: 20px;
        background-size: cover;
    }

    .grid-filter .search-filter .clear-btn:before {
        right: 16px;
        top: 13px;
        width: 15px;
        height: 15px;
        background-size: cover;
    }

    .logo-grid .load-more {
        margin-top: 20px;
    }

    .grid-overlay .overlay-content a.transparent-btn {
        padding: 10px 15px;
    }

    .grid-overlay .overlay-content .overlay-btn {
        display: block;
        margin-top: 20px;
    }

    .grid-container .grid-block:hover .text-container,
    .touch .grid-container .grid-block.tappable .text-container {
        transform: translateY(-110px);
        -ms-transform: translateY(-110px);
        -webkit-transform: translateY(-110px);
        -o-transform: translateY(-110px);
        -moz-transform: translateY(-110px);
        min-height: 100px;
    }

    .grid-container .grid-block:hover .button-box,
    .touch .grid-container .grid-block.tappable .button-box {
        transform: translateY(-60px);
        -webkit-transform: translateY(-60px);
        -moz-transform: translateY(-60px);
        -ms-transform: translateY(-60px);
        -o-transform: translateY(-60px);
        transform: translateY(-60px);
    }

    .grid-overlay .overlay-content h4:after {
        width: 160px;
    }
}

.generic-intro {
    text-align: center;
    padding: 115px 0 0;
}

.generic-intro h2 {
    margin-bottom: 10px;
    font-size: 48px;
    letter-spacing: -0.025em;
    line-height: 1.21;
}

.generic-intro h6 {
    color: #333333;
    font-weight: 700;
    line-height: normal;
    position: relative;
}

.generic-intro p {
    font-size: 20px;
    color: #53565a;
    line-height: 1.5;
    font-weight: 400;
    position: relative;
    margin-top: 55px;
}

.generic-intro p a {
    font-weight: 700;
    line-height: 1.5;
    font-size: 20px;
    color: #00ace0;
    position: relative;
    display: inline-block;
}

.generic-intro p a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #00ace0;
    -webkit-transform: scale3d(0, 1, 1);
    -moz-transform: scale3d(0, 1, 1);
    -ms-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transition: -webkit-transform 0.1s;
    -moz-transition: trasform 0.1s;
    -ms-transition: trasform 0.1s;
    transition: transform 0.1s;
}

.generic-intro p a:hover:after,
.generic-intro p a:active:after {
    -webkit-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.generic-intro h6:nth-child(3):after {
    content: '';
    position: absolute;
    width: 94px;
    height: 1px;
    left: calc(50% - 47px);
    bottom: -22px;
    background: #5c5c5c;
}

.generic-table {
    padding: 50px 0;
}

.generic-table table {
    width: 100%;
    border-top: 1px solid #BEC0C1;
    position: relative;
}

.generic-table h4 {
    margin-bottom: 15px;
}

.generic-table table th {
    padding: 15px 35px 12px 35px;
    font-size: 18px;
    line-height: 1.2;
    color: #333333;
    width: 16.25%;
    font-weight: 700;
    border-left: 1px solid #BEC0C1;
}

.generic-table table th.bg-lightBlue {
    color: #fff;
}

.generic-table table th:first-child {
    text-align: left;
    width: 67.5%;
    border-left: 0;
}

.generic-table table td {
    padding: 35px 35px 35px 35px;
    font-size: 16px;
    line-height: 1.2;
    width: 16.25%;
    font-weight: 400;
    color: #53565a;
    border-left: 1px solid #BEC0C1;
}

.generic-table table td img {
    height: 19px;
}

.generic-table table td:first-child {
    text-align: left;
    width: 67.5%;
    border-left: 0;
}

.generic-table table tr {
    text-align: center;
    border-left: 1px solid #BEC0C1;
    border-right: 1px solid #BEC0C1;
}

.generic-table .tooltip {
    position: absolute;
    width: calc(100% - 40px);
    left: 20px;
    cursor: auto;
    background: #fff;
    border: 1px solid #BEC0C1;
    padding: 25px;
    z-index: 8;
    visibility: hidden;
    opacity: 0;
    box-shadow: 4px 4px 25px;
}

.generic-table .active .tooltip {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
}

.generic-table .info-tooltip {
    cursor: pointer;
    display: inline-block;
}

.generic-table .tooltip p {
    color: #111111;
}

.generic-table .tooltip p b {
    font-weight: 700;
}

.generic-table .tooltip .tip-arrow {
    position: absolute;
    bottom: 100%;
    left: 17%;
    margin-left: -15px;
    border-width: 15px;
    border-style: solid;
    border-color: transparent transparent white transparent;
}

.generic-table .tooltip .button-wrap a {
    font-size: 16px;
    position: relative;
    margin: 0 0 0 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.generic-table .tooltip .button-wrap a:first-child {
    margin: 0;
}

.generic-table .tooltip .button-wrap a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    top: auto;
    background: #00ACE0;
    -webkit-transform: scale3d(0, 1, 1);
    -moz-transform: scale3d(0, 1, 1);
    -ms-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transition: -webkit-transform 0.1s;
    -moz-transition: transform 0.1s;
    -ms-transition: transform 0.1s;
    transition: transform 0.1s;
}

.generic-table .tooltip .button-wrap a:hover:before {
    -webkit-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.generic-table table tr:first-child {
    border-bottom: 1px solid #BEC0C1;
}

.generic-table table tr.btn-wrap {
    background: transparent !important;
    border: 0;
    border-top: 1px solid #bec0c1;

}

.generic-table table tr.btn-wrap td:before {
    display: none;
}

.generic-table table tr.btn-wrap td {
    border: 0;
    padding: 10px 0;
}

.generic-table table tr:nth-child(2n) {
    background: #f9f9f9;
}

.generic-table.no-padding {
    padding: 0 !important;
}

.no-padding-top {
    padding-top: 0 !important;
}

.generic-table .no-border-top {
    border-top: 0 !important;
}

.generic-table .button-wrap {
    margin-top: 10px;
    position: relative;
    display: block;
}

.generic-table .button-wrap button {
    position: absolute;
}

.generic-table table td .btn-wrap {
    display: none;
}

.generic-detail-block {
    text-align: center;
    padding-bottom: 35px;
}

.generic-detail-block .sub-head {
    margin-top: -35px;
    line-height: 1.5;
}

.generic-detail-block:after {
    content: '';
    display: block;
    clear: both;
}

.generic-detail-block .inner-container, .generic-intro .inner-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1078px;
    position: relative;
}

.generic-detail-block h6 {
    letter-spacing: -0.024em;
    margin-bottom: 5px;
}

.generic-detail-block b {
    font-weight: 700;
}

.generic-detail-block p {
    font-size: 20px;
    font-weight: 500;
    color: #333333;
}

.generic-detail-block .col-wrapper {
    float: left;
    width: 100%;
    padding: 22px 0;
}

.generic-detail-block .col {
    float: left;
    width: 100%;
    text-align: left;
    padding: 58px 25px 55px 60px;
}

.generic-detail-block .column-2 {
    width: calc(50% - 10px);
    margin: 0 5px;
}

.generic-detail-block .column-3 {
    width: calc(33.33% - 10px);
    margin: 0 5px;
}

.generic-detail-block .column-4 {
    width: calc(25% - 10px);
    margin: 0 5px;
}

.generic-detail-block .column-5 {
    width: calc(20% - 10px);
    margin: 0 5px;
}

.generic-detail-block .col h4 {
    color: #333333;
    letter-spacing: -0.025em;
    margin-bottom: 55px;
    position: relative;
}

.generic-detail-block .col h4:after {
    content: '';
    position: absolute;
    width: 94px;
    height: 2px;
    left: 0;
    bottom: -30px;
    background: #fc9c0c;
}

.generic-detail-block .col p {
    line-height: 1.8;
    font-weight: 500;
    color: #53565a;
    font-size: 16px;
}

.generic-detail-block .darkpurple-reverse-gradient h6,
.generic-detail-block .darkpurple-reverse-gradient h4,
.generic-detail-block .darkpurple-reverse-gradient p,
.generic-detail-block .dark-grey h4,
.generic-detail-block .dark-grey h6,
.generic-detail-block .dark-grey p,
.generic-detail-block .pink-reverse-gradient h4,
.generic-detail-block .pink-reverse-gradient h6,
.generic-detail-block .pink-reverse-gradient p,
.generic-detail-block .orangepink-gradient h4,
.generic-detail-block .orangepink-gradient h6,
.generic-detail-block .orangepink-gradient p,
.generic-detail-block .orangepink-reverse-gradient h4,
.generic-detail-block .orangepink-reverse-gradient h6,
.generic-detail-block .orangepink-reverse-gradient p,
.generic-detail-block .orange-gradient h4,
.generic-detail-block .orange-gradient h6,
.generic-detail-block .orange-gradient p,
.generic-detail-block .yellow-gradient h4,
.generic-detail-block .yellow-gradient h6,
.generic-detail-block .yellow-gradient p,
.generic-detail-block .pink-gradient h4,
.generic-detail-block .pink-gradient h6,
.generic-detail-block .pink-gradient p,
.generic-detail-block .purple-gradient h4,
.generic-detail-block .purple-gradient h6,
.generic-detail-block .purple-gradient p,
.generic-detail-block .blue-gradient h4,
.generic-detail-block .blue-gradient h6,
.generic-detail-block .blue-gradient p,
.generic-detail-block .orangepink-gradient h4,
.generic-detail-block .orangepink-gradient h6,
.generic-detail-block .orangepink-gradient p,
.generic-detail-block .darkpurple-gradient h4,
.generic-detail-block .darkpurple-gradient h6,
.generic-detail-block .darkpurple-gradient p,
.generic-detail-block .pinkpurple-gradient h4,
.generic-detail-block .pinkpurple-gradient h6,
.generic-detail-block .pinkpurple-gradient p,
.generic-detail-block .pinkorange-gradient h4,
.generic-detail-block .pinkorange-gradient h6,
.generic-detail-block .pinkorange-gradientp,
.generic-detail-block .bg-black h4,
.generic-detail-block .bg-black h6,
.generic-detail-block .bg-black p,
.generic-part-two .bg-blue h4,
.generic-part-two .bg-blue p,
.generic-part-two .bg-pink h4,
.generic-part-two .bg-pink p,
.generic-part-two .bg-green h4,
.generic-part-two .bg-green p,
.generic-part-two .bg-purple h4,
.generic-part-two .bg-purple p,
.generic-part-two .bg-dark-blue h4,
.generic-part-two .bg-dark-blue p,
.generic-part-two .bg-orange h4,
.generic-part-two .bg-orange p,
.generic-cta-wrapper h3,
.generic-cta-wrapper p,
.generic-part-two .bg-lightBlue h4,
.generic-part-two .bg-lightBlue p {
    color: #fff;
}

.generic-detail-block .col h4.white-line:after, .generic-detail-block .col h6.white-line:after,
.info-block .generic-detail-block .col .white-line:after, .info-block .generic-detail-block .col .white-line:after {
    background: #fff;
}

.generic-detail-block .col h4.white-line:after, .generic-detail-block .col h6.white-line:after {
    background: #fff;
}

.generic-detail-block .col h4.red-line:after, .generic-detail-block .col h6.red-line:after {
    background: #ea2328;
}

.generic-detail-block .col h4.blue-line:after, .generic-detail-block .col h6.blue-line:after {
    background: #00ace0;
}

.generic-detail-block .col h4.black-line:after, .generic-detail-block .col h6.black-line:after,
.info-block .generic-detail-block .col .black-line:after, .info-block .generic-detail-block .col .black-line:after {
    background: #000;
}

.generic-detail-block .col h4.lightred-line:after, .generic-detail-block .col h6.lightred-line:after {
    background: #eb4971;
}

.generic-detail-block .col h4.orange-line:after, .generic-detail-block .col h6.orange-line:after {
    background: #efcd0f;
}

.generic-detail-block .col h4.dark-orange-line:after, .generic-detail-block .col h6.dark-orange-line:after {
    background: #fc9c0c;
}

.generic-detail-block .col h4.dark-red-line:after, .generic-detail-block .col h6.dark-red-line:after {
    background: #ea2328;
}

.generic-detail-block .col h4.dark-blue-line:after, .generic-detail-block .col h6.dark-blue-line:after {
    background: #0074e0;
}

.generic-detail-block .col h4.grey-line:after, .generic-detail-block .col h6.grey-line:after {
    background: #ccc;
}

.generic-detail-block .col h4.purple-line:after, .generic-detail-block .col h6.purple-line:after {
    background: #b36cdb;
}

.generic-detail-block .col h4.teal-line:after, .generic-detail-block .col h6.teal-line:after {
    background: #00b9be;
}

/*.generic-detail-block .col .inner-content {*/
/*margin-bottom: 20px;*/
/*}*/

.generic-detail-block .col .inner-content:last-child {
    margin-bottom: 0;
}

.generic-detail-block .col p .blue-color {
    color: #00ace0;
}

.generic-detail-block .col > h6 {
    letter-spacing: -0.025em;
    margin-bottom: 55px;
    position: relative;
}

.generic-detail-block .col > .bottom-line {
    position: relative;
    margin-bottom: 30px;
}

.generic-detail-block .col > .bottom-line:after {
    content: '';
    position: absolute;
    width: 94px;
    height: 2px;
    left: 0;
    bottom: -20px;
    background: #fc9c0c;
}

.generic-detail-block .col .inner-content h6 {
    font-size: 16px;
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin: 18px 0;
}

.generic-detail-block .col .rotate_arrow h6:after {
    transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
}

.generic-section {
    padding: 100px 0 75px;
    /*    opacity: 0;*/
}

.generic-section .col {
    opacity: 0;
}

.generic-section.resource-intro {
    padding-bottom: 0;
}

.generic-section.resource-intro .generic-intro {
    padding: 0;
}

.generic-section ul,
.generic-part-two ul {
    margin-top: 10px;
}

.generic-section li,
.generic-part-two ul li {
    list-style: disc;
    margin: 0 0 5px 18px;
    line-height: 1.8;
    color: #53565a;
    font-weight: 500;
}

.generic-section .pink-reverse-gradient li,
.generic-section .darkpurple-reverse-gradient li,
.generic-section .orangepink-reverse-gradient li,
.generic-section .bg-black li,
.generic-section .dark-grey li,
.generic-part-two .bg-blue li,
.generic-part-two .bg-pink li,
.generic-part-two .bg-green li,
.generic-part-two .bg-lightBlue li,
.generic-part-two .bg-black li {
    color: #fff;
}

.generic-section .generic-intro {
    padding: 0 0 48px;
}

.generic-section.three-block {
    padding: 110px 0 65px;
}

.generic-section.three-block .col {
    padding: 35px 32px 30px 40px;
}

.generic-section.three-block .col h4 {
    margin-bottom: 48px;
}

.generic-section.three-block .col p {
    line-height: 1.8;
}

@media (max-width: 1224px) and (min-width: 1025px) {
    .generic-intro {
        padding: 80px 0 0;
    }

    .generic-intro h2 {
        font-size: 40px;
    }

    .generic-intro p {
        font-size: 22px;
    }

    .generic-intro p:last-child:after {
        bottom: -20px;
    }

    .generic-table .button-wrap button {
        padding: 15px 20px;
    }

    .generic-detail-block .col {
        padding: 35px 20px 40px 40px;
    }

    .generic-section {
        padding: 80px 0 65px;
    }

    .generic-section.three-block {
        padding: 90px 0 45px;
    }

    .generic-section.three-block .col {
        padding: 35px 20px 30px 30px;
    }

    /*  .generic-table table th:last-child{
padding: 15px 41px 12px 40px;
}*/
}

@media (max-width: 1024px) and (min-width: 768px) {
    .generic-intro {
        padding: 50px 0 0;
    }

    .generic-intro h2 {
        margin-bottom: 10px;
        font-size: 34px;
    }

    .generic-table table tr button {
        font-size: 16px;
        padding: 15px 20px 15px;
    }

    .generic-intro p {
        font-size: 18px;
        margin-top: 45px;
    }

    .generic-intro p a {
        font-size: 18px;
    }

    .generic-intro p:last-child:after {
        bottom: -15px;
    }

    .generic-table table th {
        font-size: 16px;
        padding: 25px 20px 25px 20px;
    }

    .generic-table table td {
        font-size: 15px;
        padding: 25px 20px 25px 20px;
    }

    .generic-table .button-wrap button {
        padding: 10px 15px;
        font-size: 16px;
    }

    .generic-detail-block .col {
        padding: 25px 15px 25px;
    }

    .generic-detail-block .col h4 {
        margin-bottom: 35px;
    }

    .generic-detail-block .col h4:after {
        bottom: -20px;
    }

    .generic-section {
        padding: 60px 0 25px;
    }

    .generic-section.three-block {
        padding: 60px 0 35px;
    }

    .generic-section.three-block .col {
        padding: 35px 20px 30px 20px;
    }

    .generic-section.three-block .col h4 {
        margin-bottom: 35px;
    }

    .generic-detail-block .col > h6 {
        margin-bottom: 35px;
    }

    .generic-detail-block .col > h6:after {
        bottom: -18px;
    }

    .generic-detail-block .column-4 {
        width: calc(50% - 10px);
        margin: 5px;
    }

    .generic-detail-block .column-5 {
        width: calc(50% - 10px);
        margin: 5px;
    }
}

@media (max-width: 767px) and (min-width: 596px) {
    .generic-intro {
        padding: 40px 0 0;
    }

    .generic-intro h2 {
        margin-bottom: 8px;
        font-size: 30px;
    }

    .generic-intro h6:nth-child(3):after {
        bottom: -20px;
    }

    .generic-intro p:last-child:after {
        bottom: -15px;
    }

    .generic-table table th {
        font-size: 15px;
        padding: 25px 20px 25px 20px;
    }

    .generic-table table td {
        font-size: 14px;
        padding: 25px 20px 25px 20px;
    }

    .generic-table table tr button {
        font-size: 15px;
        padding: 15px 15px 15px;
    }

    .generic-table .tooltip .button-wrap a {
        font-size: 14px;
    }

    .generic-detail-block .col p {
        font-size: 14px;
    }

    .generic-section li,
    .generic-part-two ul li {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .generic-detail-block p {
        font-size: 14px;
    }

    .generic-intro p {
        font-size: 16px;
        margin-top: 40px;
    }

    .generic-detail-block .col {
        padding: 20px 20px 20px;
    }

    .generic-detail-block .column-3 {
        width: 100%;
        margin: 5px 0;
    }

    .generic-detail-block .col h4 {
        margin-bottom: 30px;
    }

    .generic-detail-block .col h4:after {
        bottom: -17px;
    }

    .generic-intro p a {
        font-size: 16px;
    }

    .generic-section {
        padding: 40px 0 20px;
    }

    .generic-section.three-block {
        padding: 40px 0 20px;
    }

    .generic-section.three-block .col {
        padding: 30px 20px 30px 20px;
        height: auto !important;
    }

    .generic-section.three-block .col h4 {
        margin-bottom: 25px;
    }

    .generic-detail-block {
        text-align: center;
        padding-bottom: 20px;
    }

    .generic-detail-block .col > h6 {
        margin-bottom: 25px;
    }

    .generic-detail-block .col > h6:after {
        bottom: -14px;
    }

    .generic-detail-block .column-4 {
        width: calc(50% - 10px);
        margin: 5px;
    }

    .generic-detail-block .column-5 {
        width: calc(50% - 10px);
        margin: 5px;
    }
}

@media (max-width: 595px) {

    .generic-section li,
    .generic-part-two ul li {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .generic-intro {
        padding: 30px 0 0;
    }

    .generic-detail-block .col {
        padding: 20px 20px 20px;
    }

    .generic-detail-block .column-2 {
        width: 100%;
        margin: 5px 0;
    }

    .generic-detail-block .column-3 {
        width: 100%;
        margin: 5px 0;
    }

    .generic-table .tooltip .button-wrap a {
        font-size: 14px;
        display: block;
        margin: 5px 0;
    }

    .generic-detail-block .col h4 {
        margin-bottom: 25px;
    }

    .generic-intro p a {
        font-size: 15px;
    }

    .generic-intro h6:nth-child(3):after {
        bottom: -13px;
    }

    .generic-detail-block .col h4:after {
        bottom: -13px;
    }

    .generic-table .tooltip .button-wrap a:after {
        right: auto;
        margin-left: 5px;
    }

    .generic-detail-block .col p {
        font-size: 14px;
    }

    .generic-detail-block p {
        font-size: 16px;
    }

    .generic-table .tooltip .button-wrap a:before {
        width: auto;
    }

    .generic-table table tr.btn-wrap {
        display: none;
    }

    .generic-intro h2 {
        margin-bottom: 5px;
        font-size: 25px;
    }

    .generic-intro p {
        font-size: 15px;
        margin-top: 30px;
    }

    .generic-intro p:last-child:after {
        bottom: -10px;
    }

    .generic-table table td:before {
        content: attr(data-th) ": ";
        font-weight: bold;
        max-width: 120px;
        display: inline-block;
        position: absolute;
        left: 20px;
    }

    .generic-table table tr:first-child {
        display: none
    }

    .generic-table table td {
        display: block;
        width: 100%;
        font-size: 14px;
        padding: 20px 20px 20px 120px;
        border-left: 0;
    }

    .generic-table table td .btn-wrap {
        display: block;
        float: right;
        margin-top: -8px;
    }

    .generic-table table td .btn-wrap button {
        padding: 5px 12px 5px;
    }

    .generic-table table tr {
        text-align: left;
    }

    .generic-table table td:first-child {
        width: 100%;
    }

    .generic-table table td img {
        height: 15px;
    }

    .generic-table table {
        width: 100%;
        border-bottom: 1px solid #BEC0C1;
    }

    .generic-table.no-padding table {
        border-bottom: 0;
    }

    .generic-section {
        padding: 40px 0 20px;
    }

    .generic-section.three-block {
        padding: 40px 0 20px;
    }

    .generic-section.three-block .col {
        padding: 30px 20px 30px 20px;
        height: auto !important;
    }

    .generic-section.three-block .col h4 {
        margin-bottom: 25px;
        height: auto !important;
    }

    .generic-section.info-block .generic-detail-block .col-wrapper .col {
        height: auto !important;
    }

    .generic-detail-block {
        text-align: center;
        padding-bottom: 20px;
    }

    .generic-col-two .generic-detail-block .col {
        height: auto !important;
    }

    .generic-detail-block .col > h6 {
        margin-bottom: 25px;
    }

    .generic-detail-block .col > h6:after {
        bottom: -14px;
    }

    .generic-detail-block .column-4 {
        width: calc(100%);
        margin: 5px 0;
    }

    .generic-detail-block .column-5 {
        width: calc(100%);
        margin: 5px 0;
    }
}

.generic-events {
    padding: 60px 0 100px;
}

.generic-events .col-three-outer .col-three {
    padding: 0 5px;
    overflow: hidden;
}

.generic-events .col-three .inner-content {
    padding: 40px 35px 0 35px;
    display: inline-block;
    width: 100%;
}

.generic-events .event-info {
    float: left;
    width: 100%;
}

.generic-events h2 {
    font-size: 48px;
    padding: 37px 0 30px;
    letter-spacing: -0.025em;
}

.generic-events .event-icon {
    width: 52px;
    display: inline-block;
    height: 48px;
}

.generic-events .inner-content .right {
    position: relative;
}

.generic-events .inner-box {
    float: left;
    width: 100%;
    position: relative;
    margin: 16px 0 8px;
    padding-bottom: 27px;
    overflow: hidden;
}

.generic-events .inner-content .right a {
    position: relative;
    margin-right: 17px;
    margin: 0;
    font-size: 16px;
    color: #00ace0;
    font-family: "Gotham A", "Gotham B";
    font-style: normal;
    font-weight: 700;
}

.generic-events a, .generic-events a:hover {
    /*  color: #333;*/
}

.generic-events .inner-box h6 {
    position: relative;
    font-family: "Gotham A", "Gotham B";
    font-style: normal;
    font-weight: 400;
    padding: 7px 0 32px;
    color: #333;
    line-height: 1.2;
}

.generic-events .inner-box p {
    font-family: "Gotham A", "Gotham B";
    font-style: normal;
    font-weight: 400;
    color: #333;
    line-height: 1.5;
}

.generic-events .blue-link {
    padding: 0;
    margin: 18px auto 10px;
    position: relative;
    display: inline-block;
    color: #00ace0;
    font-weight: 700;
}

.generic-events .inner-box h6:after {
    position: absolute;
    content: '';
    border-bottom: 1px solid #bfbfbf;
    width: 55%;
    bottom: 16px;
    left: 0;
}

.generic-events .inner-box .hover-state {
    position: absolute;
    opacity: 0;
    top: 100%;
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.generic-events .col-three .inner-box .hover-off {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.generic-events .col-three:hover .inner-box .hover-off {
    transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    opacity: 0;
}

.generic-events .col-three:hover .inner-box .hover-state {
    top: 0;
    opacity: 1;
}

@media screen and (max-width: 1224px) and (min-width: 1024px) {
    .generic-events .col-three .inner-content {
        padding: 40px 30px 0;
    }

    .generic-events .inner-box {
        margin: 10px 0;
    }

    .generic-events {
        padding: 40px 0 60px;
    }

    .generic-events h2 {
        padding: 20px 0 30px;
    }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
    .generic-events {
        padding: 40px 0;
    }

    .generic-events h2 {
        font-size: 34px;
        padding: 0 0 30px;
    }

    .generic-events .inner-box {
        padding: 0;
        padding-bottom: 27px;
        margin: 10px 0 6px;
    }

    .generic-events .inner-content > .text-right {
        padding-bottom: 5px;
    }

    .generic-events .col-three .inner-content {
        padding: 40px 15px 0;
    }

    .generic-events .inner-content .right a,
    .blue-link {
        margin-right: 10px;
        font-size: 14px;
    }

    .generic-events .inner-box p {
        font-size: 15px;
    }
}

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

    .generic-events .col-three-outer .col-three {
        margin-bottom: 10px;
        padding: 0;
    }

    .generic-events .col-three .inner-content {
        padding: 40px 40px 0;
    }

    .generic-events .inner-content .right a,
    .blue-link {
        font-size: 14px;
    }
}

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

    .generic-events {
        padding: 40px 0 30px;
    }

    .generic-events h2 {
        font-size: 32px;
        padding: 0 0 30px;
    }

    .generic-events .inner-box {
        padding: 0;
        margin: 10px 0 6px;
        padding-bottom: 25px;
    }

    .generic-events .row > div .inner-content {
        padding: 20px 10px;
    }

    .generic-events .inner-content > .text-right a,
    .generic-events .eventdate {
        font-size: 14px;
    }

    .generic-events .inner-box p {
        font-size: 15px;
    }

    .generic-events .inner-content > .text-right {
        padding-bottom: 5px;
    }

    .generic-events .container {
        width: 100%;
        padding: 0 30px;
    }

}

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

    .generic-events {
        padding: 30px 0 20px;
    }

    .generic-events h2 {
        padding: 0 0 20px;
    }

    .generic-events .inner-content > .text-right a,
    .generic-eventss .eventdate {
        font-size: 14px;
    }

    .generic-events .inner-box p {
        font-size: 15px;
    }

    .generic-events .col-three-outer {
        padding: 0;
    }

    .generic-events .inner-box {
        padding: 0;
        padding-bottom: 20px;
        margin: 10px 0 6px;
    }

}

@media screen and (max-width: 595px) and (min-width: 576px) {
    .generic-events .inner-box {
        padding: 0;
        padding-bottom: 20px;
        margin: 10px 0 6px;
    }

    .generic-events .row > div .inner-content {
        padding: 20px 10px;
    }

    .generic-events .inner-content > .text-right {
        padding-bottom: 10px;
    }
}

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

    .generic-events .row > div .inner-content {
        padding: 20px;
        margin: 10px;
    }

}

@media screen and (max-width: 595px) and (min-width: 481px) {

    .generic-events h2 {
        font-size: 28px;
    }

}

@media screen and (max-width: 480px) {
    .generic-events h2 {
        font-size: 24px;
    }

    .generic-events .col-three .inner-content {
        padding: 20px 20px 0;
    }

    .generic-events .inner-content .right a.blue-link:after {
        right: -11px;
    }

}

.divider {
    position: relative;
    margin-bottom: 50px;
}

b {
    font-weight: 700;
}

.blue-color {
    color: #00ace0;
}

.no-padding-bottom {
    padding-bottom: 0 !important;
}

.divider:after {
    content: '';
    position: absolute;
    width: 94px;
    height: 1px;
    left: calc(50% - 47px);
    bottom: -22px;
    background: #5c5c5c;
}



.generic-table-intro .list-items {
    padding-left: 30px;
}

.bold-title {
    margin: 6px 0;
}

.generic-table-intro .list-items li {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    padding: 8px 0 10px;
    position: relative;
    list-style-type: disc;
}

/*.generic-table-intro .list-items li:before {*/
/*content: '�';*/
/*position: absolute;*/
/*top: 8px;*/
/*left: -20px;*/
/*color: #333;*/
/*}*/

.generic-table-intro .head h2 {
    font-size: 38px;
    letter-spacing: -0.025em;
    font-weight: 700;
    padding-bottom: 15px;
    line-height: 1.2;
}

.generic-table-intro .divider {
    margin-bottom: 45px;
}

.generic-table-intro .divider:after {
    left: 0;
    bottom: -14px;
}

.generic-table-intro .head p {
    font-size: 20px;
    width: 70%;
    padding-bottom: 20px;
    line-height: normal;
}

.generic-table-intro p {
    font-weight: 400;
}

.generic-table-intro a.blue-color {
    font-weight: 700;
    position: relative;
}

.generic-table-image h4 {
    margin-bottom: 15px;
}
.generic-table-image .col-outer {
    font-size: 0;
    margin-top: 30px;
    border: 1px solid #BEC0C1;
}

.generic-table-image .col-outer .title-box {
    width: 100%;
    max-width: calc(100% - 776px);
    float: left;
}

.generic-table-image .col-outer .title-box .content-inner {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 20px;
    color: #fff;
}

.generic-table-image .col-outer .title-box .content-inner h5 {
    line-height: 1.2;
    padding-top: 15px;
}

.generic-table-image .col-outer .img-box {
    width: 100%;
    max-width: 776px;
    position: relative;
    float: left;
}

.generic-fixed-table tr td pre {
    white-space: pre-wrap;
    word-wrap: break-word;
}

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

.generic-table-intro a.blue-color:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #00ace0;
    -webkit-transform: scale3d(0, 1, 1);
    -moz-transform: scale3d(0, 1, 1);
    -ms-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transition: -webkit-transform 0.1s;
    -moz-transition: trasform 0.1s;
    -ms-transition: trasform 0.1s;
    transition: transform 0.1s;
}

.generic-table-intro a.blue-color:hover:after {
    -webkit-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.generic-table-intro .generic-detail {
    padding: 48px 0;
}

.generic-table-intro .generic-detail .detail {
    padding-top: 28px;
}

.generic-table-intro .generic-detail .detail h6 {
    font-size: 18px;
    line-height: 1.3;
}

.generic-table-intro .generic-detail .detail ul {
    padding: 8px 18px 15px;
}

.generic-table-intro .generic-detail .detail ul li {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    padding: 8px 0 10px;
}

.generic-table.generic-detail-table table th {
    padding: 15px 35px 13px 35px;
}

.generic-table.generic-detail-table table td {
    padding: 26px 35px 26px 35px;
    font-weight: 700;
    color: #333333;
}

.generic-table.generic-detail-table table td:first-child {
    font-weight: 400;
}

.generic-table table tr.bg-white {
    background: #fff;
}

.generic-table table tr.bg-fade-grey {
    background: #f9f9f9;
}

.generic-table.generic-detail-table table th, .generic-table.generic-detail-table table td {
    width: 33.33%;
    border-left: 1px solid #666666;

}

.generic-detail-table table th:first-child, .generic-detail-table table td:first-child {
    border-left: 0;
}

.generic-detail-table table .bg-black {
    color: #fff;
}

/*.generic-detail-table table tr:first-child {*/
/*border-bottom: 1px solid #666666;*/
/*}*/

.generic-detail-table table tr {
    border-left: 1px solid #666666;
    border-right: 1px solid #666666;
}

.generic-detail-table table {
    border-top: 1px solid #BEC0C1;
    border-bottom: 1px solid #BEC0C1;
}

@media screen and (max-width: 1224px) and (min-width: 1024px) {
    .generic-table-intro .head h2 {
        font-size: 36px;
    }

    .generic-table-image .col-outer .title-box {
        width: 35%;
        max-width: inherit;
    }

    .generic-table-image .col-outer .img-box {
        width: 65%;
        max-width: inherit;
    }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
    .generic-table-intro .head h2 {
        font-size: 34px;
        padding-bottom: 10px;
    }

    .divider {
        margin-bottom: 40px;
    }

    .generic-table-intro .generic-detail {
        padding: 30px 0;
    }

    .generic-table-intro .generic-detail .detail {
        padding-top: 20px;
    }

    .generic-table-intro .head p {
        font-size: 18px;
        padding-bottom: 15px;
    }

    .generic-table-intro .divider {
        margin-bottom: 40px;
    }

    .generic-table-intro .divider:after {
        bottom: -12px;
    }

    .generic-table-intro .generic-detail .detail ul {
        padding: 5px 18px 10px;
    }

    .generic-table-intro .generic-detail .detail ul li {
        padding: 6px 0 8px;
    }

    .generic-table-image .col-outer .title-box {
        width: 30%;
        max-width: inherit;
    }

    .generic-table-image .col-outer .img-box {
        width: 60%;
        max-width: inherit;
    }

    .generic-table-image .col-outer .title-box .content-inner {
        padding: 15px;
    }

    .generic-table-image .col-outer .title-box .content-inner h5 {
        font-size: 20px;
    }
}

@media screen and (max-width: 767px) {
    .generic-table-image .col-outer {
        margin-top: 15px;
    }

    .generic-table-image .col-outer .title-box,
    .generic-table-image .col-outer .img-box {
        width: 100%;
        max-width: inherit;
    }

    .generic-table-image .col-outer .title-box .content-inner {
        top: 0;
        transform: translateY(0%);
        padding: 20px;
    }
}

@media screen and (max-width: 767px) and (min-width: 596px) {
    .generic-table-intro .head h2 {
        font-size: 32px;
        padding-bottom: 8px;
    }

    .generic-table-intro .head p {
        font-size: 16px;
        width: 100%;
        padding-bottom: 10px;
    }

    .divider {
        margin-bottom: 30px;
    }

    .divider:after {
        bottom: -14px;
    }

    .generic-table-intro .divider {
        margin-bottom: 35px;
    }

    .generic-table.generic-detail-table table td {
        padding: 20px 35px 20px 35px;
    }

    .generic-table-intro .divider:after {
        bottom: -10px;
    }

    .generic-table-intro .generic-detail {
        padding: 20px 0;
    }

    .generic-table-intro .generic-detail .detail {
        padding-top: 15px;
    }

    .generic-table-intro .generic-detail .detail h6 {
        font-size: 16px;
    }

    .generic-table-intro .generic-detail .detail ul li {
        font-size: 14px;
        padding: 5px 0 7px;
    }

    .generic-table-intro .generic-detail .detail ul {
        padding: 5px 18px 10px;
    }

}

@media screen and (max-width: 595px) {
    .generic-table-intro .head h2 {
        font-size: 28px;
        padding: 0;
        padding-bottom: 5px;
    }

    .generic-table-intro .head p {
        font-size: 16px;
        width: 100%;
        padding-bottom: 10px;
    }

    .divider {
        margin-bottom: 30px;
    }

    .generic-table-intro .divider {
        margin-bottom: 25px;
    }

    .generic-table-intro .divider:after {
        bottom: -10px;
    }

    .divider:after {
        bottom: -14px;
    }

    .generic-table-intro .generic-detail {
        padding: 20px 0;
    }

    .generic-table-intro .generic-detail .detail {
        padding-top: 15px;
    }

    .generic-table-intro .generic-detail .detail h6 {
        font-size: 16px;
    }

    .generic-table-intro .generic-detail .detail ul li {
        font-size: 14px;
    }

    .generic-table.generic-detail-table table th, .generic-table.generic-detail-table table td {
        width: 100%;
        padding: 20px 20px 20px 120px;
        border-left: 0;
    }

    .generic-table.generic-detail-table table td:last-child, .generic-table table td:last-child {
        padding-bottom: 30px;
    }

}

.bg-light-grey {
    background: #f7f7f7;
}

/*.generic-resources-block {*/

/*.generic-resources-block {*/
/*padding-bottom: 35px;*/
/*}*/

.generic-resources-block .generic-inner-content {
    float: left;
    width: 100%;
    /*padding-bottom: 100px;*/
}

.generic-resources-block:after {
    content: '';
    display: block;
    clear: both;
}

.generic-resources-block h6 {
    letter-spacing: -0.024em;
    margin-bottom: 18px;
}

.generic-resources-block span {
    display: block;
    letter-spacing: -0.024em;
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 14px;
}

.generic-resources-block b {
    font-weight: 700;
}

.generic-resources-block p {
    font-weight: 500;
    color: #333333;
    line-height: 1.3;
}

.generic-resources-block .col p {
    padding-bottom: 35px;
}

.generic-resources-block .col .animate-content {
    display: none;
}

.generic-resources-block .col .animate-content p {
    opacity: 0;
    transform: translateY(38px);
    -webkit-transform: translateY(38px);
    -moz-transform: translateY(38px);
    -ms-transform: translateY(38px);
    -o-transform: translateY(38px);
    letter-spacing: -0.024em;
    transition: opacity .4s ease-in-out .2s, transform .4s ease-in-out .2s;
    -ms-transition: opacity .4s ease-in-out .2s, transform .4s ease-in-out .2s;
    -webkit-transition: opacity .4s ease-in-out .2s, transform .4s ease-in-out .2s;
    -moz-transition: opacity .4s ease-in-out .2s, transform .4s ease-in-out .2s;
    -o-transition: opacity .4s ease-in-out .2s, transform .4s ease-in-out .2s;
}

.generic-resources-block .col p.active {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}

.generic-resources-block .col p a {
    font-weight: 700;
    margin: 0;
    display: inline;
}

.generic-resources-block .col p a:after {
    display: none;
}

.generic-resources-block .col p:last-child {
    padding-bottom: 0;
}

.generic-resources-block .col-wrapper {
    float: left;
    width: 100%;
    padding: 0 15px;
}

.generic-resources-block .col {
    float: left;
    width: 100%;
    text-align: left;
    padding: 0 20px 0 25px;
}

.generic-resources-block .column-2 {
    width: calc(50% - 10px);
    margin: 0 5px;
}

.generic-resources-block .column-3 {
    width: calc(33.33% - 10px);
    margin: 35px 5px 26px;
    position: relative;
}

.generic-resources-block .col {
    margin: 35px 5px 26px;
    position: relative;
}

.generic-resources-block .column-2 {
    width: calc(50% - 10px);
}

.generic-resources-block .column-4 {
    width: calc(25% - 10px);
    margin: 0 5px;
}

.generic-resources-block .column-5 {
    width: calc(20% - 10px);
    margin: 0 5px;
}

.generic-resources-block .column-3 .side-line {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: calc(100% - 20px);
    background: #ccc;
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.generic-resources-block .column-2 .side-line {
    content: '';
    position: absolute;
    top: 0;
    right: -6px;
    width: 1px;
    height: calc(100% - 20px);
    background: #ccc;
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.generic-resources-block .column-3:last-child .side-line {
    display: none;
}

.generic-resources-block .column-3:last-child:after {
    display: none;
}

.generic-resources-block .slide-btn {
    text-align: center;
    float: left;
    width: 100%;
    padding: 13px 0;
    cursor: pointer;
}

.generic-resources-block .slide-btn p {
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.generic-resources-block .slide-btn p:before {
    content: '';
    position: absolute;
    top: -3px;
    left: -26px;
    width: 19px;
    height: 22px;
    background: url(../images/btn-img.png) no-repeat;
}

.generic-resources-block .close-btn p:before {
    content: '';
    position: absolute;
    top: 1px;
    left: -24px;
    width: 16px;
    height: 16px;
    background: url(../images/cross_btn.png) no-repeat;
}

.generic-resources-block .slide-btn p:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #000000;
    -webkit-transform: scale3d(0, 1, 1);
    -moz-transform: scale3d(0, 1, 1);
    -ms-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transition: -webkit-transform 0.1s;
    -moz-transition: trasform 0.1s;
    -ms-transition: trasform 0.1s;
    transition: transform 0.1s;
}

.generic-resources-block .slide-btn p:hover:after {
    -webkit-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.generic-resources-block .grey-bg {
    background: #666666;
    float: left;
    width: 100%;
    text-align: center;
    padding: 20px 0;
}

.generic-resources-block .grey-bg .transparent-btn {
    padding: 15px 140px 13px;
}

.generic-resources-block .grey-bg .transparent-btn:hover {
    color: #666;
    background: #fff;
    border: 2px solid #fff;
}

@media (max-width: 1226px) and (min-width: 1024px) {
    .generic-resources-block .col {
        padding: 0 20px 0 20px;
    }

    .generic-resources-block .col p {
        padding-bottom: 20px;
    }

    .generic-resources-block .generic-inner-content {
        padding-bottom: 70px;
    }

    .generic-resources-block .col p a {
        margin: 0;
    }

    .generic-resources-block .col-wrapper {
        padding: 0 10px;
    }
}

@media (max-width: 1023px) and (min-width: 768px) {
    .generic-resources-block .col {
        padding: 0 15px 0 15px;
        margin: 25px 5px 25px;
    }

    .generic-resources-block .col-wrapper {
        padding: 0;
    }

    .generic-resources-block .col p {
        padding-bottom: 20px;
    }

    .generic-resources-block .generic-inner-content {
        padding-bottom: 40px;
    }

    .generic-resources-block {
        padding-bottom: 20px;
    }

    .generic-resources-block .col p a {
        margin: 0;
    }
}

@media (max-width: 767px) {
    .generic-resources-block .column-3,
    .generic-resources-block .column-2 {
        width: 100%;
        margin: 5px 0;
        border-bottom: 1px solid #ccc;
        overflow: hidden;
    }

    .generic-resources-block .column-3 .side-line,
    .generic-resources-block .column-2 .side-line {
        display: none;
    }

    .generic-resources-block .col p {
        padding-bottom: 10px;
    }

    .generic-resources-block span {
        margin-bottom: 7px;
        font-size: 13px;
    }

    .generic-resources-block .col-wrapper {
        padding: 0;
    }

    .generic-resources-block .column-3:last-child,
    .generic-resources-block .column-2:last-child {
        border-bottom: none;
    }

    .generic-resources-block .col p a {
        margin: 0;
    }

    .generic-resources-block .column-3:after {
        display: none;
    }

    .generic-resources-block {
        padding-bottom: 0;
    }

    .generic-resources-block .generic-inner-content {
        padding-bottom: 0;
    }
}

@media (max-width: 767px) and (min-width: 596px) {
    .generic-resources-block .grey-bg .transparent-btn {
        padding: 15px 80px 13px;
    }

    .generic-resources-block .column-3,
    .generic-resources-block .column-2 {
        padding: 20px 20px 10px;
    }

}

@media (max-width: 595px) and (min-width: 481px) {
    .generic-resources-block .grey-bg .transparent-btn {
        padding: 15px 60px 13px;
    }

    .generic-resources-block .column-3,
    .generic-resources-block .column-2 {
        padding: 15px 20px 10px;
    }

    .generic-resources-block .col p {
        padding-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .generic-resources-block .grey-bg .transparent-btn {
        padding: 15px 30px 13px;
    }

    .generic-resources-block .column-3,
    .generic-resources-block .column-2 {
        padding: 15px 15px 10px;
    }

    .generic-resources-block .col p {
        padding-bottom: 15px;
    }
}

.pink-color {
    color: #eb4971;
}

.green-color {
    color: #00b9be;
}

.purple-color {
    color: #b36cdb;
}

.black-color {
    color: #000;
}

.red-color {
    color: #ea2328;
}

.orange-color {
    color: #fc9c0c;
}

.font-18 {
    font-size: 18px;
}

.text-white {
    color: #fff;
}

.light-blue-color {
    color: #0074e0;
}

.generic-part-two .generic-intro {
    padding-top: 0;
}

.generic-part-two .inner-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1068px;
    position: relative;
}

.generic-col .col p a {
    margin: 0;
}

.generic-col .col p a:after {
    display: none;
}

.generic-part-two .generic-detail-block .col-four {
    width: 41.2%;
    float: left;
    position: relative;
    height: 100%;
    margin: 0;
    padding: 50px 39px 47px 40px;
    text-align: left;
}

.generic-part-two .generic-detail-block .col-eight {
    width: 58.8%;
    float: left;
    position: relative;
    height: 100%;
    margin: 0;
    padding: 75px 50px 22px 80px;
    text-align: left;
}

.generic-part-two .generic-detail-block .col-four:before {
    content: '';
    position: absolute;
    top: 169px;
    right: -15px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 16px;
    border-color: transparent transparent transparent #f3f3f3;
    z-index: 1;
}

.generic-part-two .generic-detail-block .column span {
    font-weight: 700;
}

.generic-part-two .generic-detail-block .column .text-top h6 {
    margin: 6px 0 4px;
}

.generic-part-two .generic-detail-block .column .text-bottom h6 {
    margin-bottom: 13px;
}

.generic-detail-block .column h4 {
    letter-spacing: -0.025em;
    margin-bottom: 47px;
    position: relative;
}

.generic-detail-block .column .text-top p,
.generic-detail-block .column .text-top ul li {
    line-height: 1.45;
}

.generic-detail-block .column p,
.generic-detail-block .column .text-bottom ul li {
    font-size: 16px;
    line-height: 1.35;
}

.generic-detail-block .column .text-top ul li,
.generic-detail-block .column .text-bottom ul li {
    color: #333333;
}

.generic-part-two .generic-detail-block .column a:after {
    display: none;
}

.generic-part-two .generic-detail-block .column a.blue-link {
    margin: 0;
}

.generic-part-two .generic-detail-block .column a.white-link,
.generic-section .generic-detail-block .col a.white-link {
    padding: 0;
    position: relative;
    display: inline;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.generic-section .generic-detail-block a.blue-link {
    display: inline;
    font-size: inherit;
}

.generic-part-two .blue-link:before,
.generic-section .blue-link:before,
.generic-table-intro .blue-link:before,
.generic-fixed-table .blue-link:before,
.generic-col .blue-link:before,
.generic-link-with-icon .blue-link:before,
.generic-quote .blue-link:before {
    bottom: 0;
}

a.white-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    -webkit-transform: scale3d(0, 1, 1);
    -moz-transform: scale3d(0, 1, 1);
    -ms-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transition: -webkit-transform 0.1s;
    -moz-transition: trasform 0.1s;
    -ms-transition: trasform 0.1s;
    transition: transform 0.1s;
}

a.white-link:hover:before {
    -webkit-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.generic-detail-block .column h4:after {
    content: '';
    position: absolute;
    width: 94px;
    height: 2px;
    left: 0;
    bottom: -27px;
    background: #fc9c0c;
}

.generic-part-two .column:last-child p,
.generic-part-two .column:last-child ul li {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: -0.004em;
}

.generic-part-two .generic-detail-block .column .text-bottom {
    margin-top: 43px;
}

.generic-detail-block .column h4.white-line:after, .generic-detail-block .column h6.white-line:after {
    background: #fff;
}

.generic-detail-block .column h4.red-line:after, .generic-detail-block .bg-black h6.red-line:after {
    background: #eb3136;
}

@media (max-width: 1023px) and (min-width: 768px) {
    .generic-part-two .generic-detail-block .col-four {
        padding: 35px 20px 30px 30px;
    }

    .generic-part-two .generic-detail-block .col-eight {
        padding: 35px 35px 30px 50px;
    }

    .generic-part-two .column:last-child p,
    .generic-part-two .column:last-child ul li {
        font-size: 18px;
        line-height: 1.5;
    }

    .generic-detail-block .column ul li {
        font-size: 16px;
    }

    .generic-part-two .generic-detail-block .column .text-bottom {
        margin-top: 30px;
    }

    .generic-part-two .generic-detail-block .column a.blue-link {
        font-size: 18px;
    }

}

@media (max-width: 767px) and (min-width: 596px) {
    .generic-part-two .generic-detail-block .col-four,
    .generic-part-two .generic-detail-block .col-eight {
        width: 100%;
        padding: 30px 20px 30px 20px;
        height: auto !important;
    }

    .generic-detail-block .column h4 {
        margin-bottom: 25px;
    }

    .generic-detail-block .column h4:after {
        bottom: -17px;
    }

    .generic-detail-block .column p,
    .generic-part-two .column:last-child p,
    .generic-part-two .column:last-child ul li,
    .generic-detail-block .column .text-bottom ul li {
        font-size: 14px;
        line-height: 1.9;
    }

    .generic-part-two .generic-detail-block .col-four:before {
        display: none;
    }

    .generic-part-two .generic-detail-block .column .text-bottom {
        margin-top: 20px;
    }

}

@media (max-width: 595px) {
    .generic-part-two .generic-detail-block .col-four,
    .generic-part-two .generic-detail-block .col-eight {
        width: 100%;
        padding: 30px 20px 30px 20px;
        height: auto !important;
    }

    .generic-detail-block .column h4 {
        margin-bottom: 25px;
    }

    .generic-part-two .generic-detail-block .column .text-bottom {
        margin-top: 20px;
    }

    .generic-detail-block .column h4:after {
        bottom: -17px;
    }

    .generic-detail-block .column p,
    .generic-part-two .column:last-child p,
    .generic-part-two .column:last-child ul li,
    .generic-detail-block .column .text-bottom ul li {
        font-size: 14px;
        line-height: 1.9;
    }

    .generic-part-two .generic-detail-block .col-four:before {
        display: none;
    }
}

.generic-cta .generic-intro {
    margin-bottom: 50px;
}

/*.generic-cta .generic-intro h2 {*/
/*line-height: 1.2;*/
/*}*/

.generic-cta .inner-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1078px;
    position: relative;
}

.generic-cta .generic-intro h6:nth-child(3):after {
    content: '';
    position: absolute;
    width: 94px;
    height: 1px;
    left: calc(50% - 47px);
    background: #5c5c5c;
}

.generic-cta-wrapper {
    padding: 115px 0 121px;
    margin: 9px 0;
}

.generic-cta-wrapper .container {
    max-width: 1100px;
}

.generic-cta-wrapper h3 {
    font-weight: 500;
}

.generic-cta-wrapper p {
    font-size: 24px;
    font-weight: 500;
    margin: 7px 0 30px;
}

.generic-cta-wrapper a {
    margin: 0 13px;
    padding: 16px 30px 14px;
}

.generic-cta-wrapper.bg-lightBlue a {
    color: #00ACE0;
}

.generic-cta-wrapper.bg-pink a {
    color: #eb4971;
}

.generic-cta-wrapper.bg-green a {
    color: #00b9be;
}

.generic-cta-wrapper.bg-purple a {
    color: #b36cdb;
}

.generic-cta-wrapper.bg-orange a {
    color: #fc9c0c;
}

.generic-cta-wrapper.bg-blue a {
    color: #0074e0;
}

.generic-cta-wrapper.bg-lightBlue a:hover, .generic-cta-wrapper.bg-pink a:hover,
.generic-cta-wrapper.bg-green a:hover, .generic-cta-wrapper.bg-purple a:hover,
.generic-cta-wrapper.bg-orange a:hover, .generic-cta-wrapper.bg-blue a:hover,
.generic-cta-wrapper.bg-mid-grey a:hover {
    color: #fff;
}

@media screen and (max-width: 1224px) and (min-width: 1025px) {
    .generic-cta-wrapper {
        padding: 90px 0;
    }

    .generic-cta-wrapper p {
        font-size: 22px;
        margin: 10px 0 18px;
    }

}

@media (max-width: 1024px) and (min-width: 768px) {
    .generic-cta-wrapper {
        padding: 70px 0;
    }

    .generic-cta-wrapper h3 {
        font-size: 28px;
    }

    .generic-cta-wrapper p {
        font-size: 18px;
        margin: 10px 0 15px;
    }

}

@media (max-width: 767px) and (min-width: 596px) {
    .generic-cta-wrapper {
        padding: 40px 0;
    }

    .generic-cta-wrapper p {
        font-size: 18px;
        margin: 8px 0 12px;
    }

    .generic-cta-wrapper h3 {
        font-size: 26px;
    }

}

@media (max-width: 595px) {
    .generic-cta-wrapper {
        padding: 30px 0;
    }

    .generic-cta-wrapper h3 {
        font-size: 22px;
    }

    .generic-cta-wrapper p {
        font-size: 16px;
        margin: 8px 0 12px;
    }

    .generic-cta-wrapper a {
        margin: 0 5px;
    }
}

@media (max-width: 480px) {
    .generic-cta-wrapper a {
        margin: 10px auto;
        display: block;
        max-width: 200px;
    }
}

.generic-featured-block h2 {
    font-size: 42px;
}

.generic-featured-block .col {
    float: left;
    width: 50%;
    padding-right: 40px;
}

.generic-featured-block .col:last-child {
    padding-left: 13px;
}

.generic-featured-block.full-width {
    border-top: 1px solid #c1c1c1;
}

.generic-featured-block.full-width .container {
    max-width: 900px;
}

.generic-featured-block.full-width .col {
    width: 100%;
    padding-right: 45px;
}

.generic-featured-block.full-width .col:last-child {
    padding-left: 0;
}

.generic-featured-block h2 {
    position: relative;
    font-size: 48px;
    margin-bottom: 84px;
    letter-spacing: -0.027em;
}

.generic-featured-block h2:after {
    content: '';
    position: absolute;
    width: 94px;
    height: 1px;
    left: calc(50% - 47px);
    bottom: -27px;
    background: #000;
}

.generic-featured-block .featured-box {
    margin-bottom: 38px;
    float: left;
    display: table;
}

.generic-featured-block .featured-box .img-icon {
    position: relative;
    width: 70px;
    height: 68px;
    display: table-cell;
    vertical-align: top;
    float: none;
    text-align: center;
}

.generic-featured-block .featured-box .info-text {
    float: left;
    width: calc(100% - 36px);
    margin-left: 30px;
}

.generic-featured-block .featured-box h6 {
    margin-bottom: 3px;
}

.generic-featured-block .featured-box p {
    font-weight: 500;
    letter-spacing: -0.003em;
}

@media (max-width: 1024px) and (min-width: 768px) {

    .generic-featured-block .featured-box .img-icon {
        margin-right: 20px;
        width: 60px;
        height: 50px;
    }

    .generic-featured-block h2 {
        font-size: 32px;
    }

    .generic-featured-block .col {
        padding-right: 21px;
    }

    .generic-featured-block .featured-box .info-text {
        width: calc(100% - 20px);
        margin-left: 20px;
    }
}

@media (max-width: 767px) {
    .generic-featured-block .col {
        float: left;
        width: 100%;
        padding-right: 0;
    }

    .generic-featured-block h2 {
        margin-bottom: 55px;
    }

    .generic-featured-block .featured-box .img-icon {
        width: 50px;
        height: 100%;
    }

    .generic-featured-block .col:last-child {
        padding-left: 0;
    }

    .generic-featured-block.full-width .col {
        width: 100%;
        padding-right: 0;
    }
}

@media (max-width: 767px) and (min-width: 596px) {

    .generic-featured-block .featured-box .img-icon {
        margin-right: 15px;
    }

    .generic-featured-block h2 {
        font-size: 30px;
    }
}

@media (max-width: 595px) and (min-width: 481px) {

    .generic-featured-block .featured-box .img-icon {
        margin-right: 15px;
    }

    .generic-featured-block h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {

    .generic-featured-block .featured-box .img-icon {
        float: none;
        margin: 0 auto 15px;
        display: inherit;
        vertical-align: inherit;
    }

    .generic-featured-block .featured-box .info-text {
        width: 100%;
        text-align: center;
        margin-left: 0;
    }

    .generic-featured-block .featured-box {
        margin-bottom: 20px;
        display: inherit;
    }

    .generic-featured-block h2 {
        font-size: 26px;
    }
}

.generic-link-with-icon .column {
    float: left;
    width: 100%;
    overflow: hidden;
}

.generic-link-with-icon .gradient-box {
    position: relative;
    float: left;
    width: 100%;
    padding: 62px 20px 68px 37px;
}

.generic-link-with-icon .gradient-box .doc-img {
    float: left;
    margin: 8px 0 0 0;
}

.generic-link-with-icon .gradient-box .link-title {
    float: left;
    margin: 0 0 39px 38px;
}

.generic-link-with-icon .gradient-box .link-title h2 {
    text-align: left;
    color: #fff;
    font-size: 38px;
    line-height: 1.18;
    letter-spacing: -0.027em;
}

.generic-link-with-icon .gradient-box .link-button-icon {
    float: left;
    margin-top: 2px;
    text-align: left;
    width: 100%;
}

.generic-link-with-icon .gradient-box .link-button-icon a {
    color: #fff;
    font-size: 18px;
    letter-spacing: -0.025em;
    position: relative;
}

.generic-link-with-icon .gradient-box .transparent-btn {
    padding: 15px 28px 15px;
}

.generic-link-with-icon .gradient-box .link-button-icon .transparent-btn:hover {
    background: #fff;
    color: #c661b9;
    border: 2px solid #fff;
}

.generic-link-with-icon .gradient-box .link-button-icon a:last-child {
    font-weight: 600;
    margin-left: 24px;
}

.generic-link-with-icon .gradient-box .hover-item {
    text-align: left;
    color: #fff;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    top: 100%;
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    padding: 65px 20px 40px 1px;
}

.generic-link-with-icon .gradient-box .link-box-content {
    float: left;
    opacity: 1;
    transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.generic-link-with-icon .column:hover .link-box-content {
    transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    opacity: 0;
}

.generic-link-with-icon .column:hover .hover-item {
    top: -30px;
    opacity: 1;
    visibility: visible;
}

.generic-link-with-icon .gradient-box p {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 19px;
}

.generic-link-with-icon .gradient-box .hover-item li {
    list-style: disc;
    font-weight: 500;
    font-size: 16px;
    margin: 8px 0 8px 17px;
}

.generic-link-with-icon .gradient-box .hover-item li:last-child {
    margin-bottom: 24px;
}

@media screen and (max-width: 1099px) and (min-width: 1024px) {

    .generic-link-with-icon .gradient-box {
        padding: 70px 20px 70px 38px;
    }

    .generic-link-with-icon .gradient-box .link-title {
        margin: 0 0 30px 15px;
    }
}

@media (max-width: 1024px) and (min-width: 992px) {

    .generic-link-with-icon .gradient-box {
        padding: 50px 20px 50px 38px;
    }

    .generic-link-with-icon .gradient-box .link-title {
        float: left;
        margin: 0 0 30px 22px;
    }

    .generic-link-with-icon .column:hover .hover-item {
        top: -50px;
    }

}

@media (max-width: 991px) and (min-width: 768px) {

    .generic-link-with-icon .gradient-box {
        padding: 10px 0;
    }

    .generic-link-with-icon .gradient-box .doc-img {
        width: 40px;
        height: 60px;
    }

    .generic-link-with-icon .gradient-box .link-title {
        margin: 0 0 20px 13px;
    }

    .generic-link-with-icon .gradient-box .link-title h2 {
        font-size: 26px;
    }

    .generic-link-with-icon .gradient-box p {
        font-size: 17px;
    }

    .generic-link-with-icon .gradient-box .hover-item li {
        font-size: 15px;
        margin: 6px 0 6px 17px;
    }

    .generic-link-with-icon .gradient-box {
        padding: 60px 20px 64px 30px;
    }

    .generic-link-with-icon .gradient-box .link-button-icon a {
        font-size: 17px;
    }

    .generic-link-with-icon .column:hover .hover-item {
        top: -45px;
    }
}

@media (max-width: 767px) {

    .generic-link-with-icon .col-seven {
        width: 100%;
    }

    .generic-link-with-icon .gradient-box p {
        font-size: 16px;
        margin-bottom: 7px;
    }

    .generic-link-with-icon .gradient-box .hover-item li {
        font-size: 14px;
        margin: 6px 0 6px 17px;
    }

    .generic-link-with-icon .gradient-box .link-button-icon a {
        font-size: 16px;
    }
}

@media (max-width: 767px) and (min-width: 596px) {

    .generic-link-with-icon .gradient-box .doc-img {
        width: 40px;
        height: 50px;
    }

    .generic-link-with-icon .gradient-box .link-title {
        margin: 0 0 30px 20px;
    }

    .generic-link-with-icon .gradient-box .link-title h2 {
        font-size: 24px;
    }

    .generic-link-with-icon .gradient-box .link-button-icon {
        margin-top: 10px;
    }

    .generic-link-with-icon .column:hover .hover-item {
        top: -46px;
    }

    .generic-link-with-icon .gradient-box {
        padding: 50px 20px 50px 20px;
    }

    .generic-link-with-icon .gradient-box .hover-item li:last-child {
        margin-bottom: 2px;
    }
}

@media (max-width: 595px) and (min-width: 481px) {

    .generic-link-with-icon .gradient-box .doc-img {
        width: 100%;
        height: 100%;
        margin: 0 auto;
        float: none;
        text-align: center;
    }

    .generic-link-with-icon .gradient-box {
        padding: 30px 20px 30px 20px;
    }

    .generic-link-with-icon .gradient-box .link-title {
        margin: 10px auto 15px;
        width: 100%;
    }

    .generic-link-with-icon .gradient-box .link-title h2 {
        font-size: 20px;
        padding: 0;
        text-align: center;
    }

    .generic-link-with-icon .gradient-box .link-button {
        margin-top: 10px;
    }

    .generic-link-with-icon .gradient-box .link-button-icon a {
        font-size: 16px;
    }

    .generic-link-with-icon .gradient-box .link-box-content .link-button-icon a {
        font-size: 16px;
        display: block;
        max-width: 300px;
        margin: auto;
        text-align: center;
    }

    .generic-link-with-icon .gradient-box .link-button-icon a:last-child {
        margin: auto;
        margin-top: 16px;
        margin-left: 15px;
    }

    .generic-link-with-icon .column:hover .hover-item {
        top: -10px;
        padding: 30px 20px 30px 0;
    }

    .generic-link-with-icon .gradient-box .hover-item li:last-child {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .generic-link-with-icon .gradient-box {
        padding: 40px 20px 40px 20px;
    }

    .generic-link-with-icon .gradient-box .link-title h2 {
        font-size: 20px;
        padding: 0;
        text-align: center;
    }

    .generic-link-with-icon .gradient-box .doc-img {
        width: 100%;
        height: 100%;
        text-align: center;
    }

    .generic-link-with-icon .column:hover .hover-item {
        top: -18px;
        padding: 40px 20px 40px 0;
    }

    .generic-link-with-icon .gradient-box .link-title {
        margin: 20px 0 20px 0;
        width: 100%;
    }

    .generic-link-with-icon .gradient-box .link-title h2 {
        font-size: 20px;
        padding: 0;
    }

    .generic-link-with-icon .gradient-box .link-button-icon {
        margin-top: 10px;
        text-align: center;
    }

    .generic-link-with-icon .gradient-box .link-button-icon a {
        font-size: 14px;
        width: 100%;
        margin: 0 auto;
        max-width: 250px;
        display: block;
    }

    .generic-link-with-icon .gradient-box .hover-item li {
        font-size: 13px;
    }

    .generic-link-with-icon .gradient-box .hover-item li:last-child {
        margin-bottom: 10px;
    }

    .generic-link-with-icon .gradient-box .link-button-icon a:last-child {
        margin: 0 auto;
    }

    .generic-link-with-icon .gradient-box .link-button-icon a {
        font-size: 16px;
        padding: 10px 28px 10px;
    }

    .generic-link-with-icon .gradient-box .link-box-content .link-button-icon a {
        font-size: 16px;
        display: block;
        max-width: 300px;
        margin: auto;
        text-align: center;
    }

    .generic-link-with-icon .gradient-box .link-button-icon a:last-child {
        margin-top: 5px;
        display: inline-block;
        width: auto;
        padding-left: 0;
        padding-right: 0;
    }

    /*.generic-link-with-icon .column {*/
    /*padding: 40px 20px 50px 20px;*/
    /*}*/
    .generic-link-with-icon .gradient-box p {
        font-size: 15px;
    }
}

.generic-table-new h3 {
    margin-bottom: 15px;
}

.generic-table-new table {
    table-layout: fixed;
    margin-bottom: 60px;
    border-bottom: 1px solid #BEC0C1;
}

.generic-table-new table th {
    width: 16.23%;
}

.generic-table-new table th:first-child,
.generic-table-new table.data-access th:first-child {
    width: 51.3%;
}

.generic-table-new table.data-access th {
    width: 24.35%;
}

.generic-table table td:nth-child(2),
.generic-table table td:last-child {
    font-weight: 700;
    color: #333;
}

.generic-table-new table tr:nth-child(2n) {
    background: #f3f3f3;
}

.generic-table-new table th.bg-black,
.generic-table-new table th.bg-red,
.generic-table-new table th.bg-blue,
.generic-table-new table th.bg-pink,
.generic-table-new table th.bg-green,
.generic-table-new table th.dark-grey {
    color: #fff;
}

@media (max-width: 767px) {

    .generic-table-new table {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) and (min-width: 596px) {

    .generic-table-new table th {
        font-size: 13px;
        padding: 25px 20px 25px 8px;
    }
}

@media (max-width: 767px) {

    .generic-table-new table {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) and (min-width: 596px) {

    .generic-table-new table th {
        font-size: 13px;
        padding: 25px 20px 25px 8px;
    }
}

.list-intro {
    margin-top: 70px;
}

.list-intro .intro-outer {
    color: #fff;
    padding: 53px 0 60px 0;
}

.list-intro .head h2 {
    font-size: 38px;
    letter-spacing: -0.05px;
    font-weight: 200;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 7px;
    text-align: left;
    width: 96%;
    padding: 0;
}

.list-intro .head p {
    font-family: gothamMedium;
}

.list-intro .link-button .transparent-btn {
    padding: 16px 19px 14px;
}

.list-container {
    margin-left: 20px;
    margin-bottom: 16px;
}

.list-container ul li {
    padding: 11px 0;
    font-weight: 500;
    letter-spacing: 1px;
    list-style-type: disc;
    font-size: 16px;
}

.list-intro .divider {
    margin-bottom: 30px;
}

.list-intro .divider:after {
    left: 0;
    width: 185px;
    bottom: -15px;
    background: #FFFFFF;
}

.list-intro p {
    font-size: 19px;
    width: 92%;
    color: #fff;
    line-height: 1.35;
    letter-spacing: -0.55px;
}

.list-intro .divider + p {
    margin-bottom: 16px;
}

.list-intro p {
    font-weight: 400;
}

.link-button {
    margin-top: 36px;
}

.link-button {
    margin-top: 18px;
}

.link-button .transparent-btn:first-child {
    margin-right: 14px;
}

.link-button .transparent-btn {
    margin-top: 15px;
    padding: 15px 19px 13px;
}

.link-button .transparent-btn:hover {
    background: #fff;
    color: #c661b9;
    border: 2px solid #fff;
}

.darkpurple-gradient .link-button .transparent-btn:hover {
    color: #1ea5df;
}

.orangepink-gradient .link-button .transparent-btn:hover {
    color: #fa921e;
}

@media screen and (max-width: 1024px) and (min-width: 768px) {

    .list-intro .intro-outer {
        padding: 50px 20px;
    }

    .list-container ul li {
        padding: 8px 0;
    }

    .list-intro .divider + p {
        margin-bottom: 10px;
    }

    .list-intro .head h2 {
        font-size: 32px;
    }

    .list-intro p {
        font-size: 18px;
    }

    .info-block .generic-detail-block .col {
        padding: 35px 35px 25px;
    }

    .info-block .generic-detail-block .col p {
        margin-bottom: 20px;
        font-size: 15px;
    }

    .link-button {
        margin-top: 12px;
    }
}

@media screen and (max-width: 992px) and (min-width: 768px) {

    .list-intro {
        margin-top: 33px;
    }
}

@media (max-width: 767px) and (min-width: 596px) {
    .list-intro {
        margin-top: 33px;
    }

    .list-intro .intro-outer {
        padding: 40px 0;
    }

    .list-intro .head h2 {
        font-size: 30px;
    }

    .list-intro p {
        font-size: 17px;
    }

    .list-container ul li {
        padding: 7px 0;
        font-size: 15px;
    }

    .list-intro .divider + p {
        margin-bottom: 10px;
    }
}

@media (max-width: 595px) {
    .list-intro {
        margin-top: 43px;
    }

    .list-intro .intro-outer {
        padding: 30px 0;
    }

    .list-container ul li {
        padding: 5px 0;
        line-height: 1.2;
        font-size: 14px;
    }

    .list-intro .divider + p {
        margin-bottom: 5px;
    }

    /*.list-container ul li:last-child {*/
    /*margin-bottom: 20px;*/
    /*}*/
    .list-intro p {
        font-size: 16px;
        line-height: 1.5;
    }

    .link-button {
        margin-top: 25px;
        text-align: center;
    }

    .link-button .transparent-btn:first-child {
        padding: 15px 29px 13px;
        margin: 0 auto;
    }
}

@media (max-width: 595px) and (min-width: 481px) {

    .list-intro .head h2 {
        font-size: 28px;
    }

    .link-button .transparent-btn {
        padding: 15px 19px 13px;
        display: block;
        text-align: center;
        max-width: 290px;
        margin: 15px auto 0;
    }
}

@media (max-width: 480px) {

    .list-intro .head h2 {
        font-size: 26px;
    }

    .link-button .transparent-btn {
        margin-top: 0;
    }

    .link-button .transparent-btn:last-child {
        margin-top: 15px;
    }

    .link-button .transparent-btn {
        padding: 15px 19px 13px;
        display: block;
        text-align: center;
        max-width: 220px;
        margin: 15px auto 0;
    }
}

.info-block .generic-detail-block .col > h6:after {
    content: '';
    position: absolute;
    width: 94px;
    height: 2px;
    left: 0;
    bottom: -40px;
    background: #fc9c0c;
}

.info-block .generic-detail-block .col > h6 {
    margin-bottom: 40px;
}

.info-block .generic-detail-block .col-wrapper {
    padding: 0;
}

.info-block .generic-detail-block .col h4.red-line:after, .generic-detail-block .col h6.red-line:after {
    background: #ea2328 !important;
}

.info-block .generic-detail-block .col p,
.info-block .generic-detail-block .col ul li {
    line-height: 1.49;
}

.info-block .generic-detail-block .column-2 {
    width: 50%;
    margin: 0;
}

@media screen and (max-width: 1024px) and (min-width: 768px) {

    .info-block .generic-detail-block .col {
        padding: 35px 35px 25px;
    }

    .generic-detail-block .col > .bottom-line {
        margin-bottom: 20px;
    }

    .info-block .generic-detail-block .col p {
        font-size: 15px;
        line-height: 1.49;
    }
}

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

    .info-block .generic-detail-block .column-2 {
        width: 100%;
        margin: 0;
    }

    .info-block .generic-detail-block .col {
        padding: 30px 20px 20px;
    }
}

.table-stripe thead {
    display: block;
    float: left;
}

.generic-table.generic-detail-table table th {
    padding: 15px 35px 13px 35px;
}

.table-stripe tbody {
    width: auto;
    position: relative;
    overflow-x: auto;
    white-space: nowrap;
}

.generic-quote .quote-text {
    max-width: 1101px;
    margin: 0 auto 80px;
    position: relative;
    padding: 0 20px;
}

.generic-quote .quote-text:before {
    content: '';
    position: absolute;
    top: 0;
    left: -11px;
    width: 2px;
    height: calc(100% - 7px);
    background: linear-gradient(#b36cdb, #eb4971);
}

.generic-quote .inner-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1280px;
    position: relative;
}

.generic-quote .quote-icon {
    margin-bottom: 10px;
}

.generic-quote.quote-with-bg .quote-icon {
    margin-bottom: 14px;
}

.generic-quote .quote-text .inner-text,
.generic-quote .quote-text .author-info p,
.generic-quote .quote-text .author-info h6 {
    font-size: 18px;
    letter-spacing: -0.003em;
}

.generic-quote .inner-text {
    line-height: 1.91;
}

.generic-quote .author-info {
    padding-top: 32px;
}

.generic-quote .author-info p {
    line-height: 1.45;
    font-weight: 400;
    letter-spacing: -0.005em;
}

.generic-quote .quote-text .author-info h6 {
    margin: 5px 0 2px;
    letter-spacing: -0.005em;
}

.generic-quote .quote-text.font-24 .inner-text,
.generic-quote .quote-text.font-24 .author-info p,
.generic-quote .quote-text.font-24 h6 {
    font-size: 24px;
}

.generic-quote .quote-text.font-24 .inner-text {
    line-height: 1.63;
    letter-spacing: -0.004em;
}

.generic-quote .quote-text.font-32 .quote-icon {
    margin-bottom: 15px;
}

.generic-quote .quote-text.font-24 .author-info {
    padding-top: 27px;
}

.generic-quote.quote-with-bg .bg-img {
    position: relative;
    max-height: 562px;
}

.generic-quote.quote-with-bg {
    margin-bottom: 60px;
}

.generic-quote.quote-with-bg .quote-text:before {
    display: none;
}

.generic-quote.quote-with-bg .bg-img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #333333;
    opacity: 0.7;
}

.generic-quote.quote-with-bg .quote-text .v-middle {
    text-align: left;
    padding-top: 10px;
}

.generic-quote.quote-with-bg .quote-text.font-24 .v-middle {
    text-align: left;
    padding-top: 16px;
}

.generic-quote.quote-with-bg .quote-text .inner-text,
.generic-quote.quote-with-bg .quote-text .author-info p {
    color: #fff;
    letter-spacing: -0.008em;
    line-height: 1.91;
    font-weight: 400;
}

.generic-quote.quote-with-bg .quote-text.font-24 .inner-text {
    line-height: 1.93;
}

.generic-quote.quote-with-bg .bg-img img {
    object-fit: cover;
    min-height: 100%;
    min-width: 100%;
}

.generic-quote.quote-with-bg .quote-text .author-info p {
    margin-top: -8px;
}

.generic-quote.quote-with-bg .quote-text h6 {
    color: #fff;
}

@media screen and (max-width: 1440px) and (min-width: 1225px) {

    .generic-quote.quote-with-bg .quote-icon {
        margin: 0 auto 12px;
        width: 300px;
    }

}

@media screen and (max-width: 1224px) and (min-width: 992px) {

    .generic-quote.quote-with-bg .bg-img {
        height: 500px;
    }

    .generic-quote.quote-with-bg .quote-text .col-outer {
        padding: 0 20px;
    }

    .generic-quote.quote-with-bg .quote-icon {
        margin: 0 auto 10px;
        width: 250px;
    }

    .generic-quote .quote-text:before {
        left: 0;
    }

    .generic-quote .author-info {
        padding-top: 20px;
    }

}

@media screen and (max-width: 992px) {
    .generic-quote .quote-text:before {
        left: 0;
    }

    .generic-quote.quote-with-bg .quote-text {
        margin: 0 auto;
        padding: 0;
    }

    .generic-quote.quote-with-bg .inner-container {
        padding: 0;
    }

    .generic-quote.quote-with-bg .quote-text .v-middle {
        padding: 0 40px;
    }

    .generic-quote .quote-text.font-24 .author-info h6,
    .generic-quote.quote-with-bg .quote-text h6 {
        margin-bottom: 5px;
    }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .generic-quote.quote-with-bg .bg-img {
        height: 510px;
    }

    .generic-quote.quote-with-bg .quote-icon {
        margin: 0 auto 12px;
        width: 200px;
    }

    .generic-quote .quote-text.font-24 .author-info {
        padding-top: 20px;
    }

    .generic-quote .quote-text.font-24 .quote-icon {
        margin-bottom: 10px;
    }

    .generic-quote.quote-with-bg .quote-text.font-32 .v-middle {
        padding-top: 0;
    }

    .generic-quote.quote-with-bg .quote-text .inner-text,
    .generic-quote.quote-with-bg .quote-text .author-info p,
    .generic-quote .inner-text {
        line-height: 1.7;
    }

    .generic-quote.quote-with-bg .quote-text.font-24 .inner-text {
        line-height: 1.8;
    }

    .generic-quote .quote-icon {
        width: 38px;
    }

    .generic-quote .inner-text {
        line-height: 1.7;
    }

    .generic-quote .author-info {
        padding-top: 20px;
    }
}

@media screen and (max-width: 767px) and (min-width: 595px) {
    .generic-quote.quote-with-bg .bg-img {
        height: 470px;
    }

    .generic-quote.quote-with-bg .quote-icon {
        margin: 0 auto 12px;
        width: 230px;
    }

    .generic-quote.quote-with-bg .quote-text .inner-text,
    .generic-quote.quote-with-bg .quote-text .author-info p {
        line-height: 1.6;
    }

    .generic-quote.quote-with-bg .quote-text.font-24 .inner-text,
    .generic-quote.quote-with-bg .quote-text.font-24 .author-info p {
        line-height: 1.4;
    }

    .generic-quote .quote-text.font-24 .author-info {
        padding-top: 20px;
    }

    .generic-quote .quote-text.font-24 .quote-icon {
        margin-bottom: 10px;
    }

    .generic-quote.quote-with-bg .quote-text.font-24 .v-middle {
        padding-top: 0;
    }

    .generic-quote .quote-text .inner-text,
    .generic-quote .quote-text .author-info p {
        font-size: 18px;
    }

    .generic-quote .quote-text.font-24 .inner-text,
    .generic-quote .quote-text.font-24 .author-info p,
    .generic-quote .quote-text.font-24 .author-info h6 {
        font-size: 20px;
    }

    .generic-quote .quote-icon {
        width: 30px;
    }

    .generic-quote .inner-text {
        line-height: 1.7;
    }

    .generic-quote .author-info {
        padding-top: 15px;
    }
}

@media screen and (max-width: 595px) and (min-width: 480px) {
    .generic-quote.quote-with-bg .bg-img {
        height: 470px;
    }

    .generic-quote .quote-text .inner-text,
    .generic-quote .quote-text .author-info p,
    .generic-quote .quote-text.font-24 .inner-text,
    .generic-quote .quote-text.font-24 .author-info p,
    .generic-quote .quote-text.font-24 .author-info h6 {
        font-size: 16px;
    }

    .generic-quote .quote-icon {
        width: 25px;
        margin-bottom: 10px;
    }

    .generic-quote.quote-with-bg .quote-icon {
        margin: 0 auto 10px;
        width: 200px;
    }

    .generic-quote.quote-with-bg .quote-text .inner-text,
    .generic-quote.quote-with-bg .quote-text .author-info p {
        line-height: 1.6;
    }

    .generic-quote .quote-text.font-24 .author-info {
        padding-top: 20px;
    }

    .generic-quote .quote-text.font-24 .quote-icon {
        margin-bottom: 10px;
    }

    .generic-quote.quote-with-bg .quote-text.font-24 .v-middle {
        padding: 0 40px;
    }

}

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

    .generic-quote .quote-text:before {
        left: 0;
    }

    .generic-quote .inner-text {
        line-height: 1.6;
    }

    .generic-quote .author-info {
        padding-top: 15px;
    }

}

@media screen and (max-width: 480px) {
    .generic-quote .quote-text .inner-text,
    .generic-quote .quote-text .author-info p,
    .generic-quote .quote-text.font-24 .inner-text,
    .generic-quote .quote-text.font-24 .author-info p,
    .generic-quote .quote-text.font-24 .author-info h6 {
        font-size: 14px;
    }

    .generic-quote .quote-text.font-24 .inner-text,
    .generic-quote .quote-text.font-24 .author-info p,
    .generic-quote .quote-text.font-24 .author-info h6 {
        font-size: 16px;
    }

    .generic-quote .quote-icon {
        width: 22px;
        margin-bottom: 5px;
    }

    .generic-quote.quote-with-bg .bg-img {
        height: 540px;
    }

    .generic-quote.quote-with-bg .quote-icon {
        margin: 0 auto 10px;
        width: 180px;
    }

    .generic-quote.quote-with-bg .quote-text .inner-text,
    .generic-quote.quote-with-bg .quote-text .author-info p,
    .generic-quote.quote-with-bg .quote-text.font-24 .inner-text,
    .generic-quote.quote-with-bg .quote-text.font-24 .author-info p {
        line-height: 1.4;
    }

    .generic-quote.quote-with-bg .quote-text .author-info p {
        margin-top: 3px;
    }

    .generic-quote.quote-with-bg .quote-text.font-24 .col-outer {
        padding: 0 40px;
    }

}

.table-col-three table td:nth-child(2), .table-col-three table td:last-child {
    font-weight: 700;
    color: #333;
}

.generic-fixed-table table,
.generic-detail-table table {
    width: 100%;
}

.generic-fixed-table table th:first-child {
    text-align: left;
    width: 67.5%;
    border-left: 0;
}

.generic-fixed-table table thead tr {
    border-bottom: 1px solid #BEC0C1;
}

.generic-fixed-table table thead {
    border-top: 1px solid #BEC0C1;
}

.generic-fixed-table table tr {
    text-align: center;
    border-left: 1px solid #BEC0C1;
    border-right: 1px solid #BEC0C1;
}

.generic-fixed-table table td:first-child {
    text-align: left;
    width: 67.5%;
    border-left: 0;
}

.generic-fixed-table table td {
    padding: 35px 35px 35px 25px;
    font-size: 16px;
    line-height: 1.2;
    width: 16.25%;
    font-weight: 400;
    color: #53565a;
    border-left: 1px solid #BEC0C1;
}

.generic-fixed-table table tr:nth-child(2n) {
    background: #f3f3f3;
}

.generic-fixed-table table th {
    padding: 15px 25px 12px;
    font-size: 18px;
    line-height: 1.2;
    color: #333333;
    width: 16.25%;
    font-weight: 700;
    border-left: 1px solid #BEC0C1;
}

.generic-detail-table.generic-fixed-table table th,
.generic-detail-table.generic-fixed-table table td {
    width: 33.33%;
    /*border-left: 1px solid #666666;*/
}

.generic-detail-table h4 {
    margin-bottom: 15px;
}

@media (max-width: 1224px) and (min-width: 1025px) {
    .generic-fixed-table table th {
        font-size: 16px;
        padding: 15px 15px 12px;
    }

    .generic-fixed-table table td {
        font-size: 15px;
    }
}

@media (max-width: 1024px) and (min-width: 768px) {
    .generic-fixed-table table th {
        padding: 15px 12px 12px 8px;
        font-size: 15px;
    }

    .generic-fixed-table table td {
        font-size: 14px;
    }

    .generic-table-new table th:first-child {
        padding: 15px 12px 12px 25px;
    }
}

@media (max-width: 767px) and (min-width: 596px) {

    .generic-fixed-table table th:first-child {
        width: 45.25%;
    }

    .generic-fixed-table table th {
        padding: 15px 10px 12px 10px;
        font-size: 14px;
        width: 18.25%;
    }

    .generic-fixed-table table td {
        font-size: 13px;
    }

    .generic-table-new table th:first-child {
        padding: 15px 12px 12px 25px;
    }

    .generic-detail-table table th:first-child {
        width: 33.33%;
    }
}

@media (max-width: 595px) {

    .generic-fixed-table table {
        border: 1px solid #BEC0C1;
    }

    .generic-fixed-table table thead,
    .generic-detail-table table thead {
        display: block;
        float: left;
        width: 40%;
    }

    .generic-fixed-table table {
        display: block;
        position: relative;
        width: 100%;
    }

    .generic-fixed-table table tr,
    .generic-detail-table table tr {
        display: inline-block;
        width: 100%;
        vertical-align: top;
        border: none;
        word-break: break-word;
        white-space: normal;
    }
    .generic-detail-table table tbody tr ,
    .generic-fixed-table table tbody tr{
        width: calc(100% - 10px);
    }

    .generic-detail-table table tbody tr:last-child td,
    .generic-fixed-table table tbody tr:last-child td{
        border-right: 0;
    }
    .generic-fixed-table table td,
    .generic-detail-table table td {
        display: block;
        width: 100%;
        padding: 12px 10px;
        border: none;
        font-size: 14px;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        justify-content: center;
        border-bottom: 1px solid #BEC0C1;
        border-right: 1px solid #BEC0C1;
    }

    .generic-fixed-table table td:last-child {
        border-bottom: none;
    }

    .generic-fixed-table table td span {
        display: block;
        width: 100%;
    }

    .generic-fixed-table table td:first-child,
    .generic-detail-table table td:first-child {
        text-align: center;
        width: 100%;
    }

    .generic-fixed-table table thead th:last-child,
    .generic-detail-table table thead th:last-child {
        border-bottom: none;
    }

    .generic-fixed-table table thead {
        border-top: none;
    }

    .generic-fixed-table table thead th,
    .generic-detail-table table thead th {
        float: left;
        border-bottom: 1px solid #bec0c1;
        text-align: left;
        border-left: none;
        width: 100%;
        font-size: 14px;
        padding: 12px 10px;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
    }

    .generic-fixed-table table th:first-child,
    .generic-detail-table table th:first-child {
        width: 100%;
    }

    .generic-fixed-table table tbody {
        display: block;
        width: auto;
        position: relative;
        overflow-x: auto;
        white-space: nowrap;
        font-size: 0;
    }

    .generic-fixed-table table thead tr {
        border-bottom: none;
        border-right: 1px solid #bec0c1;
    }

    .table-col-three table th:first-child, .table-col-three table.data-access th:first-child {
        width: 100%;
    }

    .table-col-three table.data-access th {
        width: 100%;
    }

    .generic-detail-table table thead tr {
        border-bottom: none;
        border-right: 1px solid #bec0c1;
    }

    .generic-detail-table table td:before {
        display: none;
    }

    .generic-detail-table.generic-fixed-table table th,
    .generic-detail-table.generic-fixed-table table td {
        width: 100%;
        border-left: none;
        flex-direction: column;
    }
    .generic-detail-table.generic-fixed-table table th {
        flex-direction: inherit;
    }
}

@media (max-width: 595px) and (min-width: 481px) {

    .generic-fixed-table table thead th,
    .generic-table.generic-detail-table table thead th {
        padding: 25px 30px;
    }

}

.new-info-block .generic-detail-block .col-wrapper {
    padding: 0;
    display: table;
}

.new-info-block .generic-detail-block {
    cursor: pointer;
}

.new-info-block .generic-detail-block .column-2 {
    width: 50%;
    margin: 0;
}

.new-info-block .generic-detail-block .col > h6 {
    margin-bottom: 4px;
}

.new-info-block .generic-detail-block .col {
    display: table-cell;
    float: none;
}

.new-info-block .generic-detail-block .col h4.red-line:after,
.generic-detail-block .col h6.red-line:after {
    background: #ea2328 !important;
}

.new-info-block .generic-detail-block .col > h6:after {
    content: '';
    position: absolute;
    width: 94px;
    height: 2px;
    left: 0;
    bottom: -43px;
    background: #fc9c0c;
}

.new-info-block .generic-detail-block .col p,
.new-info-block .generic-detail-block .col ul li {
    line-height: 1.49;
}

.new-info-block .generic-detail-block .sub-head {
    margin-top: 0;
}

.new-info-block .generic-detail-block .inner-content .hide-content {
    display: none;
}

.new-info-block .generic-detail-block .col.bg-white .inner-content h6:after,
.new-info-block .generic-detail-block .col.bg-mid-grey .inner-content h6:after {
    background: url(../images/arrow_mini_black.png);
}

.new-info-block .generic-detail-block .col .inner-content h6:after {
    content: '';
    display: inline-block;
    background: url(../images/arrow_mini.png);
    margin-left: 10px;
    width: 5px;
    height: 10px;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
}

.new-info-block .generic-detail-block .col.bg-mid-grey .inner-content h6:before {
    background: #000;
}

.new-info-block .generic-detail-block .col .inner-content h6:before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    -webkit-transform: scale3d(0, 1, 1);
    -moz-transform: scale3d(0, 1, 1);
    -ms-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transition: -webkit-transform 0.1s;
    -moz-transition: trasform 0.1s;
    -ms-transition: trasform 0.1s;
    transition: transform 0.1s;
}

.new-info-block .generic-detail-block .col .inner-content h6:hover:before {
    -webkit-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.new-info-block .generic-detail-block .col h4.white-line:after, .new-info-block .generic-detail-block .col h6.white-line:after {
    background: #fff;
}

.new-info-block .generic-detail-block .col h4.black-line:after, .new-info-block .generic-detail-block .col h6.black-line:after {
    background: #000;
}

.cta-button.two-cta {
    padding: 0;
}

.cta-button .generic-cta-wrapper {
    padding: 20px 0;
    margin: 0;
}

.generic-cta-wrapper.bg-mid-grey a {
    color: #ea2328;
}

.generic-cta-wrapper.bg-white .white-btn, .generic-cta.one-cta .bg-white .white-btn {
    border: 2px solid #000;
}

.generic-cta-wrapper.bg-white a {
    color: #ea2328;
}

.generic-cta-wrapper.bg-white a:hover {
    background: #000;
    color: #fff;
}

.generic-cta .cta-button a:last-child {
    display: none;
}

.generic-cta.two-cta .cta-button a:last-child {
    display: inline-block;
}

.content-with-image .bg-img {
    max-width: 324px;
    margin: 20px auto 0;
}

@media screen and (max-width: 1024px) and (min-width: 768px) {

    .new-info-block .generic-detail-block .col {
        padding: 35px 35px 25px;
    }

    .new-info-block .generic-detail-block .col p {
        margin-bottom: 20px;
        font-size: 15px;
    }

    .content-with-image .bg-img {
        max-width: 280px;
    }
}

@media screen and (max-width: 768px) and (min-width: 595px) {
    .new-info-block .generic-detail-block .col {
        padding: 20px 15px 20px;
    }

    .new-info-block .generic-detail-block .col .inner-content h6 {
        font-size: 15px;
    }

    .content-with-image .bg-img {
        max-width: 240px;
    }
}

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

    .new-info-block .generic-detail-block .column-2 {
        width: 100%;
        margin: 0;
    }

    .new-info-block .generic-detail-block .col {
        padding: 30px 20px 20px;
        display: block;
    }

    .new-info-block .generic-detail-block .col > h6 {
        line-height: 1.3;
    }

    .content-with-image .bg-img {
        max-width: 200px;
    }
}

@media screen and (max-width: 480px) {
    .new-info-block .generic-detail-block .col > h6:after {
        bottom: -43px;
    }

    .new-info-block .generic-detail-block .col p {
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .new-info-block .generic-detail-block .col .inner-content h6 {
        line-height: 1.3;
    }
}

.box-with-info .generic-detail-block .col-wrapper {
    padding: 0;
    display: table;
}

.box-with-info .generic-detail-block {
    /*    cursor: pointer;*/
}

.box-with-info .generic-detail-block .column-2 {
    width: 50%;
    margin: 0;
}

.box-with-info .generic-detail-block .col > h6 {
    margin-bottom: 4px;
}

.box-with-info .generic-detail-block .col {
    display: table-cell;
    float: none;
}

.box-with-info .generic-detail-block .col h4.red-line:after {
    background: #ea2328 !important;
}

.box-with-info .generic-detail-block .col p {
    line-height: 1.49;
}

.box-with-info .generic-detail-block .sub-head {
    margin-top: 0;
}

.box-with-info .generic-detail-block .inner-content p {
    margin-bottom: 5px !important;
}

.box-with-info .generic-detail-block .col .inner-content h6 {
    cursor: text;
}

.box-with-info .generic-detail-block .col .inner-content:first-of-type {
    margin-top: 30px;
}

.box-with-info .generic-detail-block .col > h6:after {
    content: '';
    position: absolute;
    width: 94px;
    height: 2px;
    left: 0;
    bottom: -43px;
}

.box-with-info .generic-detail-block .col.bg-mid-grey .inner-content h6:before {
    background: #000;
}

.box-with-info .generic-detail-block .col .inner-content h6:hover:before {
    -webkit-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.box-with-info .generic-detail-block .col h4.white-line:after, .new-info-block .generic-detail-block .col h6.white-line:after {
    background: #fff;
}

.box-with-info .generic-detail-block .col h4.black-line:after, .new-info-block .generic-detail-block .col h6.black-line:after {
    background: #000;
}

@media screen and (max-width: 1024px) and (min-width: 768px) {

    .box-with-info .generic-detail-block .col {
        padding: 35px 35px 25px;
    }

    .box-with-info .generic-detail-block .col p {
        margin-bottom: 20px;
        font-size: 15px;
    }
}

@media screen and (max-width: 768px) and (min-width: 595px) {
    .box-with-info .generic-detail-block .col {
        padding: 20px 15px 20px;
    }

    .box-with-info .generic-detail-block .col .inner-content h6 {
        font-size: 15px;
    }
}

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

    .box-with-info .generic-detail-block .column-2 {
        width: 100%;
        margin: 0;
    }

    .box-with-info .generic-detail-block .col {
        padding: 30px 20px 20px;
        display: block;
    }

    .box-with-info .generic-detail-block .col > h6 {
        line-height: 1.3;
    }
}

@media screen and (max-width: 480px) {
    .box-with-info .generic-detail-block .col > h6:after {
        bottom: -43px;
    }

    .box-with-info .generic-detail-block .col p {
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .box-with-info .generic-detail-block .col .inner-content h6 {
        line-height: 1.3;
    }
}


