
:root {
    --theme-color: #FE7C00;
    --color-white: #ffffff;
    --color-dark: #001736;
    --theme-bg-light: #F8F8F8;
    --banner-bg-color: hsl(0deg 0% 100%);
    --agency-bg-color: hsl(0deg 0% 19%);
    --toyota-red-color: hsl(356deg 83% 52%);
}

@font-face {
  font-family: 'MjTwo';
  src: url('/dist/fonts/Mj_Two/Mj_Two Bold_0.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'MjTwo';
  src: url('/dist/fonts/Mj_Two/Mj_Two Light_0.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'MjTwo';
  src: url('/dist/fonts/Mj_Two/Mj_Two Medium_0.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

body {
  font-family: 'MjTwo', sans-serif;
}

/*ol, ul {
  list-style: none;
}*/

header, .gallery-latest{
  background-color: var(--banner-bg-color);
}

.toyota-red {
  color: var(--toyota-red-color);
}

.bg-toyota-red {
    background-color: var(--toyota-red-color);
}

.bg-agency {
  background-color: var(--agency-bg-color);
}

.agency, .agency .btn:hover {
  background-color: var(--agency-bg-color);
}

.agency .btn {
  background-color: var(--toyota-red-color);
}

.counter-area {
    position: relative;
    background: var(--theme-color);
    z-index: 1;
}

.counter-area::before {
  content: "";
  position: absolute;
  background-image: url("/dist/img/counter-area-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: .15;
  z-index: -1;
}



/*             Products-slider (splide)                    */

.splide .splide__arrow {
  -ms-flex-align: center;
  align-items: center;
  background: none;
  border: 0;
  /*border-radius: 50%;*/
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 100%; /*2em;*/
  -ms-flex-pack: center;
  justify-content: center;
  opacity: .7;
  padding: 0;
  position: absolute;
  top: 0px; /*50%;*/
  /*transform: translateY(-50%);*/
  width: 2.5rem;
  z-index: 1;
}

.splide .splide__arrow--prev {
  left: auto;
  right: 0em; /*1em*/
}

.splide .splide__arrow--next {
  left: 0em; /*1em*/
  right: auto;
}

.splide .splide__arrow--next svg {
  transform: scaleX(-1);
}

splide .splide__arrow:disabled {
  opacity: 0;
}

/*             end Products-slider (splide)                    */







/*    TirajeConcrete         */

.top-nav {
    color: var(--color-white);
    background: var(--color-dark);
    padding: 12px 0 14px 0;
    position: relative;
    z-index: 1;
}

.top-nav::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: var(--theme-color);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    z-index: -1;
}



.top-nav::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 500px;
    height: 100%;
    background: var(--theme-color);
    border-right: 18px solid var(--color-white);
    z-index: -1;
}

/* lg  (>=992px and <1200px) */
@media screen and (min-width: 992px) and (max-width: 1199.98px) {
    .top-nav::after {
        width: 400px !important;
    }
}

/* xl  (>=1200px and <1400px) */
@media screen and (min-width: 1200px) and (max-width: 1399.98px) {
    .top-nav::after {
        width: 500px !important;
    }
}

/* xxl (>=1400px) */
/*@media screen and (min-width: 1400px) {
    .top-nav::after {
        width: 700px!important;
    }
}*/

@media screen and (min-width: 1400px) and (max-width: 2199.98px) {
    .top-nav::after {
        width: 700px !important;
    }
}
@media screen and (min-width: 2200px) and (max-width: 2569.98px) {
    .top-nav::after {
        width: 900px !important;
    }
}

@media screen and (min-width: 2570px) {
    .top-nav::after {
        width: 1100px !important;
    }
}


.btn.btn-tirajeh {
    color: var(--color-white);
    background-color: var(--theme-color);
    border: none;
    position: relative;
    border-radius: 0px;
    font-weight: 600;
    z-index: 1;
    padding: 1rem 1.5rem;
}

.btn.btn-tirajeh::before {
    content: "";
    position: absolute;
    height: 95%;
    width: 0;
    background: var(--color-dark);
    top: 0;
    right: 0;
    transition: var(--transition);
    z-index: -1;
}

.btn.btn-tirajeh:hover::before {
    width: 100%;
}


.text-tirajeh {
    color: var(--theme-color);
}

.bg-tirajeh {
    background-color: var(--theme-color);
}

.bg-tirajeh-dark {
    background: var(--color-dark);
}

.bg-tirajeh-light {
    background: var(--theme-bg-light);
}


.about-image{

}

.about-image::before {
    content: "";
    position: absolute;
    bottom: -30px;
    right: 10px;
    width: 45%;
    height: 45%;
    background: var(--theme-color);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);    
    z-index: -1;
}

.about-image::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 10px;
    width: 45%;
    height: 60%;
    border-left: 8px solid var(--theme-color);
    z-index: -1;
}

.about-experience {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    top: 40px;
    right: 0px;
    background: var(--color-dark);
    padding: 10px 10px 10px 20px;
    color: var(--color-white);
    right: 4px solid var(--theme-color);
    box-shadow: 0 5px 40px 0 rgb(0 0 0 / 10%);
}

.about-experience-icon {
    color: var(--color-white);
    font-size: 45px;
    width: 70px;
    height: 70px;
    line-height: 60px;
    text-align: center;
    background: var(--theme-color);
    border-radius: 50px;
}



.footer-heading {
    position: relative;
    font-weight: 600;
    margin-bottom: 30px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(229,229,229,0.60);
}

.footer-heading::before {
    position: absolute;
    content: '';
    right: 0px;
    bottom: -1px;
    width: 70px;
    height: 1px;
    background-color: var(--theme-color);
}

.list-style-one li {
    position: relative;
    padding-right: 38px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.10);
}
.list-style-one li .icon {
  position: absolute;
  right: 0px;
  top: 5px;
  color: var(--theme-color);
}



.heading-divider::after {
    position: absolute;
    content: '';
    width: 10px;
    height: 5px;
    background: var(--color-white);
    top: 0;
    height: 6px;
    right: 30px;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.heading-divider::before {
    position: absolute;
    content: '';
    width: 10px;
    height: 5px;
    background: var(--color-white);
    top: 0;
    height: 6px;
    left: 20px;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.heading-divider {
    display: inline-block;
    position: relative;
    width: 90px;
    height: 5px;
    background: var(--theme-color);
    border-radius: 50px;
}



.portfolio-info {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 0;
    background: var(--color-white);
    opacity: 0;
    visibility: hidden;
    padding: 20px;
    transition: 0.3s;
}

.gallery-item:hover .portfolio-info {
    opacity: 1;
    visibility: visible;
    bottom: 25px;
}

.about-area{
    position: relative;
    overflow-x: hidden;
}


.News-latest .News-image img {
    transition: all 0.3s ease-out 0s;
}

.News-latest .News-image img:hover {
    transform: scale(1.1);
}

/* --------------- Line-Clamp Utility --------------- */

/* Base style that can be reused for any number of lines */
.line-clamp {
    /* Required for the clamp to work */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; /* Optional: adds "…" on the last line */
}

/* Utility classes for 1–6 lines */
.line-clamp-1 {
    -webkit-line-clamp: 1;
}

.line-clamp-2 {
    -webkit-line-clamp: 2;
}

.line-clamp-3 {
    -webkit-line-clamp: 3;
}

.line-clamp-4 {
    -webkit-line-clamp: 4;
}

.line-clamp-5 {
    -webkit-line-clamp: 5;
}

.line-clamp-6 {
    -webkit-line-clamp: 6;
}



@keyframes blure-flash {
    0% {
        filter: blur(0px);
    }

    50% {
        filter: blur(1.5px);
    }

    100% {
        filter: blur(0px);
    }
}

.product-item:hover {
    animation: blure-flash 1.5s linear
}



.specs::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 50px;
    background: var(--theme-color);
}



.brand-logo {
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--color-dark);
    /*margin: 20px auto 0 auto;*/
    position: relative;
}

.brand-logo::before {
    content: "";
    position: absolute;
    left: -8px;
    right: -8px;
    top: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 2px dashed var(--color-dark);
}

.brand-logo img {
    width: 100px;
    border-radius: 50%;
}
