@import url("root.css");
.menu {
  height: var(--header);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex: 1;
}
.logo a {
  font-size: 2.2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--textcolor);
}
@media (min-width: 768px) {
  .logo a {
    font-size: 3rem;
  }
}
.logo img {
  width: 13rem;
}
@media (min-width: 576px) {
  .logo img {
    width: 15rem;
  }
}
@media (min-width: 768px) {
  .logo img {
    width: 18rem;
  }
}
.menusearch {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
@media (min-width: 1400px) {
  .menusearch {
    flex: 2;
  }
}
.menuright {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 0.5rem;
  margin-right: 1rem;
  position: relative;
}
@media (min-width: 1200px) {
  .menuright {
    flex: 1;
  }
}
.searchicon {
  width: 4.5rem;
  height: 4.5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0.1rem solid #eaeaea;
  border-radius: 0.3rem 0 0 0.3rem;
  cursor: pointer;
}
.searchbox {
  width: 30rem;
  border: 0.1rem solid #eaeaea;
  height: 4.5rem;
  border-left: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  cursor: pointer;
}
@media (min-width: 1400px) {
  .searchbox {
    width: 40rem;
  }
}
.searchbox p {
  font-size: 1.5rem;
  cursor: pointer;
}
.searchbox span {
  border: 0.1rem solid #eaeaea;
  border-radius: 0.3rem;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  font-weight: 600;
  cursor: pointer;
}
#theme {
  border-radius: 0.3rem;
  background-color: #fff;
  color: var(--textcolor);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  width: 4.2rem;
  height: 4.2rem;
  transition: all 300ms ease;
}
#theme:hover {
  background-color: var(--colorgrey);
  color: var(--textcolor);
}
.loginlink {
  border-radius: 0.3rem;
  padding: 1rem 2rem;
  background-color: var(--colorgrey);
  color: var(--textcolor);
  font-size: 1.5rem;
  font-weight: 500;
  transition: all 300ms ease;
}
.loginlink:hover {
  color: #fff;
  background-color: var(--colorgrey2);
}
.BGcolor {
  background-color: var(--colorgrey);
}
.menulinksside {
  height: var(--menu);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 3rem;
}
.mainlink {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--textcolor);
  transition: color 300ms ease;
  height: 100%;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.mainlink.active::before {
  right: 0 !important;
  background-color: var(--colorpurple) !important;
}
.mainlink::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  height: 0.2rem;
  background-color: var(--textcolor);
  transition: all 300ms ease;
}
.mainlink:hover::before {
  right: 0;
}
.dropdownside {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.dropdownside.active::before {
  right: 0 !important;
  background-color: var(--colorpurple) !important;
}
.dropdownside::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  height: 0.2rem;
  background-color: var(--textcolor);
  transition: all 300ms ease;
}
.dropdownside:hover::before {
  right: 0;
}
.dropdownside:hover i {
  transform: rotate(-45deg);
}
.dropdownside i {
  font-size: 1.4rem;
  margin-left: 0.5rem;
  transition: all 300ms ease;
  display: inline-block;
}
.dropdownside p {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--textcolor);
  transition: color 300ms ease;
}
.dropdownMenu {
  position: absolute;
  z-index: 5;
  top: 100%;
  left: -5rem;
  background-color: #fff;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 25rem;
  transition: transform 0.3s ease-in-out;
  transform-origin: top right;
  transform: perspective(600px) rotateX(-90deg);
}
.dropdownside:hover .dropdownMenu {
  display: block;
  transform: perspective(600px) rotateX(0deg);
}
.dropdownMenu a {
  border-radius: 0.3rem;
  width: 100%;
  font-size: 1.5rem;
  padding: 1rem;
  color: var(--textcolor);
  transition: all 300ms ease;
  display: block;
}
.dropdownMenu a:hover {
  background-color: var(--colorpurple);
  color: #fff;
}
.dropdownMenu a:not(:last-child) {
  margin-bottom: 0.3rem;
}
.marquee {
  background-color: var(--alternatecolor);
}
.marqueeside {
  height: 4rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
@media (min-width: 768px) {
  .marqueeside {
    height: 5rem;
  }
}
.marqueesidetitle {
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 2rem;
}
.marqueesidetitle h3 {
  font-size: 1.4rem;
  font-weight: 700;
  white-space: nowrap;
  text-transform: uppercase;
}
.marqueeside .content {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .marqueeside .content {
    width: calc(100% - 15rem);
    padding-left: 1rem;
  }
}
.marqueewrapper {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 2rem;
}
.marqueeside .content a {
  font-size: 1.4rem;
  font-weight: 500;
  transition: color 300ms ease;
  white-space: nowrap;
  color: var(--textcolor);
}
@media (min-width: 576px) {
  .marqueeside .content a {
    font-size: 1.5rem;
  }
}
.slide {
  padding: 2rem 0;
  background-color: var(--colorgrey);
}
@media (min-width: 768px) {
  .slide {
    padding: 4rem 0;
  }
}
.slideboxes {
  width: 100%;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background-color: #fff;
  box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .slideboxes {
    margin-bottom: 0;
  }
}
.slideboxestitle {
  border-bottom: 0.1rem solid var(--colorgrey);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.slideboxestitle a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--colorpurple);
  transition: color 300ms ease;
}
.slideboxestitle a:hover {
  color: var(--textcolor);
}
.slideboxestitle h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--textcolor);
}
@media (min-width: 992px) {
  .slideboxes .contents {
    overflow-y: auto;
  }
  .scroll1 {
    height: 28rem;
  }
  .scroll2 {
    height: 25rem;
  }
}
@media (min-width: 1200px) {
  .slideboxes .contents {
    overflow-y: hidden;
  }
  .scroll1 {
    height: auto;
  }
  .scroll2 {
    height: auto;
  }
}
.slidecontentsitem {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.slidecontentsitem:not(:last-child) {
  border-bottom: 0.1rem solid var(--colorgrey);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.slidecontentsitem h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.slidecontentsitem h3 a {
  color: var(--textcolor);
  transition: color 300ms ease;
}
.slidecontentsitem p {
  font-size: 1.4rem;
  opacity: 0.8;
  font-style: italic;
}
.slidecontentsitem:hover h3 a {
  color: var(--colorpurple);
}
.slidecontentitembottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 992px) {
  .slidecontentitembottom {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .slidecontentitembottom {
    flex-direction: row;
    align-items: center;
    row-gap: 0;
  }
}
.slidecontentitembottom p {
  font-size: 1.4rem;
  font-weight: 500;
}
.slidecontentitembottom a {
  font-size: 1.4rem;
  font-weight: 500;
  transition: color 300ms ease;
  color: var(--textcolor);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.slidecontentitembottom a:hover,
.slidecontentitembottom a:focus {
  color: var(--colorpurple);
}
.slideboxesimages {
  border-radius: 0.5rem;
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-bottom: 2rem;
  min-height: 22rem;
}
@media (min-width: 768px) {
  .slideboxesimages {
    min-height: auto;
  }
}
@media (min-width: 992px) {
  .slideboxesimages {
    margin-bottom: 0;
  }
}
.slideboxesimages .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  );
}
@media (min-width: 768px) {
  .slideboxesimages .content {
    align-items: center;
  }
}
.slideboxesimages .content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 425px) {
  .slideboxesimages .content h3 {
    font-size: 1.8rem;
  }
}
@media (min-width: 500px) {
  .slideboxesimages .content h3 {
    font-size: 2rem;
  }
}
@media (min-width: 576px) {
  .slideboxesimages .content h3 {
    font-size: 2.2rem;
  }
}
@media (min-width: 768px) {
  .slideboxesimages .content h3 {
    font-size: 2.5rem;
  }
}
.slideboxesimages .content h3 a {
  color: #fff;
  transition: color 300ms ease;
}
.slideboxesimages .contentleft {
  width: 20rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media (min-width: 500px) {
  .slideboxesimages .contentleft {
    width: 30rem;
  }
}
@media (min-width: 576px) {
  .slideboxesimages .contentleft {
    width: 35rem;
  }
}
@media (min-width: 768px) {
  .slideboxesimages .contentleft {
    width: 45rem;
  }
}
@media (min-width: 992px) {
  .slideboxesimages .contentleft {
    width: 35rem;
  }
}
.slideboxesimages .content p {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.8);
}
.slidecategory {
  border-radius: 0.3rem;
  padding: 0.5rem 1rem;
  background-color: var(--colorpurple);
  color: #fff;
  font-size: 1.2rem;
}
@media (min-width: 576px) {
  .slidecategory {
    font-size: 1.4rem;
  }
}
.slidelink {
  width: 4rem;
  height: 4rem;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: var(--textcolor);
  transition: all 300ms ease;
}
@media (min-width: 576px) {
  .slidelink {
    width: 5rem;
    height: 5rem;
    font-size: 2.2rem;
  }
}
@media (min-width: 768px) {
  .slidelink {
    width: 6rem;
    height: 6rem;
    font-size: 2.5rem;
  }
}
.slidelink:hover {
  background-color: #fff;
  color: var(--textcolor);
  transform: rotate(45deg);
}
.slideboxesimages figure {
  height: 100%;
  display: flex;
}
.slideboxesimages figure a {
  width: 100%;
  height: 100%;
}
.slideboxesimages figure img {
  height: 100%;
  object-fit: cover;
  transition: all 2s ease-in-out;
  aspect-ratio: 16/9;
}
.slideboxesimages:hover figure img {
  transform: scale(1.2);
  filter: brightness(60%);
}
.writerbox {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.writerboxEmpty {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.writerboxEmpty p {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}
.writerboxEmpty.male {
  background-color: blue;
}
.writerboxEmpty.female {
  background-color: palevioletred;
}
.writerboxEmpty.admin {
  background-color: var(--colorpurple);
}
.writerbox figure {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.writerbox figure img {
  object-fit: cover;
  height: 100%;
  transition: all 2s ease;
}
.writerbox:hover figure img {
  transform: scale(1.2);
}
.writerbox .content {
  width: calc(100% - 8rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 2rem;
  padding-right: 2rem;
  flex: 1;
}
@media (min-width: 576px) {
  .writerbox .content {
    padding-right: 0;
  }
}
.writerbox .content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.writerbox .content h3 a {
  color: var(--textcolor);
  transition: color 300ms ease;
}
.writerbox .content h3:hover a {
  color: var(--colorpurple);
}
.writerbox .content p {
  font-size: 1.5rem;
}
.writerbox .content p span {
  font-weight: 800;
  text-transform: uppercase;
}
.swiperwriter .swiper-slide {
  display: flex;
  height: auto;
}
.maintitle {
  margin-bottom: 2rem;
}
@media (min-width: 576px) {
  .maintitle {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.maintitle a {
  font-size: 1.5rem;
  color: var(--textcolor);
  font-weight: 600;
  transition: all 300ms ease;
}
.maintitle a:hover {
  color: var(--colorpurple);
}
.maintitle h2 {
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .maintitle h2 {
    font-size: 2rem;
  }
}
@media (min-width: 1200px) {
  .maintitle h2 {
    font-size: 2.2rem;
  }
}
.tabside {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 1rem;
  row-gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.tabitem {
  padding: 1rem;
  background-color: #fff;
  transition: all 300ms ease;
  border-radius: 0.3rem;
  cursor: pointer;
  flex-grow: 1;
  text-align: center;
}
.tabitem p {
  color: var(--textcolor);
  font-size: 1.5rem;
}
.tabitem.active {
  background-color: var(--colorpurple);
}
.tabitem.active:hover,
.tabitem.active:focus {
  background-color: var(--colorpurple);
}
.tabitem.active p {
  color: #fff;
}
.tabitem:hover {
  background-color: var(--textcolor);
}
.tabitem:hover p {
  color: #fff;
}
.reportboxes {
  background-color: #fff;
  border-radius: 0.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  margin-bottom: 2rem;
}
.reportimages {
  border-radius: 0.3rem;
  overflow: hidden;
  width: 100%;
  position: relative;
}
.reportimages img {
  height: 100%;
  transition: all 2s ease-in-out;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.reportboxes:hover .reportimages img {
  transform: scale(1.2);
  filter: brightness(50%);
}
.reportboxes .content {
  padding: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.reportboxes .content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  flex: 1;
}
.reportboxes .content h3 a {
  color: var(--textcolor);
  transition: color 300ms ease;
}
.reportboxes:hover .content h3 a {
  color: var(--colorpurple);
}
.reportdate {
  border-radius: 0.3rem;
  padding: 0.5rem 1rem;
  background-color: var(--colorgrey);
  align-self: flex-start;
  margin-bottom: 1rem;
}
.reportdate p {
  font-size: 1.4rem;
  color: var(--textcolor);
  font-weight: 500;
}
.reportCategory {
  position: absolute;
  background-color: #fff;
  border-radius: 0.3rem;
  padding: 0.5rem 1rem;
  z-index: 1;
  top: 1rem;
  left: 1rem;
}
.reportCategory p {
  font-size: 1.2rem;
  font-weight: 700;
}
.allreports {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.allreports a {
  border-radius: 0.3rem;
  padding: 1rem 2rem;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  transition: all 300ms ease;
  background-color: var(--textcolor);
}
.allreports a:hover {
  background-color: var(--colorpurple);
  color: #fff;
}
.allreports a i {
  transition: all 300ms ease;
  display: inline-block;
}
.allreports a:hover i {
  transform: translateX(0.5rem);
}
.dates {
  font-style: normal !important;
}
.mobilemenu {
  border-top: 0.1rem solid #eaeaea;
  display: none;
}
.mobilemenucontent {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mobilemenucontent a {
  font-size: 1.5rem;
  font-weight: 500;
  width: 100%;
  padding: 1rem 0;
  color: var(--textcolor);
  transition: all 300ms ease;
}
.mobilemenucontent a:hover {
  color: var(--colorpurple);
}
.mobilemenucontent a:not(:last-child) {
  border-bottom: 0.1rem solid #eaeaea;
}
.mobilemenu form {
  margin-top: 1rem;
  background-color: var(--colorgrey);
  padding: 1rem;
}
.mobilemenu form .form-group {
  margin-bottom: 0;
}
.mobilemenu .form-control {
  font-size: 1.5rem;
}
.footer {
  padding: 5rem 0;
  background-color: var(--textcolor);
}
.footerbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.footertext {
  padding-right: 2rem;
}
.footertext h1 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.footertext p {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.8);
}
.footerboxsocial {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 2rem;
}
.footerboxsocial a {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 300ms ease;
}
.footerboxsocial a:hover {
  color: rgba(255, 255, 255, 1);
}
.footerbox h4 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}
.footerbox h4::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 2rem;
  height: 0.2rem;
  background-color: var(--colorpurple);
  border-radius: 5rem;
}
.footerbox ul li {
  padding: 0.5rem 0;
  width: 100%;
}
.footerbox ul li a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 300ms ease;
  font-size: 1.6rem;
}
.footerbox ul li:hover a {
  color: rgba(255, 255, 255, 1);
}
.columncount {
  column-count: 2;
  break-inside: avoid;
}
@media (min-width: 576px) {
  .columncount {
    column-count: 4;
  }
}
@media (min-width: 768px) {
  .columncount {
    column-count: 2;
  }
}
.footerform {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footerform .form-group {
  width: 100%;
}
.footerform .form-group label {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}
.footerform button[type="submit"] {
  border-radius: 0.3rem;
  font-size: 1.4rem;
  color: #fff;
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  transition: all 300ms ease;
  background-color: var(--colorpurple);
}
.footerform button[type="submit"]:hover,
.footerform button[type="submit"]:focus {
  background-color: var(--colorpurple);
  color: #fff;
}
.deep {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 0.1rem dashed rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 1rem;
}
@media (min-width: 768px) {
  .deep {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    row-gap: 0;
  }
}
.deepitem {
  display: flex;
  align-items: center;
  flex: 1;
}
.deepitemleft {
  justify-content: flex-start;
}
.deepitemmiddle {
  flex: 1;
  justify-content: center;
}
@media (min-width: 1200px) {
  .deepitemmiddle {
    flex: 2;
  }
}
.deepitemright {
  justify-content: flex-end;
  column-gap: 1rem;
}
.deepitemleft p {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}
.deepitemright a {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 300ms ease;
}
.deepitemright a:hover {
  color: rgba(255, 255, 255, 1);
}
.pill {
  font-size: 2.2rem;
  color: #fff;
  font-family: pill;
  transition: all 300ms ease;
}
.pill:hover {
  color: var(--colorpurple);
}
.padding3 {
  padding: 10rem 0;
}
.registerBG {
  background-color: var(--colorgrey);
}
.registerBox {
  padding: 2rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  .registerBox {
    width: 50rem;
    padding: 5rem;
  }
}
@media (min-width: 992px) {
  .registerBox {
    width: 70rem;
  }
}
.registerBox .form-control {
  background-color: var(--colorgrey);
}
.registerBox label {
  font-size: 1.4rem;
  font-weight: 500;
}
.registerBox label span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--colorpurple);
}
.registerBoxhead {
  margin-bottom: 2rem;
}
.registerBoxhead h2 {
  font-weight: 900;
  font-size: 2rem;
  text-transform: uppercase;
}
.registerBox button[type="submit"] {
  border-radius: 0.3rem;
  font-size: 1.6rem;
  color: #fff;
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 2rem;
  transition: all 300ms ease;
  background-color: var(--colorpurple);
}
.registerBox button[type="submit"]:hover,
.registerBox button[type="submit"]:focus {
  background-color: var(--colorpurple);
  color: #fff;
}
.accountDropdown {
  position: absolute;
  top: 110%;
  right: 0;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background-color: #fff;
  border-radius: 0.5rem;
  z-index: 10;
  width: 25rem;
  box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
  border: 0.1rem solid var(--colorgrey);
  opacity: 0;
  pointer-events: none;
  transition: all 300ms ease;
}
.dropdownActive {
  opacity: 1 !important;
  pointer-events: all !important;
  top: 100% !important;
}
.accountDropdown a {
  font-size: 1.5rem;
  border-radius: 0.3rem;
  padding: 1rem;
  transition: all 300ms ease;
  color: var(--textcolor);
}
.accountDropdown a:not(:last-child) {
  margin-bottom: 0.3rem;
}
.accountDropdown a:hover {
  background-color: var(--colorpurple);
  color: #fff;
}
.accountDropdown a i {
  width: 2rem;
  display: inline-block;
}
.pagebanner {
  background-color: var(--alternatecolor);
  padding: 2rem 0;
}
.pagebannercontent h1 {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--textcolor);
  text-transform: uppercase;
}
.formpostboxes {
  padding: 5rem;
  border-radius: 0.5rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}
.formpostboxes form {
  width: 100%;
}
.formpostboxes .form-control {
  background-color: var(--colorgrey);
}
.formpostboxes label {
  font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.formpostboxes label span {
  color: var(--colorpurple);
  font-weight: 700;
  font-size: 1.2rem;
}
.categoryBoxes {
  background-color: var(--colorgrey);
  border: 0.1rem solid #efefef;
  padding: 2rem;
  border-radius: 0.3rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.categoryBoxesTitle {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 0.1rem solid #efefef;
}
.categoryBoxesTitle label {
  margin: 0;
  padding-left: 0.5rem;
  width: calc(100% - 2rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.categoryBoxes .content {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.categoryBoxes .contentitem {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 0.1rem solid #efefef;
}
.categoryBoxes .contentitem label {
  margin: 0;
  padding-left: 0.5rem;
  width: calc(100% - 2rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.categorytitletext {
  margin-top: 1rem;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
.categorytitletext span {
  font-size: 1.2rem;
  color: var(--colorpurple);
  font-weight: 700;
  padding-left: 0.3rem;
}
.formpostboxestitle {
  margin-bottom: 2rem;
}
.formpostboxestitle h2 {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 2rem;
}
.formpostboxes button[type="submit"],
.formpostboxes button[type="submit"]:hover,
.formpostboxes button[type="submit"]:focus {
  background-color: var(--colorpurple);
  border-radius: 0.3rem;
  padding: 1rem 2rem;
  color: #fff;
}
.subsbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  padding: 1rem;
  background-color: #fff;
  border-radius: 1rem;
}
.subsboximage {
  border-radius: 1rem 1rem 0 0;
  overflow: hidden;
  height: 17.5rem;
  position: relative;
}
.subsboximage img {
  height: 100%;
  object-fit: cover;
  transition: all 1.2s ease;
}
.subsbox:hover .subsboximage img {
  transform: scale(1.1);
  filter: brightness(60%);
}
.subsbox .content {
  padding: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
  background-color: #fff;
}
.subsbox .content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  flex: 1;
}
.subsbox .content h3 a {
  color: var(--textcolor);
  transition: color 300ms ease;
}
.subsbox:hover .content h3 a {
  color: var(--colorpurple);
}
.subsbox .content p {
  font-size: 1.5rem;
  opacity: 0.8;
}
.subsbox .contentend {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  column-gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 0.1rem dashed #eaeaea;
}
.subsbox .contentend p {
  font-size: 1.4rem;
  color: var(--textcolor);
  flex: none;
}
.yazar {
  width: 4rem;
  height: 4rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
}
.yazar.male {
  background-color: blue;
}
.yazer.female {
  background-color: palevioletred;
}
.yazar p {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}
.yazarimg {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  overflow: hidden;
}
.subsboximageempty {
  background-color: var(--colorgrey);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1rem 1rem 0 0;
  overflow: hidden;
  height: 17.5rem;
}
.subsboximageempty a,
.subsboximageempty a:hover,
.subsboximageempty a:focus {
  font-weight: 700;
  color: var(--textcolor);
}
.subsboxcategory {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 1rem 0;
  gap: 0.3rem;
}
.subsCC {
  display: inline-block;
  border-radius: 0.3rem;
  padding: 0.3rem 0.5rem;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
}
.subsStatus {
  border-radius: 0.2rem;
  padding: 0.3rem 0.5rem;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 1rem;
  display: inline-block;
  align-self: flex-start;
  font-weight: 500;
}
.BGorange {
  background-color: orange;
}
.BGgreen {
  background-color: green;
}
.formText {
  font-size: 1.5rem;
  color: var(--textcolor);
}
.formText a,
.formText a:hover,
.formText a:focus {
  color: var(--colorpurple);
  font-weight: 500;
}
.textboxestitle h2 {
  font-size: 2.5rem;
  font-weight: 900;
}
.textboxesimage {
  border-radius: 1rem;
  overflow: hidden;
}
.textboxesimage img {
  aspect-ratio: 4/2;
  object-fit: cover;
  height: 100%;
}
.textboxescontents p {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.textboxescontents ul {
  padding-left: 2rem;
  margin-bottom: 1rem;
  list-style-type: disc;
}
.textboxescontents ul li {
  position: relative;
  padding: 0.5rem 0;
  font-size: 1.6rem;
}
.textboxescontents ol {
  padding-left: 2rem;
  margin-bottom: 1rem;
  list-style-type: numeric;
}
.textboxescontents ol li {
  position: relative;
  padding: 0.5rem 0;
  font-size: 1.6rem;
}
.textboxescontents h1,
.textboxescontents h2,
.textboxescontents h3,
.textboxescontents h4,
.textboxescontents h5,
.textboxescontents h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}
.textboxescontents li p {
  margin: 0;
}
.textboxescontents blockquote {
  padding: 2rem;
  background-color: #fff;
  border-left: 1rem solid var(--alternatecolor);
}
.textboxescontents blockquote p {
  margin: 0;
}
.textboxescontents iframe {
  width: 100%;
  min-height: 20rem;
}
.contentsAffix {
  margin-top: 2rem;
}
@media (min-width: 992px) {
  .contentsAffix {
    padding-left: 2rem;
    position: sticky;
    top: 1rem;
    margin-top: 0;
  }
}
.othersContent {
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.othersContenttitle {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 0.1rem solid #eaeaea;
}
.othersContenttitle h3 {
  font-size: 1.6rem;
  font-weight: 700;
}
.othersContent .contents {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}
.othersContent .contents .contentsitems {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
.othersContent .contents .contentsitems i {
  color: var(--colorpurple);
  width: 2rem;
  display: inline-block;
}
.othersContent .contents .contentsitems a {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--textcolor);
  transition: all 300ms ease;
  width: calc(100% - 2rem);
  padding-left: 0.5rem;
}
.othersContent .contents .contentsitems a:hover,
.othersContent .contents .contentsitems a:focus {
  color: var(--colorpurple);
}
.pageCats {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}
.pageCatsitem {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.pageCatsitem a {
  width: calc(100% - 0.3rem);
  padding-left: 0.5rem;
  font-size: 1.6rem;
  color: var(--textcolor);
  transition: all 300ms ease;
}
.pageCatsitem a:hover,
.pageCatsitem a:focus {
  color: var(--colorpurple);
}
.pageCatsitem span {
  width: 0.3rem;
  height: 1.4rem;
  display: inline-block;
}
.writerdivs {
  width: 100%;
  background-color: #fff;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 2rem;
}
.writerdivs figure {
  width: 5rem;
  height: 5rem;
  overflow: hidden;
  border-radius: 50%;
}
.emptywriterimg {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.emptywriterimg.male {
  background-color: blue;
}
.emptywriterimg.female {
  background-color: palevioletred;
}
.emptywriterimg p {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}
.writerdivs .contents {
  width: calc(100% - 5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 1rem;
}
.writerdivs .contents h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
}
.writerdivs .contents h3 a {
  color: var(--textcolor);
  transition: color 300ms ease;
}
.writerdivs .contents h3:hover a {
  color: var(--colorpurple);
}
.writerlinks {
  color: var(--textcolor);
  font-size: 1.4rem;
  font-weight: 500;
  transition: color 300ms ease;
}
.writerlinks:hover {
  color: var(--colorpurple);
}
.contentsdescbars {
  background-color: #fff;
  padding: 1rem 2rem;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 1rem;
  margin-bottom: 2rem;
  border-radius: 0.5rem;
  border: 0.1rem solid #eaeaea;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .contentsdescbars {
    flex-wrap: nowrap;
    column-gap: 3rem;
  }
}
.contentsdescbarsitem {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0.5rem;
}
.contentsdescbarsitem p {
  font-size: 1.5rem;
}
.contentsdescbarsitem p i {
  color: var(--colorpurple);
}
.pageMaps {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 2rem;
  margin-bottom: 2rem;
  margin-top: -2rem;
}
.pageMaps li {
  position: relative;
  font-size: 1.6rem;
  color: var(--textcolor);
}
.pageMaps li.active {
  font-weight: 700;
  color: var(--colorpurple);
}
.pageMaps li:not(:last-child)::after {
  content: "\EA54";
  font-family: "remixicon";
  position: absolute;
  right: -1.7rem;
  top: 0.2rem;
  font-size: 1.4rem;
  color: var(--textcolor);
}
.pageMaps li a {
  color: var(--textcolor);
  transition: color 300ms ease;
  font-size: 1.6rem;
}
.pageMaps li:hover a {
  color: var(--colorpurple);
}
@media (min-width: 992px) {
  .othersAffix {
    position: sticky;
    top: 1rem;
  }
}
.commentSide {
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.commentSide textarea {
  background-color: var(--colorgrey);
  padding: 2rem;
}
.commentSide button[type="submit"] {
  border-radius: 0.3rem;
  padding: 1rem 2rem;
  background-color: var(--colorpurple);
  color: #fff;
  font-size: 1.5rem;
  transition: all 300ms ease;
}
.commentSide button[type="submit"]:hover {
  background-color: var(--textcolor);
  color: #fff;
}
.commentscroll {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.commentscrollitem {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.commentscrollitem:not(:last-child) {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 0.1rem solid #eaeaea;
}
.commentEmpty {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.commentEmpty p {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.commentEmpty.male {
  background-color: blue;
}
.commentEmpty.female {
  background-color: palevioletred;
}
.commentscrollitem .content {
  width: calc(100% - 4rem);
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.commentscrollitem .content .contentTop {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 0.3rem;
}
@media (min-width: 576px) {
  .commentscrollitem .content .contentTop {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.commentscrollitem .content .contentTop h3 {
  font-size: 1.5rem;
  font-weight: 500;
}
.commentscrollitem .content .contentTop span {
  font-size: 1.4rem;
  opacity: 0.8;
}
.commentscrollitem .content p {
  font-size: 1.5rem;
}
.commentscrollitem figure {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  overflow: hidden;
}
.commentscrollitem figure img {
  height: 100%;
  object-fit: cover;
}
.forgotPass {
  font-size: 1.4rem;
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--colorpurple);
}
.forgotPass:hover {
  color: var(--textcolor);
}
.formFlex {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contactBox {
  margin-bottom: 2rem;
}
.contactBox h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.contactContentItem {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.contactContentIcon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.3rem;
  background: var(--colorpurple);
  color: #fff;
  justify-content: center;
  align-items: center;
  display: flex;
  font-size: 1.6rem;
}
.contactContentHead {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: calc(100% - 3.5rem);
  width: 100%;
  padding-left: 1rem;
}
.contactContentHead h3 {
  margin: 0;
  font-size: 2rem;
}
.contactContentList {
  padding: 1rem 0 1rem 4.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contactContentList a {
  font-size: 1.5rem;
  transition: all 0.3s ease;
  color: #333;
}
.contactContentList a:not(:last-child) {
  margin-bottom: 0.5rem;
}
.contactContentList a:hover {
  color: var(--colorpurple);
}
.contactContentList:before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.6rem;
  bottom: 0;
  width: 0.2rem;
  background-color: var(--colorpurple);
}
.wpButton {
  width: 100%;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--whatsapp);
  color: #fff;
  border-radius: 0.4rem;
  transition: all 400ms ease;
}
.wpButton i {
  margin-right: 1rem;
}
.wpButton:hover {
  color: #fff;
  background-color: #075e54;
}
.contactIcon {
  width: 4rem;
  height: 4rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.4rem;
  transition: all 400ms ease;
  font-size: 1.6rem;
  color: #fff;
  background-color: var(--colorpurple);
  transition: all 400ms ease;
}
.contactIcon:hover {
  color: #fff;
}
.contactForm {
  background-color: #fff;
  padding: 3rem;
}
@media (min-width: 992px) {
  .contactForm {
    padding: 5rem;
  }
}
.contactForm h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .contactForm h2 {
    font-size: 2.5rem;
  }
}
.contactForm p {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  opacity: 0.8;
  font-style: italic;
}
.contactForm label {
  margin-bottom: 1rem;
}
.contactForm .form-control {
  background-color: #fbfbfb;
  padding: 1.5rem 1rem;
  transition: all 400ms ease;
}
.contactForm .form-control:hover,
.contactForm .form-control:focus {
  background-color: #f2f2f2 !important;
}
.btnSubmit {
  border-radius: 0.4rem;
  padding: 1.5rem 3rem;
  color: #fff;
  background-color: var(--colorpurple);
  font-size: 1.6rem;
  transition: all 400ms ease;
  border: none;
  outline: none;
}
.btnSubmit:hover {
  background-color: var(--textcolor);
  color: #fff;
}
.contentleftC {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.videoBox {
  width: 100%;
  border-radius: 0.5rem;
  padding: 1rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.videoimage {
  width: 100%;
  border-radius: 0.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.videoimage img {
  height: 100%;
  object-fit: cover;
}
.videoBox .content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 1;
}
.videoBox .content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.videoBox .content p {
  font-size: 1.5rem;
}
#pdftable {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
#pdftable th,
#pdftable td {
  padding: 1rem;
  border: 0.1rem solid #eaeaea;
  font-size: 1.5rem;
}
#pdftable td a {
  color: var(--textcolor);
  transition: color 300ms ease;
}
#pdftable td a:hover {
  color: var(--colorpurple);
}
.footerlogo {
  margin: 0 auto;
}
@media (min-width: 450px) {
  .footerlogo {
    margin: 0 auto auto 0;
  }
}
