body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

* {
    box-sizing: border-box;
}

.container {
    position: relative;
    padding: 0 15px;
    margin: 0 auto;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

/* BANNERS HEAD */
.banner-description {
    position: absolute;
    top: 20vh;
    margin-left: 25vh;
}

.banner-description .banner-highlight {
    width: 50%;
    box-shadow: -50px -50px 0 -40px #f97c5d, 50px 50px 0 -40px #000;
    padding: 3%;
    margin-bottom: 5%;
}

.banner-description h2 {
    color: #f97c5d;
}

.hero-button {
    line-height: 2em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px 34px;
    border-radius: 35px;
    text-transform: uppercase;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2.4px;
    box-shadow: 0px 4px 2px 0px rgb(0 0 0 / 10%);
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    overflow: hidden;
    border: 2px solid #fd7250;
    background-color: #fd7250;
    text-decoration: none;
    display: inline-block;
    margin: 50px 0 0;
}

.hero-button:hover {
    background-color: #f7b6a6;
}

/* BANNERS HEAD */
.header-top {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 5px 15px;
    position: absolute;
    z-index: 2;
}

.view-category.itemid-355 .header-bottom .banneritem {
    max-height: 400px;
    display: flex !important;
    align-items: flex-end;
    justify-content: center;
}

.main-logo {
    width: 300px;
    padding: 15px;
    box-sizing: border-box;
}

.main-logo a img {
    width: 100%;
}

.main-menu {
    width: calc(100% - 300px);
}

.main-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.main-menu ul.mod-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.main-menu ul.mod-menu>li>a,
.main-menu ul.mod-menu>li>span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Arial';
    text-decoration: none;
}

.main-menu ul.mod-menu>li.active>a {
    color: #fd7250;
}

.main-menu ul.mod-menu>li {
    margin: 0 15px 0 0;
}

.main-menu ul.mod-menu>li:last-child {
    margin: 0;
}

.main-menu ul.mod-menu__sub {
    display: none;
}

/* Main menu dropdowns */
.main-menu ul.mod-menu > li.parent {
    position: relative;
}

.main-menu ul.mod-menu > li.parent > a,
.main-menu ul.mod-menu > li.parent > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: default;
    transition: color .25s ease;
}

.main-menu ul.mod-menu > li.parent > a::after,
.main-menu ul.mod-menu > li.parent > span::after {
    content: '';
    width: 7px;
    height: 7px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .25s ease, color .25s ease;
}

.main-menu ul.mod-menu > li.parent:hover > a,
.main-menu ul.mod-menu > li.parent:hover > span,
.main-menu ul.mod-menu > li.parent:focus-within > a,
.main-menu ul.mod-menu > li.parent:focus-within > span {
    color: #fd7250;
}

.main-menu ul.mod-menu > li.parent:hover > a::after,
.main-menu ul.mod-menu > li.parent:hover > span::after,
.main-menu ul.mod-menu > li.parent:focus-within > a::after,
.main-menu ul.mod-menu > li.parent:focus-within > span::after {
    transform: rotate(225deg) translate(-1px, -1px);
}

.main-menu ul.mod-menu > li.parent > ul.mod-menu__sub {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 100;
    min-width: 210px;
    padding: 10px;
    margin: 0;
    background: rgba(18, 22, 28, .96);
    border-top: 3px solid #fd7250;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.main-menu ul.mod-menu > li.parent > ul.mod-menu__sub::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    width: 12px;
    height: 12px;
    background: #fd7250;
    transform: translateX(-50%) rotate(45deg);
    z-index: 1;
    pointer-events: none;
}

.main-menu ul.mod-menu > li.parent:hover > ul.mod-menu__sub,
.main-menu ul.mod-menu > li.parent:focus-within > ul.mod-menu__sub {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.main-menu ul.mod-menu > li.parent > ul.mod-menu__sub > li {
    margin: 0;
}

.main-menu ul.mod-menu > li.parent > ul.mod-menu__sub a {
    display: block;
    padding: 10px 12px;
    color: #fff;
    font-family: 'Arial';
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none;
    white-space: nowrap;
    transition: color .2s ease, background-color .2s ease, padding-left .2s ease;
}

.main-menu ul.mod-menu > li.parent > ul.mod-menu__sub a:hover,
.main-menu ul.mod-menu > li.parent > ul.mod-menu__sub a:focus {
    padding-left: 16px;
    color: #fff;
    background-color: rgba(253, 124, 93, .2);
    outline: none;
}

@media only screen and (max-width: 767px) {
    .main-menu ul.mod-menu > li.parent > ul.mod-menu__sub {
        position: static;
        min-width: 0;
        width: 100%;
        padding: 5px 0 0 10px;
        margin-top: 5px;
        background: transparent;
        border-top: 1px solid rgba(255, 255, 255, .35);
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .main-menu ul.mod-menu > li.parent > ul.mod-menu__sub::before {
        display: none;
    }

    .main-menu ul.mod-menu > li.parent > ul.mod-menu__sub a {
        padding: 7px 5px;
        font-size: 12px;
        font-weight: 400;
    }

    .main-menu ul.mod-menu > li.parent > ul.mod-menu__sub a:hover,
    .main-menu ul.mod-menu > li.parent > ul.mod-menu__sub a:focus {
        padding-left: 9px;
    }
}

.header-bottom .bannergroup.slick-slider .slick-arrow {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    color: transparent;
    border: none;
    background-color: rgb(0 0 0 / 15%);
    width: 100px;
    height: 100px;
    padding: 0;
    opacity: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.header-bottom .bannergroup.slick-slider .slick-arrow:before {
    content: '<';
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1, 1.8);
    font-size: 40px;
    font-family: auto;
}

.header-bottom .bannergroup.slick-slider .slick-next.slick-arrow {
    left: initial;
    right: 0;
}

.header-bottom .bannergroup.slick-slider .slick-next.slick-arrow:before {
    content: '>'
}

.header-bottom .bannergroup.slick-slider:hover .slick-arrow {
    opacity: 1;
}

.header-bottom .bannergroup.slick-slider .slick-slide .mod-banners__item {
    position: relative;
}

.view-category.itemid-355 .header-bottom .bannergroup.slick-slider .slick-slide img {
    width: 100%;
    /* position: relative; */
    top: 300px;
    max-width: none;
    height: 100%;
}
}

.home-logo-slider-inner .bannergroup.slick-slider .slick-track {
    display: flex;
    padding: 30px 0;
}

.home-logo-slider-inner .bannergroup.slick-slider .slick-slide {
    height: auto;
    margin: 25px 50px;
    background-color: #f0f5f6;
    box-shadow: -25px 30px 30px 0 rgb(81 94 90 / 26%), -10px 17px 13px 0 rgb(0 0 0 / 14%);
}

.home-logo-slider-inner .bannergroup.slick-slider .slick-slide>div {
    height: 100%;
}

.home-logo-slider-inner .bannergroup.slick-slider .slick-slide .mod-banners__item {
    height: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 15px 5px;
    box-sizing: border-box;
}

.home-logo-slider-inner .bannergroup.slick-slider .slick-slide .mod-banners__item img {
    width: 75px;
    margin: 15px auto;
}

.home-logo-slider-inner {
    background-color: #fff;
    margin: 50px 0;
}

.home-who-we-are {
    background-image: url(/images/home/h_wwa_bg.png);
    background-size: cover;
}

.home-wwa-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 100px 0;
}

.home-wwa-left,
.home-wwa-right {
    width: calc(50% - 15px);
}

.home-wwa-right {
    display: flex;
    align-items: center;
    padding: 25px;
    box-sizing: border-box;
    overflow: hidden;
}

.home-wwa-right img:first-child {
    align-self: flex-end;
    position: relative;
    bottom: -15px;
    z-index: 1;
}

.home-wwa-right img:last-child {
    align-self: flex-start;
    position: relative;
    top: -15px;
    left: -25px;
    z-index: 0;
}

.home-wwa-left h1 {
    color: #181b31;
    font-size: 72px;
    line-height: 72px;
    line-height: 75px;
    font-weight: 400;
}

.home-wwa-left h1 span {
    font-weight: 700;
}

.home-wwa-left h2 {
    color: #181b31;
    font-size: 27px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.4em;
    margin: 50px 0;
}

.home-wwa-left p {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-style: normal;
    line-height: 40px;
}

.home-wwa-left a {
    position: relative;
    display: inline-block;
    margin: 25px 0 0;
    line-height: 2em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px 34px;
    border-radius: 35px;
    text-transform: uppercase;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2.4px;
    box-shadow: 0px 4px 2px 0px rgb(0 0 0 / 10%);
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    border: 2px solid #fd7250;
    background-color: #fd7250;
    text-decoration: none;
}

.home-wwa-left a:hover {
    background-color: #000;
    border-color: #d7dadd;
}

.home-wwa-left a:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform-origin: 50%;
    -ms-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.home-what-we-do {
    background-image: url(/images/home/h_wwd_bg.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 100px 0;
}

.home-what-we-do .container {
    z-index: 2;
}

.home-what-we-do:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 70%);
    z-index: 1;
}

.home-wwd-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.home-wwd-inner>div {
    width: calc(33.33% - 25px);
    color: #fff;
}

.home-wwd-inner>div>span {
    font-size: 12px;
    line-height: 15px;
    font-weight: 700;
    color: #fd7250;
}

.home-wwd-inner>div>h1 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.111em;
    margin: 40px 0;
}

.home-wwd-inner>div>p {
    line-height: 30px;
    font-size: 18px;
}

.home-wwd-inner>div>ul {
    list-style-type: none;
    padding: 0;
    margin: 40px 0 0;
}

.home-wwd-inner>div>ul>li {
    text-transform: uppercase;
    margin: 0 0 15px 0;
    font-size: 12px;
}

.home-wwd-middle {
    margin: 50px 0 0;
}

.home-wwd-right {
    margin: 100px 0 0;
}

.home-og-inner h1 {
    font-size: 72px;
    line-height: 72px;
    font-weight: 700;
    color: #16171e;
    margin: 85px 0 40px 0;
    text-align: center;
}

.home-og-inner .home-og-top {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 50px 0;
}

.home-og-inner .home-og-top a {
    display: block;
    padding: 5px 10px;
    color: #333;
    text-decoration: none;
    margin: 0 10px;
}

.home-og-inner .home-og-top a:hover,
.home-og-inner .home-og-top a.active {
    color: #fd7250;
}

.home-og-inner .home-og-bottom {
    margin: 0 0 75px 0;
}

.home-og-inner .home-og-bottom .bannergroup {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    transition: height 250ms ease-out 0s;
}

.home-og-inner .home-og-bottom .bannergroup.full {
    justify-content: space-between;
}

.home-og-inner .home-og-bottom .bannergroup>div {
    width: calc(33.33% - 16px);
    margin: 0 0 25px 0;
    visibility: visible;
    transition: transform 250ms ease-out 0s, opacity 250ms ease-out 0s;
    opacity: 1;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1);
    overflow: hidden;
}

.home-og-inner .home-og-bottom .bannergroup>div:nth-child(3n+2) {
    margin: 0 24px 25px 24px;
}

.home-og-inner .home-og-bottom .bannergroup>div.inactive {
    position: absolute;
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    transform: translate3d(433px, 0px, 0px) scale3d(0.001, 0.001, 1);
    transition: transform 250ms ease-out 0s, opacity 250ms ease-out 0s;
    width: 0;
    height: 0;
}

.home-og-inner .home-og-bottom .bannergroup>div img {
    width: 100%;
    transition: all .5s ease;
}

.home-og-inner .home-og-bottom .bannergroup>div a {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}

.home-og-inner .home-og-bottom .bannergroup>div:hover a:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    transform: translate(-50%, -50%);
    border: 3px solid #fff;
    border-radius: 5px;
    padding: 12px;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.home-og-inner .home-og-bottom .bannergroup>div:hover a:after {
    content: "\f03e";
    font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 34px;
    transform: translate(-50%, -50%);
    color: #fd7250;
}

.home-og-inner .home-og-bottom .bannergroup>div:hover img {
    transform: scale(1.4);
    opacity: .4;
    transition: all .5s ease;
}

.home-om-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.home-om-inner .home-om-left {
    width: calc(60% - 15px);
}

.home-om-inner .home-om-right {
    width: calc(40% - 15px);
    padding: 0 15% 0 0;
    box-sizing: border-box;
}

.home-om-right-video-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 70%);
    z-index: 9999;
    display: none;
}

.home-om-right-video-wrapper video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.home-om-right-video-wrapper span {
    position: absolute;
    font-size: 30px;
    font-weight: 500;
    line-height: 30px;
    text-align: center;
    color: #fff;
    background-color: #000;
    width: 35px;
    height: 35px;
    top: 50%;
    transform: translateY(calc(-50% - 240px));
    right: calc(50% - 440px);
    z-index: 1;
    border-radius: 50%;
    cursor: pointer;
}

.home-om-inner .home-om-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-om-inner .home-om-right h1 {
    margin: 40px 0;
    color: #181b31;
    font-size: 65px;
    line-height: 65px;
    font-weight: 600;
}

.home-om-inner .home-om-right p {
    font-size: 24px;
    line-height: 30px;
    color: #181b31;
}

.home-om-inner .home-om-right a.show-video {
    display: block;
    position: relative;
    margin: 50px 0 0;
    padding: 0 0 0 90px;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    color: #828282;
}

.home-om-inner .home-om-right a.show-video:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 35px;
    width: 65px;
    height: 65px;
    margin-top: -32.5px;
    margin-left: -32.5px;
    border-radius: 50%;
    background-color: #fd7250;
    z-index: 10;
}

.home-om-inner .home-om-right a.show-video:after {
    content: '';
    position: absolute;
    top: 10px;
    left: 35px;
    margin-top: -10.5px;
    margin-left: -7px;
    border: solid 11px transparent;
    border-left: solid 17px;
    border-left-color: #fff;
    z-index: 10;
}

.home-testimonials-inner {
    padding: 100px 0;
}

.home-testimonial {
    display: flex !important;
}

.home-testimonial .home-testimonial-right {
    margin: 0 0 0 25px;
}

.home-testimonial .home-testimonial-right h1 {
    color: #16171e;
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.home-testimonial .home-testimonial-right h2 {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: #fd7250;
}

.home-testimonial .home-testimonial-right p {
    font-style: italic;
    color: #828282;
    line-height: 32px;
    font-size: 17px;
}

.home-testimonials-inner .slick-slide {
    margin: 0 30px;
}

.home-testimonials-inner .slick-list {
    margin: 0 -30px;
    width: 100%;
}

.home-latest-articles {
    padding: 90px 0 30px 0;
    margin: 0;
    background-image: url(/images/home/h_wwa_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: inherit;
    background-position: 0 0;
}

.home-latest-articles h1 {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 25px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fd7250;
    text-align: center;
}

.home-latest-articles h2 {
    color: #181b31;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-align: center;
    text-transform: capitalize;
}

.home-la-inner .mod-articlesnews {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.home-la-inner .mod-articlesnews .mod-articlesnews__item {
    width: calc(50% - 10px);
    background-color: #f5f5f5;
    padding: 10px;
    box-sizing: border-box;
    margin: 0 0 30px 0;
}

.home-la-inner .mod-articlesnews .mod-articlesnews__item .newsflash-image {
    margin: 0;
    overflow: hidden;
}

.home-la-inner .mod-articlesnews .mod-articlesnews__item .newsflash-image img {
    width: 100%;
    -webkit-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.home-la-inner .mod-articlesnews .mod-articlesnews__item .newsflash-title a {
    line-height: 1.15em;
    font-size: 20px;
    color: #383838;
    font-weight: 600;
    height: 48px;
    overflow: hidden;
    display: -webkit-box;
    margin-bottom: 20px;
    text-decoration: none;
}

.home-la-inner .mod-articlesnews .mod-articlesnews__item p {
    line-height: 30px;
    color: #828282;
    font-size: 17px;
}

.home-la-inner .mod-articlesnews .mod-articlesnews__item:hover .newsflash-image img {
    transform: scale(1.3);
    opacity: .4;
    -webkit-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.home-la-inner .mod-articlesnews .mod-articlesnews__item .readmore a {
    position: relative;
    display: inline-block;
    margin: 25px 0 0;
    line-height: 2em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5px 20px;
    border-radius: 35px;
    text-transform: uppercase;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.4px;
    box-shadow: 0px 4px 2px 0px rgb(0 0 0 / 10%);
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    border: 2px solid #fd7250;
    background-color: #fd7250;
    text-decoration: none;
}

.home-la-inner .mod-articlesnews .mod-articlesnews__item .readmore a:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform-origin: 50%;
    -ms-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.home-la-inner .mod-articlesnews .mod-articlesnews__item .readmore a:hover {
    background-color: #000;
    border-color: #d7dadd;
}

.home-collaboration {
    position: relative;
    padding: 120px 0;
    margin: 0;
    background-image: url(/images/home/h_colab.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: inherit;
    background-position: 50% 50%;
}

.home-collaboration:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 70%);
}

.home-collaboration .container {
    z-index: 1;
}

.home-collab-inner {
    text-align: center;
}

.home-collab-inner h1 {
    color: #ffffff;
    font-size: 72px;
    line-height: 75px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 50px 0;
}

.home-collab-inner h2 {
    font-size: 24px;
    line-height: 30px;
    color: #fff;
    text-align: center;
    margin: 0 0 40px 0;
}

.home-collab-inner a {
    position: relative;
    line-height: 2em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px 34px;
    border-radius: 35px;
    text-transform: uppercase;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2.4px;
    box-shadow: 0px 4px 2px 0px rgb(0 0 0 / 10%);
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    overflow: hidden;
    border: 2px solid #fd7250;
    background-color: #fd7250;
    text-decoration: none;
    display: inline-block;
    margin: 50px 0 0;
    ;
}

.home-collab-inner a:hover {
    background-color: #000;
    border-color: #d7dadd;
}

.home-collab-inner a:before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform-origin: 50%;
    -ms-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.home-collab-inner a:hover:before {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.footer-wrapper {
    background-color: #101010;
    padding: 100px 0 0;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-inner .footer-tab {
    width: calc(25% - 15px);
}

.footer-tab h1 {
    font-weight: 700;
    font-size: 18px;
    margin: 0 0 30px;
    color: #fff;
}

.footer-tab1 ul {
    display: flex;
    align-items: center;
    margin: 50px 0 0;
    padding: 0;
}

.footer-tab1 ul li {
    margin: 0 15px 0 0;
    list-style: none;
}

.footer-tab1 ul li a {
    color: #fd7250;
    border: 2px solid #fd7250;
    text-align: center;
    padding: 5px;
    border-radius: 50%;
    text-decoration: none;
}

.footer-tab1 ul li a:hover {
    color: #101010;
    background-color: #fd7250;
    border-color: #fff;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.footer-tab1 ul li a i span {
    display: none;
}

.footer-tab1 p {
    color: #a0aec6;
    margin: 0 0 15px 0;
}

.footer-tab1 p:nth-of-type(2) {
    margin: 0 0 15px 0;
}

.footer-tab1 p:last-of-type {
    font-size: 14px;
    line-height: 22px;
}

.footer-tab2 .newsflash-title {
    color: #fd7250;
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 5px 0;
}

.footer-tab2 .readmore {
    margin: 0 0 15px 0;
}

.footer-tab2 .readmore a {
    text-decoration: none;
    font-size: 12px;
    color: #fff;
}

.footer-tab3 ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-tab3 ul li {
    margin: 0 0 15px 0;
}

.footer-tab3 ul li:last-child {
    margin: 0;
}

.footer-tab3 a {
    color: #fd7250;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
}

.footer-tab3 a:hover {
    color: #fff;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.footer-tab4 .bannergroup {
    display: flex;
    flex-wrap: wrap;
}

.footer-tab4 .bannergroup .banneritem {
    width: calc(33.33% - 2px);
    box-sizing: border-box;
    border: 1px solid #ddd;
    height: 100px;
}

.footer-tab4 .bannergroup .banneritem:hover {
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    border-color: #fd7250;
}

.footer-tab4 .bannergroup .banneritem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-toggle {
    display: none;
}

.footer-inner+p {
    color: #fff;
    font-size: 12px;
    margin: 60px 0 0;
    padding: 0 0 10px 0;
    text-align: center;
}

.home-logo-slider-inner .slick-arrow,
.home-testimonials-inner .slick-arrow {
    background: transparent;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -25px;
    z-index: 10;
}

.home-testimonials-inner .slick-arrow {
    left: -75px;
}

.home-logo-slider-inner .slick-arrow.slick-next,
.home-testimonials-inner .slick-arrow.slick-next {
    left: initial;
    right: -25px;
}

.home-logo-slider-inner .slick-arrow i,
.home-testimonials-inner .slick-arrow i {
    font-size: 60px;
    color: #999;
}

.footer-inner ul.social-small {
    padding: 0;
    margin: 15px 0 0;
    display: flex;
}

.footer-inner ul.social-small li a {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    color: transparent;
    padding: 0;
}

.footer-inner ul.social-small li a:before {
    content: '\f09a';
    font-size: 16px;
    font-family: 'FontAwesome';
    color: #fff;
    line-height: 30px;
}

.footer-inner ul.social-small li a.googleplus-link:before {
    content: '\f0d5';
    font-size: 16px;
    color: #fff;
}

.footer-inner ul.social-small li a.linkedin-link:before {
    content: '\f0e1';
    font-size: 16px;
    color: #fff;
}

.footer-inner ul.social-small li a.twitter-link:before {
    content: '\f099';
    font-size: 16px;
    color: #fff;
}

.category-blog-items.articol-portfolio {
    padding: 0;
    margin: 25px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.category-blog.blog {
    display: flex;
    flex-direction: column;
}

.category-blog-items.articol-portfolio li {
    width: calc(100% / 3 - 20px);
    display: flex;
    flex-direction: column;
    margin: 0;
    border: 1px solid #ddd;
    box-shadow: 0px 5px 65px 0px rgb(0 0 0 / 20%);
    position: relative;
    overflow: hidden;
    transition: .3s all;
}

.category-blog-items.articol-portfolio li:before {
    content: '';
    width: 0;
    height: calc(100% - 4px);
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    position: absolute;
    top: 0;
    z-index: 2;
    transition: .3s all;
}

.category-blog-items.articol-portfolio li:after {
    content: '';
    width: calc(100% - 4px);
    height: 0;
    border-left: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    left: 0;
    z-index: 2;
    transition: .3s all;
}

.category-blog-items.articol-portfolio li:hover:before {
    width: 100%;
}

.category-blog-items.articol-portfolio li:hover:after {
    height: 100%;
}

.category-blog-items.articol-portfolio li:nth-child(3n+2) {
    margin: 45px 30px 0 30px;
}

.category-blog-items.articol-portfolio li:nth-child(3n+3) {
    margin: 90px 0 0;
}

.category-blog-items.articol-portfolio li .blog-item-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 275px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    padding: 15px;
}

.category-blog-items.articol-portfolio li .blog-item-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.category-blog-items.articol-portfolio li .blog-item-data-wrapper a.visit-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fd7250;
    color: #fff;
    padding: 7px 15px;
    transition: .3s all;
    text-decoration: none;
    z-index: 3;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
}

.category-blog-items.articol-portfolio li:hover .blog-item-data-wrapper a.visit-link {
    top: 100px;
}

.category-blog-items.articol-portfolio li .blog-item-data-wrapper .blog-item-intro h2 {
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    margin: 25px 0;
    font-family: 'Raleway', sans-serif;
}

.category-blog-items.articol-portfolio li .blog-item-data-wrapper .blog-item-intro p {
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    background-color: #f5f5f5;
    padding: 15px;
    transition: .3s all;
    font-family: 'Raleway', sans-serif;
}

.category-blog-items.articol-portfolio li:hover .blog-item-image-wrapper:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgb(0 0 0 / 50%);
    z-index: 1;
}

.category-blog-items.articol-portfolio li:hover .blog-item-data-wrapper .blog-item-intro p {
    background-color: #fd7250;
    color: #fff;
}

.category-blog-pagination-pages ul {
    list-style: none;
    background-color: #f1f1f1;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 5px 25px;
    border-radius: 5px;
}

.category-blog-pagination-pages ul li {
    width: 35px;
    position: relative;
    text-align: center;
}

.category-blog-pagination-pages ul li.active {
    box-shadow: 0px 5px 25px 0px rgb(0 0 0 / 20%);
}

.category-blog-pagination-pages ul li.active:before {
    content: '';
    height: 180%;
    width: 100%;
    background-color: #fd7250;
    position: absolute;
    top: -40%;
    left: 0;
    z-index: 1;
    border-radius: 5px;
}

.category-blog-pagination-pages ul li.active span {
    position: relative;
    z-index: 2;
    font-weight: 500;
    color: #fff;
}

.category-blog-pagination-pages ul li a {
    text-decoration: none;
    font-weight: 500;
    color: #000;
}

.category-blog-pagination-pages ul li span.icon-angle-double-left:before,
.category-blog-pagination-pages ul li span.icon-angle-double-right:before {
    content: '\f100';
    font-family: 'FontAwesome';
    color: #000;
    font-size: 16px;
}

.category-blog-pagination-pages ul li span.icon-angle-double-right:before {
    content: '\f101';
}

.category-blog-pagination-pages ul li span.icon-angle-left:before,
.category-blog-pagination-pages ul li span.icon-angle-right:before {
    content: '\f060';
    font-family: 'FontAwesome';
    color: #000;
    font-size: 16px;
}

.category-blog-pagination-pages ul li span.icon-angle-right:before {
    content: '\f061';
}

.category-blog-pagination-pages ul li:nth-child(2) {
    margin: 0 35px 0 0;
}

.category-blog-pagination-pages ul li:nth-last-child(2) {
    margin: 0 0 0 35px;
}

.category-blog-navigation {
    margin: 100px 0 50px 0;
}

h1.blog-page-heading {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 40px;
    text-align: center;
    margin: 50px 0 15px;
}

h2.blog-category-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
    margin: 0 0 50px 0;
    position: relative;
    display: inline-flex;
    align-self: center;
}

h2.blog-category-title:before,
h2.blog-category-title:after {
    content: '';
    width: 100%;
    height: 7px;
    border: 1px solid #ddd;
    border-left: 0;
    border-right: 0;
    position: absolute;
    top: 7px;
    left: -115%;
}

h2.blog-category-title:after {
    left: inherit;
    right: -115%;
}

.contact-page .page-header {
    display: none;
}

.contact-page .header-bottom .banneritem {
    display: flex !important;
    align-items: flex-end;
    justify-content: center;
}

.contact-page .header-bottom .bannergroup.slick-slider .slick-slide img {
    width: 100%;
}

.contact-page-data-wrapper {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.contact-page-data-wrapper>div:not(.contact-form) {
    width: calc(100% / 3);
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-page-data-wrapper>div:not(.contact-form) h2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 20px;
    text-align: left;
    text-transform: uppercase;
    margin: 0 0 50px 0;
    position: relative;
    display: inline-flex;
    padding: 5px 0;
}

.contact-page-data-wrapper>div:not(.contact-form) h2:before,
.contact-page-data-wrapper>div:not(.contact-form) h2:after {
    content: '';
    width: 50%;
    height: 1px;
    background-color: #ddd;
    position: absolute;
    bottom: -2px;
    left: 0;
    transition: .3s all;
}

.contact-page-data-wrapper>div:not(.contact-form) h2:after {
    bottom: initial;
    top: -2px;
    left: initial;
    right: 0;
}

.contact-page-data-wrapper>div.contact-address h2:before,
.contact-page-data-wrapper>div.contact-address h2:after {
    background-color: #fff;
}

.contact-page-data-wrapper .contact-form {
    width: calc(100% / 3);
    padding: 35px 50px;
    background-color: rgb(255 255 255 / 55%);
    box-shadow: 0px 5px 65px 0px rgb(0 0 0 / 20%);
    position: absolute;
    top: -600px;
    left: 50%;
    transform: translateX(-50%);
}

.contact-page-data-wrapper .contact-form h2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 30px;
    text-align: center;
    margin: 0 0 40px 0;
}

.contact-page-data-wrapper .contact-form .cf-form-wrap .cf-fields {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-page-data-wrapper .contact-form .cf-form-wrap .cf-fields>div {
    width: 100%;
    margin: 0 0 25px 0;
}

.contact-page-data-wrapper .contact-form .cf-form-wrap .cf-fields>div:nth-child(-n+2) {
    width: calc(100% / 2 - 15px);
}

.contact-page-data-wrapper .contact-form .cf-field-hp {
    display: none;
}

.contact-page-data-wrapper .contact-form .cf-form-wrap .cf-fields>div input,
.contact-page-data-wrapper .contact-form .cf-form-wrap .cf-fields>div textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #000;
    font-size: 16px;
    padding: 0 0 5px 0;
    background: transparent;
    font-family: 'Raleway', sans-serif;
}

.contact-page-data-wrapper .contact-form .cf-form-wrap .cf-fields>div input:focus,
.contact-page-data-wrapper .contact-form .cf-form-wrap .cf-fields>div textarea:focus {
    outline: none;
}

.contact-page-data-wrapper .contact-address {
    background-color: #ddd;
}

.contact-page-data-wrapper .contact-address,
.contact-page-data-wrapper .contact-socials {
    padding: 5% 0 50px 50px;
}

.contact-page-data-wrapper .contact-address:hover h2:before,
.contact-page-data-wrapper .contact-socials:hover h2:before {
    left: 50%;
}

.contact-page-data-wrapper .contact-address:hover h2:after,
.contact-page-data-wrapper .contact-socials:hover h2:after {
    right: 50%;
}

.contact-page-data-wrapper .contact-map iframe {
    width: 100%;
}

.contact-page-data-wrapper .contact-address .contact-address-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.contact-page-data-wrapper .contact-address ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-page-data-wrapper .contact-address ul:first-child {
    margin: 0 0 15px 0;
}

.contact-page-data-wrapper .contact-address ul li:not(:last-child) {
    margin: 0 0 5px 0;
}

.contact-page-data-wrapper .contact-address ul li:before {
    content: '\f041';
    font-family: 'FontAwesome';
    font-size: 14px;
    color: #fd7250;
    margin: 0 15px 0 0;
    width: 25px;
    height: 25px;
    display: inline-block;
    border: 1px solid #fd7250;
    border-radius: 50%;
    text-align: center;
    line-height: 25px;
    transition: .3s all;
}

.contact-page-data-wrapper .contact-address ul li:nth-child(2):before {
    content: '\f095';
}

.contact-page-data-wrapper .contact-address ul li:nth-child(3):before {
    content: '\f003';
}

.contact-page-data-wrapper .contact-address ul li a {
    color: #000;
}

.contact-page-data-wrapper .contact-socials .contact-socials-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
}

.contact-page-data-wrapper .contact-socials .contact-socials-list li:not(:last-child) {
    margin: 0 0 15px 0;
}

.contact-page-data-wrapper .contact-socials .contact-socials-list li a {
    text-decoration: none;
    color: #000;
    position: relative;
}

.contact-page-data-wrapper .contact-socials .contact-socials-list li a:before {
    content: '\f09a';
    font-size: 14px;
    font-family: 'FontAwesome';
    color: #fd7250;
    margin: 0 15px 0 0;
    width: 25px;
    height: 25px;
    display: inline-block;
    border: 1px solid #fd7250;
    border-radius: 50%;
    text-align: center;
    line-height: 25px;
    transition: .3s all;
}

.contact-page-data-wrapper .contact-socials .contact-socials-list li a.googleplus-link:before {
    content: '\f0d5';
}

.contact-page-data-wrapper .contact-socials .contact-socials-list li a.linkedin-link:before {
    content: '\f0e1';
}

.contact-page-data-wrapper .contact-socials .contact-socials-list li a.twitter-link:before {
    content: '\f099';
}

.contact-page-data-wrapper .contact-address ul li:hover:before,
.contact-page-data-wrapper .contact-socials .contact-socials-list li:hover a:before {
    background-color: #fd7250;
    color: #fff;
}

.contact-page-data-wrapper .contact-address ul li,
.contact-page-data-wrapper .contact-address ul li a,
.contact-page-data-wrapper .contact-socials .contact-socials-list li a {
    font-family: 'Raleway', sans-serif;
}

.contact-page-data-wrapper .contact-address ul li:hover,
.contact-page-data-wrapper .contact-address ul li:hover a,
.contact-page-data-wrapper .contact-socials .contact-socials-list li:hover a {
    color: #fd7250;
    cursor: pointer;
}

.contact-page-data-wrapper .contact-address ul li:nth-child(2) a {
    margin: 0 0 0 15px;
}

.contact-page-data-wrapper .contact-address ul li:nth-child(3) a {
    margin: 0 0 0 10px;
}

.contact-page-data-wrapper .contact-form .cf-form-wrap .cf-fields>div button[type="submit"] {
    border: none;
}

.view-article p:empty {
    display: none !important;
}

.view-article.itemid-183 .content-article-body {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    top: -188px;
}

.view-article.itemid-183 .content-article-body .mod-banners {
    width: calc(100% / 3 - 15px);
}

.view-article.itemid-183 .content-article-body .mod-banners .slick-slide {
    margin: 0 0 15px 0;
}

.view-article.itemid-183 .content-article-body .mod-banners .slick-slide .banneritem {
    height: 175px;
    border: 1px solid #999;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-article.itemid-183 .content-article-body .mod-banners .slick-slide .banneritem img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.view-article.itemid-183 .header-bottom .mod-banners {
    height: 400px;
    overflow: hidden;
}

.view-article.itemid-183 .header-bottom .mod-banners .slick-slide img {
    max-width: none;
    height: 100%;
}

.header-top {
    z-index: 50;
    transition:
        background 0.3s ease,
        box-shadow 0.3s ease,
        padding 0.3s ease,
        backdrop-filter 0.3s ease;
}

/* Keep the navigation readable over light and dark page banners. */
.header-top:not(.header-top-sticky) {
    background: linear-gradient(180deg, rgba(10, 20, 35, .9) 0%, rgba(10, 20, 35, .58) 55%, rgba(10, 20, 35, 0) 100%);
    border-bottom: 0;
    box-shadow: none;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.header-top:not(.header-top-sticky) .main-menu ul.mod-menu > li > a,
.header-top:not(.header-top-sticky) .main-menu ul.mod-menu > li > span {
    color: #fff;
}

.header-top:not(.header-top-sticky) .main-logo a {
    display: block;
    padding: 8px 14px;
    background: rgba(255, 255, 255, .9);
    border-radius: 0 0 14px 14px;
    box-shadow: 0 5px 16px rgba(5, 12, 22, .18);
}

/* Home and Contact already have strong visual backgrounds; keep their headers clear. */
body.homepage .header-top:not(.header-top-sticky),
body.contact-page .header-top:not(.header-top-sticky) {
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

body.homepage .header-top:not(.header-top-sticky) .main-menu ul.mod-menu > li > a,
body.homepage .header-top:not(.header-top-sticky) .main-menu ul.mod-menu > li > span {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .75);
}

body.contact-page .header-top:not(.header-top-sticky) .main-menu ul.mod-menu > li > a,
body.contact-page .header-top:not(.header-top-sticky) .main-menu ul.mod-menu > li > span {
    color: #172333;
    text-shadow: none;
}

body.homepage .header-top:not(.header-top-sticky) .main-menu ul.mod-menu > li.parent:hover > a,
body.homepage .header-top:not(.header-top-sticky) .main-menu ul.mod-menu > li.parent:hover > span,
body.homepage .header-top:not(.header-top-sticky) .main-menu ul.mod-menu > li.parent:focus-within > a,
body.homepage .header-top:not(.header-top-sticky) .main-menu ul.mod-menu > li.parent:focus-within > span,
body.contact-page .header-top:not(.header-top-sticky) .main-menu ul.mod-menu > li.parent:hover > a,
body.contact-page .header-top:not(.header-top-sticky) .main-menu ul.mod-menu > li.parent:hover > span,
body.contact-page .header-top:not(.header-top-sticky) .main-menu ul.mod-menu > li.parent:focus-within > a,
body.contact-page .header-top:not(.header-top-sticky) .main-menu ul.mod-menu > li.parent:focus-within > span {
    color: #fd7250;
}

body.contact-page .header-top:not(.header-top-sticky) .main-logo a {
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.header-top-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: rgb(255 255 255 / 40%);
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.header-top-sticky .main-menu ul.mod-menu>li>a,
.header-top-sticky .main-menu ul.mod-menu>li>span {
    color: #000;
}

.header-top-sticky .main-menu ul.mod-menu>li.active>a {
    color: #fd7250;
}




















































@media only screen and (max-width: 1450px) {
    .home-om-inner .home-om-right h1 {
        margin: 15px 0;
    }
}

@media only screen and (max-width: 1300px) {
    .home-om-inner .home-om-right {
        padding: 0 5% 0 0;
    }
}

@media only screen and (max-width: 1200px) {
    .home-om-inner .home-om-right h1 {
        margin: 15px 0;
        font-size: 50px;
    }
}

@media only screen and (max-width: 1100px) {
    .home-om-inner .home-om-right h1 {
        margin: 15px 0;
        font-size: 40px;
    }

    .home-om-inner .home-om-right p {
        font-size: 20px;
        line-height: 25px;
        ;
    }
}

@media only screen and (max-width: 991px) {
    .main-menu {
        width: calc(100% - 225px);
    }

    .main-logo {
        width: 225px;
    }

    .main-menu ul.mod-menu>li>a,
    .main-menu ul.mod-menu>li>span {
        font-size: 12px;
    }

    .home-logo-slider-inner .bannergroup.slick-slider .slick-slide {
        margin: 25px 15px;
    }

    .home-wwa-left h1 {
        font-size: 40px;
        line-height: 45px;
    }

    .home-wwa-left p {
        line-height: 30px;
    }

    .home-wwa-right {
        position: relative;
    }

    .home-wwa-right img:first-child {
        width: 225px;
    }

    .home-wwa-right img:last-child {
        align-self: flex-start;
        position: absolute;
        top: 40px;
        left: initial;
        right: -15px;
        z-index: 0;
        width: 250px;
    }

    .home-om-inner .home-om-right h1 {
        margin: 0;
        font-size: 36px;
        line-height: 46px;
    }

    .home-om-inner .home-om-right p {
        margin: 5px 0 0;
        font-size: 16px;
        line-height: 20px;
    }
}

@media only screen and (max-width: 900px) {
    .main-menu {
        width: calc(100% - 175px);
    }

    .main-logo {
        width: 175px;
    }

    .main-menu ul.mod-menu>li>a,
    .main-menu ul.mod-menu>li>span {
        font-size: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .main-menu {
        width: 50px;
        position: absolute;
        left: 30px;
        top: 30px;
    }

    .main-logo {
        width: 100%;
    }

    .main-logo a {
        width: 250px;
        display: block;
        margin: auto;
    }

    .main-menu ul.mod-menu {
        display: none;
    }

    .nav-toggle {
        position: relative;
        display: block;
        border: 1px solid #fff;
        text-align: center;
        padding: 7px 0;
        height: 40px;
    }

    .nav-toggle:before {
        content: '';
        color: #fff;
        width: calc(100% - 20px);
        height: 14px;
        border-top: 2px solid #fff;
        border-bottom: 2px solid #fff;
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-toggle:after {
        content: '';
        color: #fff;
        width: calc(100% - 20px);
        height: 2px;
        background-color: #fff;
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
    }

    .main-menu ul.mod-menu {
        position: absolute;
        width: 200px;
        height: auto;
        left: 0;
        top: 100%;
        border: 1px solid #fff;
        padding: 10px;
    }

    .main-menu ul.mod-menu>li {
        margin: 0 15px 5px 0;
        width: 100%;
        background-color: rgb(255 255 255 / 25%);
        padding: 3px 5px;
    }

    .main-menu ul.mod-menu>li>a,
    .main-menu ul.mod-menu>li>span {
        font-size: 12px;
        font-weight: 100;
    }

    .header-top-sticky .main-menu ul.mod-menu>li>a,
    .header-top-sticky .main-menu ul.mod-menu>li>span {
        color: #fff;
    }

    .home-om-inner {
        position: relative;
    }

    .home-om-inner .home-om-left {
        width: 100%;
    }

    .home-om-inner .home-om-right {
        position: absolute;
        width: 385px;
        background-color: rgb(255 255 255 / 60%);
        padding: 15px 15px 50px 15px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        border-radius: 5px;
    }

    .home-om-inner .home-om-right a.show-video:before,
    .home-om-inner .home-om-right a.show-video:after {
        left: 85px;
    }

    .home-om-inner .home-om-right a.show-video {
        color: #000;
        font-weight: 600;
    }

    .home-om-right-video-wrapper {
        width: 500px;
        left: 50%;
        transform: translateX(-50%);
        height: 280px;
        overflow: visible;
    }

    .home-om-right-video-wrapper span {
        top: -16px;
        transform: none;
        right: -16px;
    }

    .home-om-right-video-wrapper video {
        width: 500px;
        height: 280px;
    }

    .home-testimonial .home-testimonial-right p {
        line-height: 20px;
        font-size: 14px;
    }

    .home-collab-inner h1 {
        font-size: 45px;
        line-height: 48px;
    }

    .footer-inner .footer-tab {
        width: calc(50% - 15px);
    }

    .footer-inner .footer-tab1 {
        order: 1;
    }

    .footer-inner .footer-tab2 {
        order: 3;
        margin: 50px 0 0;
    }

    .footer-inner .footer-tab3 {
        order: 4;
        margin: 50px 0 0;
    }

    .footer-inner .footer-tab4 {
        order: 2;
    }
}

@media only screen and (max-width: 625px) {
    .main-menu ul.mod-menu {
        background-color: #000;
    }
}

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

    .footer-inner .footer-tab2,
    .footer-inner .footer-tab3 {
        display: none;
    }

    .home-wwd-inner>div {
        width: 100%;
    }

    .home-wwd-inner>div>ul {
        column-count: 2;
    }

    .home-wwd-inner>div.home-wwd-middle>span {
        float: right;
    }

    .home-wwa-left,
    .home-wwa-right {
        width: 100%;
    }

    .home-wwa-inner {
        padding: 15px 0;
    }

    .home-wwa-right img:first-child {
        bottom: 0;
    }

    .home-wwa-right img:last-child {
        width: 300px;
    }

    .home-testimonials-inner {
        padding: 35px 0 0;
    }

    .home-testimonial .home-testimonial-right p {
        position: relative;
        width: calc(100% + 110px);
        left: -110px;
        top: 15px;
    }

    .home-testimonials-inner .slick-slide,
    .home-testimonials-inner .slick-list {
        margin: auto;
    }
}

@media only screen and (max-width: 450px) {
    .home-om-inner .home-om-right {
        padding: 0px 0px 20px 0;
    }

    .home-om-inner .home-om-right h1 {
        font-size: 26px;
        line-height: 36px;
    }

    .home-om-inner .home-om-right p {
        font-size: 12px;
        line-height: 16px;
        font-weight: 600;
    }

    .home-om-inner .home-om-right a.show-video {
        margin: 35px 0 10px 0;
    }

    .home-om-right-video-wrapper,
    .home-om-right-video-wrapper video {
        width: 300px;
        height: 168px;
    }

    .home-om-right-video-wrapper span {
        font-size: 20px;
        line-height: 19px;
        border: 2px solid #fff;
        width: 25px;
        height: 25px;
    }

    .main-logo a {
        width: 165px;
    }

    .main-menu {
        left: 15px;
        top: 25px;
    }

    .home-what-we-do {
        padding: 50px 0;
    }

    .home-latest-articles h2 {
        font-size: 34px;
    }

    .home-la-inner .mod-articlesnews .mod-articlesnews__item {
        width: 100%;
    }
}

@media only screen and (max-width: 400px) {
    .home-om-inner .home-om-right {
        width: 290px;
    }

    .home-om-inner .home-om-right a.show-video:before {
        top: 24px;
        left: 60px;
        width: 35px;
        height: 35px;
    }

    .home-om-inner .home-om-right a.show-video:after {
        top: 12px;
        left: 48px;
        border: solid 7px transparent;
        border-left: solid 12px #fff;
    }

    .home-om-inner .home-om-right a.show-video {
        padding: 0 0 0 30px;
    }

    .footer-inner .footer-tab {
        width: 100%;
    }

    .footer-inner .footer-tab4 {
        margin: 50px 0 0;
    }

    .home-wwd-inner>div>ul {
        column-count: 1;
    }

    .home-wwa-right {
        padding: 5px;
        margin: 15px 0;
    }

    .home-wwa-right img:first-child {
        width: 100%;
    }

    .home-wwa-right img:last-child {
        display: none;
    }

    .home-og-inner h1 {
        font-size: 40px;
        margin: 10px 0;
    }

    .home-og-inner .home-og-top a {
        font-size: 12px;
    }

    .home-collaboration {
        padding: 35px 0;
    }

    .home-collab-inner h1 {
        font-size: 30px;
    }

    .home-collab-inner h2 {
        font-size: 16px;
    }
}

/* =========================================================
   POLICOLOR CASE STUDY
   ========================================================= */

/* ---------- GENERAL ---------- */

.spor-wrapper.protecta-wrapper {
    width: 100%;
    overflow: hidden;
    color: #171717;
    background: #fff;
}

.spor-wrapper.protecta-wrapper .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

.spor-wrapper.protecta-wrapper h2,
.spor-wrapper.protecta-wrapper h3,
.spor-wrapper.protecta-wrapper p {
    margin-top: 0;
}

.spor-wrapper.protecta-wrapper img {
    max-width: 100%;
    height: auto;
}


/* =========================================================
   HERO
   ========================================================= */

.spor-row1.protecta-row1 {
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.spor-row1.protecta-row1 img {
    width: 100%;
    height: auto;
    display: block;
}


/* =========================================================
   POLICOLOR INTRO
   ========================================================= */

.spor-row2.protecta-row2.case-study {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    background: #f5f6f7;
}

.case-study {
    display: flex;
    padding-top: 120px;
}
.case-policolor .intro {
    width: 48%;
}
.spor-row2.protecta-row2 .container {
    width: 100%;
    position: relative;
    z-index: 2;
}

.sr2-left.pr2-left {
    width: 52%;
    padding: 100px 0;
}

.sr2-left .page-h2-wrapper {
    margin-bottom: 25px;
}

.sr2-left h2 {
    font-size: clamp(48px, 7vw, 100px);
    line-height: .9;
    font-weight: 700;
    letter-spacing: -3px;
    margin: 0;
}

.sr2-left h3 {
    max-width: 620px;
    margin: 35px 0 20px;
    font-size: clamp(25px, 3vw, 42px);
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: -1px;
}

.sr2-left p {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: .3px;
}

.sr2-right.pr2-right {
    position: relative;
    right: 0;
    top: 0;
    width: 48%;
    height: 100%;
    overflow: hidden;
}

.sr2-right.pr2-right img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}


/* =========================================================
   PROVOCARE
   ========================================================= */

.provocare {
    padding-top: 130px;
    padding-bottom: 130px;
}

.provocare>h2 {
    max-width: 950px;
    margin: 0 auto 80px;
    text-align: center;
    font-size: clamp(32px, 4vw, 58px);
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -1.5px;
}

.probleme {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.problema {
    padding-top: 25px;
    border-top: 2px solid #171717;
}

.problema h3 {
    margin-bottom: 18px;
    font-size: 21px;
    line-height: 1.2;
    font-weight: 600;
}

.problema p {
    max-width: 300px;
    margin-bottom: 0;
    font-size: 17px;
    line-height: 1.6;
    color: #666;
}


/* =========================================================
   SOLUTIE
   ========================================================= */

.solutie {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px 140px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card-solutie {
    min-height: 240px;
    padding: 35px;
    background: #f1f2f3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition:
        transform .3s ease,
        background-color .3s ease;
}

.card-solutie:hover {
    transform: translateY(-5px);
    background: #e9eaec;
}

.card-solutie h3 {
    margin-bottom: 35px;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: .3px;
}

.card-solutie p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.55;
    color: #666;
}


/* =========================================================
   CASABELLA
   ========================================================= */

.case-casabeella {
    padding: 50px 0;
    background: #f3f5f7;
}

.case-casabeella h2 {
    margin-bottom: 15px;
    font-size: clamp(42px, 6vw, 80px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -2px;
}

.case-casabeella>.container>h3 {
    margin-bottom: 70px;
    font-size: 25px;
    font-weight: 400;
    color: #555;
}

.mock-casabella {
    display: grid;
    grid-template-columns: 30% 70%;
    align-items: center;
    gap: 60px;
}

.text-casabella {
    font-size: 21px;
    line-height: 1.55;
    color: #444;
}

.img-casabella {
    position: relative;
}

.img-casabella img {
    width: 85%;
    height: auto;
    object-fit: contain;
    display: block;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .12);
}

.img-casabella a {
    display: inline-block;
    margin-top: 25px;
    padding: 13px 24px;
    background: #111;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 600;

    transition:
        background-color .25s ease,
        transform .25s ease;
}

.img-casabella a:hover {
    background: #333;
    transform: translateY(-2px);
}


/* =========================================================
   REZULTATE
   ========================================================= */

.case-results {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 30px;
}

.case-results>h2 {
    margin-bottom: 70px;
    font-size: clamp(40px, 5vw, 70px);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -2px;
}

.case-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.case-results>h2 {
    grid-column: 1 / -1;
}

.card-result {
    padding: 35px 0;
    border-top: 2px solid #171717;
}

.card-result h3 {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 600;
}

.card-result p {
    margin-bottom: 0;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}


/* =========================================================
   CTA
   ========================================================= */

.case-cta {
    padding: 50px 30px;
    text-align: center;
    color: #000;
}

.case-cta h3 {
    max-width: 800px;
    margin: 0 auto 25px;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -2px;
}

.case-cta p {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.6;
}

.case-cta .custom-btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    transition: transform .25s ease;
}

.case-cta .custom-btn:hover {
    transform: translateY(-2px);
}
.case-cta .custom-btn.custom-blue-black {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: 2px solid #fd7250; /* culoarea conturului din footer */
    border-radius: 50px; /* rotunjire ca la icon buttons */
    background: transparent;
    color: #fd7250;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.case-cta .custom-btn.custom-blue-black:hover {
    background: #fd7250; /* umplere la hover */
    color: #ffffff; /* text alb la hover */
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .spor-row2.protecta-row2.case-study {
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .sr2-left.pr2-left {
        width: 100%;
        padding: 80px 0 50px;
    }

    .sr2-right.pr2-right {
        position: relative;
        width: 100%;
        height: auto;
    }

    .sr2-right.pr2-right img {
        height: auto;
    }

    .probleme {
        gap: 30px;
    }

    .solutie {
        grid-template-columns: repeat(2, 1fr);
    }

    .mock-casabella {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .text-casabella {
        max-width: 700px;
    }

    .case-results {
        grid-template-columns: 1fr;
    }

    .case-results>h2 {
        grid-column: auto;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .spor-wrapper.protecta-wrapper .container {
        padding-left: 20px;
        padding-right: 20px;
    }


    /* HERO */

    .spor-row1.protecta-row1 {
        min-height: 140px;
    }


    /* INTRO */

    .sr2-left.pr2-left {
        padding: 60px 0 40px;
    }

    .sr2-left h2 {
        font-size: 52px;
        letter-spacing: -2px;
    }

    .sr2-left h3 {
        margin-top: 25px;
        font-size: 27px;
        line-height: 1.15;
    }

    .sr2-left p {
        font-size: 14px;
    }


    /* PROVOCARE */

    .provocare {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .provocare>h2 {
        margin-bottom: 50px;
        font-size: 32px;
        line-height: 1.15;
    }

    .probleme {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .problema p {
        max-width: none;
    }


    /* SOLUTIE */

    .solutie {
        grid-template-columns: 1fr;
        padding: 0 20px 80px;
        gap: 15px;
    }

    .card-solutie {
        min-height: 200px;
        padding: 28px;
    }


    /* CASABELLA */

    .case-casabeella {
        padding: 80px 0;
    }

    .case-casabeella h2 {
        font-size: 52px;
    }

    .case-casabeella>.container>h3 {
        margin-bottom: 45px;
        font-size: 21px;
        line-height: 1.35;
    }

    .text-casabella {
        font-size: 18px;
        line-height: 1.55;
    }

    .img-casabella a {
        font-size: 14px;
        padding: 12px 20px;
    }


    /* RESULTS */

    .case-results {
        padding: 80px 20px;
        grid-template-columns: 1fr;
    }

    .case-results>h2 {
        margin-bottom: 35px;
        font-size: 48px;
    }

    .card-result {
        padding: 25px 0;
    }


    /* CTA */

    .case-cta {
        padding: 80px 20px;
    }

    .case-cta h3 {
        font-size: 42px;
        line-height: 1.05;
    }

    .case-cta p {
        font-size: 16px;
    }

}
