@font-face {
  font-family: "yekanbakh";
  src: url(../fonts/yekanBakh/YekanBakhFaNum-Black.woff) format(woff);
  src: url(../fonts/yekanBakh/YekanBakhFaNum-Black.woff2) format(woff2);
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "yekanbakh";
  src: url(../fonts/yekanBakh/YekanBakhFaNum-Bold.woff) format(woff);
  src: url(../fonts/yekanBakh/YekanBakhFaNum-Bold.woff2) format(woff2);
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "yekanbakh";
  src: url(../fonts/yekanBakh/YekanBakhFaNum-Bold.woff) format(woff);
  src: url(../fonts/yekanBakh/YekanBakhFaNum-Bold.woff2) format(woff2);
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "yekanbakh";
  src: url(../fonts/yekanBakh/YekanBakhFaNum-ExtraBold.woff) format(wof);
  src: url(../fonts/yekanBakh/YekanBakhFaNum-ExtraBold.woff2) format(woff2);
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "yekanbakh";
  src: url(../fonts/yekanBakh/YekanBakhFaNum-Light.woff) format(woff);
  src: url(../fonts/yekanBakh/YekanBakhFaNum-Light.woff2) format(woff2);
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "yekanbakh";
  src: url(../fonts/yekanBakh/YekanBakhFaNum-Regular.woff) format(woff);
  src: url(../fonts/yekanBakh/YekanBakhFaNum-Regular.woff2) format(woff2);
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "yekanbakh";
  src: url(../fonts/yekanBakh/YekanBakhFaNum-Regular.woff) format(woff);
  src: url(../fonts/yekanBakh/YekanBakhFaNum-Regular.woff2) format(woff2);
  font-weight: 500;
  font-style: normal;
}

* {
  box-sizing: border-box;
  direction: rtl;
  padding: 0;
  margin: 0;
}
body {
  font-family: "yekanbakh";
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
:root {
  --main-color: #ffcd03;
  --primary-color: #ffc000;
  --second-color: #d29f04;
}
/* main */
main {
  flex: 1;
}
main.inner {
  padding: 50px 0;
}
/* sec-header */
.head-site {
  background: var(--main-color);
}
.head-site .nav-link {
  font-weight: 600;
  font-size: 20px;
  color: #000;
  padding: 0 10px;
}
.head-site .nav-item span {
  width: 1px;
  height: 29px;
  background-color: #897314;
  display: inline-block;
  margin: 0 15px;
}
.head-site .phone-head {
  border: 2px solid #fff;
  border-radius: 31px;
  height: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.head-site .phone-head .img-phone {
  border-right: 2px solid #fff;
  border-radius: 31px;
}
.head-site .phone-head .img-phone img {
  animation: shake 0.5s linear infinite;
  padding: 8px;
}

@keyframes shake {
  0%,
  100% {
    transform: translate(2px, 0) rotate(10deg);
    transform-origin: center;
  }
  50% {
    transform: translate(-2px, 0) rotate(-10deg);
    transform-origin: center;
  }
}

.head-site .phone-head a {
  display: inline-block;
  text-decoration: none;
  color: #000;
  animation: fadeIn 2s linear infinite;
  font-weight: 600;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  100% {
    opacity: 1;
    transform: scale(1.5);
  }
}

.seprate-header {
  width: 100%;
  height: 18px;
  background-image: url(../images/bg-pattern.jpg);
  background-repeat: repeat;
  background-size: auto;
}
/* sec-slider */
.vid-slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.vid-slider::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(255, 207, 0, 0.24);
}
.vid-slider video {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

/* sec-about-me */
.sec-about-me {
  margin: 50px 5px;
  overflow: hidden;
}
.right-section-about {
  flex-direction: column;
}
.shoar-me {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 900;
}

.paragraph-about-me {
  line-height: 26px;
  height: 130px;
  overflow: hidden;
  font-weight: 500;
}
.link-about-me {
  font-size: 15px;
  font-weight: 700;
  background: var(--primary-color);
  border-radius: 29px;
  border: none;
  padding: 10px 15px;
  text-decoration: none;
  color: #000;
}

.link-about-me:hover i {
  transition: all 0.1s linear;
  margin-right: 5px;
}
.phone-icon-about-me {
  width: 41px;
  height: 41px;
  background: var(--primary-color);
  border-radius: 27px;
}
.phone-icon-about-me img {
  width: 20px;
  height: 20px;
}
.phone-about-me :first-child {
  font-weight: 500;
  font-size: 15px;
  color: #555;
  padding-left: 3px;
}
.phone-about-me :last-child {
  font-weight: 600;
  font-size: 24px;
  color: #000;
  text-decoration: none;
  padding-right: 5px;
}
.img-about-me {
  position: relative;
  margin-top: 50px;
}
.img-about-me img {
  width: 100%;
}
.img-about-me .border-img {
  width: 279px;
  height: 132px;
  border-radius: 12px;
  background: var(--primary-color);
  position: absolute;
  top: -10px;
  left: -8px;
  z-index: -1;
}
.experience {
  position: absolute;
  right: -50px;
  bottom: -45px;
  padding: 9px 30px;
  border-radius: 12px;
  border: 6px solid white;
  background: var(--primary-color);
  justify-content: center;
}
.txt-experience {
  flex-direction: column;
  align-items: center;
}
.txt-experience :first-child {
  font-weight: 600;
  font-size: 40px;
}
.txt-experience :last-child {
  font-weight: 700;
  font-size: 30px;
}

/* sec-assure */
.sec-assure {
  position: relative;
  background-image: url(../images/bg-assure.jpg);
  background-attachment: fixed;
}
.content-assure {
  flex-direction: column;
}

.title-assure {
  flex-direction: column;
}
.first-title-assure {
  color: #fff;
}
.second-title-assure {
  color: #f3f2f2;
   }

.card-group-taxi {
  bottom: -100px;
}
.card-group-taxi .item-output {
  border-radius: 23px;
}

.card-group-taxi .owl-stage-outer {
  padding: 20px 0;
}
.card-assure {
  border: 1px solid #d09318;
  border-radius: 23px;
}
.card-assure img {
  width: 51px;
  height: 51px;
}
.card-assure .card-title {
  font-size: 24px;
  font-weight: 700;
}
.card-assure .card-text {
  line-height: 25px;
  height: 75px;
  overflow: hidden;
  font-size: 15px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.64);
}

/* sec-option */
.sec-option {
  flex-direction: column;
}
.title-option {
  flex-direction: column;
  line-height: 110px;
}
.icon-title-option {
  width: 6px;
  height: 42px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}
.icon-title-option :first-child {
  height: 60%;
  background: var(--second-color);
}
.icon-title-option :last-child {
  height: 50%;
  background-color: #595b7d;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 15px;
}
.txt-title-option span {
  font-size: 40px;
  font-weight: 900;
  color: var(--second-color);
}
.item-option {
  flex-direction: column;
}
.icon-item-option {
  display: flex;
  background-color: var(--primary-color);
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 50%;
  transition: all 1.5s;
}
.icon-item-option i {
  align-items: center;
  justify-content: center;
  animation: color 1.5s linear infinite;
}
@keyframes color {
  0% {
    color: #ffffff;
    opacity: 1;
  }
  25% {
    color: #fff;
    opacity: 1;
  }
  50% {
    color: #ffffff;
    opacity: 1;
  }

  75% {
    color: #292828;
    opacity: 1;
  }
  100% {
    color: #292828;
    opacity: 1;
  }
}

.caption-item-option {
  flex-direction: column;
}

.right-item-option {
  flex-direction: column;
}
.center-item-option {
  flex-direction: column;
}
.left-item-option {
  flex-direction: column;
}
.left-item-option .left {
  margin-right: auto;
}
.right-item-option .right {
  margin-left: auto;
}
/* sec-news */
.moving-car {
  position: relative;
  overflow: hidden;
  transition: all 8s;
}
.moving-car img {
  animation: move-and-fade 14s infinite;
  animation-timing-function: linear;
}

@keyframes move-and-fade {
  0% {
    transform: translateX(-20px);
    opacity: 1;
  }

  100% {
    transform: translateX(calc(100vw));
    opacity: 1;
  }
}
.sec-news {
  background: var(--main-color);
  position: relative;
  overflow: hidden;
}
.right-border {
  width: 18px;
  height: 100%;
  background-image: url(../images/bg-pattern.jpg);
  background-repeat: repeat;
  background-size: auto;
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
}
.left-border {
  width: 18px;
  height: 100%;
  background-image: url(../images/bg-pattern.jpg);
  background-repeat: repeat;
  background-size: auto;
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
}
.content-news {
  flex-direction: column;
}
.second-title-news {
  display: flex;
  align-items: center;
}
.first-title-news {
  font-weight: 600;
  font-size: 16px;
}

.card-news {
  border-radius: 14px;
}
.img-card-news {
  border-radius: 11px;
}
.card-news .card-title {
  flex-direction: column;
  font-size: 16px;
  font-weight: 600;
}
.card-news .card-text {
  color: rgba(0, 0, 0, 0.7);
  font-size: 14px;
  line-height: 22px;
  height: 66px;
  overflow: hidden;
  font-weight: 500;
}
.card-news .link-news {
  display: flex;
  align-items: center;
  font-weight: 600;
}
.card-news .continue-news {
  font-size: 14px;
  font-weight: 600;
}
.card-news .calender-news i {
  color: var(--primary-color);
}
.card-news .link-news a {
  font-size: 13px;
  text-decoration: none;
  color: #000;
}
.card-news .link-news i {
  color: var(--primary-color);
}
.sec-news .link-more-news {
  text-decoration: none;
  color: #000;
  margin-right: auto;
}

/* sec-question */
.sec-question {
  background-color: #f3f3f3;
}
.right-question {
  flex-direction: column;
  justify-content: center;
}
.right-question .accordion {
  width: 100%;
}
.right-question .accordion-item {
  margin-bottom: 8px;
  border: none;
}
.right-question .accordion-button {
  font-weight: 700;
}
.right-question .accordion-button:focus {
  outline: none !important;
  box-shadow: none !important;
}
.right-question .accordion-body {
  background: var(--primary-color);
}
.right-question .accordion-item .accordion-button:not(.collapsed) {
  background-color: #fff !important;
}
.title-question :first-child {
  width: 6px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary-color);
}
.more-question {
  display: flex;
  align-items: center;
  margin-right: auto;
  font-size: 16px;
  font-weight: 600;
}
.more-question a {
  text-decoration: none;
  color: #000;
}
.left-sec-question {
  position: relative;
  transition: all 2s;
}
.link-arm-taxi {
  position: absolute;
  animation: moveup 2s linear infinite;
}
@keyframes moveup {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-30px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* sec-footer */
.top-footer {
  background-color: #000;
}
.col-footer {
  display: flex;
  flex-direction: column;
}
.paragraph-footer {
  width: 100%;
  color: #fff;
  line-height: 30px;
  height: 150px;
  overflow: hidden;
}
.title-footer {
  font-weight: 800;
  color: var(--primary-color);
  font-size: 20px;
}
.sec-footer .link-list {
  padding-right: 17px;
}
.sec-footer .link-list li {
  list-style-type: circle;
  line-height: 40px;
}
.sec-footer .link-list li::marker {
  color: var(--primary-color);
}
.sec-footer a {
  text-decoration: none;
  color: #fff;
}
.sec-footer .tamas-list li {
  list-style-type: none;
  line-height: 40px;
}
.sec-footer .tamas-list li i {
  color: var(--primary-color);
  padding-left: 30px;
}
.bottom-footer {
  height: 106px;
  background-color: #181818;
  position: relative;
}
.bottom-footer::before {
  content: "";
  width: 50%;
  background: var(--primary-color);
  clip-path: polygon(8% 0%, 100% 0, 100% 100%, 0% 100%);
  z-index: 2;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}
.txt-bottom-footer {
  z-index: 4;
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  font-size: 20px;
  font-weight: 600;
  justify-content: space-between;
}

/* loader */
#loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}

#loader-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader {
  width: 40px;
  aspect-ratio: 1;
  --c: no-repeat linear-gradient(#000 0 0);
  background: var(--c) 0 0, var(--c) 0 100%, var(--c) 50% 0, var(--c) 50% 100%,
    var(--c) 100% 0, var(--c) 100% 100%;
  background-size: 8px 50%;
  animation: l7-0 1s infinite;
  position: relative;
  overflow: hidden;
}
.loader:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #000;
  top: calc(50% - 4px);
  left: -8px;
  animation: inherit;
  animation-name: l7-1;
}

@keyframes l7-0 {
  16.67% {
    background-size: 8px 30%, 8px 30%, 8px 50%, 8px 50%, 8px 50%, 8px 50%;
  }
  33.33% {
    background-size: 8px 30%, 8px 30%, 8px 30%, 8px 30%, 8px 50%, 8px 50%;
  }
  50% {
    background-size: 8px 30%, 8px 30%, 8px 30%, 8px 30%, 8px 30%, 8px 30%;
  }
  66.67% {
    background-size: 8px 50%, 8px 50%, 8px 30%, 8px 30%, 8px 30%, 8px 30%;
  }
  83.33% {
    background-size: 8px 50%, 8px 50%, 8px 50%, 8px 50%, 8px 30%, 8px 30%;
  }
}

@keyframes l7-1 {
  20% {
    left: 0px;
  }
  40% {
    left: calc(50% - 4px);
  }
  60% {
    left: calc(100% - 8px);
  }
  80%,
  100% {
    left: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .head-site .c1 {
    order: 2;
  }
  .head-site .c2 {
    order: 1;
  }
  .head-site .c3 {
    order: 3;
  }
  .menu head.head-site ul {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    line-height: 50px;
  }

  .menu {
    display: block;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 67%;
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 6;
    padding: 70px 20px 10px 10px;
    background: #2a2928;
    right: -800px;
  }
  .menu .nav {
    display: flex;
    flex-direction: column;
  }

  .menu .nav-link {
    color: var(--primary-color);
    padding: 8px;
    display: block;
  }

  .menu .nav-item span {
    display: none;
  }

  .menu.active {
    right: 0;
  }

  .responsiveMenuBg {
    display: none;
    position: fixed;
    z-index: 4;
    padding-top: 20px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
  }

  .responsiveMenuBg.active {
    display: block;
  }

  .navIcon.home {
    display: block;
  }

  .navIcon.home i {
    color: #000000;
    font-size: 40px;
  }
  .head-site .phone-head a {
    font-size: 15px;
  }

  .title-about-me {
    font-size: 30px;
    font-weight: 900;
    padding-bottom: 20px;
  }
  .experience {
    right: 0px;
    bottom: -45px;
  }
  .experience img {
    width: 56px;
    height: 56px;
  }

  .sec-banner {
    margin: 30px 0;
  }
  .sec-assure {
    padding-top: 40px;
  }
  .title-assure {
    text-align: center;
    margin-top: 40px;
    line-height: 45px;
    height: 220px;
    overflow: hidden;
  }
  .first-title-assure {
    font-weight: 800;
    font-size: 26px;
    margin-bottom: 20px;
  }
  .second-title-assure {
    font-weight: 600;
    font-size: 20px;
  }
  .sec-option {
    margin-top: 100px;
  }

  .center-item-option {
    order: 1;
    width: 100%;
    object-fit: cover;
  }
  .sec-option .c1 {
    order: 2;
  }
  .sec-option .c2 {
    order: 1;
  }
  .sec-option .c3 {
    order: 2;
  }
  .right-item-option {
    justify-content: center;
    align-items: center;
  }
  .right-item-option .right {
    margin-right: auto;
  }
  .left-item-option {
    justify-content: center;
    align-items: center;
  }

  .icon-item-option {
    width: 30px;
    height: 30px;
  }
  .icon-item-option i {
    font-size: 25px;
  }
  .title-item-option {
    font-size: 18px;
    font-weight: 600;
    order: 2;
  }
  .caption-item-option span {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.8;
  }
  .center-item-option img {
    width: 95%;
    height: auto;
  }
  .moving-car .car img {
    width: 130px;
    height: auto;
  }
  .line-title-news {
    width: 6px;
    height: 30px;
    border-radius: 10px;
    background-color: #fff;
  }
  .txt-second-title-news {
    font-weight: 800;
    font-size: 28px;
  }
  .card-news {
    margin-bottom: 20px;
  }
  .sec-news .link-more-news {
    font-size: 20px;
    font-weight: 600;
  }
  .title-question :last-child {
    font-size: 20px;
    font-weight: 800;
  }
  .right-question {
    padding-right: 0;
  }
  .left-sec-question :first-child {
    width: 100%;
    padding-top: 50px;
  }
  .link-arm-taxi {
    top: 5px;
    right: 20%;
    width: 60px;
    height: auto;
  }
  .bottom-footer::before {
    display: none;
  }
  .bottom-footer {
    background: var(--main-color);
  }

  .txt-bottom-footer span {
    color: #000;
  }
  .txt-bottom-footer {
    font-size: 16px;
    font-weight: 600;
    flex-direction: column;
    justify-content: center;
  }
}

@media only screen and (min-width: 768px) {
  .navIcon {
    display: none;
  }

  .menu {
    display: flex;
    justify-content: start;
  }

  .menu ul li {
    list-style-type: none;
    display: inline-block;
  }

  .menu ul li a {
    color: #000000;
    font-size: 20px;
    font-weight: 600;
  }
  .head-site .phone-head a {
    font-size: 24px;
  }

  .title-about-me {
    font-size: 40px;
    font-weight: 900;
    padding-bottom: 20px;
  }
  .experience {
    right: -50px;
    bottom: -45px;
  }
  .experience img {
    width: 66px;
    height: 66px;
  }

  .sec-banner {
    margin: 70px 0;
  }
  .sec-assure {
    padding-top: 70px;
  }
  .title-assure {
    line-height: 55px;
    height: 220px;
    overflow: hidden;
  }
  .first-title-assure {
    font-weight: 900;
    font-size: 32px;
  }
  .second-title-assure {
    font-weight: 600;
    font-size: 23px;
  }
  .sec-option {
    margin-top: 150px;
  }

  .right-item-option {
    justify-content: space-between;
  }
  .left-item-option {
    justify-content: space-between;
  }
  .icon-item-option {
    width: 48px;
    height: 48px;
  }
  .icon-item-option i {
    font-size: 35px;
  }
  .title-item-option {
    font-size: 24px;
    font-weight: 700;
  }
  .caption-item-option span {
    font-size: 15px;
    font-weight: 600;
    opacity: 0.8;
  }
  .line-title-news {
    width: 6px;
    height: 36px;
    border-radius: 10px;
    background-color: #fff;
  }
  .txt-second-title-news {
    font-weight: 900;
    font-size: 32px;
  }
  .sec-news .link-more-news {
    font-size: 24px;
    font-weight: 600;
  }
  .right-question {
    padding-right: 100px;
  }
  .left-sec-question :first-child {
    width: 70%;
  }
  .link-arm-taxi {
    top: 0;
    right: 40%;
    width: 90px;
    height: auto;
  }
  .txt-bottom-footer :first-child {
    color: #000;
  }
  .title-question :last-child {
    font-size: 27px;
    font-weight: 900;
  }

  .txt-bottom-footer :last-child {
    color: #fff;
  }
}
