@font-face{
  font-family: 'KDFont';
  src: url(../fonts/KurdishRaber.ttf) format('truetype');
}
:root {
  --blue: #007bff;
  --light-blue: rgba(0, 140, 186, 0.5);
  --orage: #ffcc33;
  --white: #fff;
  --black: #000;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'KDFont' !important;
  text-decoration: none;
}
body {
  font-family: Arial;
  padding: 10px;
  background: #fff !important;
}
h1 , h2 {
  text-align: center !important;
} 
h1:hover , h2:hover {
  color: var(--orage);
}
h3 , h4 , h5 , h6 , p {
  text-align: right !important;
}
.row {
  margin-top: 50px;
}
/* Header/Blog Title */
.header {
  padding: 30px;
  text-align: center;
  background: white;
  z-index: 1000;
}

.header h1 {
  font-size: 50px;
}

/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #333;
  
  border: 10px solid transparent;
  padding: 15px;
  border-image: url(../Images/AS.png) 30 stretch;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.leftcolumn {   
  float: left;
  width: 75%;
}
.leftcolumn h1 {
  width: 100%;
  text-align: center;
  margin-top: 20px;
  border-right: 2px solid var(--light-blue);
  border-left: 2px solid var(--light-blue);
  transition: .8s;
}
.leftcolumn h1:hover {
  color: var(--orage);
  box-shadow: 0 0 10px 10px var(--light-blue);
  border-radius: 10px;
  cursor: pointer;
}
/* Right column */
.rightcolumn {
  float: left;
  width: 25%;
  background-color: #fff;
  padding-left: 20px;
}

/* Fake image */
.fakeimg {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}
.card .img {
  outline: 1px solid #000;
  border-top-right-radius: 20%;
  border-bottom-left-radius: 20%;
  padding: 5px;
  width: 100px;
  height: 100px;
  transform: rotateY(25deg);
  transition: .8s;
}
.card .img:hover {
  border: 1px solid #ddd;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 20%;
  border-bottom-right-radius: 20%;
  box-shadow: 0 0 20px 1px rgba(0, 140, 186, 0.5);
  transform: rotateZ(25deg);
  cursor: pointer;
}

.card {
  background-color: white;
  padding: 20px;
  margin-top: 20px;
}
.card .cards__list {
  display: flex;
  flex-direction: row-reverse;
  font-size: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1;
}
.card .cards__list i {
  color: var(--blue);
  font-size: 34px;
  transition: .4s;
}
.card .cards__list i:hover {
  color: var(--orage);
}
.card .cards__list i:not(2) {
  color: #000;
}
.card .title {
  width: 100%;
  font-size: 30px;
  color: #000;
  font-weight: 500;
  margin-bottom: 10px;
}
.card ul {
  list-style: none;
  padding: 15px;
}
.card ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.card ul li .icon {
  font-size: 20px;
  color: #000;
  margin-right: 10px;
}
.card ul li a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 400;
}
.card ul li a:hover {
  color: var(--blue);
}
.s1 , .s2 , .s3 , .s4 {
  transition: .8s;
}
.s2:hover , .s3:hover , .s4:hover {
  border: 1px solid #000;
  border-radius: 10px;
  box-shadow: 0 0 10px 5px var(--light-blue);
}
.row::after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 800px) {
  .leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
  }
  .container .box {
    flex-direction: column;
  }
}
@media screen and (max-width: 400px) {
  .topnav a {
    float: none;
    width: 100%;
  }
  .container .box {
    display: flex;
    flex-direction: column;
    
  justify-content: space-around;
  align-items: center;
  }
  .footer {
    display: flex;
    flex-direction: column;
    
  justify-content: space-around;
  align-items: center;
  }
}
#rcorners2 {
  border-radius: 15px 50px;
  background: #73AD21;
  padding: 20px;
  width: 100%;
  height: 150px;
  transition: .8s;
}
#rcorners2:hover{
  border-radius: 25px;
  background: 2px solid #73AD21;
  padding: 20px;
  width: 100%;
  height: 150px;
  transition: .5s;
}

.container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1;
}
.container .col {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 1;
}
.container .box {
  border: 1px solid #000;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 75%;
  height: 25%;
  color: #fff;
  flex: 1;
  align-self: center;
  margin: 50px auto;
  padding: 20px;
  background: var(--light-blue);
  transition: .8s;
}
.container .box:hover {
  background: #fff;
  color: #000;
  outline: 1px solid #000;
  border-radius: 20px;
  box-shadow: 0 0 25px 5px var(--light-blue);
}
.container .box img {
  margin-left: 10px;
  width: 350px;
  height: 200px;
  transition: .8s;
}
.container .box img:hover {
  border: 3px solid var(--orage);
  border-radius: 10px;
  box-shadow: 0 0 20px 1px var(--light-blue);
  cursor: pointer;
}
.container .box h2:hover {
  color: var(--orage);
  cursor: pointer;
}
.container .box .text {
  color: #fff transparent;
  text-align: justify;
  text-justify: inter-word;
}
.container .box .btn , .btn{
  outline: none;
  width: 150px;
  height: 35px;
  padding: 0 10px;
  margin-top: 10px;
  color: #fff;
  border: none;
  background: var(--blue);
  font-size: 14px;
  transition: .8s;
}
.btn a {
  color: #fff;
  text-decoration: none;
}
.btn a:hover {
  color: #000;
}
.container .box .btn:hover , .btn:hover {
  background: var(--orage);
  color: #000 !important;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
}
.container .comments {
  padding: 10px;
  margin-right: 10px;
}
.container .comments input {
  font-size: 14px;
  width: 250px;
  font-weight: bold;
  outline: none;
  border: none;
  color: var(--orage);
  background-color: var(--light-blue);
  border-bottom: 2px solid #000;
}
.container .comments input::placeholder {
  font-size: 16px;
  color: #fff;
  font-style: italic;
  text-align: center;
  transition: .5s;
}
.container .comments #btn {
  width: 50px;
  font-weight: bolder;
  outline: none;
  border: none;
  font-size: 14px;
  color: #fff;
  background: var(--light-blue);
  border-bottom: 2px solid #000;
}
.container .comments #btn:hover {
  background: var(--orage);
  cursor: pointer;
  transition: .8s;
}



.header {
  background: #000;
}

/* 
=====================
دیزانی کردنی مینوو شۆ لای دەستە راست
دەست پێک
=====================
*/
nav {
  position: fixed;
  top: 0;
  right: 120;
  height: 70px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  background: whitesmoke;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}
nav .logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  margin: 0 24px;
  opacity: 10;
}
nav .logo img {
  width: 50px;
  height: 50px;
  margin-right: 14px;
}
nav .logo img:hover {
  cursor: pointer;
}
.logo .menu-icon {
  color: #ffffff;
  font-size: 24px;
  margin-right: 14px;
  cursor: pointer;
  z-index: 1000;
}
.logo .logo-name {
  color: #ffffff;
  font-size: 32px;
  font-weight: 500;
  transition: .8s;
}
nav .logo-name:hover {
  letter-spacing: 4px;
  color: var(--orage);
  cursor: pointer;
}
nav .sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100%;
  width: 260px;
  padding: 20px 0;
  background-color: #fff;
  box-shadow: 0 5px 1px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  z-index: 1000;
}
nav.open .sidebar {
  right: 0;
}
.sidebar .sidebar-content {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 16px;
  z-index: 1000;
}
.sidebar-content .list {
  list-style: none;
}
.list .nav-link {
  display: flex;
  align-items: center;
  margin: 8px 0;
  padding: 14px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: .5s;
}
.lists .nav-link:hover {
  background-color: var(--orage);
}
.list .logoutbtn{
  background-color: #eb4d4b;
}
.bx-log-out , .logouttext{
  color: white !important;
}
.nav-link .icon {
  margin-right: 14px;
  font-size: 20px;
  color: #707070;
}
.nav-link .link {
  font-size: 16px;
  color: #707070;
  font-weight: 400;
  margin-right: 5px;
}
.lists .nav-link:hover .icon,
.lists .nav-link:hover .link {
  color: #fff;
}
.overlay {
  position: fixed;
  top: 0;
  right: -100%;
  height: 1000vh;
  width: 200%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  background: rgba(0, 0, 0, 0.3);
}
nav.open ~ .overlay {
  opacity: 1;
  right: 260px;
  pointer-events: auto;
}
/* 
=====================
دیزانی کردنی مینوو شۆ لای دەستە راست
کۆتایی
=====================
*/



.footer {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 20px;
  text-align: center;
  background: #000;
  margin-top: 20px;
  color: #fff;
}
.footer .email a{
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-right: 10px;
}

/* =========================
دەست بێکی دیزاینی پەیجی دەربارەی من
========================*/
.container-About {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 12px;
  margin-top: 20px;
}
.container-About .box-AboutMe {
  display: block;
  border-radius: 10px;
  width: 75%;
  height: 50%;
  color: #fff;
  margin: 50px auto;
  padding: 20px;
  box-shadow: 0 0 15px 10px var(--light-blue);
  transition: .8s;
  
}
.container-About .col-AboutMe {
  text-align: center;
  width: 100%;
  height: 25%;
  color: var(--black);
  margin: 20px auto;
  padding: 20px;
  transition: .8s;
}
.box-AboutMe .img-AboutMe {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-items: center;
  width: 100%;
  transition: .8s;
}
.img {
  margin-bottom: 10px;
  padding: 10px;
  width: 50%;
  height: 20%;
  transition: .8s;
}
.img:hover {
  border-radius: 10px;
  box-shadow: 0 0 20px 10px var(--orage);
}

/* =========================
  کۆتایی دیزاینی پەیجی دەربارەی من
========================*/

.footer .phone a , .footer .nameperson a , .footer .email a {
  color: var(--blue) !important;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}
.footer .phone a:hover , .footer .nameperson a:hover , .footer .email a:hover {
  color: var(--orage) !important;
  transition: .8s;
}



/* 
=======================================
دیزانی کردنی مینوو شۆ لای دەستە چەپ
=======================================
*/
.container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1;
}
.slider-wrapper {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.slider {
  display: flex;
  aspect-ratio: 16/9;
  overflow-x: x mandatory;
  scroll-behavior: smooth;
  box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0, 0, .25);
  border-radius: .5rem;
  transition: 0.5s;
}
.slider img {
  flex: 1 0 100%;
  scroll-snap-align: start;
  object-fit: cover;
}
.slider-nav {
  display: flex;
  column-gap: 1rem;
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.slider-nav a {
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background-color: #fff;
  opacity: .75;
  transform: opacity ease 250ms;
}
.slider-nav a.hover {
  opacity: 1;
}
/* 
===================================
کۆتایی دیزانی کردنی مینوو شۆ لای دەستە چەپ
===================================
*/

/* 
===================================
دیزانی کردنی کارتی دەربارەی من
===================================
*/
:root {
  --blue: #007bff;
  --light-blue: rgba(0, 140, 186, 0.5);
  --orage: #ffcc33;
  --white: #fff;
  --black: #000;
}
.card .clear-fix:after {
  display: block;
  clear: both;
  content: "";
}

.img-responsive {
  max-width: 100%;
  height: auto;
}

.card__collection {
  position: relative;
  display: block;
  padding: 10px;
  overflow: hidden;
}
.card__collection .cards {
  width: 300px;
  height: 400px;
  display: block;
  background-size: cover;
  float: left;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  background-position: center;
  margin: 10px;
}

.username{
  background-color: var(--blue);
  color: white;
  text-align: center;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif !important;
  font-size: 1.5rem;
  padding: 5px;
  margin-bottom: 2px;
}
.username svg{
  width: 25px; height: 25px;
}
.card__collection .cards--two {
  position: relative;
  backface-visibility: hidden;
}
.card__collection .cards--two p {
  position: absolute;
  top: 83%;
  left: -100%;
  text-transform: capitalize;
  color: #fff;
  font-size: 20px;
  z-index: 8;
  transition: all 0.6s ease;
}
.card__collection .cards--two:hover p {
  left: 8%;
}
.card__collection .cards--two:hover img {
  transform: translateY(-15px);
}
.card__collection .cards--two:hover .cards--two__rect {
  top: 75%;
}
.card__collection .cards--two:hover .cards--two__rect:before {
  transform: translateY(15px);
}
.card__collection .cards--two:hover li {
  transform: translateY(0);
}
.card__collection .cards--two:hover .cards--two__tri {
  right: -40%;
}
.card__collection .cards--two:hover .cards--two__tri:before {
  right: -312px;
}
.card__collection .cards--two img {
  transition: all 0.2s ease;
}
.card__collection .cards--two__tri {
  border-top: 220px solid transparent;
  border-bottom: 190px solid transparent;
  border-right: 288px solid #fff;
  opacity: 0.9;
  position: absolute;
  display: block;
  top: 0;
  right: -100%;
  transition: all 0.3s ease-in-out;
}
.card__collection .cards--two__tri:before {
  border-top: 220px solid transparent;
  border-bottom: 190px solid transparent;
  border-right: 288px solid var(--blue);
  position: absolute;
  content: "";
  display: block;
  top: -220px;
  right: -612px;
  transition: all 0.3s ease-in-out;
  transition-delay: 0.2s;
}
.specialist{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}
.card__collection .cards--two__rect {
  width: 750px;
  height: 200px;
  background: #fff;
  display: block;
  position: absolute;
  top: 175%;
  left: -78%;
  transform: rotate(30deg);
  z-index: 5;
  opacity: 0.9;
  transition: all 0.3s ease-in-out;
}
.card__collection .cards--two__rect:before {
  content: "";
  display: block;
  width: 100%;
  position: relative;
  height: 100%;
  background: var(--blue);
  transform: translateY(200px);
  z-index: 2;
  transition: all 0.3s ease-in-out;
  transition-delay: 0.1s;
}
.card__collection .cards--two ul {
  list-style: none;
  position: absolute;
  bottom: 0;
  left: 10px;
  z-index: 9;
}
.card__collection .cards ul li a{
  color: white !important;
  font-size: 20px !important;
  transition: 0.5s;
}
.card__collection .cards ul li a:hover{
  color: #ffaf40 !important;
}
.card__collection .cards--two ul li{
  display: inline-block;
  font-size: 16px;
  margin: 7px;
  color: #fff !important;
  transition: all 0.2s ease-in-out;
  transform: translateY(100px);
}
.card__collection .cards--two ul li:nth-child(2) {
  transition-delay: 0.2s;
}
.card__collection .cards--two ul li:nth-child(3) {
  transition-delay: 0.3s;
}
.card__collection .cards--two ul li:nth-child(4) {
  transition-delay: 0.4s;
}
/* 
======================================
کۆتایی دیزاینی کارتی دەربارەی من
======================================
*/