*,
 ::after,
 ::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /*transition: all 1.5s cubic-bezier(0.35, 1, 0.45, 1) 0s,transform 1.5s cubic-bezier(0.35, 1, 0.45, 1) 0s;
    -webkit-transition: all 1.5s cubic-bezier(0.35, 1, 0.45, 1) 0s,transform 1.5s cubic-bezier(0.35, 1, 0.45, 1) 0s;*/
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.clearfix:after,
.clearfix:before {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}


/*----------------------------------------- animation - start --*/

@keyframes smoothScroll {
    0% {
        transform: translateY(-40px);
    }
    100% {
        transform: translateY(0px);
    }
}

@-webkit-keyframes smoothScroll {
    0% {
        transform: translateY(-40px);
    }
    100% {
        transform: translateY(0px);
    }
}

.smoothScroll {
    -webkit-animation: move 8s infinite;
    animation: move 8s infinite;
}

@-webkit-keyframes bounce-down {
    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-10px);
    }
    60% {
        -webkit-transform: translateY(-5px);
    }
}

@-moz-keyframes bounce-down {
    0%,
    20%,
    50%,
    80%,
    100% {
        -moz-transform: translateY(0);
    }
    40% {
        -moz-transform: translateY(-10px);
    }
    60% {
        -moz-transform: translateY(-5px);
    }
}

@-o-keyframes bounce-down {
    0%,
    20%,
    50%,
    80%,
    100% {
        -o-transform: translateY(0);
    }
    40% {
        -o-transform: translateY(-10px);
    }
    60% {
        -o-transform: translateY(-5px);
    }
}

@keyframes bounce-down {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.bounce-down {
    animation-name: bounce-down;
    animation: bounce-down 2s infinite;
    -webkit-animation: bounce-down 2s infinite;
    -moz-animation: bounce-down 2s infinite;
    -o-animation: bounce-down 2s infinite;
    animation-duration: 2s;
    animation-delay: 0.8s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}


/*----------------------------------------- animation - end --*/

html,
body {
    height: 100%;
}

body {
    position: relative;
    color: #2d2d2d;
    font-family: 'Cera Pro';
    font-size: 16px;
    font-weight: normal;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

a,
a:hover,
a:focus,
button,
button:hover,
button:focus,
input,
input:focus {
    color: inherit;
    box-shadow: none;
    outline: 0;
    text-decoration: none;
}

a,
a:visited {
    -webkit-transition: color .15s linear;
    transition: color .15s linear;
    text-decoration: none;
    outline: 0;
}

a:hover {
    color: #1bb0d3;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #2d2d2d;
    font-weight: normal;
    font-style: normal;
    margin: 0;
    padding: 0;
}

p {
    color: #2d2d2d;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 24px;
    margin: 0 0 15px;
    padding: 0;
}

p:last-child {
    margin: 0;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
div {
    box-shadow: none;
    outline: 0;
}

input,
input:focus,
.form-control:focus,
.btn.focus,
.btn:focus {
    outline: none;
    box-shadow: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.row-eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.object-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

b {
    font-weight: bold;
}

.bg-transparent {
    background-color: transparent !important;
}

.bg-white {
    background-color: #fff !important;
}

.pl-10 {
    padding-left: 10px;
}

.pl-20 {
    padding-left: 20px;
}

.pl-30 {
    padding-left: 30px;
}

.pl-40 {
    padding-left: 40px;
}

.pl-50 {
    padding-left: 50px;
}

.pl-60 {
    padding-left: 60px;
}

.pr-10 {
    padding-right: 10px;
}

.pr-20 {
    padding-right: 20px;
}

.pr-30 {
    padding-right: 30px;
}

.pr-40 {
    padding-right: 40px;
}

.pr-50 {
    padding-right: 50px;
}

.pr-60 {
    padding-right: 60px;
}

.home aside#secondary {
    display: none;
}


/*----------------------------------------- button - start --*/

.btn-blue {
    display: inline-block;
    color: #ffffff;
    background-color: #45d3ff !important;
    font-size: 20px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 60px;
    letter-spacing: 0.040em;
    margin: 0;
    padding: 0 25px;
    border: none !important;
    border-radius: 0;
    text-decoration: none;
    text-transform: uppercase;
    outline: 0;
    box-shadow: none !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-blue,
.btn-blue::after {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.btn-blue::before,
.btn-blue::after {
    background: #fff;
    content: '';
    position: absolute;
    z-index: -1;
}

.btn-blue:hover {
    color: #45d3ff;
}

.btn-blue::after {
    height: 0;
    left: 50%;
    top: 50%;
    width: 0;
}

.btn-blue:hover:after {
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}

.btn-white {
    display: inline-block;
    color: #45d3ff;
    background-color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 60px;
    letter-spacing: 0.040em;
    margin: 0;
    padding: 0 25px;
    border: none;
    border-radius: 0;
    text-decoration: none;
    text-transform: uppercase;
    outline: 0;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-white,
.btn-white::after {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.btn-white::before,
.btn-white::after {
    background: #45d3ff;
    content: '';
    position: absolute;
    z-index: -1;
}

.btn-white:hover {
    color: #ffffff;
}

.btn-white::after {
    height: 0;
    left: 50%;
    top: 50%;
    width: 0;
}

.btn-white:hover:after {
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}

.btn-transperant {
    display: inherit;
    color: #45d3ff;
    background-color: transparent;
    font-size: 20px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 60px;
    letter-spacing: 0.040em;
    margin: 0;
    padding: 0 25px;
    border: none;
    border-radius: 0;
    text-decoration: none;
    text-transform: uppercase;
    outline: 0;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-transperant,
.btn-transperant::after {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.btn-transperant::before,
.btn-transperant::after {
    background: #45d3ff;
    content: '';
    position: absolute;
    z-index: -1;
}

.btn-transperant:hover {
    color: #ffffff;
}

.btn-transperant::after {
    height: 0;
    left: 50%;
    top: 50%;
    width: 0;
}

.btn-transperant:hover:after {
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}


/*----------------------------------------- button - end --*/


/*------------------------------ header - start ---------------------------*/

    header {
        position: relative;
        width: 100%;
        z-index: 99;
        background-color: #fff;
    }

    header.fixed-top,
    .home header.fixed-top {
        position: fixed;
        animation: smoothScroll 1s forwards;
        backdrop-filter: saturate(180%) blur(20px);
        background-color: rgba(255, 255, 255, 0.72);
        -webkit-box-shadow: 0 5px 40px -20px rgba(0, 0, 0, 0.2);
        box-shadow: 0 5px 40px -20px rgba(0, 0, 0, 0.2);
    }

    header .navbar {
        padding: 30px 0;
    }

    header.fixed-top .navbar {
        padding: 15px 0;
    }

    header .navbar .navbar-brand {
        padding: 0;
        margin: 0;
        font-size: 70px;
        font-weight: 400;
        font-style: normal;
        font-stretch: normal;
        line-height: 64px;
        position: relative;
        color: #141414;
    }

    header.fixed-top .navbar .navbar-brand {
        margin: 0;
        padding: 0;
    }

    header.fixed-top .navbar .navbar-brand img {
        max-width: 70%;
        display: block;
        margin: auto;
    }

    header.fixed-top .navbar .cart-ico img {
        max-width: 70%;
    }

    nav.navbar .navbar-toggler {
        width: 32px;
        padding: 0;
        font-size: 1.25rem;
        line-height: normal;
        border: none;
        border-radius: 0;
        height: auto;
        outline: none;
        box-shadow: none;
        background-color: transparent;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-flow: column;
        -ms-flex-flow: column;
        flex-flow: column;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: flex-start;
        -moz-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        position: relative;
        z-index: 992;
        position: relative;
        transition: all 500ms cubic-bezier(.19, 1, .22, 1);
        -webkit-transition: all 500ms cubic-bezier(.19, 1, .22, 1);
    }

    nav.navbar .navbar-toggler span.icon-bar {
        border: none;
        background-color: #000;
        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.44);
        width: 32px;
        height: 2px;
        line-height: normal;
        margin-bottom: 6px;
        display: block;
        transition: all 500ms cubic-bezier(.19, 1, .22, 1);
        -webkit-transition: all 500ms cubic-bezier(.19, 1, .22, 1);
    }

    nav.navbar .navbar-toggler span.icon-bar:first-child {
        width: 24px;
        margin-left: 8px;
    }

    nav.navbar .navbar-toggler span.icon-bar:last-child {
        margin-bottom: 0;
        width: 24px;
        margin-left: 8px;
    }

    /*nav.navbar .navbar-toggler:hover span.icon-bar:first-child {
        margin-left: 0;
    }

    nav.navbar .navbar-toggler:hover span.icon-bar:last-child {
        margin-left: 0;
    }*/

    nav.navbar .navbar-toggler[aria-expanded="true"] span.icon-bar:nth-child(1) {
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        margin-top: 0px;
        width: 32px;
    }

    nav.navbar .navbar-toggler[aria-expanded="true"] span.icon-bar:nth-child(3) {
        transform: rotate(135deg);
        -webkit-transform: rotate(135deg);
        position: relative;
        width: 32px;
        top: -7px;
    }

    nav.navbar .navbar-toggler[aria-expanded="true"] span.icon-bar:nth-child(2) {
        display: none;
    }

    header.header nav.navbar .navbar-collapse {
        display: flex;
        flex-flow: column;
        position: fixed;
        margin: 0;
        padding: 130px 0 0;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        background-color: rgba(255, 255, 255, 1);
        justify-content: flex-start;
        opacity: 0;
        visibility: hidden;
        transform: scale(0.9);
        z-index: 991;
        /*transition: all 1.5s cubic-bezier(0.35, 1, 0.45, 1) 0s,transform 1.5s cubic-bezier(0.35, 1, 0.45, 1) 0s;
            -webkit-transition: all 1.5s cubic-bezier(0.35, 1, 0.45, 1) 0s,transform 1.5s cubic-bezier(0.35, 1, 0.45, 1) 0s;*/
    }

    header.header nav.navbar button[aria-expanded="true"]~.navbar-collapse {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
        /*transition: all 1.5s cubic-bezier(0.35, 1, 0.45, 1) 0s,transform 1.5s cubic-bezier(0.35, 1, 0.45, 1) 0s;
            -webkit-transition: all 1.5s cubic-bezier(0.35, 1, 0.45, 1) 0s,transform 1.5s cubic-bezier(0.35, 1, 0.45, 1) 0s;*/
    }

    header.header nav.navbar .navbar-nav {
        display: block;
        position: relative;
        margin: 0;
        padding: 0;
        width: 100%;
        max-width: 50%;
        text-align: center;
        list-style: none;
    }

    header.header nav.navbar .navbar-nav li {
        margin: 0 0 15px;
        padding: 0;
    }

    header.header nav.navbar .navbar-nav li a {
        color: #2d2d2d;
        font-size: 28px;
        font-weight: normal;
        font-style: normal;
        font-stretch: normal;
        line-height: 28px;
        margin: 0;
        padding: 0 0 10px;
        text-decoration: none;
        text-transform: uppercase;
        display: inline-block;
        position: relative;
    }

    header.header nav.navbar .navbar-nav li a:after {
        content: "";
        position: absolute;
        top: inherit;
        bottom: 0;
        left: initial;
        right: 0;
        width: 0;
        height: 3px;
        background-color: #2d2d2d;
        transition-duration: 0.6s;
        transform-origin: top left;
        z-index: -1;
    }

    header.header nav.navbar .navbar-nav li a:hover {
        color: #808080;
    }

    header.header nav.navbar .navbar-nav li a:hover:after {
        width: 100%;
        left: 0;
    }

    header.header nav.navbar .navbar-nav li:last-child {
        margin-bottom: 0;
    }

    header .navbar .cart-ico {
        position: relative;
        margin: 0;
        padding: 0;
    }
    header .navbar .cart-ico span {
        position: absolute;
        top: 0;
        right: -10px;
        background-color: #45d3ff;
        border: none;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        display: flex;
        flex-flow: column;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 12px;
        font-weight: bold;
        font-style: normal;
        line-height: 12px;
        letter-spacing: 0.080em;
        margin: 0;
        padding: 0;
    }
    header.fixed-top .navbar .cart-ico span {
        right: 0;
    }


/*------------------------------ header - end -----------------------------*/


/*------------------------------ banner -start ----------------------------*/

    section.home-banner,
    section#banner-on-load {
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        display: flex;
        flex-flow: column;
        align-items: flex-end;
        justify-content: flex-end;
        position: relative;
        margin: 0;
        padding: 0;
        width: 100%;
        height: 1044px;
        z-index: 1;
        transition: all 1.5s cubic-bezier(0.35, 1, 0.45, 1) 0s, transform 1.5s cubic-bezier(0.35, 1, 0.45, 1) 0s;
        -webkit-transition: all 1.5s cubic-bezier(0.35, 1, 0.45, 1) 0s, transform 1.5s cubic-bezier(0.35, 1, 0.45, 1) 0s;
    }

    section.home-banner:before {
        content: "";
        position: absolute;
        top: inherit;
        bottom: 0;
        left: 0;
        height: 325px;
        width: 100%;
        background: rgb(0, 0, 0);
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0) 100%);
        z-index: -1;
    }

    .banner-title {
        position: relative;
        width: 100%;
        text-align: left;
        margin: 0;
        padding: 0;
        display: block;
    }

    .banner-title h5 {
        font-size: 26px;
        font-weight: 500;
        font-style: normal;
        font-stretch: normal;
        line-height: 37px;
        letter-spacing: 0.14em;
        margin: 0 auto;
        padding: 0;
        text-transform: uppercase;
        display: block;
        width: 100%;
        color: #fff;
    }

    .banner-title h2 {
        font-size: 62px;
        font-weight: bold;
        font-style: normal;
        font-stretch: normal;
        line-height: 79px;
        letter-spacing: 0.08em;
        margin: 0 auto;
        padding: 0;
        text-transform: uppercase;
        display: block;
        width: 100%;
        color: #fff;
    }

    .banner-title ul.banner-btn-grp {
        display: flex;
        flex-flow: wrap;
        margin: 30px 0 0;
        padding: 0;
        width: 100%;
        list-style: none;
        align-items: center;
    }

    .banner-title ul.banner-btn-grp li {
        margin: 0 15px 0 0;
    }

    .banner-title ul.banner-btn-grp li img.p-ic {
        position: relative;
        transform: translateY(-3px);
        margin: 0 0 0 10px;
    }

    .banner-title ul.banner-btn-grp li img.p-ic-h {
        display: none;
    }

    .banner-title ul.banner-btn-grp li a:hover img.p-ic-h {
        display: inline-block;
        position: relative;
        transform: translateY(-3px);
        margin: 0 0 0 10px;
    }

    .banner-title ul.banner-btn-grp li a:hover img.p-ic {
        display: none;
    }

    section.home-banner ul.banner-round-list {
        display: flex;
        flex-flow: wrap;
        align-items: center;
        justify-content: center;
        position: relative;
        margin: 80px 0 60px 0;
        padding: 0;
        width: 100%;
        list-style: none;
    }

    section.home-banner ul.banner-round-list li {
        display: block;
        position: relative;
        margin: 0 15px;
        padding: 0;
        width: 100%;
        max-width: 364px;
        height: auto;
    }

    section.home-banner ul.banner-round-list li a {
        display: block;
        position: relative;
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
    }

    section.home-banner ul.banner-round-list li a .count {
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
        position: relative;
        margin: 0 auto -40px;
        padding: 0;
        width: 57px;
        height: 56px;
        background-color: #5ddcfe;
        border: none;
        border-radius: 50%;
        text-align: center;
        align-content: center;
        box-shadow: 0 11px 31px rgba(0, 0, 0, 0.59);
        transition: all 500ms ease;
        -webkit-transition: all 500ms ease;
        z-index: 2;
    }

    section.home-banner ul.banner-round-list li a .count p {
        line-height: normal;
        color: #fff;
        font-size: 28px;
        font-weight: bold;
        font-style: normal;
        font-stretch: normal;
        letter-spacing: 0.080em;
        display: block;
        margin: 0 auto;
        padding: 0;
        width: auto;
    }

    section.home-banner ul.banner-round-list li a .img {
        display: block;
        position: relative;
        margin: 0;
        padding: 0;
        width: 100%;
        height: 363px;
        border: 20px solid #fff;
        border-radius: 50%;
        overflow: hidden;
        z-index: 1;
        transition: all 500ms ease;
        -webkit-transition: all 500ms ease;
    }

    section.home-banner ul.banner-round-list li a .img:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 40%;
        background: rgb(0, 0, 0);
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0) 100%);
        transition: all 500ms ease;
        -webkit-transition: all 500ms ease;
        z-index: 1;
    }

    section.home-banner ul.banner-round-list li a .img .overlay {
        position: absolute;
        top: inherit;
        bottom: 0;
        left: 50%;
        width: 100%;
        text-align: center;
        margin: 0 auto 30px;
        padding: 0;
        max-width: 50%;
        transform: translateX(-50%);
        height: 100%;
        display: flex;
        flex-flow: column;
        justify-content: flex-end;
        z-index: 2;
        transition: all 500ms ease;
        -webkit-transition: all 500ms ease;
    }

    section.home-banner ul.banner-round-list li a .img .overlay h4 {
        color: #ffffff;
        font-size: 28px;
        font-weight: bold;
        font-style: normal;
        font-stretch: normal;
        line-height: 28px;
        margin: 0;
        padding: 0;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 0.080em;
        transition: all 500ms ease;
        -webkit-transition: all 500ms ease;
        height: 74px;
        display: flex;
        flex-flow: column;
        justify-content: center;
    }

    section.home-banner ul.banner-round-list li a:hover .img {
        border-color: #5ddcfe;
        transition: all 500ms ease;
        -webkit-transition: all 500ms ease;
    }

    section.home-banner ul.banner-round-list li a:hover .count {
        background-color: #ffffff;
        border-color: #ffffff;
        transition: all 500ms ease;
        -webkit-transition: all 500ms ease;
    }

    section.home-banner ul.banner-round-list li a:hover .count p {
        color: #5ddcfe;
    }

    section.home-banner ul.banner-round-list li a .img img {
        transition: transform 500ms ease;
        -webkit-transition: transform 500ms ease;
    }

    section.home-banner ul.banner-round-list li a:hover .img img {
        transform: scale(1.1);
        transition: transform 500ms ease;
        -webkit-transition: transform 500ms ease;
    }

    section.home-banner ul.banner-round-list li a:hover .img:after {
        height: 100%;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0) 100%);
        transition: all 500ms ease;
        -webkit-transition: all 500ms ease;
    }

    section.home-banner ul.banner-round-list li a:hover .img .overlay {
        margin-bottom: 50px;
        transition: all 500ms ease;
        -webkit-transition: all 500ms ease;
    }

    section.home-banner ul.banner-link-list {
        display: flex;
        flex-flow: wrap;
        align-items: center;
        justify-content: space-between;
        position: relative;
        margin: 0 0 40px;
        padding: 0;
        width: 100%;
        list-style: none;
    }

    section.home-banner ul.banner-link-list li {
        margin: 0 15px;
        padding: 0;
    }

    section.home-banner ul.banner-link-list li a, section.home-banner ul.banner-link-list li p {
        color: #ffffff;
        font-size: 18px;
        font-weight: bold;
        font-style: normal;
        font-stretch: normal;
        line-height: normal;
        margin: 0;
        padding: 0;
        letter-spacing: 0.160em;
        transition: all 500ms ease;
        -webkit-transition: all 500ms ease;
        position: relative;
        display: inline-block;
        text-transform: uppercase;
    }

    section.home-banner ul.banner-link-list li a:hover {
        color: #5ddcfe;
        transform: translateY(-5px);
    }

/*------------------------------ banner -end ------------------------------*/


/*------------------------------ right-content - start -------------------------------*/

    .intro-wrapper {
        background-position: center;
        background-size: contain;
        background-repeat: repeat;
        margin: 0;
        padding: 0;
        width: 100%;
        position: relative;
        display: block;
        z-index: 1;
    }

    /*.intro-wrapper*/section.pro-intro-left:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 250px;
        background-color: #fff;
        z-index: -1;
    }

    section.pro-intro-right,
    section.pro-intro-left {
        display: block;
        position: relative;
        margin: 0;
        padding: 0;
        width: 100%;
        background-position: center;
        background-size: contain;
        background-repeat: repeat;
        z-index: 1;
    }
    section.pro-intro-right.pb-lg {
        padding-bottom: 80px;
    }
    section.pro-intro-right .rounded-img {
        display: block;
        position: relative;
        overflow: hidden;
        clip-path: circle(50% at 65% 35%);
        margin: 0 0 0 auto;
        padding: 0;
        width: 100%;
        height: 948px;
        transform: translate(0);
    }

    section.pro-intro-right .rounded-img img.img-fluid {
        object-position: center right;
    }

    section.pro-intro-right .pro-label {
        position: absolute;
        top: 0;
        left: 0;
        width: 128px;
        transform: translate(0%, 100%);
        z-index: 1;
    }

    section.pro-intro-right .pro-label h5 {
        color: #fff;
        font-size: 24px;
        font-weight: bold;
        font-style: normal;
        font-stretch: normal;
        line-height: 24px;
        margin: 0;
        padding: 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.040em;
        position: absolute;
        top: 50%;
        left: 0;
        text-align: center;
        transform: translateY(-50%) rotate(-8deg);
    }

    section.pro-intro-right .details {
        position: relative;
        padding: 0;
        width: 100%;
        max-width: 80%;
        margin: 0 auto;
    }

    section.pro-intro-right .details .content h4 {
        display: block;
        position: relative;
        margin: 0 0 20px;
        padding: 0;
        color: #58483e;
        font-size: 52px;
        font-weight: bold;
        font-style: normal;
        font-stretch: normal;
        line-height: 70px;
        letter-spacing: 0.040em;
        text-transform: uppercase;
    }

    section.pro-intro-right .details .content p {
        display: block;
        position: relative;
        margin: 0 0 30px;
        padding: 0;
        color: #58483e;
        font-size: 22px;
        font-weight: bold;
        font-style: normal;
        font-stretch: normal;
        line-height: 42px;
        letter-spacing: 0.020em;
    }

    section.pro-intro-right .details .content ul.btn-grp {
        display: flex;
        flex-flow: wrap;
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
        align-items: center;
    }
    section.pro-intro-right .details .content ul.btn-grp li {
        margin: 0 15px 0 0;
    }

    section.pro-intro-right .clp {
        clip-path: none;
        width: auto;
        height: auto;
    }
    section.pro-intro-right .pro-label.tp {
        transform: translate(-100%, -50%);
        left: 50%;
    }
    section.pro-intro-right .pro-label.tp h5 {
        color: #fff;
        font-size: 32px;
        font-weight: bold;
        font-style: normal;
        font-stretch: normal;
        line-height: 34px;
        margin: 0;
        padding: 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.040em;
        position: absolute;
        top: 50%;
        left: 50%;
        text-align: center;
        transform: translate(-50%, -50%) rotate(0deg);
    }
    section.pro-intro-right .pro-label.tp h5 sup {
        top: -0.2em;
    }

/*------------------------------ right-content - end -------------------------------*/

/*------------------------------ left-content - start ------------------------------*/
    
    section.pro-intro-left {
        margin: -140px 0 0;
    }

    section.pro-intro-left .rounded-img {
        display: block;
        position: relative;
        overflow: hidden;
        clip-path: circle(50% at 30% 50%);
        margin: 0 auto 0 0;
        padding: 0;
        width: 100%;
        height: 1132px;
        transform: translate(0);
    }

    section.pro-intro-left .rounded-img img.img-fluid {
        object-position: center right;
    }

    section.pro-intro-left .pro-label {
        position: absolute;
        top: 0;
        right: 50%;
        width: 148px;
        transform: translate(260%, 220%);
        z-index: 1;
    }

    section.pro-intro-left .pro-label h5 {
        color: #fff;
        font-size: 24px;
        font-weight: bold;
        font-style: normal;
        font-stretch: normal;
        line-height: 24px;
        margin: 0;
        padding: 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.040em;
        position: absolute;
        top: 50%;
        left: 0;
        text-align: center;
        transform: translateY(-50%) rotate(-8deg);
    }

    section.pro-intro-left .details {
        position: relative;
        padding: 0;
        width: 100%;
        max-width: 80%;
        margin: 0 auto;
    }

    section.pro-intro-left .details .content h4 {
        display: block;
        position: relative;
        margin: 0 0 20px;
        padding: 0;
        color: #58483e;
        font-size: 52px;
        font-weight: bold;
        font-style: normal;
        font-stretch: normal;
        line-height: 70px;
        letter-spacing: 0.040em;
        text-transform: uppercase;
    }

    section.pro-intro-left .details .content p {
        display: block;
        position: relative;
        margin: 0 0 30px;
        padding: 0;
        color: #58483e;
        font-size: 22px;
        font-weight: bold;
        font-style: normal;
        font-stretch: normal;
        line-height: 42px;
        letter-spacing: 0.020em;
    }

    section.pro-intro-left .details .content ul.btn-grp {
        display: flex;
        flex-flow: wrap;
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
        align-items: center;
    }
    section.pro-intro-left .details .content ul.btn-grp li {
        margin: 0 15px 0 0;
    }

/*------------------------------ left-content - end --------------------------------*/

/*------------------------------ testimonial - start ------------------------------*/

section.testimonial {
    display: block;
    position: relative;
    margin: 0;
    padding: 60px 0;
    width: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: repeat;
    z-index: 1;
}
section.testimonial .pro-label {
    position: absolute;
    top: 0;
    right: 50%;
    width: 128px;
    height: 122px;
    transform: translate(250%, 150%);
    z-index: 1;
}
section.testimonial .rounded-img {
    display: block;
    position: relative;
    overflow: hidden;
    clip-path: circle(50% at 35% 50%);
    margin: 0 auto 0 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    height: 975px;
    transform: translate(0);
}

section.testimonial .pro-label ul {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    flex-flow: wrap;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    list-style: none;
    transform: translate(-50%, -50%);
    width: 100%;
}
section.testimonial .pro-label ul li {
    margin: 0 3px;
}
section.testimonial .pro-label ul li i.fa {
    color: #45d3ff;
    font-size: 20px;
    font-weight: normal;
    margin: 0;
    padding: 0;
    line-height: 20px;
}
section.testimonial .details {
    position: relative;
    padding: 0;
    width: 100%;
    max-width: 80%;
    margin: 0 auto 0 0;
}
section.testimonial .details .content p {
    display: block;
    position: relative;
    margin: 50px 0 0;
    padding: 0;
    color: #58483e;
    font-size: 24px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: 34px;
    letter-spacing: 0.01em;
}
section.testimonial .title {
    position: absolute;
    top: 190px;
    left: 0;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 80%;
    transform: translateX(0%);
}
section.testimonial .title h2 {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    color: #58483e;
    font-size: 48px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 66px;
    letter-spacing: 0.040em;
    text-transform: uppercase;
}
section.testimonial .title h2 img {
    margin: -10px 0 0;
}
section.testimonial .owl-nav {
    display: block;
    position: absolute;
    margin: 0 0 0 auto;
    padding: 0;
    width: 100%;
    max-width: 41.666667%;
    bottom: 20%;
    right: 0;
}
section.testimonial .owl-nav button.owl-prev {
    margin-right: 15px;
}
section.testimonial .owl-nav button.owl-next {
    margin-left: 15px;
}

/*------------------------------ testimonial - end ------------------------------*/

/*------------------------------ footer - start -------------------------------*/

    footer.footer {
        display: block;
        position: relative;
        margin: 0;
        padding: 80px 0 30px;
        width: 100%;
        background-color: #40cbf6;
    }

    footer.footer .copyright p {
        color: #ffffff;
        font-family: 'Cera Pro';
        font-size: 16px;
        font-weight: 300;
        font-style: normal;
        font-stretch: normal;
        line-height: normal;
        letter-spacing: 0.020em;
        margin: 0;
        padding: 0;
    }

    footer.footer .social-media {
        display: flex;
        flex-flow: wrap;
        justify-content: flex-start;
        align-items: center;
        margin: 0 0 20px;
        padding: 0;
        width: 100%;
        list-style: none;
    }

    footer.footer .social-media li {
        margin: 0 10px;
        padding: 0;
    }

    footer.footer .social-media li:last-child {
        margin-right: 0;
    }
    footer.footer .social-media li:first-child {
        margin-left: 0;
    }

    footer.footer .social-media li a {
        color: #ffffff;
        font-size: 24px;
        font-weight: normal;
        font-style: normal;
        font-stretch: normal;
        line-height: 24px;
        margin: 0;
        padding: 0;
        transition: all 1.5s cubic-bezier(0.35, 1, 0.45, 1) 0s, transform 1.5s cubic-bezier(0.35, 1, 0.45, 1) 0s;
        -webkit-transition: all 1.5s cubic-bezier(0.35, 1, 0.45, 1) 0s, transform 1.5s cubic-bezier(0.35, 1, 0.45, 1) 0s;
    }

    footer.footer .social-media li a:hover {
        color: #58483e;
    }

    footer.footer .footer-link {
        display: flex;
        flex-flow: wrap;
        justify-content: flex-end;
        align-items: center;
        margin: 0;
        padding: 0;
        width: 100%;
        list-style: none;
    }

    footer.footer .footer-link li {
        margin: 0 10px;
        padding: 0;
        position: relative;
        line-height: 20px;
    }
    footer.footer .footer-link li:after {
        content: "";
        position: absolute;
        top: 0;
        left: inherit;
        right: -10px;
        width: 1px;
        height: 100%;
        background-color: #ffffff;
    }

    footer.footer .footer-link li:last-child {
        margin-right: 0;
    }
    footer.footer .footer-link li:last-child:after {
        display: none;
    }

    footer.footer .footer-link li a {
        color: #ffffff;
        font-size: 16px;
        font-weight: 300;
        font-style: normal;
        font-stretch: normal;
        line-height: 20px;
        letter-spacing: 0.020em;
        margin: 0;
        padding: 0;
        transition: all 1.5s cubic-bezier(0.35, 1, 0.45, 1) 0s, transform 1.5s cubic-bezier(0.35, 1, 0.45, 1) 0s;
        -webkit-transition: all 1.5s cubic-bezier(0.35, 1, 0.45, 1) 0s, transform 1.5s cubic-bezier(0.35, 1, 0.45, 1) 0s;
    }

    footer.footer .footer-link li a:hover {
        color: #58483e;
    }

/*------------------------------ footer - end -------------------------------*/
.pum-container {
    padding: 0px!important;
    border-radius: 0!important;
    border: 0!important;
    box-shadow: none!important;
    background-color: transparent!important;
}