* {
    padding: 0;
    margin: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}
.nav-link.active {
  color: red;
  font-weight: bold;
}
.theme-light {
    --color-white: #FFFFFF;
    --bg-body: #FFFFFF;
    --bg-nav: #FFFFFF;
    --bg-menu: rgba(255, 255, 255, .5);
    --bg-menu-in: rgb(255, 255, 255);
    --text-color: #1D2447;
    --bg-home: rgba(130, 60, 242, .05);
    --bg-home-ft: #FDF4FE;
    --bg-skill: rgba(130, 60, 242, .05);
    --nav-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.theme-dark {
    --color-white: #1D2447;
    --bg-body: #141313;
    --bg-nav: #141313;
    --bg-menu: rgba(10, 10, 10, .5);
    --bg-menu-in: #141313;
    --text-color: #FFFFFF;
    --bg-home: transparent;
    --bg-home-ft: #1F1D1D;
    --bg-skill: #1F1D1D;
    --nav-shadow: -1px 6px 13px 0px rgba(0, 0, 0, 0.44);
}

body {
    background-color: var(--bg-body);
    direction: rtl;
    font-family: IRANSans;
    overflow-x: hidden;
}

#wrapper {
    overflow-x: hidden;
    overflow-y: hidden;
}

.noScroll {
    overflow-y: hidden;
}

.pt {
    margin-top: 100px;
}

.pt-pr {
    margin-top: 30px;
}

.pt-pr-x {
    margin-top: 50px;
}

.pt-pr-s {
    margin-top: 15px;
}

.pb-m {
    padding-bottom: 30px;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.hidden {
    display: none !important;
}

.n--row {
    width: 100%;
    max-width: 1380px;
    margin: auto;
}

.section-title {
    width: 100%;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    color: var(--text-color);
    font-weight: bold;
    padding-bottom: 10px;
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: #823CF2;
    bottom: 0;
    right: 0;
}

.fst-italic {
    font-style: italic !important;
}

/* begin nav style */
nav {
    height: 82px;
    width: 100%;
    z-index: 100;
    position: relative;
    background: var(--bg-nav);
}

nav.fixed {
    position: fixed !important;
    top: 0 !important;
}


.fixed-navbar {
    position: fixed !important;
    animation-name: navAnim;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-box-shadow: var(--nav-shadow);
    -moz-box-shadow: var(--nav-shadow);
    box-shadow: var(--nav-shadow);
}

.fixed-navbar-hide {
    position: fixed !important;
    animation-name: navAnimHide;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-box-shadow: var(--nav-shadow);
    -moz-box-shadow: var(--nav-shadow);
    box-shadow: var(--nav-shadow);
}

@keyframes navAnim {
    from {
        top: -82px;
    }

    to {
        top: 0;
    }
}

@keyframes navAnimHide {
    from {
        top: 0;
    }

    to {
        top: -82px;
    }
}

.nav-body {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 82px;
    white-space: nowrap;
    max-width: 1380px;
    margin: auto;
    width: 100%;
    position: relative;
}

.menu {
    position: relative;
}

.menu ul {
    padding: 0;
}

.menu ul li {
    list-style: none;
    display: inline;
}

.menu ul li>a {
    text-decoration: none;
    font-size: 16px;
    color: var(--text-color);
    position: relative;
    transition: all .25s ease-in-out;
    padding: 10px 10px;
    margin-left: 15px;
    font-weight: bold;
}

.menu ul li:last-child>a {
    margin-left: 0px;
}

.menu ul li>a>span {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0px;
    height: 5px;
    background-color: #823CF2;
    border-radius: 5px;
    transition: all .25s ease-in-out;
}

.menu ul li>a:hover {
    color: #823CF2;
}

.menu ul li>a:hover>span {
    width: 100%;
}

.menu ul li>a.active {
    color: #823CF2;
}

.menu ul li>a.active>span {
    width: 100%;
}

.menu ul li:last-child>a {
    border: 1px solid #823CF2;
    padding: 10px 30px;
    border-radius: 10px;
    color: #823CF2;
    box-shadow: 0px 0px 10px 0px #823CF2;
    -webkit-box-shadow: 0px 0px 10px 0px #823CF2;
    -moz-box-shadow: 0px 0px 10px 0px #823CF2;
}

.menu ul li:last-child>a:hover {
    background-color: #823CF2;
    color: white;
}

.menu ul li:last-child>a.active {
    background-color: #823CF2;
    color: white;
}

.menu ul li:last-child>a:hover>span {
    width: 0;
}

.menu ul li:last-child>a.active>span {
    width: 0;
}



#logo-pt {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
}

#logo-pt>a:nth-child(2) {
    color: #823CF2;
    font-size: 26px;
    text-decoration: none;
    font-weight: bold;
}

#logo-pt>a:nth-child(1)>img {
    width: 50px;
    margin-top: 5px;
}

#btnMenu {
    width: 36px;
    height: 36px;
    border: 1px solid #999090;
    border-radius: 8px;
    outline: none;
    background-color: transparent;
    display: none;
    position: absolute;
    left: 15px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.res-menu-line1 {
    background-color: #999090;
    width: 22px;
    height: 1px;
    display: block;
    transition: all .5s ease-in-out;
}

.res-menu-line2 {
    background-color: #999090;
    width: 22px;
    height: 1px;
    display: block;
    margin-top: 5px;
    transition: all .5s ease-in-out;
}

.res-menu-line3 {
    background-color: #999090;
    width: 22px;
    height: 1px;
    display: block;
    margin-top: 5px;
    transition: all .5s ease-in-out;
}

.rotA45Top {
    margin-top: 0px;
    transform: rotate(-45deg);
}

.rotA45Middle {
    display: none;
}

.rotA45Bottom {
    margin-top: 0px;
    transform: rotate(45deg);
}

/* end nav style */

/* begin home style */
#home {
    height: calc(100vh - 70px);
    width: 100%;
    padding-top: 82px;
    position: relative;
    background-color: var(--bg-skill);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}

#home .bg {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    width: 750px;
}

.octagon {
    width: 600px;
    aspect-ratio: 1;
    --o: calc(50% * tan(-22.5deg));
    clip-path: polygon(var(--o) 50%, 50% var(--o), calc(100% - var(--o)) 50%, 50% calc(100% - var(--o)));
    background: #823CF2;
    position: absolute;
    left: 0;
    z-index: 1;
}

.octagon-in {
    width: 500px;
    aspect-ratio: 1;
    --o: calc(50% * tan(-22.5deg));
    clip-path: polygon(var(--o) 50%, 50% var(--o), calc(100% - var(--o)) 50%, 50% calc(100% - var(--o)));
    background: #8f67ce;
    position: absolute;
    left: 150px;
    top: 50px;
    z-index: 2;
}

.fade-text {
    animation-name: fadeText;
    animation-duration: .5s;
    animation-fill-mode: forwards;
}

@keyframes fadeText {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.home-body {
    width: 100%;
    max-width: 1380px;
    margin: auto;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
    position: relative;
    z-index: 4;
}

.home-body>span:nth-child(1) {
    font-size: 22px;
    color: #823CF2;
    font-weight: bold;
}

.home-body>span:nth-child(2) {
    font-size: 78px;
    color: var(--text-color);
    font-weight: bold;
}

.home-body>div:nth-child(3)>span {
    font-size: 22px;
    color: var(--text-color);
    font-weight: bold;
}

.home-body>div:nth-child(4) {
    display: flex;
    grid-gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.home--ft {
    position: absolute;
    bottom: -66px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-home-ft);
    border: 1px solid #823CF2;
    height: 140px;
    border-radius: 80px;
    width: 80%;
    max-width: 900px;
    z-index: 5;
    box-shadow: 0px 0px 10px 0px #823CF2;
    -webkit-box-shadow: 0px 0px 10px 0px #823CF2;
    -moz-box-shadow: 0px 0px 10px 0px #823CF2;
}

.home--ft>div.line {
    width: 1px !important;
    height: 100px;
    background-color: #823CF2;
}

.home--ft>div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% / 3);
}

.home--ft>div>img {
    width: 70px;
    margin-left: 10px;
    max-height: 70px;
}

.home--ft>div>div {
    display: flex;
    flex-direction: column;
}

.home--ft>div>div>span:nth-child(1) {
    color: var(--text-color);
    font-weight: bold;
    font-size: 22px;
}

.home--ft>div>div>span:nth-child(2) {
    color: #823CF2;
    font-weight: normal;
    font-size: 18px;
}

/* end home style */


/* begin about style */
#about {
    margin-top: 180px;
}

.about-md {
    display: flex;
}

#about p {
    color: var(--text-color);
    font-size: 16px;
}

.about-md .col-1 {
    width: 340px;
}

.about-md .col-1 img {
    width: 100%;
    background-color: #823CF2;
    border-radius: 5px;
}

.about-md .col-2 {
    width: calc(100% - 340px);
    padding-right: 25px;
}

.about-md .col-2 h2 {
    padding-bottom: 10px;
    color: var(--text-color);
}

.about-md .col-2 .a-rw {
    display: flex;
    margin-top: 10px;
    margin-bottom: 15px;
}

.about-md .col-2 .a-rw>ul {
    width: 50%;
    list-style: none;
}

.about-md .col-2 .a-rw>ul>li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 16px;
    color: var(--text-color);
    margin-top: 20px;
}

.about-md .col-2 .a-rw>ul>li>img {
    width: 15px;
}

.about-md .col-2 .a-rw>ul>li>span.title {
    font-weight: bold;
}

.about-md .col-2 .a-rw>ul>li>span {
    margin-right: 7px;
}

.skills {
    background-color: var(--bg-skill);
    padding: 50px 0;
}

.skills-row {
    display: flex;
}

.skills-row>div {
    width: 50%;
}

.skills-row>div:nth-child(1) {
    padding-left: 20px;
}

.skills-row> :nth-child(2) {
    padding-right: 20px;
}

.progress-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-top: 10px;
}

.progress-title {
    position: relative;
    color: var(--text-color);
}

.progress-title>span:nth-child(1) {
    float: right;
}

.progress-title>span:nth-child(2) {
    float: left;
}

.progress-bar {
    width: 100%;
    background-color: #dce8f8;
    height: 10px;
}

.progress-fill {
    background-color: #823CF2;
    height: 10px;
    position: absolute;
    right: 0;
    bottom: 0;
    transition: all .4s ease-in-out;
    box-shadow: 0px 0px 10px 0px #823CF2;
    -webkit-box-shadow: 0px 0px 10px 0px #823CF2;
}

/* end about style */


/* begin cv style */
#cv {
    padding-bottom: 70px;
}

#cv p {
    color: var(--text-color);
    font-size: 16px;
}

.cv-row {
    display: flex;
}

.cv-row>div {
    width: 50%;
    padding-left: 30px;
}

.cv-row>div>div>h3 {
    color: var(--text-color);
    font-weight: bold;
    font-size: 20px;
}

.cv-row>div>div>div {
    border-right: 2px solid #823CF2;
    position: relative;
    padding-right: 25px;
}

.cv-row>div>div>div::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50px;
    right: -9px;
    top: 0;
    background: #fff;
    border: 2px solid #823CF2;
}

.cv-row>div>div>div>span:nth-child(1) {
    color: var(--text-color);
    font-weight: bold;
    font-size: 18px;
    display: block;
}

.cv-row>div>div>div>p.bg {
    color: white !important;
    font-weight: bold;
    font-size: 16px;
    background-color: #823CF2;
    border-radius: 5px;
    padding: 7px 20px;
    display: inline-block;
}

.cv-row>div>div>div>p {
    color: var(--text-color);
    font-size: 16px;
    margin-top: 10px;
}

.cv-row>div>div>div>ul {
    padding-right: 40px;
}

.cv-row>div>div>div>ul li {
    color: var(--text-color);
    font-size: 16px;
    margin-top: 10px;
}

/* end cv style */

/* begin service style */
#service {
    background-color: var(--bg-skill);
    padding: 50px 0;
}

.sliderP .swiper-container {
    width: 100%;
    height: 100%;
    z-index: 0 !important;
    overflow-x: hidden;
    position: relative;
    padding: 0 0px 20px 0px;
}

.service-sliders {
    margin-top: 40px;
}

.service-sliders .swiper-slide {
    width: 100%;
    color: var(--text-color);
    display: flex;
    align-items: flex-start;
    direction: ltr;
}

.service-sliders .swiper-slide>div:nth-child(1) {
    width: 50%;
}

.service-sliders .swiper-slide>div:nth-child(2) {
    width: 50%;
    direction: rtl;
    padding-left: 20px;
}


.service-sliders img {
    max-width: 100%;
    border-radius: 5px;
    background-color: #823CF2;
}


.service-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-body);
    margin-top: 40px;
    position: relative;
}

.service-nav>div {
    width: calc(100% / 5);
    height: 138px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all .25s ease-in-out;
}

.service-nav>div>div {
    width: 50px;
    height: 50px;
    border: 1px solid #823CF2;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-body);
    transition: all .25s ease-in-out;
    margin-top: 10px;
}

.service-nav>div>span {
    font-size: 14px;
    color: var(--text-color);
    margin-top: 15px;
}

.service-nav>div>div>img {
    width: 20px;
    transform: rotate(-45deg);
}

.service-nav>div.active {
    background-color: #823CF2;
}

.service-nav>div.active>div {
    width: 66px;
    height: 66px;
}

.service-nav>div.active>span {
    display: none;
}

.service-nav>div.active>div>img {
    width: 30px;
}

.service-nav>div:hover {
    background-color: #823CF2;
}

.service-nav>div:hover>div {
    width: 66px;
    height: 66px;
}

.service-nav>div:hover>span {
    display: none;
}


.service-nav>div:hover>div>img {
    width: 30px;
}

.service-nav>div.active:before,
.service-nav>div.active:after {
    content: '';
    display: block;
    position: absolute;
    bottom: -25px;
    width: 0;
    height: 0;
}

.service-nav>div.active:before {
    left: calc(50% - 15px);
    border: 14px solid transparent;
    border-top-color: #823CF2;
}

.service-nav>div.active:after {
    left: calc(50% - 15px);
    border: 13px solid transparent;
    border-top-color: #823CF2;
}

/* end service style */



/* begin portfolio style */
#portfolio {
    padding: 50px 0;
}

#portfolio p {
    color: var(--text-color);
    font-size: 16px;
}

/* end portfolio style */


/* begin customers style */
#customers {
    padding: 50px 0;
    background-color: var(--bg-skill);
    display: block;
}

.cust-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    grid-gap: 20px;
    margin-top: 50px;
}

.card-cust {
    width: calc((100% - 40px)/3);
    height: 180px;
    background-color: #823CF2;
    border-radius: 20px;
    padding: 20px;
}

.card-cust>div {
    display: flex;
}

.card-cust>p {
    color: white;
    font-size: 13px;
    margin-top: 10px;
}

.card-cust>div>img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    margin-left: 10px;
}

.card-cust>div>div>span {
    color: white;
    font-size: 20px;
    display: block;
}

.card-cust>div>div>span:nth-child(2) {
    color: white;
    font-size: 14px;
    display: block;
}

/* end customers style */

/* begin team style */
#team {
    padding: 50px 0;
}

.team-sliders {
    margin-top: 20px;
}

.team-sliders .swiper-slide {
    width: 100%;
    color: var(--text-color);
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding-top: 40px;
    width: 320px;
}

.team-sliders .swiper-slide>div {
    background-color: var(--bg-body);
    border: 1px solid #823CF2;
    width: 100%;
    height: 310px;
    border-radius: 0px;
}

.team-sliders .swiper-slide>div>div:nth-child(1) {
    padding: 0 10px;
}

.team-sliders .swiper-slide>div>div:nth-child(1)>img {
    width: 100%;
    margin-top: -40px;
    border-radius: 0px;
}

.team-sliders .swiper-slide>div>div:nth-child(2) {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.team-sliders .swiper-slide>div>div:nth-child(2)>span:nth-child(1) {
    color: var(--text-color);
    font-size: 16px;
    margin-top: 10px;
}

.team-sliders .swiper-slide>div>div:nth-child(2)>span:nth-child(2) {
    color: var(--text-color);
    font-size: 16px;
    font-weight: bold;
    margin-top: 5px;
}

.team-sliders .swiper-slide>div>div:nth-child(2)>div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    grid-gap: 15px;
}

.team-sliders .swiper-slide>div>div:nth-child(2)>div>a {
    width: 32px;
    height: 32px;
    transform: rotate(45deg);
    border: 1px solid #823CF2;
    box-shadow: 0px 0px 10px 0px #823CF2;
    -webkit-box-shadow: 0px 0px 10px 0px #823CF2;
    -moz-box-shadow: 0px 0px 10px 0px #823CF2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease-in-out;
}

.team-sliders .swiper-slide>div>div:nth-child(2)>div>a:hover {
    box-shadow: 0px 0px 10px 0px #cdcccf;
    -webkit-box-shadow: 0px 0px 10px 0px #cdcccf;
    -moz-box-shadow: 0px 0px 10px 0px #cdcccf;
}

.team-sliders .swiper-slide>div>div:nth-child(2)>div>a>img {
    width: 16px;
    height: 16px;
    transform: rotate(-45deg);
}

.team-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    grid-gap: 25px;
    margin-top: 40px;
}

.team-nav>button {
    outline: none;
    border: 1px solid #823CF2;
    width: 40px;
    height: 40px;
    background-color: transparent;
    transform: rotate(45deg);
}

.team-nav>button:hover {
    box-shadow: 0px 0px 10px 0px #823CF2;
    -webkit-box-shadow: 0px 0px 10px 0px #823CF2;
    -moz-box-shadow: 0px 0px 10px 0px #823CF2;
}

.team-nav>button>img {
    width: 14px;
    transform: rotate(-45deg);
}

.team-next.swiper-button-disabled,
.team-prev.swiper-button-disabled {
    opacity: .4;
}

/* end team style */

/* begin weblog style */
#weblog {
    background-color: var(--bg-skill);
    padding: 50px 0;
    color: var(--text-color);
}

.blog-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    grid-gap: 20px;
    margin-top: 35px;
}

.blog-item {
    width: calc((100% - 40px)/3);
}

.blog-item>div {
    position: relative;
    overflow: hidden;
}

.blog-item>div>img {
    width: 100%;
    transition: all .25s ease-in-out;
}

.blog-item>div>img:hover {
    transform: scale(1.2);
    /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.blog-pop {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    display: none;
    overflow-y: auto;
    top: 0;
    left: 0;
    z-index: 1001;
    padding: 50px 0;
}

.blog-pop.show {
    display: block;
}

.blog-pop-in {
    width: 450px;
    max-width: 100%;
    min-height: calc(100vh - 100px);
    background-color: var(--bg-home-ft);
    margin: auto;
    color: var(--text-color);
}

.blog-pop-in>img {
    width: 100%;
}

.blog-pop-in>h3 {
    padding: 15px;
}

.blog-pop-in>p {
    padding: 0 15px 15px 15px;
}

#blog-close {
    left: 10px;
    top: 20px;
    transform: rotate(45deg);
    background-color: white;
    border: 1px solid #823CF2;
    box-shadow: 0px 0px 10px 0px #823CF2;
    -webkit-box-shadow: 0px 0px 10px 0px #823CF2;
    -moz-box-shadow: 0px 0px 10px 0px #823CF2;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
}

#blog-close:hover {
    background-color: rgba(255, 255, 255, .8);
}

#blog-close>img {
    width: 16px;
    transform: rotate(-45deg);
}

/* end weblog style */

/* begin contact style */

#contact {
    color: var(--text-color);
    padding: 50px 0;
}

.contact-box {
    display: flex;
    margin-top: 40px;
}

.contact-box .col-1 {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding-left: 30px;
}

.contact-box .col-1>div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    grid-gap: 15px;
}

.contact-box .col-1>div>a {
    width: 32px;
    height: 32px;
    transform: rotate(45deg);
    border: 1px solid #823CF2;
    box-shadow: 0px 0px 10px 0px #823CF2;
    -webkit-box-shadow: 0px 0px 10px 0px #823CF2;
    -moz-box-shadow: 0px 0px 10px 0px #823CF2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease-in-out;
}

.contact-box .col-1>div>a:hover {
    box-shadow: 0px 0px 10px 0px #cdcccf;
    -webkit-box-shadow: 0px 0px 10px 0px #cdcccf;
    -moz-box-shadow: 0px 0px 10px 0px #cdcccf;
}

.contact-box .col-1>div>a>img {
    width: 16px;
    height: 16px;
    transform: rotate(-45deg);
}

.contact-box .col-2 {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.contact-box .col-2 form {
    width: 100%;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 2px 15px rgba(130, 60, 242, .5);
    ;
    -webkit-box-shadow: rgba(130, 60, 242, .5) 0 2px 15px;
}

.contact-box .col-2 form>h3 {
    font-size: 20px;
    color: var(--text-color);
    font-weight: bold;
    text-align: center;
}

/* end contact style */

footer {
    padding: 40px 20px;
    text-align: center;
    color: var(--text-color);
    background-color: var(--bg-skill);
}

.loading {
    background-color: #823CF2;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1002;
    transition: all .3s ease-in-out;
}

.loading.hide {
    top: -100%;
}

/* HTML: <div class="loader"></div> */
.loader {
    width: calc(80px*0.707);
    height: calc(80px*0.707);
    background: #f7f7f7;
    clip-path: polygon(0 0, 50% 15%, 100% 0, 85% 50%, 100% 100%, 50% 85%, 0 100%, 15% 50%);
    mask:
        radial-gradient(circle closest-side, #0000 92%, #000) top /100% 33.4%,
        radial-gradient(circle closest-side, #0000 92%, #000) left /33.4% 33.4%,
        radial-gradient(circle 5px, #0000 92%, #000) center/33.3% 33.3%,
        radial-gradient(circle closest-side, #0000 92%, #000) right /33.4% 33.4%,
        radial-gradient(circle closest-side, #0000 92%, #000) bottom/100% 33.4%;
    mask-repeat: no-repeat;
    animation: l4 1.5s infinite linear;
}

@keyframes l4 {
    100% {
        transform: rotate(1turn)
    }
}