* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;

}

a {
  font-style: normal;
}


@font-face {
  font-family: vaziri;
  src: url(/fonts/Vazirmatn/Vazirmatn-VariableFont_wght.ttf);

}

@font-face {
  font-family: daria;
  src: url(/fonts/Noto_Nastaliq_Urdu/NotoNastaliqUrdu-VariableFont_wght.ttf);
}

@font-face {
  font-family: transStyle;
  src: url(/fonts/transyStyle/Trapstyle.woff2);
}

@font-face {
  font-family: statick;
  src: url(/fonts/static/DancingScript-Bold.ttf);
}

body {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-image: url(/Img/background/bg-lg.svg);
  background-position: 35% 0%;


}

header {
  width: 100%;
  height: 800px;
  position: absolute;

}


.home {
  height: 800px;
  position: relative;
}

video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;


}

.home-content {
  position: relative;
  padding-top: 150px;
  color: #ffffff;
  text-align: center;
}

.home-content h1 {
  font-family: transStyle;
  font-size: clamp(35px, 3vw, 130px);
  line-height: 1.1;
  font-weight: 900;
  color: #e04b15;

}

.home-content h1 span {
  color: #ffffff;
}

.home-content p {
  margin-top: 8px;
  font-size: 1.2rem;
  font-family: vaziri;
  color: #ffffff;
  opacity: .9;
}

.home h1 {
  font-family: transStyle;
  font-size: clamp(35px, 3vw, 130px);
  line-height: 1.1;
  font-weight: 900;
  color: #e04b15;
  text-shadow: 3px 3px #000000;
}

.home p {
  margin-top: 8px;
  font-size: 1.2rem;
  font-family: vaziri;
  color: #ffffff;
  text-shadow: 2px 2px #000000;
}













.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  height: 50px;
  background-color: #14141680;
  display: flex;
  align-items: center;
  /*****/




}

.logo a {
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo a p {
  color: rgb(247, 210, 5);
  font-size: 25px;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

.logo img {
  width: 32px;
  height: 32px;
  margin-left: 2vh;

}

:root {
  --color-secondary: #ff0000;
  --duration: 1s;
  --nav-duration: calc(var(--duration) / 4);
  --ease: cubic-bezier(0.215, 0.61, 0.355, 1);
  --space: 1vh;

  --line-height: 0.5;
}

.main-navigation-toggle {
  position: fixed;
  height: 1px;
  width: 1px;
  overflow: scroll;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.main-navigation-toggle + label {
  position: fixed;
  top: calc(var(--space) * 0.1);
  right: calc(var(--space) * 2);
  cursor: pointer;
  z-index: 999;
}

.icon--menu-toggle {
  --size: calc(1rem + 5vmin);
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--size);
  height: var(--size);
  stroke-width: 6;
}

.icon-group {
  transform: translateX(0);
  transition: transform var(--nav-duration) var(--ease);
}

.icon--menu {
  stroke: #ff0000;
}

.icon--close {
  stroke: var(--color-secondary);
  transform: translateX(-100%);
}

.main-navigation {
  text-align: right;
  direction: rtl;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: right;
  align-items: center;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  transition: transform var(--nav-duration);
  z-index: 1;
}

.main-navigation:after {
  font-size: 1.5rem;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(3, 41, 66, 0.979);

  transform-origin: 0 50%;
  z-index: -1;
}

.main-navigation ul {
  position: relative;
  top: 10%;
  height: 100%;
  font-size: 8vmin;
  font-family: vaziri;
  width: 100%;
}

.main-navigation li {
  --border-size: 1vmin;
  display: flex;

  height: auto;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 5px;
  border-radius: 5px;

  padding: 5px;
}

.main-navigation li:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--border-size);
  background-color: var(--color-secondary);
  transform-origin: 0 50%;
  transform: translateX(-100%) skew(15deg);
}

.main-navigation a {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 90%;
  color: #ffffff;
  line-height: 1;
  text-decoration: none;
  user-select: none;
  padding: var(--space) calc(var(--space) * 2)
    calc(var(--space) + var(--border-size) / 2);
  transform: translateY(100%);
  font-size: 1.2rem;
  width: 100%;
  border-bottom: 3px solid rgba(0, 110, 255, 0.767);
  border-radius: 100%;
}

.main-navigation a:hover {
  color: #e04b15;
  border-bottom: 3px solid #e04b15;
  transform: scale(1.3, 1.3);
}

.main-content {
  margin: 6rem auto;
  max-width: 70ch;
  padding: 0 calc(var(--space) * 2);
  transform: translateX(0);
  transition: transform calc(var(--nav-duration) * 2) var(--ease);
}

.main-content > * + * {
  margin-top: calc(var(--space) * var(--line-height));
}

.main-navigation-toggle:checked ~ label .icon--menu-toggle .icon-group {
  transform: translateX(100%);
}

.main-navigation-toggle:checked ~ .main-content {
  transform: translateX(10%);
}

.main-navigation-toggle:checked ~ .main-navigation {
  transition-duration: 0s;
  transform: translateX(0);
}

.main-navigation-toggle:checked ~ .main-navigation:after {
  animation: nav-bg var(--nav-duration) var(--ease) forwards;
}

.main-navigation-toggle:checked ~ .main-navigation li:after {
  animation: nav-line var(--duration) var(--ease) forwards;
}

.main-navigation-toggle:checked ~ .main-navigation a {
  animation: link-appear calc(var(--duration) * 1.5) var(--ease) forwards;
}

.main-navigation-toggle:checked ~ .main-navigation li:nth-child(1):after,
.main-navigation-toggle:checked ~ .main-navigation li:nth-child(1) a {
  animation-delay: calc((var(--duration) / 2) * 1 * 0.125);
}

.main-navigation-toggle:checked ~ .main-navigation li:nth-child(2):after,
.main-navigation-toggle:checked ~ .main-navigation li:nth-child(2) a {
  animation-delay: calc((var(--duration) / 2) * 2 * 0.15);
}

.main-navigation-toggle:checked ~ .main-navigation li:nth-child(3):after,
.main-navigation-toggle:checked ~ .main-navigation li:nth-child(3) a {
  animation-delay: calc((var(--duration) / 2) * 3 * 0.175);
}

.main-navigation-toggle:checked ~ .main-navigation li:nth-child(4):after,
.main-navigation-toggle:checked ~ .main-navigation li:nth-child(4) a {
  animation-delay: calc((var(--duration) / 2) * 4 * 0.2);
}


.main-navigation-toggle:checked~.main-navigation li:nth-child(5):after,
.main-navigation-toggle:checked~.main-navigation li:nth-child(5) a {
  animation-delay: calc((var(--duration) / 2) * 5 * 0.225);
}

.main-navigation-toggle:checked~.main-navigation li:nth-child(6):after,
.main-navigation-toggle:checked~.main-navigation li:nth-child(6) a {
  animation-delay: calc((var(--duration) / 2) * 6 * 0.250);
}

.main-navigation-toggle:checked~.main-navigation li:nth-child(7):after,
.main-navigation-toggle:checked~.main-navigation li:nth-child(7) a {
  animation-delay: calc((var(--duration) / 2) * 7 * 0.275);


}

.main-navigation-toggle:checked~.main-navigation li:nth-child(8):after,
.main-navigation-toggle:checked~.main-navigation li:nth-child(8) a {
  animation-delay: calc((var(--duration) / 2) * 8 * 0.300);


}

.main-navigation-toggle:checked~.main-navigation li:nth-child(9):after,
.main-navigation-toggle:checked~.main-navigation li:nth-child(9) a {
  animation-delay: calc((var(--duration) / 2) * 9 * 0.325);


}

@keyframes nav-bg {
  from {
    transform: translateX(-100%) skewX(-15deg);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes nav-line {
  0% {
    transform: scaleX(0);
    transform-origin: 0 50%;
  }

  35% {
    transform: scaleX(1.001);
    transform-origin: 0 50%;
  }

  65% {
    transform: scaleX(1.001);
    transform-origin: 100% 50%;
  }

  100% {
    transform: scaleX(0);
    transform-origin: 100% 50%;
  }
}

@keyframes link-appear {
  0%,
  25% {
    transform: translateY(100%);
  }

  50%,
  100% {
    transform: translateY(0);
  }
}








main {

  width: 100%;
  height: auto;
  position: absolute;
  top: 800px;

}


.mainbannner {
  position: absolute;
  top: 0;
  width: 100%;
  height: 70px;

  overflow: hidden;
  display: flex;
  align-items: center;
  overflow: hidden;

}


.mainbannner ul {
  position: absolute;
  width: 100%;
  height: 65px;
  display: flex;
  justify-content: center;
  gap: 2vh;
  overflow: hidden;
}


.mainbannner ul li {
  position: relative;
  width: auto;
  display: flex;
  gap: 1vh;
  align-items: center;
  font-family: vaziri;
  font-size: 1.5rem;
  font-weight: 600;
  color: #e3fc01;
  overflow: hidden;

}

.mainbannner ul li img {
  width: 65px;
  height: 65px;
  max-width: 65px;
  max-height: 65px;
  overflow: hidden;
  
}


.textCaption {
  position: absolute;
  top: 100px;
  width: 100%;
  height: 760px;
  font-style: oblique;
}


.testsubmitbox{
  position: relative;
  left: 7.5%;
  top: 200px;
  width: 85%;
  height: auto;
  background-color: rgba(255, 255, 255, 0.062);
  direction: rtl;
  font-family: vaziri;
  border-radius: 10px;
  border: 1px solid #ffffff2c;
  padding-bottom: 10px;
}
.testsubmitbox h1{
  text-align: center;
  color:#FE5C20  ;
  position: relative;
  top: 15px;
  font-size: 22px;
  text-shadow: 2px 2px 2px rgb(0, 0, 0) ;
}

.testsubmitbox h2{
  margin-right: 10px;
  color: #ffffff;
  font-size: 15px;
  line-height: 32px;
  text-wrap: 5px;
  font-weight: 500;
  font-style: italic;


}

.testsubmitbox a{
  
  color: #eceef0;
  padding:4px;
  background-color: #0674f1;
  border-radius: 10px;
  border: 1px solid #ffffff2a;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.589);
}
.testsubmitbox a:hover{
  background-color: #04991d;
}

.testsubmitbox span{
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}


.textCaption ul {
  position: relative;
  width: 80%;
  height: 560px;

  left: 10%;
  display: grid;
  gap: 1vh;
  justify-content: center;
  align-items: center;

}

.textCaption ul li:nth-child(2) p {
  position: relative;
  left: 172px;
  text-align: left;
}

.textCaption ul li:nth-child(2) h2 {
  position: relative;
  left: -160px;
}

.textCaption ul li h2 {
  position: relative;
  left: 180px;
  top: 94px;
  max-width: 350px;
  font-family: vaziri;
  color: #FE5C20;
}


.textCaption ul li p {
  position: relative;
  left: -160px;
  font-family: vaziri;
  color: #ffffff;
  font-size: 16px;
  max-width: 310px;
  height: auto;
  direction: rtl;
  text-align: right;
  line-height: 32px;
  text-wrap: 5px;
}

.buttonboxing {
  position: relative;
  top: 50px;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;


}

.buttonboxing a {
  left: 88px;
  top: 60px;
  color: #ffffff;
  font-family: vaziri;
  font-size: 16px;
  background-color: #0252ff;
  border: 1px solid #ffffff52;
  direction: rtl;
  padding: 8px 40px;
  border-radius: 10px;
  margin: 10px;
  box-shadow: 1px 2px 1px #ffffff34;
}

.buttonboxing a:hover {
  background-color: #04991d;
}


.imgItemsBox {
  position: absolute;
  top: 1200px;
  width: 100%;
  height: 700px;
  display: flex;
  overflow: hidden;

}


.smallBox {
  position: relative;
  width: 50%;
  height: 700px;

}

.smallBox ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;

}

.smallBox ul li.box {
  background-color: #ffffff33;
  color: #000;
  width: 45%;
  overflow: hidden;
  height: 200px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #ffffff8a;
  font-size: 24px;


}



.smallBox ul li.box:hover {
  transform: scale(1.1, 1.1);
  transition: all 100ms ease-in;
}

.smallBox ul li a {
  position: relative;
  width: 100%;
  height: 100%;
  text-wrap: 5px;


}

.smallBox ul li a h3 {
  font-family: vaziri;
  font-size: 20px;
  color: #ffffff;
  text-shadow: 1px 1px 9px #000;
  margin-top: 168px;
  background-color: #087c3c;

}









.picboxing1,
.picboxing2,
.picboxing3,
.picboxing4,
.picboxing5,
.picboxing6 {
  position: relative;
  width: 100%;
  height: 200px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: end;
  overflow: hidden;
  font-family: vaziri;


}


.picboxing1 {
  background-image: url(/Img/box/amoozesh.jpg);
  background-size: 100% 100%;

}

.picboxing2 {
  background-image: url(/Img/box/jonUs.jpg);
  background-size: 100% 100%;

}

.picboxing3 {
  background-image: url(/Img/box/morbi.jpeg);
  background-size: 100% 100%;


}


.picboxing4 {
  background-image: url(/Img/box/cadrfani.jpg);
  background-size: 100% 100%;

}

.picboxing5 {
  background-image: url(/Img/box/tajhizat.jpg);
  background-size: 100% 100%;

}

.picboxing6 {
  background-image: url(/Img/box/archive.jpg);
  background-size: 100% 100%;

}





.swipping {
  position: relative;
  width: 50%;
  height: 640px;



}



.swipping .tizerBox {
  position: relative;
  width: 95%;
  left: 2.5%;
  height: 420px;
  border-radius: 10px;
  background-color: #ffffff3a;
  box-shadow: -1px 1px 10px #0278ff;

}


.videoTizr {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

#myVideo {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}










.tizerCaption {
  position: relative;
  top: 20px;
  width: 95%;
  left: 2.5%;
  height: 200px;
  border-radius: 10px;
  background-color: #ffffff0e;
  box-shadow: -1px 1px 10px #0278ff;
  display: grid;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: #e04b15;
  font-family: vaziri;
}











@media only screen and (max-width: 768px) {
  .imgItemsBox {
    display: grid;
    height: 1400px;
    top: 1000px;
    overflow: hidden;
  }

  .swipping {
    width: 100%;
  }

  .smallBox {


    top: 20px;
    width: 100%;

  }
}





.mediaContianer {
  position: absolute;
  top: 1970px;
  width: 95%;
  left: 2.5%;
  bottom: 0;
  height: auto;
  font-style: italic;
}

.footer-banner {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
}

.footer-banner p {
  font-family: transStyle;
  font-size: 46px;
  font-weight: 800;
  color: rgb(233, 68, 17);
  text-shadow: 3px 3px #000000;
}

.footer-banner span {
  color: #ffffffec;
}

.down-media {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
}

.down-media a img {
  width: 40px;
  height: 40px;
}

.down-media a:hover img {
  transform: scale(1.3, 1.3);
}

.down-media a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
}

.down-media .markslah {
  width: 2px;
  height: 30px;
  background-color: #FE5C20;
  transform: skewX(-15deg);
  margin: 1vw;
}


.animations {
  position: absolute;
  width: 100%;
  height: auto;
  top: 240px;
  width: 100%;
  display: grid;
  justify-content: center;



}

.chevrons {
  padding: 6px 0 0 0;
  margin-top: 48px;
  width: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.chevrondown {
  margin-top: -10px;
  position: relative;
  border: solid #ff0000;
  border-width: 0 3px 3px 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  transform: rotate(45deg);
}

.chevrondown:nth-child(odd) {
  animation: pulse54012 500ms ease infinite alternate;
}

.chevrondown:nth-child(even) {
  animation: pulse54012 500ms ease infinite alternate 250ms;
}

@keyframes pulse54012 {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.8;
  }
}

footer {

  position: absolute;
  top: 3000px;
  bottom: 0;
  width: 100%;
  height: auto;
  background-color: rgba(45, 6, 71, 0.938);



}


.dropdownfooter {
  display: none;
}


/****************footertexting********************/

.footertexting {
  position: relative;
  top: 0px;
  width: 100%;
  height: 360px;
  background-color: #020235;
}

.footertexting ul {
  position: relative;
  width: 95%;
  left: 2.5%;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  direction: rtl;
}

.footertexting li {
  position: relative;
  width: 32%;
  height: 320px;
}

.footertexting li p {
  margin-right: 10px;
  text-align: right;
  position: relative;
  top: 0;
  direction: rtl;
  color: #ffffff;
  font-family: vaziri;
  font-size: 14px;
  font-weight: 500;
}

.footertexting li img {
  max-width: 90px;
  max-height: 90px;
}

.footertexting li h3 {
  font-family: vaziri;
  text-align: center;
  color: #ffffff;
  border-bottom: 1px solid #e04b15;
  width: 100%;
  height: 35px;
}

.footertexting .addres {
  position: relative;
  width: 100%;
  height: 100%;
}

.footertexting .addres .positionAdrresButton {
  display: flex;
  justify-content: right;
  margin-top: 16px;
  
}

.footertexting .addres span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-right: 10px;
  margin-bottom: 8px;

}

.footertexting .addres a {
  direction: ltr;
  display: flex;
  align-items: center;
  justify-content: right;
  color: #ffffff;
  background-color: #0278ff;
  border: 1px solid rgba(255, 255, 255, 0.274);
  box-shadow: 1px 1px rgba(255, 255, 255, 0.144);
  font-family: vaziri;
  font-weight: 400;
  font-size: 12px;
  width: auto;
  height: 30px;
  border-radius: 5px;
  padding: 0 5px;

}

.footertexting .addres a img {
  max-width: 15px;
  max-height: 15px;
}

.footertexting .addres a:hover {
  background-color: #fd6703;
}



.footertexting li .contactus a {
  color: #0278ff;
  text-decoration: underline;
}

.footertexting li .contactus a:hover {
  color: #fd6703;
  font-weight: 600;
}





.footertexting li .contactus .repostion {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: right;


}

.footertexting li .contactus .repostion img {
  max-width: 25px;
  max-height: 25px;
  padding-bottom: 8px;

}

.footertexting li .contactus .repostion p {
  margin-right: 0;
}


.footertexting li .contactus span {
  width: 100%;
  height: 100px;
  display: flex;
  margin-top: 24px;
  justify-content: left;

}

.footertexting li .contactus span img {
  max-width: 90px;
  max-height: 90px;

}





/* Copyright Section */

.copyright {
  position: absolute;
  top: 320px;
  width: 100%;
  height: 54px;
  background-color: rgb(39, 38, 38);
  overflow: hidden;

}

.copyright ul {
  position: relative;
  width: 95%;
  left: 2.5%;
  height: 100%;
  display: flex;

  align-items: center;
}

.copyright li {
  position: relative;
  width: 100%;

  display: flex;
  justify-content: right;
  align-items: center;
}

.copyright ul li:nth-child(1) {
  justify-content: left;
}

.copyright li a {
  margin-left: 1vh;
  max-width: 40px;
  min-height: 40px;
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #bcff02a2;
}

.copyright li a:hover {
  box-shadow: 1px 3px 5px #0674f1;
  transform: scale(1.3, 1.3);
  background-color: #06c5ff00;
}

.copyright li a img {
  width: 35px;
  height: 30px;
}

.copyright p {
  color: antiquewhite;
  font-size: 13px;
  text-align: center;
  font-weight: 500;
  font-family: vazrir;
}







/******************media break poitnt***********/


@media only screen and (max-width: 768px) {

  
  .imgItemsBox{
    top: 1600px;
  }




  .textCaption ul {

    height: 800px;
    width: 95%;
    left: 2.5%;
  }

  .textCaption ul li p {
    margin-right: 16px;
    max-width: 100%;
    left: 0;


  }

  .textCaption ul li h2 {
    max-width: 100%;
    margin-right: 16px;
    font-size: 20px;
    left: 0;
    right: 0;
    top: -1vh;
    text-align: right;
  }

  .textCaption ul li:nth-child(2) p {
    position: relative;
    left: 0;
    text-align: right;
  }

  .textCaption ul li:nth-child(2) h2 {
    position: relative;
    left: 0;
    text-align: right;
  }

  .textCaption ul .btnInfo {

    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;

  }

  .textCaption ul .btnInfo a {
    left: 0;
  }



  main {
    height: auto;
    
  }

  .textCaption {
    height: 900px;

  }

  .textCaption ul li p {
    line-height: 40px;
  }


  .mainbannner ul li {
    font-size: 16px;
  }

  .mainbannner ul li img {
    width: 55px;
    height: 55px;
    max-width: 55px;
    max-height: 55px;
  }















  .mediaContianer {
    top:3000px;

  }




  footer {
    height: auto;
    position: absolute;
    top: 3800px;




  }

  .footertexting {
    display: none;
  }

  .footertexting ul {
    height: 720px;
    top: 0;
    display: grid;
    justify-content: center;
    display: none;
  }

  .footertexting ul li {

    width: 100%;
    height: 256px;
    display: none;
  }


  .footertexting ul li h3 {
    text-align: right;


  }

  .coworker h3 {
    padding-right: 10px;

  }

  .addres h3 .resizespan {
    background-color: #e04b15;
    width: 50px;
    padding: 0 5px;
    border-radius: 5px;
  }

  .footertexting .addres .positionAdrresButton {
    display: flex;
    justify-content: left;
  }

  .coworker h3 span {
    background-color: #e04b15;
    padding: 0 10px;
    border-radius: 5px;
  }

  .contactus h3 {
    padding-right: 10px;
    width: 120px;
    height: 32px;

  }

  .contactus h3 span {
    background-color: #e04b15;
    padding: 0 5px;
    border-radius: 5px;
  }




  .dropdownfooter {
    position: relative;
    height: auto;
    min-height: 250px;
    top: 255px;
    display: block;
    background-color: #020235;
    padding: 20px;
    overflow: hidden;
  }

  .footer-section {
    margin-bottom: 10px;

  }

  .footer-title {
    border: none;
    border-bottom: 1px solid #ffffff31;
    color: rgb(7, 0, 0);
    padding: 10px;
    background-color: #020235;
    width: 100%;
    text-align: right;
    font-size: 20px;
    cursor: pointer;

  }

  .footer-title ul {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    direction: rtl;
    color: #e04b15;
    font-family: vaziri;
    font-weight: 900;
    text-shadow: 1px 1px #110101;

  }


  .footer-content {
    display: none;

    padding: 10px;
    border-radius: 5px;

  }



  .footer-content .addres,
  .coworker,
  .contactus {
    direction: rtl;
    font-family: vaziri;
    color: #ffffff;
    font-size: 14px;

  }


  .footer-content .addres .positionAdrresButton {
    display: flex;
    justify-content: left;
    margin-top: 16px;

  }

  .footer-content .addres .positionAdrresButton a {
    background-color: #0278ff;
    border-radius: 10px;
    margin-left: 10px;
    padding: 5px ;
    color: #ffffff;
    font-size: 10px;
    font-weight: 400;
    border: 1px solid #ffffff18;
  }

  .footer-content .addres .positionAdrresButton a:hover {
    background-color: #e04b15;

  }





  .footer-content .addres .positionAdrresButton img {
    width: 15px;
    height: 15px;
    max-width: 15px;
    max-height: 15px;
  }

  .footer-section .repostion {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: right;


  }

  .footer-section .repostion img {
    height: 20px;
    width: 20px;
    max-width: 20px;
    max-height: 20px;
    margin-left: 5px;
  }

  .contactus a {
    color: #06c5ff;
    text-decoration: underline;
    font-size: 16px;
    font-weight: 500;
  }

  .contactus a:hover {
    font-weight: 600;
    color: #e04b15;
  }

  .contactus span {
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: left;
    margin-top: 16px;
  }

  .contactus span img {
    width: 80px;
    height: 80px;
    max-width: 80px;
    max-height: 80px;
  }



  .coworker .repostion img {
    width: 35px;
    height: 35px;
    max-width: 35px;
    min-height: 35px;
    margin-left: 5px;
  }


  .copyright {
    position: relative;
    top: 255px;
  }



}