﻿
:root {
    --first-color-green: hsl(124.97, 96.57%, 34.31%);
    --second-color-red: hsl(4.29, 82.35%, 46.67%);
    --third-color-black: hsl(0, 0%, 3.14%);
    --banner-bg-color: hsl(0deg 0% 89.8%);
    --agency-bg-color: hsl(0deg 0% 19%);
    --ofogh-red-color: hsl(356deg 83% 52%);
}

body {
    font-family: 'vazirmatn', sans-serif;
}

ol, ul {
  list-style: none;
}

.gallery-latest{
  background-color: var(--banner-bg-color);
}

.ofogh-red {
    color: var(--ofogh-red-color);
}

.bg-ofogh-red {
    background-color: var(--ofogh-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(--ofogh-red-color);
    }

.counter-area {
    position: relative;
    background: var(--ofogh-red-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)                    */


.text-decoration-underline-hover{
    text-decoration:none;
}

.text-decoration-underline-hover:hover {
    text-decoration: underline;
}

.shadow-hover:hover {
    box-shadow: 0 8px 10px 1px #00000008,0 3px 14px 2px #00000008,0 5px 5px -3px #0000000a;
}


.nav-hero .nav-link {
    border-top: none;
    border-right: none;
    border-left: none;
    position: relative;
    padding: 18px 32px;
    color: #495057;
}
.nav-hero .nav-link:hover, nav-hero .nav-linkfocus {
    background-color: #f1f1f1;
}
.nav-hero .nav-link.active::after {
    content: "";
    position: absolute;
    width: 100%;
    right: 0px;
    bottom: 0px;
    border-bottom: 3px solid #0dcaf0;
}


.float-label {
    position: relative;
}
.float-label .form-label {
    position: absolute;
    top: -8px;
    right: 32px;
    padding-right: 8px;
    padding-left: 8px;
    z-index: 4;
    background: white;
    font-size: .75rem;
}




/* --------------- 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;
}




