
@import url('https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i|Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i|Sacramento&amp;subset=cyrillic,cyrillic-ext,greek,greek-ext,latin-ext,vietnamese');

.status {
    width: 50px;
    height: 30px;
    position: fixed;
    left: 50%;
    top: 50%;
    margin: -25px 0 0 -15px;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 15px;
}
.grid-3 img {
    width  :100%;
}
.spinner {
    margin: 0px auto;
    width: 50px;
    height: 30px;
    text-align: center;
    font-size: 10px;
}

.spinner > div {
    background-color: #fff;
    height: 100%;
    width: 6px;
    display: inline-block;
    -webkit-animation: stretchdelay 1.2s infinite ease-in-out;
    animation: stretchdelay 1.2s infinite ease-in-out;
}

/* preloader animation */

.spinner .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.spinner .rect3 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

.spinner .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.spinner .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

@-webkit-keyframes stretchdelay {

    0%,
    40%,
    100% {
        -webkit-transform: scaleY(0.4);
    }

    20% {
        -webkit-transform: scaleY(1);
    }
}

@keyframes stretchdelay {

    0%,
    40%,
    100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }

    20% {
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
    }
}

/******************************

03. Common styles

******************************/

* {
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Nunito', sans-serif;
}

.page-wrapper {
    position: relative;
    overflow: hidden;
}

section {
    background-color: rgba(244, 244, 249, 1);
}

/******************************

04. Typography

******************************/

h1,
h2,
h4,
h5,
h6 {
    position: relative;
    font-family: 'Nunito', sans-serif;
    padding: 0;
    margin: 0;
}

h3 {
    position: relative;
    font-weight: 100;
    font-size: 18px;
    font-family: 'Nunito', sans-serif;
    padding: 0;
    margin: 0;
}

h1 {
    font-size: 62px;
}

h2 {
    font-size: 46px;
}

p,
li {
    font-size: 15px;
    font-family: 'Nunito', sans-serif;
    padding: 0;
    margin: 0;
}

hr {
    background-color: rgba(250, 250, 255, .1);
}

.fs-11 {
    font-size: 11px;
}

.bold {
    font-weight: 600;
}

.dark {
    color: hsla(263.72, 15.83%, 31.06%, 1);
}

.light {
    font-weight: lighter;
}

.opas {
    opacity: .6;
}

/******************************

05. Spaces

******************************/

.p-40-0-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}
.p-90-0-60 {
    padding-top: 90px;
    padding-bottom: 60px;
}

.p-90-0-90 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.p-90-0-75 {
    padding-top: 90px;
    padding-bottom: 75px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mr-15 {
    margin-right: 15px;
}

/*****************************************

06. Background dots

*****************************************/

.dots {
    position: absolute;
    z-index: 0;
    background-size: 15px 15px;
    background-image:
        radial-gradient(hsla(263.72, 15.83%, 31.06%, .04) 15%, transparent 0),
        radial-gradient(hsla(263.72, 15.83%, 31.06%, .04) 15%, transparent 0);
}

.d-1 {
    bottom: 0;
    right: 0;
    height: 100%;
    width: 50%;
}

.d-2 {
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
}

.d-3 {
    bottom: 0;
    left: 0;
    height: 50%;
    width: 100%;
}

/******************************

07. Scroll Animations. Opacity: 0; for the correct display of animations

******************************/

.user-ava img,
.review-text,
.swiper-prev-2,
.swiper-next-2,
.service-icon,
.services h3,
.descr,
.st .stats-icon,
.st h3,
.st p {
    opacity: 0;
    position: relative;
    z-index: 2;
}

/*****************************************

08. Buttons

*****************************************/

.button {
    padding: 10px 40px;
    z-index: 10;
    border-radius: 40px;
    font-size: 11px;
    letter-spacing: 2px;
    padding: 15px 40px;
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
    height: 50px;
    border: solid 2px #F7F7FC;
    color: #F7F7FC;
    -webkit-box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
    box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
    -webkit-transition: .3s;
    transition: .3s;
}

.button:hover {
    color: #F7F7FC;
    text-decoration: none;
}

.button i {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
    opacity: 0;
    width: 0;
    font-size: 14px;
    -webkit-transition: .5s;
    transition: .5s;
}

.button:hover.button i {
    text-align: center;
    opacity: 1;
    width: 5px;
    margin-left: 15px;
}

.button-1 {
    padding: 17px 40px;
    border-radius: 40px;
    display: inline-block;
    height: 50px;
    border: none;
}

.button-2,
.button-2:hover {
    border: solid 2px hsla(263.72, 15.83%, 31.06%, 1);
    color: hsla(263.72, 15.83%, 31.06%, 1);
}

.current-projects{
    background: #302E55;
    padding : 45px 20px;
}
.current-projects *{
    color : #fff;
    text-align: center;
}
/******************************

09. Navigation

******************************/

.navbar {
    padding-top: 30px;
    position: fixed;
    z-index: 999;
    padding-bottom: 0;
    /*background-color: #FCFCFF;
    box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);*/
    height: 70px;
    width: 100%;
    -webkit-transition: .5s;
    transition: .5s;
}

/* header logo */


.navbar-brand:hover {
    color: #F7F7FC;
}

.navbar-brand img {
    margin: 7px 30px 10px 15px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

/* navbar link */

.nav-link {
    display: inline-block;
    color: #F7F7FC;
    height: 70px;
    padding: 28px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.navbar ul li .active,
.nav-link:hover {
    color: #F7F7FC;
    background-color: rgba(240, 240, 240, .1);
}

.navbar-expand-lg .navbar-nav .nav-item{
    position: static;
}
.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 20px;
    padding-left: 20px;
    position: relative;
}

/* navbar contact button */

.contact-us {
    cursor: pointer;
    -webkit-transform: translateY(-13px) scale(1);
    transform: translateY(-13px) scale(1);
    padding: 9px 0 1px;
    margin: 28px 0 0 28px;
    font-size: 16px;
    text-align: center;
    height: 40px;
    width: 40px;
    color: #F7F7FC;
    border-radius: 50%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
    box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
}

.contact-us:hover {
    -webkit-transform: translateY(-13px) scale(1.07);
    transform: translateY(-13px) scale(1.07);
    color: #F7F7FC;
    background-color: #FF2802;
}

/* navbar after scroll */

.bg-scroll {
    padding-top: 0;
    background-color: rgba(250, 250, 255, 1);
    -webkit-box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
    box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
}

.bg-scroll .navbar-brand,
.bg-scroll .nav-link {
    color: hsla(263.72, 15.83%, 31.06%, 1);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.bg-scroll ul li .active,
.bg-scroll .nav-link:hover {
    color: #EC5208;
    background-color: rgba(25, 45, 55, .02);
}

.bg-scroll .contact-us {
    color: #F7F7FC;
}

/* dropdown */

.dropdown-menu {
    background-color: rgba(250, 250, 255, 1);
    -webkit-box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
    box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
    border-radius: 0;
    border: 0;
    top: 68px;
    left: 0;
    padding: 0;
}
.dropdown .dropdown-menu {
    display: none;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    min-width : 100%;
    max-width : 100%;
    padding : 20px 30px;
    border-top : 2px solid #E9520E;
}
.dropdown .dropdown-menu > div{
    width: 33%!important;
    display: inline-block;
    padding : 0 20px;
    float: left;
}
.dropdown:hover .dropdown-menu {
    max-height: 800px;
    opacity: 1;
    display: block;
}
.abs-down{
    position: absolute;
    text-align: center;
    bottom : -6px;
    left : 45%;
    font-size : 20px;
    color : #E9520E;
    display: none;
}
.nav-item.spl:hover .abs-down{
    display: block;
}
.dropdown-menu .dropdown-item {
    color: rgba(25, 45, 55, 1);
    padding: 13px 10px;
    letter-spacing: 2px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom : 1px dashed #ddd;
    background: transparent!important;
}
.dropdown-menu .dropdown-item:hover {
    color: #EC5208;
}
.dropdown-menu h6{
    padding : 10px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}  

/******************************

10. Burger button

******************************/

.navbar-toggler {
    right: 300px;
    height: 50px;
    width: 50px;
    position: relative;
    right: 0;
    top: 0;
    padding: 0;
}

.navbar-toggler:active,
.navbar-toggler:focus {
    outline: inherit;
}

.burger {
    position: absolute;
    background-color: rgba(25, 45, 55, 1);
    width: 30px;
    height: 4px;
    right: 10px;
    border-radius: 2px;
    margin-top: -3px;
    opacity: 1;
}

.burger::before {
    position: absolute;
    background-color: rgba(25, 45, 55, 1);
    width: 30px;
    height: 4px;
    top: 10px;
    border-radius: 2px;
    content: "";
    display: block;
}

.burger::after {
    position: absolute;
    background-color: rgba(25, 45, 55, 1);
    width: 30px;
    height: 4px;
    bottom: 10px;
    border-radius: 2px;
    content: "";
    display: block;
}

.burger::after,
.burger::before,
.burger {
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}

.burger-menu.menu-on .burger::after {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    bottom: 0px;
}

.burger-menu.menu-on .burger::before {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    top: 0px;
}

.burger-menu.menu-on .burger {
    background: transparent;
}

/*****************************************

11. Contact modal-new

***************************************/

.modal-new-content {
    background-color: rgba(244, 244, 249, 1);
}

.close-modal-new-button {
    padding: 15px 20px 0 0;
}

.modal-new-content,
.modal-new-dialog {
    border-radius: 5px;
    top: 50%;
    margin-top: -250px;
    -webkit-box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
    box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
    border: none;
}

.close:focus {
    outline: inherit;
}

.success img {
    width: 60px;
    margin-left: auto;
    margin-right: auto;
}

.n-active-popup .scs,
.n-active-popup .success img {
    display: none;
}

.active-popup .scs {
    display: block;
}

.active-popup .success img {
    display: block;
    margin-bottom: 60px;
}

.active-popup .strt,
.active-popup .form {
    display: none;
    height: 0;
    position: relative;
    overflow: hidden;
}

/* contact form */

.form {
    padding-bottom: 10px;
}

.form input,
.form textarea {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 15px;
    border: none;
    background-color: rgba(253, 253, 255, 1);
    -webkit-box-shadow: inset 0 1px 2px 0 rgba(0, 0, 0, .05);
    box-shadow: inset 0 1px 2px 0 rgba(0, 0, 0, .05);
}

.form input:focus,
.form textarea:focus {
    outline: inherit;
}

.form input {
    border-radius: 50px;
    height: 50px;
}

.form textarea {
    border-radius: 20px;
}

/* placeholders color */

::-webkit-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: hsla(263.72, 15.83%, 31.06%, 1);
    opacity: .5;
}

:-ms-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: hsla(263.72, 15.83%, 31.06%, 1);
    opacity: .5;
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: hsla(263.72, 15.83%, 31.06%, 1);
    opacity: .5;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: hsla(263.72, 15.83%, 31.06%, 1);
    opacity: .5;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: hsla(263.72, 15.83%, 31.06%, 1);
    opacity: .5;
}

/*--------------------------------------------------------------------------

II. SECTIONS ----------------------------------------------------

---------------------------------------------------------------------------*/

/*****************************************

01. Header

*****************************************/

header {
    background-size: cover;
    background-position: center;
}

header .overlay {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 70px;
    height: 100vh;
    width: 100vw;
}

header .container {
    -ms-flex-item-align: center;
    align-self: center;
}

.parallax-window {
    background-color: transparent;
}

/* scroll hint */

.hint {
    position: absolute;
    display: block;
    width: 100%;
    bottom: 0;
}

.scroll-hint {
    padding-top: 22px;
    position: absolute;
    bottom: 30px;
    border-radius: 50%;
    font-size: 20px;
    width: 60px;
    height: 60px;
    right: calc(50% - 30px);
    text-align: center;
    opacity: .7;
    color: #F7F7FC;
    -webkit-transition: .3s;
    transition: .3s;
}

.scroll-hint:hover {
    color: #F7F7FC;
    background-color: rgba(240, 240, 240, .1);
    opacity: 1;
}

/* scroll hint animation */

@-webkit-keyframes jump {
    0% {
        -webkit-transform: translateY(4px);
        transform: translateY(4px)
    }

    50% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px)
    }

    100% {
        -webkit-transform: translateY(4px);
        transform: translateY(4px)
    }
}

@keyframes jump {
    0% {
        -webkit-transform: translateY(4px);
        transform: translateY(4px)
    }

    50% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px)
    }

    100% {
        -webkit-transform: translateY(4px);
        transform: translateY(4px)
    }
}

.jump {
    -webkit-animation: jump 1s infinite;
    animation: jump 1s infinite;
}

/* header slider */

.swiper-prev-3,
.swiper-next-3 {
    height: 70px;
    width: 70px;
}

.swiper-prev-3 {
    outline: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
    box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
    cursor: pointer;
}

.swiper-next-3 {
    outline: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
    box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
    cursor: pointer;
    position: absolute!important;
    right: 0;
}

.swiper-prev-3 i,
.swiper-next-3 i {
    -ms-flex-item-align: center;
    align-self: center;
}

.swiper-nav-3 {
    position: absolute;
    right: 50%;
    margin-right: -70px;
    bottom: -120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header-nav {
    position: absolute;
    z-index: 1;
    right: 0;
    left : 0;
    top : 45%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header-nav div {
    background-color: transparent;
    position: relative;
    color: #fff;
    box-shadow: none;
    font-size : 20px;
}

/* header video */

video {
    position: absolute;
}

/*****************************************

02. About

*****************************************/

.info {
    position: relative;
}

/* infi list */

.about-list {
    padding: 0;
}

.about-list li {
    line-height: 50px;
    margin: 10px 0;
    list-style-type: none;
}

.about-list li * {
    display: inline-block;
}

/* list icon */

.about-list svg {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    height: 35px;
    width: 35px;
    margin-right: 15px;
}

.about-list img {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    height: 35px;
    width: 35px;
    margin-right: 15px;
}

/* info slider */

.about-img {
    background-size: cover;
    height: 420px;
    -webkit-box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
    box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
}

.swiper-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    left: -55px;
    top: calc(420px - 70px);
    z-index: 1;
}

.swiper-next {
    outline: inherit;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 70px;
    width: 70px;
    -webkit-box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
    box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
}

.swiper-next i {
    -ms-flex-item-align: center;
    align-self: center;
}

.swiper-prev {
    outline: inherit;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 70px;
    width: 70px;
    -webkit-box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
    box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
}

.swiper-prev i {
    -ms-flex-item-align: center;
    align-self: center;
}

/*****************************************

03. Skills

*****************************************/

.skills {
    position: relative;
}

.skillbar {
    font-family: 'Open Sans', 'sans-serif';
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    background-color: #F7F7FC;
    -webkit-box-shadow: inset 0 1px 2px 0 rgba(0, 0, 0, .05);
    box-shadow: inset 0 1px 2px 0 rgba(0, 0, 0, .05);
    height: 10px;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -webkit-transition: 0.4s linear;
    transition: 0.4s linear;
    -webkit-transition-property: width, background-color;
    transition-property: width, background-color;
}

.skillbar-bar {
    height: 10px;
    width: 0px;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
}

.skill-bar-percent {
    font-family: 'Nunito', sans-serif;
    position: absolute;
    right: 10px;
    top: -30px;
    font-size: 9px;
    color: #000;
}

/*****************************************

04. Services

*****************************************/

.services {
    -webkit-box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
    box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
}

.service-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(240, 240, 240, .1);
    height: 100px;
    width: 100px;
    margin-left: auto;
    margin-right: auto;
}

.service-icon img {
    -ms-flex-item-align: center;
    align-self: center;
    width: 50px;
}

/*****************************************

05. Portfolio

***************************************/

.portfolio {
    position: relative;
}

/* portfolio filter */

.filter-link {
    display: inline-block;
    color: #F7F7FC;
    background-color: transparent;
    color: rgba(25, 45, 55, 1);
    border: none;
    height: 70px;
    padding: 28px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.is-checked,
.filter-link:hover,
.filter-link:focus {
    background-color: rgba(140, 140, 180, .05);
    outline: inherit;
}

/* portfolio items */

.port-item {
    padding: 15px;
    float: left;
    width: 33.33333333333333333333%;
    min-height: 50px;
    z-index: 2;
}
.port-item img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
    box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
    transition : .4s ease-in-out;
}
.port-item a:hover img{
    -webkit-filter: grayscale(100%);
   -moz-filter: grayscale(100%);
   -ms-filter: grayscale(100%);
   filter: grayscale(100%);
   filter: gray; /* IE 6-9 */
}
.sm {
    height: 260px;
}

.lg {
    height: 520px;
}

/* portfolio items hover */

.description-frame {
    color: #F7F7FC;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 15px;
    text-align: center;
    opacity: 0;
    top: 50px;
    left: 30px;
    position: absolute;
    width: calc(100% - 60px);
    height: calc(100% - 60px);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.description-frame .description {
    -ms-flex-item-align: center;
    align-self: center;
}

.description-frame:hover {
    opacity: 1;
    top: 30px;
}

.plus {
    cursor: pointer;
    border-radius: 50%;
    line-height: 40px;
    margin-left: auto;
    margin-right: auto;
    height: 40px;
    width: 40px;
    font-size: 36px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
    box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
}

.plus:hover {
    -webkit-transform: scale(1.07);
    transform: scale(1.07);
}

.port-item-text {
    padding: 15px;
    position: absolute;
    bottom: 15px;
    width: calc(100% - 30px);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

/*****************************************

06. Stats

***************************************/

.stats {
    -webkit-box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
    box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
}

.stats-icon {
    padding-top: 27px;
    border-radius: 50%;
    background-color: rgba(240, 240, 240, .1);
    height: 100px;
    width: 100px;
    margin-left: auto;
    margin-right: auto;
}

.stats-icon img {
    width: 50px;
}

.numb {
    font-size: 42px;
    font-family: 'Roboto', sans-serif;
}

/*****************************************

07. Price

***************************************/

.pricing {
    position: relative;
}

.pricing-table {
    position: relative;
    z-index: 2;
    text-align: center;
    cursor: default;
    margin: 0 auto;
    width: 100%;
    padding: 30px;
    background-color: rgba(250, 250, 255, 1);
    border-radius: 5px;
    -webkit-box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
    box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
    -webkit-transition: .3s;
    transition: .3s;
}

.pricing-table .button-1 {
    background-color: #aaa;
}

.pricing-table:hover {
    -webkit-transform: translateY(-3px) scale(1.01);
    transform: translateY(-3px) scale(1.01);
}

.pricing-table ul {
    padding: 0;
}

.pricing-detail li {
    list-style-type: none;
    padding: 5px;
}

.price span {
    font-size: 36px;
}

.price-header {
    font-size: 28px;
}

.mute {
    opacity: .2;
}

/*****************************************

08. Testimonials

***************************************/

.testimonials {
    position: relative;
    overflow: hidden;
    -webkit-box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
    box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
}

.testimonials .container {
    position: relative;
}

/* client photo */

.user-ava {
    width: 90px;
    display: block;
    border-radius: 50%;
    margin-bottom: 30px;
}

.user-ava img {
    width: 100%;
    border-radius: 50%;
    -webkit-box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
    box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
}

/* testimonials slider */

.swiper-2 {
    width: 100%;
}

.swiper-prev-2,
.swiper-next-2 {
    height: 70px;
    width: 70px;
}

.swiper-prev-2 {
    outline: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
    box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
    cursor: pointer;
}

.swiper-next-2 {
    outline: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
    box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
    cursor: pointer;
}

.swiper-prev-2 i,
.swiper-next-2 i {
    -ms-flex-item-align: center;
    align-self: center;
}

.swiper-nav-2 {
    position: absolute;
    right: 15px;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

/*****************************************

09. Latest posts

***************************************/

.latest-posts {
    position: relative;
    overflow: hidden;
}

.blog-card img {
    /*height: 230px;*/
    border-radius: 5px 5px 0 0;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.blog-card {
    border-radius: 5px;
    background-color: rgba(250, 250, 255, 1);
    -webkit-box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
    box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
}

.blog-text {
    border-radius: 0 0 5px 5px;
    background-color: rgba(250, 250, 255, 1);
    padding: 30px;
}

/*****************************************

10. Footer

***************************************/

.footer {
    -webkit-box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
    box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
}
p.social a{
    display: inline-block;
    width: 45px;
    height: 45px;
    border-radius: 45px;
    text-align: center;
    line-height: 45px;
    background: rgba(0, 0, 0, .3);
    border : 1px solid #777;
    margin-top : 10px;
    font-size: 18px;
    color: #bbb;
}
p.social a:hover{
    background: #E9520E;
    border-color : #E9520E;
    color : #fff;
}
/* footer logo */

.footer-brand {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
    box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
    color: #F7F7FC;
    letter-spacing: 1px;
    width: 70px;
    height: 70px;
    padding: 0;
    line-height: 70px;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
}

.footer-brand:hover {
    text-decoration: none;
    color: #F7F7FC;
}

.footer-brand img {
    width: 40px;
    margin: 7px 30px 10px 15px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

/* footer lists */

.footer ul {
    padding: 0;
}

.footer ul li {
    list-style-type: none;
}

.footer ul li a {
    display: block;
    padding-bottom: 10px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #F7F7FC;
    opacity: .8;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.footer ul li a:hover {
    padding-left: 5px;
    text-decoration: none;
    opacity: 1;
}

/* footer subscribe form */

.button-sbscrb {
    cursor: pointer;
    height: 50px;
    color: #F7F7FC;
    padding: 10px 20px 10px 15px;
    border: none;
    border-radius: 0 30px 30px 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.button-sbscrb:hover {
    height: 50px;
    color: #F7F7FC;
    padding: 10px 25px 10px 20px;
}

.input-sbscrb {
    padding-left: 20px;
    height: 50px;
    border-radius: 30px 0 0 30px;
}

.input-group {
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
}

.input-group *,
.input-group *:focus {
    border: none;
    outline: inherit;
}

.form-control:focus {
    -webkit-box-shadow: 0 0 0 0.2rem transparent;
    box-shadow: 0 0 0 0.2rem transparent;
}

/* copiright */

.copy {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.copy a,
.copy a:hover {
    color: #F7F7FC;
}

/*--------------------------------------------------------------------------

III. MEDIA QUERIES ----------------------------------------------------

---------------------------------------------------------------------------*/

/*****************************************

01. Max-width 992px

***************************************/

@media (max-width: 992px) {
    .navbar {
        padding-top: 0;
        padding-bottom: 0;
        height: auto;
        background-color: #FCFCFF;
        -webkit-box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
        box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
        color: rgba(25, 45, 55, 1);
    }

    .nav-link:hover,
    .nav-link,
    .navbar-brand:hover,
    .navbar-brand,
    .navbar ul li .active,
    .nav-link:hover {
        color: hsla(263.72, 15.83%, 31.06%, 1);
    }

    .nav-link {
        height: 30px;
        padding-top: 15px;
        width: 100%;
        border-radius: 5px;
    }

    .navbar-nav {
        height: auto;
    }

    .dropdown .dropdown-menu {
        margin-top: 10px;
        padding-left: 15px;
        display: none;
        background-color: transparent;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .contact-us {
        margin: 30px 0 0 20px;
        color: #F7F7FC;
    }

    .dropdown-item {
        border-radius: 5px;
    }

    .navbar-collapse {
        padding: 30px 0;
    }

    .dropdown-menu .dropdown-item:hover {
        background-color: rgba(240, 240, 240, .1);

    }

    .info {
        padding-bottom: 0;
    }

    .info-slider {
        margin-bottom: 0;
    }

    .port-item {
        width: 50%;
    }

    .swiper-nav-2 {
        margin-top: 30px;
        position: relative;
        left: 0;
        margin-right: 0;
    }
}

/*****************************************

02. Max-width 832px

***************************************/

@media (max-width: 832px) {
    .swiper-nav {
        left: 15px;
    }
}

/*****************************************

03. Max-width 768px

***************************************/

@media (max-width: 768px) {
    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 38px;
    }

    .filters button {
        display: block;
    }

    .mr-15 {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .hb .button {
        width: 250px;
        margin-right: auto;
        margin-left: auto;
        min-width: 250px;
        display: block;
    }

    .about-img {
        height: 60vw;
    }

    .swiper-nav {
        left: 15px;
        top: calc(60vw - 70px);
    }

    .port-item {
        width: 100%;
    }
}

    /* MAIN */

.color {
    color: hsla(57.26, 97.78%, 40.53%, 1)
}

.footer-brand,
.button-sbscrb,
.skillbar-bar,
.plus,
.button-1,
.contact-us{
    background: linear-gradient(135deg, hsla(57.26, 97.78%, 40.53%, 1) 0%, hsla(57.26, 97.78%, 40.53%, 0) 70%),
    linear-gradient(25deg, hsla(46.91, 91.19%, 40.45%, 1) 10%, hsla(46.91, 91.19%, 40.45%, 0) 80%),
    linear-gradient(315deg, hsla(47.36, 95.94%, 42.9%, 1) 15%, hsla(47.36, 95.94%, 42.9%, 0) 80%),
    linear-gradient(245deg, rgba(211, 77, 16 , 1) 100%, hsla(22.84, 91.13%, 45.97%, 0) 70%);
}

    /* CUSTOM CSS 1 */


.img-responsive{
    width: 100%;
}
.swiper-prev,
.swiper-prev-2,
.swiper-prev-3,
.footer,
.preloader {
   background: #000;
   color : #fff;
}

.modal-new,
header .overlay{
    background:
        linear-gradient(70deg, hsla(238.87, 23.46%, 15.1%, .3) 0%, hsla(238.87, 23.46%, 15.1%, 0) 70%),
        linear-gradient(58deg, hsla(237.37, 19.84%, 39.11%, .3) 10%, hsla(237.37, 19.84%, 39.11%, 0) 80%),
        linear-gradient(315deg, hsla(241.13, 30.62%, 22.3%, .3) 15%, hsla(241.13, 30.62%, 22.3%, 0) 80%),
        linear-gradient(245deg, hsla(243.4, 44.93%, 20.65%, .3) 100%, hsla(243.4, 44.93%, 20.65%, 0) 70%);
}

.testimonials .overlay,
.stats .overlay,
.description-frame,
.services .overlay{
    background:
        linear-gradient(70deg, hsla(238.87, 23.46%, 15.1%, .9) 0%, hsla(238.87, 23.46%, 15.1%, 0) 70%),
        linear-gradient(58deg, hsla(237.37, 19.84%, 39.11%, .9) 10%, hsla(237.37, 19.84%, 39.11%, 0) 80%),
        linear-gradient(315deg, hsla(241.13, 30.62%, 22.3%, .9) 15%, hsla(241.13, 30.62%, 22.3%, 0) 80%),
        linear-gradient(245deg, hsla(243.4, 44.93%, 20.65%, .9) 100%, hsla(243.4, 44.93%, 20.65%, 0) 70%);
}

.description-frame{
    background: rgba(0, 0, 0, .5);
}
    
    /** FOOTER **/
    body .tz-footer {
        background-image: #333;
        position: relative;
    }
    .tz-footer .overlay{
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,1);
    }
    .tz-footer{
        position: relative;
        display: block;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        padding: 0 30px;
        padding-bottom: 30px!important;
        color: #ddd;
    }
    .tz-footer a{
        color: #F48508;
    }
    .copyright-footer {
        background: #222;
        color: #bbb;
    }
    .copyright-footer p,
    .copyright-footer a {
        color: #bbb;
        font-size: 13px;
    }
    .copyright{
        padding : 10px 10px;
    }
    .tz-footer .tz-footer-one, .tz-footer .tz-footer-two {
        padding: 50px 0;
        padding-bottom: 0;
    }
    .tz-footer .widget_tz_title {
        text-align: center;
        border: 1px solid rgba(141, 149, 154, 0.4);
        padding: 25px 40px;
        margin-bottom: 10px;
    }
    .tz-footer .widget_tz_title .tzwidget-social i {
        font-size: 24px;
        line-height: 1.5em;
        color: #27ae60;
    }
    .tz-footer .widget_tz_title h3 {
        font-size: 14px;
        font-weight: 600;
        color: #d8ecf0;
        margin-top: 8px;
        margin-bottom: 15px;
    }
    .tz-footer .widget_tz_title p {
        color: #aaa;
        font-weight: 400;
        padding-bottom: 9px;
        line-height: 1.7em;
        display: -webkit-box;
        -webkit-box-orient : vertical;
        -webkit-line-clamp : 2;
        text-overflow : ellipsis;
        overflow: hidden;
        font-size: 13px;
    }
    .tz-footer .widget_tzcontact_info .tzwidget-contact p {
    font-weight: 300;
    color: #ddd;
    padding: 0;
    line-height: 1.7em;
}
.tz-footer .widget_tzcontact_info .tzwidget-contact .tzwidget-social {
    position: relative;
    display: block;
}


.tz-footer .widget_tzcontact_info .tzwidget-contact .tzwidget-social a {
    background: transparent;
    position: relative;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
    opacity: 1;
    overflow: hidden;
    float: left;
    -webkit-transition: all 0.35s cubic-bezier(0.31, -0.105, 0.43, 1.59) 0s;
    -moz-transition: all 0.35s cubic-bezier(0.31, -0.105, 0.43, 1.59) 0s;
    -ms-transition: all 0.35s cubic-bezier(0.31, -0.105, 0.43, 1.59) 0s;
    -o-transition: all 0.35s cubic-bezier(0.31, -0.105, 0.43, 1.59) 0s;
    transition: all 0.35s cubic-bezier(0.31, -0.105, 0.43, 1.59) 0s;
}
.ig-new .iga{
  padding: 0;
  background: #5DC350;
}
.ig-new .form-control{
  border-radius: 4px 0 0 4px!important;
}
.ig-new .iga button{
  padding: 10px;
  border: 0;
  color: #eee;
  background: transparent;
}

.tz-footer .widget_tzcontact_info .tzwidget-contact .tzwidget-social a i {
    width: 40px;
    height: 40px;
    font-size: 18px;
    color: #5DC350;
}

.tz-footer .widget .title-widget {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: #d8ecf0;
    line-height: 1.3em;
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 20px;
    padding-top: 5px;
}

.widget h3.title-widget {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #404040;
    line-height: 1.3em;
    letter-spacing: 0.1px;
    position: relative;
    padding-bottom: 20px;
    margin: 0 0 10px;
}
.tz-footer .widget .title-widget:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 0;
    border-bottom: 1px solid #57bb57;
}
.tz-footer .tz-copyright {
    color: #eee;
    font-weight: 400;
    padding: 50px 0 0;
    padding-bottom: 10px!important;
    text-align: left;
}
.tz-copyright h6{
  color: #eee!important;
}
.tz-footer .widget ul li, .tz-footer .widget ol li {
    list-style: none;
}
.tz-footer .widget.widget_nav_menu ul {
    padding: 0;
}
.tz-footer .widget.widget_nav_menu a {
    color: #aaa;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    display: block;
    padding: 0 20px 21px;
    position: relative;
    line-height: 1em;
}
.tz-footer .widget.widget_newsletterwidget form {
    position: relative;
    display: block;
    margin-top: 25px;
}
.tnp-widget .tnp-field {
    margin-bottom: 10px;
    border: 0;
    padding: 0;
}
.tz-footer .widget.widget_newsletterwidget input {
    background: #fff none repeat scroll 0 0;
    box-shadow: none;
    color: #8d959a;
    font-size: 11px;
    height: 40px;
    line-height: 40px;
    padding: 10px 50px 10px 15px;
    width: 100%;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.tnp-widget .tnp-field {
    margin-bottom: 10px;
    border: 0;
    padding: 0;
}
.tz-footer .widget.widget_newsletterwidget .tnp-widget form .tnp-submit {
    background: transparent;
    height: 40px;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    text-indent: -9999px;
    z-index: 111;
    border: none;
}
.tz-footer .tz-footer-two .tz-related-content {
    padding-left: 70px;
    position: relative;
    display: block;
    background: transparent;
    box-shadow: none;
    margin-top: 22px;
}
.tz-footer .tz-footer-two .tz-related-content .tz-caption {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 70px;
    display: inline-block;
    overflow: hidden;
}
.tz-caption img {
    position: relative;
    max-width: none;
}
.tz-footer .tz-footer-two .tz-related-content .tz-related-des {
    padding: 0 15px;
}
.tz-footer .tz-footer-two .tz-related-content .tz-related-des .tz-status {
    color: #f18038;
    font-size: 12px;
    font-weight: 600;
    line-height: 1em;
    margin-bottom: 0;
}
.tz-footer .tz-footer-two .tz-related-content .tz-related-des h5 {
    color: #aaa;
    font-size: 13px;
    font-weight: 600;
    line-height: 17px;
    padding-bottom: 0px;
    margin-top: 0;
    margin-bottom: 0;
}
.tz-related-content .tz-related-des .tz-related-price {
    color: #57bb57;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}
.tz-related-content .tz-related-des .tz-related-price span {
    color: #8d959a;
    font-weight: 400;
    font-size: 10px;
}
.tz-footer .widget.widget_nav_menu a:before {
    content: "\f101";
    position: absolute;
    left: 0;
    top: 1px;
    font-family: 'FontAwesome';
    font-size: 14px;
    line-height: 13px;
    color: #57bb57;
}

    /* DEMO */
    /* -------------------------------------------

    Color switcher

--------------------------------------------- */

.open-cyc {
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: block;
    position: absolute;
    right: -50px;
    font-size: 18px;
    top:0;
    background-color: rgba(38, 50, 56, 1);
    text-align: center;
    padding-top: 12px;
    border-radius: 0 5px 5px 0;
}

.open-cyc i{
    -webkit-animation: rotate 3s linear infinite;
    animation: rotate 3s linear infinite;
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.switch-style-button .fa {
    -webkit-animation: rotate 2s linear 0s infinite normal;
    animation: rotate 2s linear 0s infinite normal;
}

.themes {
    position: fixed;
    z-index: 99999999999999999999999999999999999999999999999999;
    top: 18vh;
    left: 0;
    text-align: left;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.cyc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px 15px 0;
    width: 125px;
    background-color: rgba(38, 50, 56, 1);
    border-radius: 0 0 4px 0;
    margin-left: -125px;
    -webkit-box-shadow: 0 0 35px rgba(0, 0, 0, .1);
    box-shadow: 0 0 35px rgba(0, 0, 0, .1);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}


.cyc.active{
    margin-left: 0;
    text-align: center;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.cyc p{
    font-size: 12px;
    color: #eee;
    margin-bottom: 15px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.box,
.box-2{
    height: 40px;
    width: 40px;
    margin: 15px auto;
    background-color: #000;
    border-radius: 4px;
    cursor: pointer;
    -webkit-box-shadow: 0 0 35px rgba(0, 0, 0, .1);
    box-shadow: 0 0 35px rgba(0, 0, 0, .1);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.box-2:hover 
.box:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

#green {
    background: linear-gradient(45deg, hsla(127, 80%, 32%, 1) 0%, hsla(127, 80%, 32%, 0) 70%),
    linear-gradient(135deg, hsla(174, 96%, 53%, 1) 10%, hsla(174, 96%, 53%, 0) 80%),
    linear-gradient(225deg, hsla(122, 93%, 41%, 1) 10%, hsla(122, 93%, 41%, 0) 80%),
    linear-gradient(315deg, hsla(165, 92%, 39%, 1) 100%, hsla(165, 92%, 39%, 0) 70%);
}

#red {
    background: linear-gradient(45deg, hsla(359, 97%, 45%, 1) 0%, hsla(359, 97%, 45%, 0) 70%),
    linear-gradient(135deg, hsla(359, 91%, 66%, 1) 10%, hsla(359, 91%, 66%, 0) 80%),
    linear-gradient(225deg, hsla(359, 91%, 41%, 1) 10%, hsla(359, 91%, 41%, 0) 80%),
    linear-gradient(315deg, hsla(359, 97%, 44%, 1) 100%, hsla(359, 97%, 44%, 0) 70%);
}

#blue {
    background: linear-gradient(45deg, hsla(224, 95%, 45%, 1) 0%, hsla(224, 95%, 45%, 0) 70%),
    linear-gradient(135deg, hsla(263, 86%, 84%, 1) 10%, hsla(263, 86%, 84%, 0) 80%),
    linear-gradient(225deg, hsla(213, 100%, 42%, 1) 10%, hsla(213, 100%, 42%, 0) 80%),
    linear-gradient(315deg, hsla(272, 92%, 42%, 1) 100%, hsla(272, 92%, 42%, 0) 70%);
}

#violet {
    background: linear-gradient(45deg, hsla(272, 99%, 44%, 1) 0%, hsla(272, 99%, 44%, 0) 70%),
    linear-gradient(135deg, hsla(317, 93%, 64%, 1) 10%, hsla(317, 93%, 64%, 0) 80%),
    linear-gradient(225deg, hsla(265, 98%, 41%, 1) 10%, hsla(265, 98%, 41%, 0) 80%),
    linear-gradient(315deg, hsla(276, 98%, 48%, 1) 100%, hsla(276, 98%, 48%, 0) 70%);
}

#yellow {
    background:
    linear-gradient(135deg, hsla(64.53, 95.22%, 43.01%, 1) 0%, hsla(64.53, 95.22%, 43.01%, 0) 70%),
    linear-gradient(25deg, hsla(57.74, 93.56%, 44.91%, 1) 10%, hsla(57.74, 93.56%, 44.91%, 0) 80%),
    linear-gradient(315deg, hsla(78.11, 94.94%, 40.42%, 1) 15%, hsla(78.11, 94.94%, 40.42%, 0) 80%),
    linear-gradient(245deg, hsla(60, 100%, 40.54%, 1) 100%, hsla(60, 100%, 40.54%, 0) 70%);
}

#orange {
    background: linear-gradient(135deg, hsla(57.26, 97.78%, 40.53%, 1) 0%, hsla(57.26, 97.78%, 40.53%, 0) 70%),
    linear-gradient(25deg, hsla(46.91, 91.19%, 40.45%, 1) 10%, hsla(46.91, 91.19%, 40.45%, 0) 80%),
    linear-gradient(315deg, hsla(47.36, 95.94%, 42.9%, 1) 15%, hsla(47.36, 95.94%, 42.9%, 0) 80%),
    linear-gradient(245deg, hsla(22.84, 91.13%, 45.97%, 1) 100%, hsla(22.84, 91.13%, 45.97%, 0) 70%);
}

#dark {
    background:
        linear-gradient(135deg, hsla(263.72, 15.83%, 31.06%, 1) 0%, hsla(263.72, 15.83%, 31.06%, 0) 70%),
        linear-gradient(25deg, hsla(217.7, 17.03%, 14.21%, 1) 10%, hsla(217.7, 17.03%, 14.21%, 0) 80%),
        linear-gradient(245deg, hsla(285.27, 17.03%, 27.99%, 1) 100%, hsla(285.27, 17.03%, 27.99%, 0) 70%);
}




#tire {
    background:
        linear-gradient(135deg, hsla(263.72, 15.83%, 31.06%, 1) 0%, hsla(263.72, 15.83%, 31.06%, 0) 70%),
        linear-gradient(25deg, hsla(217.7, 17.03%, 14.21%, 1) 10%, hsla(217.7, 17.03%, 14.21%, 0) 80%),
        linear-gradient(245deg, hsla(285.27, 17.03%, 27.99%, 1) 100%, hsla(285.27, 17.03%, 27.99%, 0) 70%);
}


#night {
    background:
        linear-gradient(70deg, hsla(238.87, 23.46%, 15.1%, .6) 0%, hsla(238.87, 23.46%, 15.1%, 0) 70%),
        linear-gradient(58deg, hsla(237.37, 19.84%, 39.11%, .6) 10%, hsla(237.37, 19.84%, 39.11%, 0) 80%),
        linear-gradient(315deg, hsla(241.13, 30.62%, 22.3%, .6) 15%, hsla(241.13, 30.62%, 22.3%, 0) 80%),
        linear-gradient(245deg, hsla(243.4, 44.93%, 20.65%, .6) 100%, hsla(243.4, 44.93%, 20.65%, 0) 70%);
}

#black {
 background:
    linear-gradient(135deg, hsla(82.78, 0%, 17.03%, 1) 0%, hsla(82.78, 0%, 17.03%, 0) 70%),
    linear-gradient(116deg, hsla(0, 0%, 13%, 1) 19%, hsla(0, 0%, 13%, 0) 92%),
    linear-gradient(315deg, hsla(145.95, 0%, 0%, 1) 15%, hsla(145.95, 0%, 0%, 0) 80%),
    linear-gradient(142deg, hsla(71.86, 0%, 0%, 1) 9%, hsla(71.86, 0%, 0%, 0) 77%);
}

#berry {
       background:
    linear-gradient(135deg, hsla(357.76, 97%, 43.23%, 1) 0%, hsla(357.76, 97%, 43.23%, 0) 70%),
    linear-gradient(25deg, hsla(24.52, 91.25%, 49.51%, 1) 10%, hsla(24.52, 91.25%, 49.51%, 0) 80%),
    linear-gradient(315deg, hsla(340.23, 90.83%, 49.39%, 1) 15%, hsla(340.23, 90.83%, 49.39%, 0) 80%),
    linear-gradient(245deg, hsla(306.51, 90.62%, 40.41%, 1) 100%, hsla(306.51, 90.62%, 40.41%, 0) 70%);
}

#sky {
    background:
    linear-gradient(135deg, hsla(252.61, 99.15%, 42.92%, 1) 0%, hsla(252.61, 99.15%, 42.92%, 0) 70%),
    linear-gradient(40deg, hsla(181.65, 90.85%, 47.93%, 1) 52%, hsla(181.65, 90.85%, 47.93%, 0) 80%),
    linear-gradient(38deg, hsla(261.42, 99.75%, 47.29%, 1) 100%, hsla(261.42, 99.75%, 47.29%, 0) 100%);
}


.demo img {
    width: 100%;
    box-shadow: 0 2px 4px 0 rgba(20, 20, 40, 0.10);
    transition: .3s;
}

.demo img:hover {
    transform: translateY(-5px)
}

.overlay-demo {
    padding: 160px 0 120px;
     background:
        linear-gradient(70deg, hsla(238.87, 23.46%, 15.1%, .6) 0%, hsla(238.87, 23.46%, 15.1%, 0) 70%),
        linear-gradient(58deg, hsla(237.37, 19.84%, 39.11%, .6) 10%, hsla(237.37, 19.84%, 39.11%, 0) 80%),
        linear-gradient(315deg, hsla(241.13, 30.62%, 22.3%, .6) 15%, hsla(241.13, 30.62%, 22.3%, 0) 80%),
        linear-gradient(245deg, hsla(243.4, 44.93%, 20.65%, .6) 100%, hsla(243.4, 44.93%, 20.65%, 0) 70%);
}

.demo-footer {
    padding: 20px 0 5px;
}