.section-detail {
    padding-top: 80px
}

.section-max-width {
    margin-left: auto;
    margin-right: auto;
    max-width: 1680px;
    padding-left: 80px;
    padding-right: 80px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.section-fifty-fifty{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.color-font-slid {
    background-color: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slider .parallax-slider .caption h1 {
    font-size: 70px;
    font-weight: 700;
    letter-spacing: 2px;
    background-color: #fff;
    color: #fff;
}

.navbar {
    font-size: 15px;
}

.navbar .logo {
    width: 150px;
    max-height: 100px;
}

.sub-title h6 {
    background: -webkit-gradient(linear, left top, right top, from(#ea0000), color-stop(#ea0000), to(#ea0000));
    background: -webkit-linear-gradient(left, #ea0000, #ea0000, #ea0000);
    background: -o-linear-gradient(left, #ea0000, #ea0000, #ea0000);
    background: linear-gradient(to right, #ea0000, #ea0000, #ea0000);
}

/*Image*/
.work-carousel.caroul .content .item-img {
    height: 350;
    width: 285;
    position: relative;
}

.full-screen-width {
    background-size: cover;
    width: 100%;
    height: 100%;
}

/*end image*/

/*Product Card */
.tiles {
    width: 100%;
    font-size: 0;
    text-align: center;
    position: relative;
}

.tiles .tile {
    display: inline-block;
    margin: 10px;
    text-align: center;
    opacity: 0.99;
    overflow: hidden;
    position: relative;
    border-radius: 3px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
}

.tiles .tile:before {
    content: "";
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    width: 100%;
    height: 50%;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 2;
    transition-property: top, opacity;
    transition-duration: 0.3s;
}

.tiles .tile img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tiles .tile .details {
    font-size: 16px;
    margin: 0;
    padding: 0px;
    color: #fff;
    text-align: center;
    position: absolute;
    bottom: 40px;
    left: 48%;
    z-index: 3;
}

.tiles .tile .details span {
    display: block;
    opacity: 0;
    position: relative;
    top: 100px;
    transition-property: top, opacity;
    transition-duration: 0.3s;
    transition-delay: 0s;
}

.tiles .tile .details .title {
    line-height: 1;
    font-weight: 600;
    font-size: 18px;
}

.tiles .tile .details .info {
    line-height: 1.2;
    margin-top: 5px;
    font-size: 12px;
}

.tiles .tile:focus:before,
.tiles .tile:focus span,
.tiles .tile:hover:before,
.tiles .tile:hover span {
    opacity: 1;
}

.tiles .tile:focus:before,
.tiles .tile:hover:before {
    top: 50%;
}

.tiles .tile:focus span,
.tiles .tile:hover span {
    top: 0;
}

.tiles .tile:focus .title,
.tiles .tile:hover .title {
    transition-delay: 0.15s;
}

.tiles .tile:focus .info,
.tiles .tile:hover .info {
    transition-delay: 0.25s;
}

/*End Product Card*/

/********* Simple or original overlay *******/

/* Main container */
.overlay-image {
    position: relative;
    width: 100%;
}

/* Original image */
.overlay-image .image {
    display: block;
    width: 100%;
    height: auto;
}

/* Original text overlay */
.overlay-image .text {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5em;
    text-shadow: 2px 2px 2px #555;
    text-align: center;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

/* ====================== [  Start Button Style ] ====================== */
.butn-2 {
    padding: 5px 35px;
    font-size: 13px;
    border: 1px solid transparent;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.butn-2:hover .char {
    -webkit-animation: fadeInUp 0.3s cubic-bezier(0.3, 0, 0.7, 1) both;
    animation: fadeInUp 0.3s cubic-bezier(0.3, 0, 0.7, 1) both;
    -webkit-animation-delay: calc(30ms * var(--char-index));
    animation-delay: calc(30ms * var(--char-index));
}

.butn-2.bord {
    border: 1px solid #fff;
}

.butn-2-2.bord:hover {
    background: #fff;
    color: #333;
}

.butn-2.light {
    background: #fff;
    color: #333;
}

.butn-2.light:hover {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.butn-2.dark {
    background: #222;
}

.butn-2.dark:hover {
    background: #fff;
    color: #333;
}

.butn-2.color {
    background: -webkit-gradient(linear, left top, right top, from(#12c2e9), color-stop(#c471ed), to(#f64f59));
    background: -webkit-linear-gradient(left, #12c2e9, #c471ed, #f64f59);
    background: -o-linear-gradient(left, #12c2e9, #c471ed, #f64f59);
    background: linear-gradient(to right, #12c2e9, #c471ed, #f64f59);
    border: transparent;
}

.butn-2.color:hover {
    background: #fff;
    color: #111;
}

.butn-2.curve {
    border-radius: 5px;
}

.butn-2.radius {
    border-radius: 15px;
}

.border-gradient {
    padding: 5px;
    border: 2px solid;
    border-image-slice: 1;
    border-width: 5px;
}

.border-gradient-purple {
    border-image-source: linear-gradient(to left, #743ad5, #d53a9d);
}

/* ====================== [ End Button Style ] ====================== */

.works-header .capt .bactxt {
    font-size: 20vw;
    font-weight: bold;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    text-align: center;
    opacity: .5;
}

.grow:hover {
    grid-area: grow;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);

    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.shine-color {
    background: -webkit-gradient(linear, left top, right top, from(#12c2e9), color-stop(#c471ed), to(#f64f59));
    background: -webkit-linear-gradient(left, #12c2e9, #c471ed, #f64f59);
    background: -o-linear-gradient(left, #12c2e9, #c471ed, #f64f59);
    background: linear-gradient(to right, #12c2e9, #c471ed, #f64f59);
    background-repeat: no-repeat;
    background-size: 80%;
    animation: shine 3s linear infinite;
    -webkit-background-clip: text;
    background-clip: text;
}

/*TABs*/
.tabs {
    clear: both;
    position: relative;
    margin: 0 auto;
    /* you can either manually set a min-height here or do it via JS ---> */
}

.tab {
    float: left;
}

.tab label {
    font-size: 25px;
    margin-right: 20px;
    position: relative;
    top: 0;
    cursor: pointer;
    color: #fff;
    text-transform: uppercase;
}

.tab [type=radio] {
    display: none;
}

.tab__content {
    position: relative;
    top: 40px;
    left: 0;
    right: 0;
    bottom: 0;
    transition: opacity .2s cubic-bezier(.42, 0, .34, 1.01);
    opacity: 0;
}

[type=radio]:checked~label {
    border-bottom: 2px solid #f64f59;
    color: #fff;
    z-index: 2;
}

[type=radio]:checked~label~.tab__content {
    z-index: 1;
    opacity: 1;
}

#tab-details > .nav-link.active {
    border-bottom: 4px solid #bc0000;
    color: #fff;
}

/*Footer*/
footer .item .logo {
    margin-bottom: 50px;
}

footer .item .logo img {
    width: 100px;
}

@keyframes shine {
    0% {
        background-position: -200%;
    }

    100% {
        background-position: 200%;
    }
}


.about-us .img-left {
    padding-left: 50px;
    padding-right: 150px;
    position: relative;
}

.about-us .img-left:before {
    content: '';
    position: absolute;
    top: -50px;
    right: 0;
    width: 400px;
    height: 400px;
    opacity: .3;
    z-index: -1;
}
