@font-face {
    font-family: 'Rubik';
    font-style: normal;
    font-weight: normal;
    src: local('Rubik'), url("../../font/Rubik.ttf") format('truetype');
}

@font-face {
    font-family: 'HelveticaNeue';
    font-style: normal;
    font-weight: normal;
    src: local('HelveticaNeue'), url("../../font/HelveticaNeue.otf") format('truetype');
}

@font-face {
    font-family: 'Teko';
    font-style: normal;
    font-weight: normal;
    src: local('Teko'), url("../../font/Teko.ttf") format('truetype');
}

@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: normal;
    src: local('Oswald'), url("../../font/Oswald.ttf") format('truetype');
}


:root{
    --color-primary-bg: #121212;
    --color-primary-text: #b1b1b1;
    --border-color: #666666;
    --color-sec-red: #e71938;
    --color-white: #ffffff;
    --color-ofwhite: #bbbbbb;
}

.font-primary{
    font-family: 'Oswald', 'HelveticaNeue', sans-serif ;
}

body{
     font-family: 'Oswald', 'HelveticaNeue', sans-serif ;
    background-color: #1a1a1a;
}

.py-section{
    padding: 40px 0;
}




/*Brand*/

.brand-section {
    background-color: #000000;
    background-image: url('../../../assets/img/body-type-bg.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 50px;
    padding: 110px 35px 200px 35px;
    position: relative;
    clip-path: polygon(20% 100%, 100% 80%, 100% 0, 100% 0, 0 0, 0 90%);
}


.background-overlay {
    inset: 0;
    position: absolute;
    background-color: #000000;
    opacity: 0.6;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    margin: 0;
    padding: 0;
    border: 0;
    width: 100%;
    height: 100%;
}

.brand-card {
    background: #fdfdfd;
    border-bottom: 0.1875rem solid;
    padding: 2rem 1.875rem;
    position: relative;
    border-color: #e63619 !important;
}

.brand-card a{
    text-decoration: none;
}

.brand-logo{
    height: 180px;
}

.brand-card img{
    width: 100%;
    height: 160px;
    -o-object-fit: cover;
    object-fit: cover;
}

.brand-name{
    display: none;
    margin-top: 1rem;
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: #000;
    text-decoration: none;
}


/*service*/

.service-section{
    margin-bottom: 50px;
}

.section-header{
    text-align: center;
    color: #d0dae7;
    margin-bottom: 30px;
}

.img-revarse{
     transform: scaleX(-1);
}

.section-header .sub-title{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.section-header .sub-title span {
    padding-right: 20px;
    padding-left: 20px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    vertical-align: top;
}

.section-header .sub-title img{
    height: 30px;
}

.section-title {
    font-size: 50px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 60px;
    color: #ffffff;
}

.rotate-45 {
    rotate: -45deg;
}

.single-service {
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #ffffff33;
    padding: 40px;
}

.service-icon img{
    height: 80px;
    margin-bottom: 20px;
}

.service-name {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: capitalize;
    color: #ffffff;
}

.service-text{
    padding: 20px 0;
    color: #fff;
}

.read-more {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    letter-spacing: 1px;
}



/*Brand Banner*/


.brand-banner {
    background-image: url('../../../assets/img/michael-wade.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
    margin-bottom: 50px;
    position: relative;
}


.brand-banner:before {
    background-color: #121212;
    content: "";
    opacity: 0.5;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.brand-banner-inner{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-left: 25px;
}

.video-button a{
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 1.5rem;
}

.brand-banner-inner h2{
    font-size: 60px;
    line-height: 72px;
    color: #fff;
}

.brand-banner-inner p{
    width: 600px;
    font-size: 18px;
    line-height: 28px;
    color: #fff;
}

.cerculer-button {
    width: 70px;
    height: 70px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: relative;
}

.cerculer-button:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: 0 0;
    transform: translate(-50%, -50%);
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
    box-shadow: 0 0 rgba(255, 255, 255, .6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    transition: all .4s ease;
}

@keyframes ripple {
    70% {
        -webkit-box-shadow: 0 0 0 1em rgba(255, 255, 255, .2);
        box-shadow: 0 0 0 1em rgba(255, 255, 255, .2);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 rgba(255, 255, 255, 0);
    }
}

.cerculer-button:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: 0 0;
    transform: translate(-50%, -50%);
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
    box-shadow: 0 0 rgba(255, 255, 255, .6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    transition: all .4s ease;
}

.video-button span{
    color: #fff;
}


/*Item*/

.item-section{
    margin-bottom: 50px;
}

.item {
    padding: 30px 30px 0;
    background-color: #222222;
    overflow: hidden;
}

.item-info-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-name  a{
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2em;
    letter-spacing: 1px;
    color: #ffffff;
    text-decoration: none;
}

.app-button-info{
    display: flex;
    align-items: center;
    gap: 4px;
}

.app-button-quickview{
    height: 40px;
    width: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    display: flex;
    text-align: center;
    align-items: center;
    margin-left: 10px;
    justify-content: center;
    font-size: 14px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    color: #b1b1b1;
}

.item-image{
    margin-top: 1rem;
    display: block;
    position: relative;
}

.item-image img {
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: auto;
    max-width: 100%;
}

.app-ribbon {
    width: 100px;
    height: 100px;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.app-ribbon .app-ribbon-content {
    left: -25px;
    top: 14px;
    width: 182px;
    font-size: 12px;
    padding: 5px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    display: block;
    background-color: #FF2626;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    letter-spacing: 1px;
}

.item-info{
    margin-top: 1rem;
}

.app-data {
    display: flex;
    justify-content: flex-start;
    line-height: 1.5em;
    padding: 0;
    margin: 7px 0;
}

.app-icon{
    padding-right: 15px;
    font-size: 20px;
    color: #FF2626;
}

.ap-spec-value{
        color: #ffffff;
    font-size: 18px;
    margin-bottom: 3px;
    font-weight: 500;
}

.ap-field-label {
    text-transform: capitalize;
    color: #b1b1b1;
}

.app-info-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-field-label {
    font-weight: normal;
    color: #b1b1b1;
    font-size: 12px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.app-price {
    color: #ffffff;
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    margin-bottom: 5px;
}

.app-price-msrp {
    color: #FF2626;
    line-height: 1;
}

.template-btn{
    border: 2px solid transparent;
    border-radius: 0;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.5;
    padding: 13px 32px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s linear;
    text-align: center;
    height: 50px;
    justify-content: center;
    align-items: center;
    font-family: "Oswald", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #ffffff;
    letter-spacing: 1px;
    background-color: #ff2626;
}