body {
    background: #fff;
}

#global-page {
   margin: auto;
   position: relative;
}

.img-filter {
    position: relative;
    line-height: 0;
}

.img-filter::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(47, 102, 175, .3);
    border-radius: var(--border-radius-base) var(--border-radius-base) 100px;
}

.img-filter img {
    border-radius: var(--border-radius-base) var(--border-radius-base) 100px;
}

.sub-title {
    font-weight: var(--font-weight-base);
    margin-bottom: .8rem;
}

.sub-title span {
    color: var(--color-primary);
    margin-right: 5px;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 90;
    transition: .2s all ease;
    background: #fff;
    border-top: 10px solid var(--color-primary);
}

header.scroll {
    -webkit-box-shadow: 0px 0px 4px 2px rgba(133,133,133,0.7); 
    box-shadow: 0px 0px 4px 2px rgba(133,133,133,0.7);
    background: #fff;
}

header .logo-content {
    width: 100%;
    max-width: 240px;
    height: auto;
    margin: 10px 0;
    line-height: 0;
}

header .logo-content img {
    width: auto;
    height: 100%;
}

header .nav-desktop nav > ul > li,
header .nav-bis nav > ul > li {
    display: inline-block;
    margin-right: 15px;
}

header .nav-bis nav > ul > li {
    margin-right: 0;
}

header .nav-desktop nav > ul > li:last-child,
header .nav-bis nav > ul > li:last-child {
    margin-right: 0;
}

header .nav-desktop nav > ul > li.parent,
header .nav-bis nav > ul > li.parent {
    padding-right: 10px;
    background: url(img/arrow-nav.png) no-repeat;
    background-position: center right;
}

header .nav-desktop nav > ul > li > a,
header .nav-desktop nav > ul > li > span,
header .nav-bis nav > ul > li > a,
header .nav-bis nav > ul > li > span {
    color: var(--color-secondary) !important;
    display: block;
    line-height: 80px;
    padding: 0 5px;
    position: relative;
    transition: .2s all ease;
    font-weight: var(--font-weight-max);
}

header .nav-desktop nav > ul > li.menuactive > a,
header .nav-desktop nav > ul > li.menuactive ul li.menuactive > a,
header .nav-desktop nav > ul > li.menuactive > span,
header .nav-desktop nav > ul > li.menuactive ul li.menuactive > span,
header .nav-bis nav > ul > li.parent ul li.menuactive a {
    color: var(--color-primary) !important;
    position: relative;
}

header .nav-desktop nav > ul > li.menuactive > a:after,
header .nav-desktop nav > ul > li > a:hover:after {
    position: absolute;
    content: "";
    width: 30px;
    height: 4px;
    background: var(--color-primary);
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    border-radius: 0 0 4px 4px;
    transition: .2s all ease;
}

header .nav-desktop nav > ul > li.menuactive.no-hover > a:after {
    opacity: 0 !important;
}

header .nav-desktop nav > ul > li.parent ul,
header .nav-bis nav > ul > li.parent ul {
    position: absolute;
    background: var(--color-white);
    padding: 10px 20px;
    -webkit-filter: drop-shadow(0 8px 20px rgba(0,0,0,.1));
    filter: drop-shadow(0 8px 20px rgba(0,0,0,.1));
    min-width: 230px;
    visibility: hidden;
    opacity: 0;
    margin-top: 20px;
    transition: .3s;
}

header .nav-desktop nav > ul > li.parent:hover > ul,
header .nav-bis nav > ul > li.parent:hover > ul {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
    transition: .3s;
}

header .nav-desktop nav > ul > li.parent ul li {
    display: block;
    padding: 10px 0;
}

header .nav-bis nav > ul > li.parent ul li {
    display: block;
}

header .nav-desktop nav > ul > li.parent ul li:last-child,
header .nav-bis nav > ul > li.parent ul li:last-child {
    border-bottom: 0;
}

header .nav-desktop nav > ul > li.parent ul li a,
header .nav-bis nav > ul > li.parent ul li a {
    display: block;
    line-height: 1;
    letter-spacing: .5px;
    color: var(--color-dark);
    padding: 10px 0;
}

header .nav-desktop nav a:hover,
header .nav-bis nav a:hover {
    color: var(--color-primary) !important;
}

header .nav-desktop nav > ul > li > ul > li > ul,
header .nav-bis nav > ul > li > ul > li > ul {
    visibility: hiddent;
    opacity: 0;
    transition: .3s;
    top: 0;
    left: calc(100% - 20px);
}

header .nav-desktop nav > ul > li > ul > li.parent:hover > ul,
header .nav-bis nav > ul > li > ul > li.parent:hover > ul {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
    transition: .3s;
}

header .nav-desktop nav > ul > li > ul > li > ul > li > ul,
.nav-mobile nav > ul > li > ul > li > ul > li > ul {
    display: none;
}

header .nav-bis nav a {
    font-size: 22px !important;
    line-height: 1 !important;
}

header .nav-bis nav a i {
   line-height: 70px;
}

header .nav-bis nav > ul > li.parent {
    position: relative;
}

header .nav-bis nav > ul > li.parent ul li a {
    font-size: 15px !important;
}

header .nav-bis nav > ul > li.parent ul {
    min-width: inherit !important;
    right: 0;
}
header .nav-bis nav > ul > li.parent {
    background-position-x: right !important;
    background-position-y: 20px !important;
}

/* Nav mobile */

.nav-mobile {
    position: fixed;
    width: 330px;
    height: 100%;
    right: -330px;
    top: 0;
    z-index: 999999;
    background: #fff;
    transition: .2s;
    opacity: 0;
}

.nav-mobile.open-nav {
    right: 0;
    opacity: 1;
    transition: .4s;
    padding: 15px 30px;
}

.nav-mobile .nav-item ul li {
    display: inline-block;
    margin-left: .6rem;
    padding-left: .8rem;
    border-left: 1px solid #ddd;
}

.nav-mobile .nav-item ul li:first-child {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
}

.nav-mobile .nav-item ul li a {
    color: var(--color-secondary);
}

.nav-mobile .inner {
    height: 100%;
    overflow: scroll;
    padding-bottom: 120px;
}

.nav-mobile nav ul li {
    padding: 15px 0;
    border-top: 1px dotted #ddd;
}

.nav-mobile nav ul li.parent {
    padding-bottom: 0 !important;
}

.nav-mobile nav ul li.parent > span {
    padding-bottom: 10px;
}

.nav-mobile nav ul li ul li {
    padding-left: 20px;
}

.nav-mobile nav ul li a,
.nav-mobile nav ul li > span {
    display: block;
    color: var(--color-secondary);
    font-weight: 600;
}

.nav-mobile nav ul li.menuactive > a {
    color: var(--color-primary); !important;
}

.nav-mobile nav ul li.parent > a {
    margin-bottom: 10px;
}

.nav-mobile nav ul li a:hover {
    color: var(--color-primary);;
}

.bt-open-nav {
    border-radius: 50%;
    overflow: hidden;
    margin: 17px 0;
    margin-left: 1rem;
    cursor: pointer;
}

.bt-open-nav i {
    background: var(--color-primary);
    color: var(--color-white);
    line-height: 45px;
    width: 45px;
    text-align: center;
    font-size: 26px;
}

.bt-open-nav:hover i {
    background: var(--color-primary-hover);
}

.bt-close-nav i {
    line-height: 60px;
    cursor: pointer;
    font-size: 32px;
}

.bt-close-nav:hover i {
    color: var(--color-primary);
}

.bt-mask-nav {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.4);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    backdrop-filter: blur(2px);
}

.open-nav .bt-mask-nav {
    transition: .3s;
    opacity: 1;
    visibility: visible;
}

.nav-mobile .nav-item a {
    color: var(--color-secondary);
    font-weight: 600;
}

.nav-mobile .nav-item a:hover {
    color: var(--color-primary);
}

.nav-mobile .nav-item .bt-search {
    font-size: 28px !important;
    margin-left: 15px;
    margin-right: 15px;
}

.nav-mobile .nav-item .bt-search i {
    line-height: 3;
}


/* Heading */

.heading-content {
    position: relative;
    width: 100%;
    height: calc(85vh - 115px);
    max-height: 1300px;
    margin-top: 80px;
}

.banner-content {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner-content .img {
    position: relative;
    padding: 0;
}

.banner-content .img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(47,102,175, .3);
}

.banner-content .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}

.heading-content .container {
    position: relative;
    z-index: 9;
}

.heading-content .banner-content::after {
    content: "";
    position: absolute;
    width: 55vw;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(32, 28, 57, 1) 0%, rgba(32, 28, 57, 0) 100%);
}

.heading-content .container .inner {
    transition: .3s all ease;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    color: var(--color-white);
    text-shadow: 0px 1px 20px rgba(32,28,57,0.41);
    padding-bottom: calc(5vh + 100px);
}

.heading-content.fx .container .inner {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50px);
}

.heading-content .container .inner h1 span {
    color: var(--color-primary);
}

.heading-content .bt-enter-content {
    position: absolute;
    z-index: 20;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.heading-content .bt-enter-content .bt-call {
    border: 6px solid #fafafa;
    height: 60px;
    pointer-events: all;
    transition: .3s all ease;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.heading-content.fx .bt-enter-content .bt-call {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50px);
}

.heading-content .bt-enter-content a.bt-enter {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    pointer-events: all;
    letter-spacing: 1px;
    transition: .3s all ease;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.heading-content.fx .bt-enter-content a.bt-enter {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
}

.heading-content .bt-enter-content a.bt-enter i {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-secondary);
    color: var(--color-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    opacity: 1;
    visibility: visible;
    transition: .1s all ease;
    font-size: 30px;
    margin-bottom: 8px;
}

.heading-content .bt-enter-content a.bt-enter span {
    color: var(--color-secondary);
}

.heading-content .shape-bottom {
    transform: rotate(180deg);
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 60px;
    z-index: 15;
    overflow: hidden;
}

.heading-content .shape-bottom svg {
    width: calc(100% + 1.3px);
    height: 60px;
    display: block;
    transform: rotateY(180deg);
}

.heading-content .shape-bottom svg path {
    fill: #fff;
    transform-origin: center;
    transform: rotateY(0deg);
}

/* About */

.z-index-20 {
    z-index: 20;
}

.shape-img {
    position: relative;
    z-index: 20;
    line-height: 0;
    --translate-start: -40;
    --translate-end: 0;
    transform: translateY(calc(var(--translate-start) * 1%));
}
@media (max-width: 1400px) {
    .shape-img {
        --translate-start: -50;
        --translate-end: 0;
    }
}
@media (max-width: 1300px) {
    .shape-img {
        --translate-start: -70;
        --translate-end: 0;
    }
}
@media (max-width: 1124px) {
    .shape-img {
        --translate-start: -120;
        --translate-end: 0;
    }
}
@media (max-width: 992px) {
    .shape-img {
        --translate-start: 0;
        --translate-end: 0;
        transform: translateY(0) !important;
    }
}

.shape-img .img {
    position: relative;
}

.shape-img .img::after {
    content: "";
    position: absolute;
    width: 98%;
    height: 98%;
    top: 1%;
    left: 1%;
    -webkit-box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.4);
    border-radius: 35px;
}

.shape-img .img img {
    position: relative;
    z-index: 2;
}

.shape-img .player {
    position: absolute;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    top: 20px;
    left: 20px;
}

.shape-img .player .bt-play i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateY(-50%);
    font-size: 60px;
    color: var(--color-primary);
    z-index: 2;
}

.bloc-01 {
    position: relative;
    display: block;
    padding: 2rem;
    padding-top: 65px;
    box-shadow: 0 6px 35px 0 rgba(0, 0, 0, .04);
    border-radius: var(--border-radius-min);
    border: 2px solid #eee;
    margin-top: 55px;
    color: var(--color-txt) !important;
    transform: scale(1.0);
    transition: .3s all ease;
    background: linear-gradient(180deg,rgba(195, 201, 219, 0) 0%, rgba(239, 241, 249, 0) 100%);
}

.bloc-01.active,
.bloc-01:hover {
    background: linear-gradient(180deg,rgba(195, 201, 219, 0) 0%, rgba(239, 241, 249, 1) 100%);
    transform: scale(1.02);
}


.bloc-01::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    width: 80px;
    height: 80px;
    border-top: 2px solid #d9dee1;
    border-left: 2px solid #d9dee1;
    border-radius: var(--border-radius-min) 0 0 0;
    transition: .3s all ease;
}

.bloc-01.active::before,
.bloc-01:hover::before {
    width: 100%;
    height: 100%;
    border-top: 2px solid var(--color-primary);
    border-left: 2px solid var(--color-primary);
    border-radius: var(--border-radius-min);
}

.bloc-01::after {
    content: "";
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 80px;
    height: 80px;
    border-bottom: 2px solid #d9dee1;
    border-right: 2px solid #d9dee1;
    border-radius: 0 0 var(--border-radius-min) 0;
    transition: .3s all ease;
}

.bloc-01.active::after,
.bloc-01:hover::after {
    width: 100%;
    height: 100%;
    border-bottom: 2px solid var(--color-primary);
    border-right: 2px solid var(--color-primary);
    border-radius: var(--border-radius-min);
}

.bloc-01 .icon {
    position: absolute;
    top: -55px;
    z-index: 2;
    width: 110px;
    height: 110px;
    padding: 20px;
    background: var(--color-primary);
    border-radius: 50%;
    border: 10px solid var(--color-gray);
    -webkit-box-shadow: 0px 0px 6px 5px rgba(0,0,0,0.05); 
    box-shadow: 0px 0px 6px 5px rgba(0,0,0,0.05);
}

.bloc-01 .txt {
    transition: .3s all ease;
    transform: translateY(0);
}

.bloc-01.active .txt,
.bloc-01:hover .txt {
    transform: translateY(-10px);
}

.bloc-01 .txt h4 {
    color: var(--color-primary);
}

.bloc-01 .more {
    display: flex;
    align-items: center;
    color: var(--color-primary);
    font-weight: var(--font-weight-base);
    line-height: 1;
    transition: .3s all ease;
    transform: translateY(0);
}

.bloc-01.active .more,
.bloc-01:hover .more {
    transform: translateY(15px);
}

.bloc-01 .more i {
    font-size: 26px;
    margin-right: 5px;
}

.content-02 {
    position: relative;
}

.content-02 .shape-top {
    transform: rotate(180deg);
    position: absolute;
    left: 0;
    top: -1px;
    width: 100%;
    height: 60px;
    z-index: 15;
    overflow: hidden;
}

.content-02 .shape-top svg {
    width: calc(100% + 1.3px);
    height: 60px;
    display: block;
    transform: rotate(180deg);
}

.content-02 .shape-top svg path {
    fill: #fff;
    transform-origin: center;
    transform: rotateY(0deg);
}

.content-02 .shape-bottom {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 60px;
    z-index: 15;
    overflow: hidden;
}

.content-02 .shape-bottom svg {
    width: calc(100% + 1.3px);
    height: 60px;
    display: block;
    transform: rotate(180deg);
}

.content-02 .shape-bottom svg path {
    fill: #fff;
    transform-origin: center;
    transform: rotateY(0deg);
}

.toogle-area .area {
    border-radius: var(--border-radius-min);
    overflow: hidden;
    border: 1px solid #ddd;
    box-shadow: 0 6px 35px 0 rgba(0, 0, 0, .08);
    transform: scale(1.0);
    transition: .4s all ease;
}

.toogle-area .area.active,
.toogle-area .area:hover {
    transform: scale(1.02);
}

.toogle-area .area .title {
    position: relative;
    padding: 1rem 1.5rem;
    cursor: pointer;
    background: var(--color-gray);
    transition: .4s all ease;
}

.toogle-area .area .title::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: var(--color-primary);
    transition: .2s all ease;
    opacity: 0;
}

.toogle-area .area.active .title::before,
.toogle-area .area .title:hover::before {
    height: 100%;
    opacity: 1;
}

.toogle-area .area .title:hover,
.toogle-area .area.active .title {
    color: var(--color-white);
}

.toogle-area .area .title span {
    font-size: 14px;
    margin-right: 10px;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: var(--font-weight-base);
    display: inline-block;
    line-height: 20px;
    width: 20px;
    text-align: center;
    border-radius: 50%;
    flex: none;
    z-index: 1;
    transition: .2s all ease;
}

.toogle-area .area.active .title span,
.toogle-area .area:hover .title span {
    background: var(--color-white);
    color: var(--color-primary);
}

.toogle-area .area .title h5 {
    z-index: 1;
    width: stretch;
}

.toogle-area .area .title i {
    z-index: 1;
    font-size: 20px;
    color: var(--color-primary);
    transition: .2s all ease;
    transform: rotate(0);
}

.toogle-area .area.active .title i {
    color: var(--color-white);
    transform: rotate(-180deg);
}

.toogle-area .area:hover .title i {
    color: var(--color-white);
}

.toogle-area .area .txt {
    background: var(--color-gray);
    padding: 1rem 1.5rem;
    border-radius: 0 0 var(--border-radius-base) var(--border-radius-base);
    border-top: 1px solid #ddd;
}

.bg-content {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bg-content .img {
    position: absolute;
    width: 100%;
    height: 100%;
}

.bg-content .img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(47, 102, 175, .3);
    z-index: 2;
}

.bg-content .img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.price-box {
    position: relative;
    height: calc(100% - 25px);
    display: block;
    box-shadow: 0 6px 35px 0 rgba(0, 0, 0, .04);
    border-radius: var(--border-radius-min);
    border: 2px solid #eee;
    margin-top: 25px;
    transform: scale(1.0);
    transition: .3s all ease;
}

.price-box .bg-fx {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
    border-radius: var(--border-radius-min);
    z-index: 0;
}

.price-box .bg-fx::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    border-radius: 50%;
    background: var(--color-secondary);
    transition: .3s all ease;
    opacity: 0;
    filter: blur(10px);
}

.price-box:hover .bg-fx::after,
.price-main-box.active .bg-fx::after {
    width: 1500px;
    height: 1500px;
    transform: translateX(-50%) translateY(-50%);
    opacity: 1;
    filter: blur(0);
    transition: .8s all ease;
}

.price-main-box.active,
.price-box:hover {
    color: var(--color-white);
    transform: scale(1.03);
}

.price-box .inner {
    position: relative;
    height: 100%;
    padding: 2rem;
    padding-top: calc(2rem + 25px);
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.price-box .fearured {
    position: absolute;
    width: calc(100% - 4rem);
    height: 50px;
    top: -25px;
    left: 2rem;
    background: var(--color-primary);
    color: var(--color-white);
    text-align: center;
    border-radius: var(--border-radius-min) var(--border-radius-min) 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-box .fearured span {
    line-height: 1;
}

.price-box .price {
    margin-bottom: 1rem;
}

.price-box .price strong {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-max);
    color: var(--color-primary);
}

.price-box ul li {
    display: flex;
    align-items: center;
    width: 100%;
    border-top: 1px solid #eee;
    line-height: 1;
    padding: 10px 0;
    text-align: left;
}

.price-box ul li i {
    margin-right: 5px;
    color: var(--color-primary);
}

.price-box .btn {
    width: fit-content;
}

/* Testimonial */

.content-04 {
    position: relative;
}

.content-04 .shape-top {
    transform: rotate(180deg);
    position: absolute;
    left: 0;
    top: -1px;
    width: 100%;
    height: 60px;
    z-index: 15;
    overflow: hidden;
}

.content-04 .shape-top svg {
    width: calc(100% + 1.3px);
    height: 60px;
    display: block;
    transform: rotate(180deg);
}

.content-04 .shape-top svg path {
    fill: #fff;
    transform-origin: center;
    transform: rotateY(0deg);
}

.testimonial-content {
    position: relative;
    overflow: hidden;
}

.testimonial-content .bg-testimonial {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(img/banner.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 0;
}

.testimonial-content .bg-testimonial::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(141, 0, 87, .5);
}

.testimonial-content .container {
    position: relative;
    z-index: 2;
}

.testimonial-content .testimonial-list {
    display: flex;
    transition: transform 0.6s ease-in-out;
    margin-right: calc(-1 * var(--gutter-x));
    margin-left: calc(-1 * var(--gutter-x));
}

.testimonial-content .testimonial {
    flex: 1 0 33.3333%;
    box-sizing: border-box;
    padding-right: calc(var(--gutter-x) * 1);
    padding-left: calc(var(--gutter-x) * 1);
    opacity: .6;
    transition: .2s all ease;
    filter: blur(3px);
    box-shadow: 0 6px 35px 0 rgba(0, 0, 0, .04);
}

.testimonial-content .testimonial.active {
    opacity: 1;
    filter: blur(0);
}

@media (max-width: 1024px) {
    .testimonial-content .testimonial {
        flex: 1 0 50%;
    }
}

@media (max-width: 700px) {
    .testimonial-content .testimonial {
        flex: 1 0 100%;
    }
}

.testimonial-content .testimonial .inner {
    position: relative;
    background: var(--color-white);
    border-radius: var(--border-radius-base);
    border: 1px solid #ddd;
    padding: 2rem;
    height: 100%;
}

.testimonial-content .testimonial .inner .icon {
    line-height: 0;
    box-shadow: 0 5px 22px 0 rgba(0, 0, 0, .1);
    padding: 15px;
    border-radius: 50%;
}

.testimonial-content .testimonial .inner .icon img {
    width: 30px;
    height: 30px;
    box-shadow: 0 5px 22px 0 rgba(0, 0, 0, .07);
}

.testimonial-wrapper button {
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    text-align: center;
    border: 0;
    padding: 0;
    cursor: pointer;
    width: 45px;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.testimonial-wrapper button:hover {
    background: var(--color-primary-hover);
}

.testimonial-wrapper button i {
    line-height: 45px;
    font-size: 32px;
}

.testimonial-wrapper button.testimonial-prev {
    left: -60px;
}

.testimonial-wrapper button.testimonial-prev i {
    margin-right: 3px;
}

.testimonial-wrapper button.testimonial-next {
    right: -60px;
}

.testimonial-wrapper button.testimonial-next i {
    margin-left: 3px;
}

/* Partners */

.partners-content {
    position: relative;
}

.partners-content::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(47, 102, 175, .45);
    z-index: 0;
}

.partners-content .container {
    position: relative;
    z-index: 1;
}

.partners-slider {
    display: flex;
}

.partners-slider img {
    width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: 0.3s ease;
}

.slick-track {
    display: flex;
}

.partners-slider .slick-slide {
    margin: 0 30px;
    opacity: 0;
    transition: .5s all ease;
}

.partners-slider .slick-slide.slick-active {
    transition: 1s all ease;
    opacity: 1;
}
/* Footer */

.prefooter-content {
    background: var(--color-secondary) url(img/bg-footer.png) no-repeat;
    background-position: top right;
    background-size: cover;
    color: var(--color-white);
}

.social-link a {
    display: block;
    background: var(--color-primary);
    border-radius: 50%;
    padding: 10px;
    margin-right: 10px;
    line-height: 0;
    cursor: pointer;
}

.social-link a:hover {
    background: var(--color-primary-hover);
}

.social-link a img {
    width: 20px;
    height: 20px;
}

.prefooter-content .icon {
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    text-align: center;
    margin-right: 10px;
}

.prefooter-content .icon i {
    width: 40px;
    line-height: 40px;
    font-size: 20px;
}

.newsletter-content .newsletter button {
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    text-align: center;
    border: 0;
    padding: 0;
    cursor: pointer;
    width: 45px;
    text-align: center;
    flex: none;
}

.newsletter-content .newsletter button:hover {
    background: var(--color-primary-hover);
}

.newsletter-content .newsletter button i {
    line-height: 45px;
    font-size: 27px;
    margin-left: 3px;
}

.newsletter-content label {
    font-weight: inherit;
}

footer {
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 14px;
    text-align: center;
}

footer a {
    color: var(--color-secondary);
}

a.top-scroll {
    position: fixed;
    right: -100px;
    bottom: 30px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background: var(--color-secondary);
    color: var(--color-white);
    text-decoration: none;
    font-size: 16px;
    border-radius: 50%;
    z-index: 99;
}

a.top-scroll:hover {
    background: var(--color-primary-hover);
}