html {
    scroll-behavior: smooth;
}

body{
    background: #fff;
    font-family: 'Mulish', sans-serif;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    color: #353535;
    font-family: 'Jost', sans-serif;
    margin-top: 0;
}

a {
    cursor: pointer;
    text-decoration: none!important;
}

/** Main title **/
.main-title{
    text-align: center;
    max-width: 700px;
    margin: 0 auto 65px;
}

.main-title h1{
    font-size: 35px;
    font-weight: 600;
    margin:0 0 20px;
    background: linear-gradient(90deg,#1688A2 12.33%,#1875CA 33.75%,#D231B1 60.02%,#DD2A4B 89.93%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}


/** BTN 2 **/
.btn-2 {
    color: #ffb606;
    font-size: 16px;
    display: inline-block;
    position: relative;
    z-index: 5;
    transition: .9s ease;
    font-weight: 600;
    padding: 0 47px 0 25px;
    line-height: 46px;
    border-radius: 3px;
}

.btn-2 span {
    font-size: 16px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.btn-2 .arrow {
    width: 13px;
    height: 2px;
    background: currentColor;
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 25px;
}

.btn-2 .arrow:after {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    content: "";
    position: absolute;
    top: -3px;
    right: 0;
    display: inline-block;
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.btn-2:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all .9s ease;
    z-index: -1;
}

.btn-2:hover {
    background: transparent!important;
}

.btn-2:hover:before {
    width: 0;
    opacity: 1;
    visibility: visible;
}

.btn-2:hover:after {
    width: 0;
    opacity: 1;
    visibility: visible;
}

.btn-defaults{
    background: #fff;
    border: 2px solid #fff;
}

.btn-defaults:hover {
    color: #fff;
    border: 2px solid #fff;
}

.btn-defaults:before {
    background: #fff;
}

/** BTN 3 **/
.btn-3 {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    border: none;
    outline: none !important;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 12px 25px 11px;
    border-radius: 0;
    transition: all 0.3s linear;
    z-index: 1;
    overflow: hidden;
    float: right;
    margin-top: 10px;
    background-image: linear-gradient(to bottom, #ff4a4a, #ff8a00);
}

.btn-3 i::before {
    position: relative;
    font-size: 18px;
    top: 3px;
    padding-left: 5px;
}

.btn-3:hover {
    color: #fff;
}

.btn-3:hover:after {
    transform: perspective(200px) scaleX(1.05) rotateX(
            0deg
    ) translateZ(0);
    transition: transform 0.4s linear, transform 0.4s linear;
}

.btn-3:after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #fff;
    content: "";
    border-radius: 7px;
    transform: perspective(200px) scaleX(0.1) rotateX(90deg) translateZ(-10px);
    transform-origin: bottom center;
    transition: transform 0.4s linear, transform 0.4s linear;
    z-index: -1;
    background-image: linear-gradient(to bottom, #ff8a00, #ff4a4a);
}

.logo{
    text-align: left;
}

/** Demo item **/
.demo-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
    background: #fff;
    margin:0 auto 60px;
    max-width: 480px;
}

.demo-item:hover .demo-item-content {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.demo-item h4{
    padding: 20px 25px!important;
    width: 100% !important;
    margin-bottom: 0;
    border-top: 1px solid #0b0b0b1f;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    text-align: left;
}

.demo-item h4 i {
    float: right;
}

.demo-item .demo-item-content {
    position: absolute;
    text-align: center;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    transition: .5s;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    background: rgb(33 9 90 / 72%);
}

.demo-item:hover .demo-item-inner {
    top: 50%;
}

.demo-item .demo-item-inner {
    border: none;
    position: absolute;
    top: -100px;
    left: 30px;
    right: 30px;
    z-index: 9;
    transition: .5s;
    text-align: center;
    transform: translateY(-50%);
}

.demo-item .icon i{
    width: 70px!important;
    height: 70px!important;
    text-align: center;
    font-size: 25px;
    padding: 21px 20px 11px;
    line-height: normal;
    border-radius: 3%;
    background: #fff;
    color: #fff;
    background-image: linear-gradient(to bottom, #ff4a4a, #ff8a00);

}

.demo-item .icon i:hover{
    background-image: linear-gradient(to bottom, #ff8a00, #ff4a4a);
}

.demo-item:hover .line h4{
    background: linear-gradient(4deg,#ff5043 12.33%,#ff4e45 33.75%,#ff8704 60.02%,#ff8506 89.93%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.demo-item:hover .thumb-photo img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.demo-item .thumb-photo img {
    display: block;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    width: 100%;
}

.demo-item .thumb-photo {
    overflow: hidden;
    position: relative;
}

.demo-item .demo-item-inner h3 {
    margin: 0;
    text-transform: capitalize;
    color: #454545;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
}

.demo-item .demo-item-inner p {
    color: #454545;
    line-height: 1;
    margin: 5px 0 0;
}

/** OVERVIEW BGI **/
.Home-pages-section{
    padding: 130px 15px 70px;
}

.Home-pages-section .container{
     max-width: 1625px;
}

/** Banner start **/
.banner {
    background: rgba(0, 0, 0, 0.04) url(../img/img-2.jpg) top left repeat;
    background-size: cover;
    height: 800px;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

.banner:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(89deg,#1e279d 12.33%,#183fcb 33.75%,#1e09c9 60.02%,#0c19b1 89.93%);
    opacity: 0.8;
}

.banner .container {
    max-width: 1625px;
}

.banner .breadcrumb-area {
    text-align: center;
    width: 100%;
    position: absolute;
    top: 40%;
    right: 0;
    left: 0;
}

.banner h1{
    font-size: 40px;
    margin-bottom: 30px;
    color: #fff;
}

.banner .editorial {
    display: block;
    width: 100%;
    height: 100px;
    max-height: 100px;
    margin: 0;
    z-index:5;
    bottom:0;
    position:absolute;
    left:0px;
    float:left;
    right: 0;
}

.banner .parallax1 > use {
    animation: move-forever1 10s linear infinite;
}

.banner .parallax2 > use {
    animation: move-forever2 8s linear infinite;
}

.banner .parallax3 > use {
    animation: move-forever3 6s linear infinite;
}

.banner .parallax4 > use {
    animation: move-forever4 4s linear infinite;
}

@keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }
    100% {
        transform: translate(-90px, 0%);
    }
}
@keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }
    100% {
        transform: translate(85px, 0%);
    }
}
@keyframes move-forever3 {
    0% {
        transform: translate(85px, 0%);
    }
    100% {
        transform: translate(-90px, 0%);
    }
}
@keyframes move-forever4 {
    0% {
        transform: translate(-90px, 0%);
    }
    100% {
        transform: translate(85px, 0%);
    }
}

/** Header start **/
.headar{
    letter-spacing: 1px;
    text-align: center;
    width: 100%;
    position: absolute;
    top: 10px;
    right: 0;
    left: 0;
}

.headar img{
    height: 50px;
    margin-top: 5px;
}

/** Demo hero menu start **/
.demo-hero-menu{
    margin-bottom: 25px;
}

.demo-hero-menu ul {
    padding: 0;
    margin: 0;
}

.demo-hero-menu ul li {
    display: inline-block;
    margin-right: 5px;
    position: relative;
    opacity: 0.9;
    color: #fff;
    font-size: 17px;
}

.demo-hero-menu ul li:last-child {
    margin-right: 0;
}

/** Inner pages section area start **/
.inner-pages-section {
    padding: 130px  20px 80px;
    background: #f8f7fa;
}

.inner-pages-section .demo-item {
    margin: 0 5px 30px;
}

:root {
    --grid-column-gap: 20px;
}

.inner-pages-section .carouselPre{
    grid-auto-flow: column;
    display: grid;
    grid-auto-columns: calc((100% - 3 * var(--grid-column-gap))/ 4);
    grid-column-gap: var(--grid-column-gap);
    scroll-snap-type: x mandatory;
    overflow-x: scroll;
    overflow-y: hidden;
    list-style: none;
    scroll-behavior: smooth;
    margin-bottom: 0;
    padding: 0;
}

.inner-pages-section #title{
    margin: 10px 10px 10px 0;
    font-size: 34px;
    font-weight: 600;
}

.inner-pages-section .itemsC{
    position: relative;
}

.inner-pages-section .scrolly{
    position: relative;
    overflow: hidden;
}

.inner-pages-section #left,#right{
    color: #fff;
    outline: none;
    border: transparent;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    position: absolute;
    top: 50%;
    transform: translate(0,-60%);
    cursor: pointer;
    z-index: 2;
    background-image: linear-gradient(to bottom, #ff4a4a, #ff8a00);
}

.inner-pages-section #left{
    left: 0;
}

.inner-pages-section #right{
    right: 0;
}

@media only screen and (max-width: 992px) {
    .inner-pages-section .carouselPre {
        grid-auto-columns: calc((100% - 2 * var(--grid-column-gap))/ 3);
    }
}

@media only screen and (max-width: 768px) {
    .inner-pages-section .carouselPre {
        grid-auto-columns: calc((100% - 1 * var(--grid-column-gap))/ 2);
    }
}

@media only screen and (max-width: 600px) {
    .inner-pages-section .carouselPre {
        grid-auto-columns: 100%;
    }
}

::-webkit-scrollbar {
    width: 15px;
    height: 15px;
    border-left: #ededed solid 1px;
    background-color: #fcfcfc;
    border-top: #ededed solid 1px;
}

::-webkit-scrollbar-thumb:hover{
    cursor: pointer;
    background: #c7c7c7;
    width: 15px;
    background-clip: content-box;
    border: 4px solid transparent;
    border-radius: 10px;
}

::-webkit-scrollbar-button {
    display: none;
}

::-webkit-scrollbar-thumb {
    background: #dbdbdb;
    background-clip: content-box;
    border: 4px solid transparent;
    border-radius: 10px;
}

/** Our newslatters area start **/
.our-newslatters {
    text-align: center;
    padding: 50px 0;
    background: #f8f7fa;
}

.our-newslatters h3 {
    margin:0 0 15px;
    font-size: 25px;
    font-weight: 500;
    background: linear-gradient(90deg,#1688A2 12.33%,#1875CA 33.75%,#D231B1 60.02%,#DD2A4B 89.93%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.our-newslatters .form-info {
    max-width: 650px;
    margin: 0 auto;
    box-shadow: 0 0 15px rgb(135 135 135 / 9%);
}

.our-newslatters .form-inline {
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 30px 60px 0 rgb(0 29 35 / 7%);
    padding: 10px;
}

.our-newslatters .form-inline .form-control {
    width: 69%;
    height: 55px;
    padding: 10px 15px 10px 18px;
    border-radius: 5px;
    font-size: 18px;
    outline: 0;
    border: 1px solid #fff;
    background: #fff;
}

.our-newslatters .form-inline .btn {
    width: 31%;
    height: 55px;
    line-height: 50px;
    padding: 0 15px;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    background-image: linear-gradient(to bottom, #ff4a4a, #ff8a00);
    color: #fff;
}

.our-newslatters .form-inline .btn:hover{
    background-image: linear-gradient(to bottom, #ff8a00, #ff4a4a);
}

.our-newslatters .form-inline .btn:hover{

}

.our-newslatters .form-control:focus {
    box-shadow: none;
}

.our-newslatters .btn.focus, .btn:focus {
    box-shadow: none;
}

/** Footer area start **/
.footer{
    background: #202040;
    padding: 100px 0;
    text-align: center;
}

.footer .logo2 img{
    text-align: center!important;
    margin-bottom: 20px;
    height: 50px;
}

.footer.footer p {
    color: #bababa;
    margin-bottom: 30px;
    text-align: center;
    font-size: 18px;
}

footer.footer p a {
    color: #bababa;
}

.footer.footer .social-list-2 ul{
    padding: 0;
    margin: 0;
}

.footer.footer .social-list-2 li {
    display: inline-block;
    font-size: 16px;
    text-align: center;
}

.footer.footer .social-list-2 li a {
    margin: 0 2px;
    color: #000;
    width: 45px;
    height: 45px;
    line-height: 45px;
    display: inline-block;
    border-radius: 0;
    background: #fff;
    background-image: linear-gradient(to bottom, #ff4a4a, #ff8a00);
    color: #fff;
}

.footer.footer .social-list-2 li a:hover{
    background-image: linear-gradient(to bottom, #ff8a00, #ff4a4a);
}

@media (max-width: 1200px) {
    .demo-item {
        margin-right: 0;
        margin-left: 0;
    }

    .banner {
        height: 700px;
    }
}

@media (max-width: 992px) {
    .Home-pages-section{
        padding: 105px 0 60px;
    }

    .demo-item {
        margin-bottom: 45px;
    }

    .main-title h1 {
        font-size: 31px;
    }

    .inner-pages-section {
        padding: 105px 20px 55px;
    }

    .banner {
        height: 600px;
    }

    .banner h1 {
        font-size: 35px;
        margin-bottom: 20px;
    }

    .demo-hero-menu {
        margin-bottom: 25px;
    }

    .footer{
        padding: 70px 0;
    }

    .banner {
        text-align: center;
        padding: 100px 0;
    }

    .main-title {
        margin: 0 auto 52.5px;
    }

    .tab-box .nav-pills {
        margin: 0 auto 52.5px;
    }

    .nav-pills .nav-link {
        padding: 6px 20px;
        font-size: 14px;
    }

    .demo-item h4 {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .Home-pages-section{
        padding: 80px 0 50px;
    }

    .demo-item h4 {
        font-size: 15px;
    }

    .our-newslatters .form-inline .form-control {
        width: 64%;
    }

    .our-newslatters .form-inline .btn {
        width: 36%;
    }

    .banner .logo img{
        height: 45px;
        margin-top: 10px;
    }

    .btn-3 {
        font-size: 15px;
        font-weight: 500;
        text-transform: capitalize;
        padding: 11px 18px 11px;
    }

    .btn-2 {
        line-height: 41px;
    }

    .main-title {
        margin: 0 auto 40px;
    }

    .tab-box .nav-pills {
        margin: 0 auto 40px;
    }

    .demo-item {
        margin: 0 auto 30px;
    }

    .main-title h1 {
        font-size: 27px;
    }

    .inner-pages-section {
        padding: 80px 10px 30px;
    }

    .banner h1 {
        font-size: 28px;
    }

    .demo-hero-menu ul li {
        font-size: 16px;
    }

    .banner .breadcrumb-area {
        top: 32%;
    }
}
