* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

button,
a {
  all: unset;
  cursor: pointer !important;
  color: inherit;
}

body {
  direction: rtl;
  font-family: IRANYekan;
}

:root {
  --main-color: #4b51de;
  --white-color: #ffffff;
  --gray-color: #f2f3f5;
}
.scrollbar {
  position: fixed;
  top: 0;
  border-radius: 5px 0 0 5px;
  background-color: var(--main-color);
  width: 0;
  height: 5px;
  z-index: 10;
  transition: all 0.2s;
}

.first-section {
  background: url(../img/bg.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100vh;
  color: var(--white-color);
  background-blend-mode: multiply;
  background-color: rgba(0, 0, 0, 0.185);
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  position: fixed;
  width: 100%;
  top: 0;
  transition: all 0.3s;
  z-index: 9;
}

.sticky-nav {
  background-color: white;
  padding: 0 1rem;
}

.sticky-social-top {
  color: var(--main-color);
}

.logo {
  z-index: 10;
}

.logo img {
  width: 90px;
}

.nav {
  padding-top: 1rem;
}

.mobile-menu-btn {
  width: 60px;
  height: 45px;
  position: relative;
  margin: auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  z-index: 10;
}

.mobile-menu-btn span {
  display: block;
  position: absolute;
  height: 4px;
  width: 45px;
  background: var(--white-color);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.mobile-menu-btn span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.mobile-menu-btn span:nth-child(2) {
  top: 10px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.mobile-menu-btn span:nth-child(3) {
  top: 20px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.mobile-menu-btn.open span:nth-child(1) {
  -webkit-transform: rotate(50deg);
  -moz-transform: rotate(50deg);
  -o-transform: rotate(50deg);
  transform: rotate(50deg);
  top: -3px;
  left: 8px;
}

.mobile-menu-btn.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
  -webkit-transform: rotate(-50deg);
  -moz-transform: rotate(-50deg);
  -o-transform: rotate(-50deg);
  transform: rotate(-50deg);
  top: 32px;
  left: 8px;
}

.menu-top {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: rgba(75, 80, 222, 0.9);
  top: 0;
  right: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: all 0.8s ease;
  z-index: 9;
}

@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
  .menu-top {
    background-color: rgba(75, 80, 222, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }
}

.menu-top-active {
  visibility: visible;
  transform: translateX(0);
}

.main-menu {
  margin-top: 10rem;
}

.list-items {
  display: block;
  text-align: center;
  padding: 20px 0;
  font-size: 18px;
  font-weight: 400;
  color: var(--white-color);
  transform: translateX(-500px);
  transition: all 0.1s;
  visibility: hidden;
  opacity: 0.1;
  cursor: unset !important;
}

.list-items::after {
  display: block;
  content: "";
  border-bottom: solid 1px var(--white-color);
  padding-bottom: 5px;
  transform: scaleX(0);
  transition: transform 350ms ease-in-out;
}

.list-items:hover::after {
  transform: scaleX(0.8);
}

.list-items-active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.list-items-active:nth-child(1) {
  transition: all 0.8s;
}

.list-items-active:nth-child(2) {
  transition: all 0.9s;
}

.list-items-active:nth-child(3) {
  transition: all 1s;
}

.list-items-active:nth-child(4) {
  transition: all 1.1s;
}

.list-items-active:hover {
  transform: scale(1.1);
}
.list-items a {
  padding: 10px 15px;
}
.top-btn {
  text-align: center;
  margin-top: 2.5rem;
  display: flex;
  justify-content: space-evenly;
}

.download-btn,
.login-btn {
  text-align: center;
  width: 45%;
  max-width: 150px;
  background-color: rgba(255, 255, 255, 0.3);
  color: white;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 400;
  padding: 5px 0;
}

.download-btn:hover,
.login-btn:hover {
  background-color: var(--main-color);
  transition: all 0.1s;
  box-shadow: rgba(85, 85, 87, 0.3) 0px 7px 29px 0px;
}

.download-btn {
  transform: translateX(-100px);
  opacity: 0;
  visibility: hidden;
  transition: all 1.3s;
}

.dl-btn-active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.login-btn {
  transform: translateX(-200px);
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
}

.login-btn-active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.middle-box {
  padding: 0 15px;
  width: 100%;
  margin: unset;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8;
}

.middle-text-heading {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.6;
}

.middle-text-description {
  font-size: 14px;
  font-weight: 400;
  color: #f3f3f3;
}

.middle-btn-parent {
  text-align: center;
  margin-top: 1.5rem;
}

.middle-btn {
  background-color: var(--main-color);
  padding: 6px 25px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s;
}

.middle-btn:hover {
  transform: scale(1.05);
}

.plans-down-btn a {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 20px;
  right: 50%;
  transform: translateX(50%);
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  animation-name: plansDownBtnHover;
  animation-duration: 0.8s;
  animation-direction: alternate;
  animation-fill-mode: backwards;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  z-index: 8;
}

.fa-angles-down {
  font-size: 25px;
  margin-top: 0.4rem;
}

.plans-down-btn a:hover {
  animation: none;
}

@keyframes plansDownBtnHover {
  from {
    bottom: 20px;
  }

  to {
    bottom: 10px;
  }
}

.social-header {
  display: flex;
  flex-direction: row;
  z-index: 9;
}

.social-header .fa-brands {
  font-size: 22px;
  margin: 0 8px;
  transition: all 0.2s;
}

.social-header .fa-brands:hover {
  transform: translateY(5px);
}

@media screen and (max-width: 300px) {
  .social-header {
    display: none;
  }
}

@media screen and (min-width: 320px) {
  .middle-box {
    margin-top: unset;
  }
}

@media screen and (min-width: 450px) {
  .middle-box {
    margin-top: unset;
  }
}

@media screen and (max-height: 641px) {
  .middle-box {
    margin-top: 1rem;
  }
}

@media screen and (min-width: 810px) {
  .middle-box {
    width: 100%;
    margin: unset;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}

@media screen and (min-width: 900px) {
}

@media screen and (min-width: 992px) {
  .header {
    padding: 3rem 5rem;
    justify-content: space-between;
    position: unset;
  }

  .social-header {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 2px solid rgb(255, 255, 255);
    padding: 10px 10px;
  }

  .social-header::after {
    width: 2px;
    height: 40px;
    content: "";
    position: absolute;
    top: 22px;
    left: -2px;
    background-color: var(--main-color);
  }

  .social-header .fa-brands {
    font-size: 25px;
    margin: 3px 0;
    transition: all 0.2s;
  }

  .social-header .fa-brands:hover {
    transform: translateX(5px);
  }
  .mobile-menu-btn {
    display: none;
  }

  .logo {
    width: 15%;
  }

  .logo img {
    width: 100px;
  }

  .nav {
    all: unset;
    width: 100%;
  }

  .menu-top {
    all: unset;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .main-menu {
    all: unset;
    visibility: visible;
  }

  .list-items {
    all: unset;
    padding: 10px 10px;
    font-size: 18px;
    display: inline-block;
  }

  .top-btn {
    all: unset;
  }

  .download-btn,
  .login-btn {
    all: unset;
    visibility: visible;
    font-size: 18px;
  }

  .download-btn:hover,
  .login-btn:hover {
    box-shadow: unset;
    transform: scale(1.05);
  }

  .download-btn {
    background-color: var(--main-color);
    padding: 8px 35px;
    border-radius: 50px;
    margin-left: 20px;
  }

  .login-btn:hover {
    background-color: unset;
  }
  .middle-text-heading {
    font-size: 38px;
    padding-bottom: 6px;
  }

  .middle-text-description {
    font-size: 17px;
  }

  .middle-btn {
    font-size: 18px;
    padding: 7px 25px;
  }

  .plans-down-btn {
    display: flex;
  }

  .social-header {
    left: 30px;
    top: 50%;
  }
}

@media screen and (min-width: 1280px) {
  .logo {
    width: 25%;
  }
  .nav {
    width: 75%;
  }
  .list-items {
    padding: 10px 20px;
  }
}

@media screen and (min-width: 1600px) {
  .logo {
    width: 30%;
  }
  .nav {
    width: 70%;
  }
}

/* second section */
.second-section {
  width: 100%;
  height: 100vh;
  max-height: 992px;
  background-color: var(--gray-color);
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
}

.bg-clip-top-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 550px;
  clip-path: polygon(50.7% 0%, 44.7% 25.3%, 0% 33.5%, 0% 0%);
  background-color: var(--white-color);
  z-index: -1;
  display: none;
}

.bg-clip-bottom-right {
  z-index: -1;
  clip-path: polygon(25% 85%, 0 100%, 100% 100%);
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 647px;
  background-color: var(--white-color);
}

.second-section-title {
  padding: 0 20px;
  text-align: center;
  grid-column: 1/13;
  align-self: flex-end;
  grid-row: 1/4;
}

.second-section-title-heading {
  max-width: 220px;
  font-weight: bold;
  font-size: 26px;
  margin: auto;
  line-height: 1.6;
}

.second-section-title-heading span {
  color: var(--main-color);
}

.second-section-title-description {
  max-width: 310px;
  margin: auto;
}

.info-boxs {
  text-align: center;
  position: relative;
}
.bg-circle {
  width: 200px;
  height: 200px;
  background-color: rgb(255, 255, 255);
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  border-radius: 100px;
  z-index: -1;
}

.info-boxs img {
  width: 140px;
  height: 140px;
  transition: all 0.2s ease;
}
.info-boxs img:hover {
  filter: hue-rotate(90deg);
  transform: scale(0.9);
  transition: all 0.2s ease;
}

.swiper-wrapper {
  display: flex;
}

.info-boxs-title-text,
.info-boxs-title-description {
  text-align: center;
}

.info-boxs-title-text {
  font-size: 24px;
}

.info-boxs-title-description {
  font-size: 15px;
}

.swiper {
  grid-column: 1/13;
  align-self: center;
  grid-row: 4/10;
  width: 100%;
}

.second-section-bottom-box {
  grid-column: 1/13;
  align-self: flex-start;
  grid-row: 10/13;
  padding: 0 20px;
}

.second-section-buttom-btns {
  text-align: center;
}

.second-section-buttom-btns button:hover {
  transform: scale(1.05);
}

.second-section-permissions-btn,
.second-section-go-about {
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 18px;
  font-weight: 400;
  color: white;
  margin: 0 2px;
  transition: all 0.2s ease;
}

.second-section-permissions-btn {
  background-color: white;
  color: #000000;
}

.second-section-go-about {
  background-color: var(--main-color);
  color: #ffffff;
}

.second-section-bottom-text {
  margin-top: 1rem;
  font-size: 15px;
  text-align: center;
}

@supports (-webkit-touch-callout: none) {
  .first-section {
    height: -webkit-fill-available;
  }
  .second-section {
    height: -webkit-fill-available;
  }
  .third-section {
    height: -webkit-fill-available;
  }
}

@media screen and (min-width: 671px) {
  .bg-clip-bottom-right {
    clip-path: polygon(78.3% 81.3%, 100% 91%, 100% 100%, 40% 100%);
  }

  .bg-clip-top-left {
    display: block;
  }

  .second-section-title {
    align-self: center;
  }

  .second-section-title-heading {
    max-width: unset;
    font-size: 26px;
  }

  .second-section-title-description {
    max-width: unset;
    font-size: 16px;
  }

  .second-section-bottom-box {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    align-self: center;
  }

  .second-section-buttom-btns {
    display: flex;
    align-items: center;
  }

  .second-section-bottom-text {
    margin-top: unset;
    font-size: 16px;
  }
}

@media screen and (min-width: 992px) {
  .bg-clip-bottom-right {
    clip-path: polygon(86% 78%, 100% 88.8%, 100% 100%, 50% 100%);
  }
  .second-section-title-heading {
    font-size: 32px;
  }

  .second-section-title-description {
    font-size: 18px;
  }
  .second-section-bottom-box {
    padding: 0 5rem;
  }
}

@media screen and (min-width: 1280px) {
  .bg-clip-top-left {
    clip-path: polygon(39.4% 0%, 34.1% 30%, 0% 40.3%, 0% 0%);
  }
  .bg-clip-bottom-right {
    clip-path: polygon(90.9% 78%, 100% 88.8%, 100% 100%, 62.4% 100%);
  }
}

/* third section  */

.third-section {
  width: 100%;
  height: 100vh;
  background-color: var(--white-color);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  position: relative;
  z-index: 0;
}

.cmd-line {
  width: 90%;
  max-width: 650px;
  max-height: 500px;
  margin: auto;
  background-color: #282828;
  border-radius: 6px;
  grid-column: 1/13;
  grid-row: 1/8;
  align-self: flex-end;
}

.small-circle-parent {
  position: relative;
  width: 100%;
  height: 40px;
  padding-bottom: 10px;
}

.small-circle {
  width: 10px;
  height: 10px;
  position: absolute;
  border-radius: 50px;
  top: 10px;
}

.small-circle:nth-child(1) {
  background-color: hsl(3, 100%, 67%);
  left: 10px;
}
.small-circle:nth-child(2) {
  background-color: hsl(40, 99%, 59%);
  left: 25px;
}

.small-circle:nth-child(3) {
  left: 40px;
  background-color: hsl(129, 70%, 46%);
}

.cmd-line-pings {
  width: 100%;
  height: 200px;
  padding: 0 15px;
  overflow: auto;
}

.cmd-line-table {
  width: 100%;
  direction: ltr;
  color: #ffffff;
  table-layout: auto;
  font-family: iransans;
}

tr {
  width: 100%;
}
td {
  width: 100%;
}

.tb-country {
  text-align: left;
  padding: 2px 0;
}

.tb-ping {
  text-align: right;
}

.third-section-box {
  grid-column: 1/13;
  grid-row: 7/13;
  margin: auto;
  align-self: flex-start;
  text-align: center;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(9, 40px);
  padding: 0 20px;
  width: 100%;
}

.third-section-heading-box {
  grid-column: 1/9;
  grid-row: 1/4;
  align-self: center;
}

.third-section-heading-txt {
  font-size: 26px;
  font-weight: bold;
}

.third-section-heading-txt-description {
  font-size: 16px;
}

.servers-info {
  grid-column: 1/9;
  grid-row: 4/7;
  align-self: center;
  margin: auto;
  text-align: right;
}
.radsho-server-info-items {
  padding: 3px 0;
  font-size: 18px;
}

.radsho-server-info-items span {
  font-weight: 500;
}

.radsho-server-info-items::marker {
  color: var(--main-color);
  font-size: 25px;
}

.devices-icon {
  grid-column: 1/9;
  grid-row: 7/10;
  align-self: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.thrid-sec-plans-btn-parent {
  height: 100%;
  grid-column: 1/9;
  grid-row: 9/10;
  margin-top: 3rem;
  align-self: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.thrid-sec-plans-btn {
  display: flex;
  align-items: center;
  background-color: rgb(3, 204, 30);
  padding: 10px 12px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 500;
  color: white;
}

.thrid-sec-plans-btn .fa-angle-down {
  margin-left: 5px;
  font-size: 20px;
}

.devices-icon img {
  width: 56px;
  padding: 0 5px;
}

.third-section-bg-clip-bottom {
  display: none;
}

@media screen and (min-width: 400px) {
  .devices-icon {
    grid-column: 5/9;
  }

  .thrid-sec-plans-btn-parent {
    grid-row: 7/10;
    grid-column: 1/5;
    margin: unset;
  }
}

@media screen and (min-width: 671px) {
  .cmd-line-pings {
    height: 250px;
  }

  .third-section-bg-clip-bottom {
    display: block;
    clip-path: polygon(0 0, 0 25%, 40% 0);
    background-color: var(--gray-color);
    position: absolute;
    top: 0;
    width: 100%;
    height: 550px;
    z-index: -1;
  }
}

@media screen and (min-width: 700px) {
  .third-section-box {
    grid-column: 1/13;
    grid-row: 6/13;
    grid-template-columns: repeat(14, 1fr);
    grid-template-rows: repeat(7, 40px);
  }

  .third-section-heading-box {
    grid-column: 1/15;
    grid-row: 1/4;
  }

  .servers-info {
    grid-column: 1/8;
    grid-row: 4/6;
  }
  .thrid-sec-plans-btn-parent {
    grid-column: 2/5;
    grid-row: 7/8;
    margin-top: 1.5rem;
  }
  .devices-icon {
    grid-column: 13/15;
    grid-row: 4/8;
    flex-direction: column;
  }
  .third-section-bg-clip-bottom {
    clip-path: polygon(0 0, 0 23%, 40% 0);
  }
}

@media screen and (min-width: 992px) {
  .third-section {
    max-height: 496px;
  }

  .cmd-line {
    grid-column: 1/6;
    grid-row: 1/13;
  }

  .third-section-box {
    grid-column: 6/13;
    grid-row: 1/13;
    grid-template-columns: repeat(14, 1fr);
    grid-template-rows: repeat(7, 40px);
  }

  .third-section-heading-box {
    grid-column: 1/15;
    grid-row: 1/4;
  }

  .servers-info {
    grid-column: 1/8;
    grid-row: 4/6;
  }
  .thrid-sec-plans-btn-parent {
    grid-column: 2/5;
    grid-row: 7/8;
    align-self: f;
  }
  .devices-icon {
    grid-column: 13/15;
    grid-row: 4/8;
    flex-direction: column;
  }
  .third-section-bg-clip-bottom {
    clip-path: polygon(0 0, 0 35%, 50% 0);
  }
}

@media screen and (min-width: 1280px) {
  .third-section-bg-clip-bottom {
    clip-path: polygon(0 0, 0 60%, 62.4% 0);
  }
}

/* plans section */

.plans-section {
  margin: 3rem auto;
  padding: 0;
}

.plans-main-title-parent {
  text-align: center;
}
.plans-main-title-text,
.plans-main-title-description {
  padding: 0 20px;
}
.plans-main-title-text {
  font-size: 26px;
  font-weight: bold;
}

.plans-main-title-text span {
  color: var(--main-color);
}

.plans-main-title-description {
  margin-top: 0.5rem;
}

.plans-swiper {
  padding: 1rem 0;
  max-width: 900px;
}

.plans-swiper .swiper-wrapper {
  display: flex;
  align-items: center;
}
.plans-item-parent {
  padding: 2rem 0;
}

.plans-item {
  width: 250px;
  padding: 25px;
  background-color: var(--gray-color);
  text-align: center;
  border-radius: 25px;
  margin: 1rem auto;
  transition: all 0.7s;
}

.plans-item-image {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plans-item-image svg {
  width: 180px;
  margin-bottom: 0.5rem;
}

.plans-item-image svg path {
  fill: var(--main-color);
}

.plans-item-title {
  font-size: 24px;
}

.plans-item-list {
  margin: 1rem 0;
}

.plans-item-list-childs {
  list-style: none;
  margin: 5px 0;
}

.plans-item-price {
  font-size: 18px;
  font-weight: bold;
}

.plans-item-btn {
  padding: 10px;
  background-color: var(--main-color);
  border-radius: 50px;
  font-weight: 500;
  color: var(--white-color);
  margin: 1rem 0;
}

/* Active Plan Styles */

.plans-swiper .swiper-slide-active .plans-item {
  background-color: var(--main-color);
  transform: scale(1.05);
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px,
    rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px,
    rgba(0, 0, 0, 0.07) 0px 16px 16px;
}

.plans-swiper .swiper-slide-active .plans-item .plans-item-image svg path {
  fill: #fff;
}

.plans-swiper .swiper-slide-active .plans-item .plans-item-list {
  opacity: 0.8;
}

.plans-swiper .swiper-slide-active .plans-item .plans-item-btn {
  background-color: var(--white-color);
  color: var(--main-color);
}

/* support section  */

.support-section {
  position: relative;
}
.support-main-title-parent {
  text-align: center;
}

.support-main-title-text {
  font-size: 26px;
  font-weight: bold;
}

.support-main-title-text span {
  color: var(--main-color);
}

.support-form {
  padding: 1rem 0;
  margin: auto;
  text-align: center;
  width: 90%;
  max-width: 400px;
  display: grid;
  grid-template-columns: repeat(9, auto);
  grid-template-rows: repeat(9, auto);
}

.support-form-inputs-parent {
  margin: 0.5rem 0;
  align-self: center;
}

.select-support-unit {
  grid-column: 1/10;
  grid-row: 1/3;
  position: relative;
}

.select-support-unit::after {
  content: "▶";
  font-family: Tahoma, Geneva, Verdana, sans-serif;
  position: absolute;
  top: 12px;
  left: 15px;
  font-size: 20px;
  font-weight: 400;
  opacity: 0.8;
  transform: rotate(90deg);
}

.support-input-select {
  appearance: none;
}

.support-email-parent {
  grid-column: 1/10;
  grid-row: 3/6;
}

.support-inputs {
  width: 100%;
  font-family: inherit;
  font-weight: 500;
  border-radius: 10px;
  border: none;
  outline: none;
  background-color: var(--gray-color);
  padding: 13px 10px;
  font-size: 15px;
}

.support-inputs::placeholder {
  font-size: 15px;
  opacity: 0.6;
}

.support-textarea-parent {
  grid-column: 1/10;
  grid-row: 6/8;
}

.support-input-textarea {
  resize: none;
  height: 150px;
}

.support-asked-question-btn-parent {
  grid-column: 1/5;
  grid-row: 8/9;
}

.support-asked-question-btn {
  background-color: var(--main-color);
}

.support-send-message-btn-parent {
  grid-column: 5/10;
  grid-row: 8/9;
}

.support-send-message-btn {
  background-color: rgb(8, 168, 8);
}

.support-btns-parent {
  margin: 0 3px;
}

.support-btns {
  padding: 10px 0;
  border-radius: 8px;
  color: var(--white-color);
  font-weight: 500;
  width: 100%;
}

.support-section-bottom-clip-path {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--gray-color);
  clip-path: polygon(100% 85%, 35% 100%, 100% 100%);
  z-index: -1;
}

@media screen and (min-width: 992px) {
  .support-form {
    max-width: 900px;
    padding: 1.5rem 0;
  }
  .support-form-inputs-parent {
    margin: 0.5rem;
  }

  .select-support-unit {
    grid-column: 1/3;
    grid-row: 1/4;
  }

  .support-email-parent {
    grid-column: 3/6;
    grid-row: 1/4;
  }

  .support-textarea-parent {
    grid-column: 1/10;
    grid-row: 4/8;
  }

  .support-input-textarea {
    height: 200px;
  }

  .support-btns-parent {
    width: 90%;
    align-self: center;
  }
  .support-asked-question-btn-parent {
    grid-column: 1/10;
    grid-row: 8/10;
    width: 100%;
  }

  .support-send-message-btn-parent {
    grid-column: 6/10;
    grid-row: 1/4;
  }
  .support-asked-question-btn {
    all: unset;
    text-align: center;
    text-decoration: underline;
  }
}

/* blog section  */

.blog-section {
  background-color: var(--gray-color);
  position: relative;
  height: 600px;
  padding-top: 3rem;
}

.blog-section-top-clip-path {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  clip-path: polygon(35% 0, 0 0, 0 5%);
  background-color: var(--white-color);
}

.blog-swiper .swiper-slide-active .blog-items {
  transform: scale(1.1);
  opacity: 1;
}

.blog-swiper .swiper-slide {
  padding: 1rem 0 2.5rem 0;
}
.blog-main-title-parent {
  text-align: center;
}

.blog-main-title {
  font-size: 26px;
  font-weight: bold;
}

.blog-items {
  width: 85%;
  max-width: 350px;
  overflow: hidden;
  margin: auto;
  margin-top: 2rem;
  border-radius: 25px;
  background-color: var(--white-color);
  transition: all 0.5s;
  opacity: 0.7;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.blog-item-image-parent {
  max-height: 250px;
  overflow: hidden;
  cursor: pointer;
}
.blog-item-image-parent:hover .blog-item-image {
  transform: scale(1.6) rotate(2deg);
}
.blog-item-image {
  transform: scale(1.5);
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}

.blod-item-details {
  padding: 15px;
}

.blog-item-details-title {
  font-size: 17px;
  font-weight: bold;
}

.blog-item-details-description {
  font-size: 16px;
  margin: 0.75rem 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.blog-item-details-btn-parent {
  text-align: center;
  margin: 0.5rem auto;
}

.blog-item-details-btn {
  padding: 8px 45px;
  border-radius: 50px;
  background-color: var(--main-color);
  color: var(--white-color);
  font-weight: 400;
}

@media screen and (min-width: 992px) {
  .blog-swiper {
    max-width: 1200px;
  }
  .blog-swiper .swiper-slide-active .blog-items {
    transform: unset;
    opacity: unset;
  }
  .blog-items {
    opacity: unset;
  }
}

/* footer  */

.footer {
  background-color: var(--gray-color);
  width: 100%;
}

.footer-main-content {
  width: 100%;
  border-radius: 150px 0 0 0;
  background-color: var(--main-color);
  padding-top: 4rem;
  color: var(--white-color);
}

.radsho-about-parent {
  width: 80%;
  max-width: 400px;
  margin: auto;
  text-align: center;
}

.radsho-about-paragraph {
  text-align: justify;
  line-height: 1.6;
  margin-top: 1rem;
}

.radsho-about-image {
  width: 100px;
}

.footer-menu {
  width: 80%;
  max-width: 750px;
  display: flex;
  justify-content: space-between;
  margin: 2rem auto 0 auto;
  text-align: center;
}

.footer-menu-download-list li,
.footer-menu-main-list li {
  list-style: none;
  padding: 5px 0;
  transition: all 0.3s;
}

.footer-menu-download-list li:hover,
.footer-menu-main-list li:hover {
  transform: scale(1.05);
}
.footer-menu-download-title,
.footer-menu-main-title {
  margin-bottom: 1rem;
  font-size: 18px;
}

.footer-copy-right {
  padding: 3rem 0 1rem 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer-about-menus {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .radsho-about-parent {
    padding: 0 20px;
    text-align: unset;
  }
  .footer-menu {
    justify-content: space-around;
  }
}
