@font-face {
  font-family: iranyekan;
  font-style: normal;
  font-weight: normal;
  src: url("../../../axz_personal_portfolio_html_template/fonts/2-IranYekan/iranyekanwebregular.eot");
  src: url("../../../axz_personal_portfolio_html_template/fonts/2-IranYekan/iranyekanwebregular.eot") format("embedded-opentype"), url("../../../axz_personal_portfolio_html_template/fonts/2-IranYekan/iranyekanwebregular.woff2") format("woff2"), url("../../../axz_personal_portfolio_html_template/fonts/2-IranYekan/iranyekanwebregular.woff") format("woff"), url("../../../axz_personal_portfolio_html_template/fonts/2-IranYekan/iranyekanwebregular.ttf") format("truetype");
}

:root {
  --cm-bg: #1E1E1E;
  --cm-mode: #222525;
  --cm-border: #2A2E2E;
  --font: iranyekan, sans-serif;
  --cm-white: #fff;
  --cm-primary: #56B887;
}

a,
a:hover,
a:visited {
  text-decoration: none;
}

body {
  font-family: var(--font);
  font-optical-sizing: auto;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding: 30px 0;
  background: var(--cm-bg);
}

.container {
  max-width: 1295px;
}

.theme__btn {
  height: 85px;
  min-width: 220px;
  max-width: 220px;
  background: var(--cm-mode);
  border: 2px solid var(--cm-border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  color: var(--cm-white);
  transition: all .3s ease;
}

.theme__btn:hover {
  background: var(--cm-primary);
}

@media screen and (max-width: 575px) {
  .theme__btn {
    height: 65px;
    min-width: 160px;
    max-width: 160px;
  }
}

.theme__btn.primary {
  background: var(--cm-primary);
}

.cm-header {
  position: relative;
  z-index: 2;
  margin-top: 2rem;
}

.cm-header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cm-header__wrapper .logo {
  min-width: 135px;
  max-width: 135px;
  height: 85px;
  border: 2px solid var(--cm-border);
  background: var(--cm-mode);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 575px) {
  .cm-header__wrapper .logo {
    height: 65px;
  }
}

.cm-banner {
  padding: 130px 0;
  position: relative;
  z-index: 1;
}

.cm-banner::before {
  position: absolute;
  content: '';
  background-image: url(../img/bg.png);
  height: 165%;
  width: 100%;
  top: -116px;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.cm-banner__content h1 {
  font-size: 82px;
  font-weight: 500;
  line-height: 92px;
  text-align: center;
  color: var(--cm-white);
}

.cm-banner__content h1 span {
  color: var(--cm-primary);
}

@media screen and (max-width: 767px) {
  .cm-banner__content h1 {
    font-size: 60px;
    line-height: 70px;
  }
}

@media screen and (max-width: 575px) {
  .cm-banner__content h1 {
    font-size: 45px;
    line-height: 55px;
  }
}

.cm-theme-mode {
  position: relative;
  z-index: 2;
}

.cm-theme-mode .single-mode {
  text-align: center;
}

.cm-theme-mode .single-mode__content>a {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
  display: inline-block;
}

.cm-theme-mode .single-mode__content>a::before {
  position: absolute;
  left: 0;
  top: 50%;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  content: '';
  background: var(--cm-bg);
  opacity: 0;
  transition: all .3s ease;
}

.cm-theme-mode .single-mode__content>a:hover::before {
  opacity: .4;
  top: 0;
}

.cm-theme-mode .single-mode__content img {
  border-radius: 10px;
  height: 100%;
  max-width: 100%;
}

.cm-theme-mode .single-mode>a {
  font-size: 28px;
  font-weight: 500;
  color: var(--cm-white);
  display: inline-block;
  margin-top: 30px;
  position: relative;
}

.cm-theme-mode .single-mode>a::before {
  position: absolute;
  bottom: -12px;
  width: 20%;
  height: 2px;
  background: var(--cm-white);
  content: '';
  left: 50%;
  transform: translateX(-50%);
  transition: all .3s ease;
}

.cm-theme-mode .single-mode>a:hover::before {
  width: 100%;
  background: var(--cm-primary);
}

.cm-theme-mode__bg {
  background: var(--cm-mode);
  border-radius: 20px;
  border: 2px solid var(--cm-border);
  padding-top: 125px;
  padding-left: 110px;
  padding-right: 110px;
  padding-bottom: 120px;
}

@media screen and (max-width: 991px) {
  .cm-theme-mode__bg {
    padding-top: 65px;
    padding-left: 60px;
    padding-right: 60px;
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 575px) {
  .cm-theme-mode__bg {
    padding: 30px;
  }
}

.cm-theme-mode .cm-buy-now {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

.cm-footer {
  padding-top: 40px;
}

.cm-footer__wrapper {
  display: flex;
  gap: 25px;
}

.cm-footer__wrapper .footer--copyright {
  background: var(--cm-mode);
  border-radius: 20px;
  border: 2px solid var(--cm-border);
  height: 85px;
  flex-basis: 95%;
  display: flex;
  align-items: center;
  padding-right: 50px;
}

@media screen and (max-width: 575px) {
  .cm-footer__wrapper .footer--copyright {
    flex-basis: 100%;
    padding: 15px;
  }
}

.cm-footer__wrapper .footer--copyright p {
  color: var(--cm-white);
  margin: 0;
}

.cm-footer__wrapper .footer--copyright p a {
  color: var(--cm-primary);
}

.cm-footer__wrapper .footer--scroll {
  max-width: 85px;
  min-width: 85px;
  min-height: 85px;
  max-height: 85px;
  background: var(--cm-mode);
  border-radius: 20px;
  border: 2px solid var(--cm-border);
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 575px) {
  .cm-footer__wrapper .footer--scroll {
    display: none;
  }
}

.svg {
  transform: scaleX(-1);

}
.dontcopy {
    background-color: rgb(221, 74, 74);
    color: white;
    font-size: 20px;
    text-align: center;
    display: flex;
    width: 100%;
    position: relative;
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    margin-top: -2rem;
    padding-bottom: 2rem;
}
.dontcopy p {
    color: white;

}
.dontcopy button {
    background-color: #8ed457;
    color: white;
    padding: 1rem;
    margin-top: 1rem;
    cursor: pointer;
}
.dontcopy button a {
    color: white;
    font-size: 16px;
}