@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Secular+One&display=swap');

@font-face {
    font-family: 'abr';
    src: url(fonts/abr.ttf);
}

@font-face {
    font-family: 'vrh';
    src: url(fonts/vrh.ttf);
}

html {
	scroll-behavior: smooth;
  overscroll-behavior: none;
}

:root {
    --darkgray: rgb(26, 26, 26);
    --brightmain: #394ae2;
    --lightmain: #2134dd;
    --darkmain: rgb(32,171,220);
    --lightdarkmain: rgb(47, 170, 215);
    --darkmainopacity: rgba(32,171,220,0.6);
    --gradient: linear-gradient(45deg,rgba(236, 132, 102, 1) 0%, rgba(236, 41, 123, 1) 100%);
    --black: #000;
    --white: #fff;
}
	
* {
	margin: 0;
	padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

.uwy.userway_p1 .userway_buttons_wrapper {
  position: fixed;
  top: auto !important;
  bottom: 20px !important;
  left: 84px !important;
}

@media screen and (max-width: 1160px) {
  .uwy.userway_p1 .userway_buttons_wrapper {
    left: 64px !important;
  }
}

body {
    background-color: #000000;
    overflow-x: hidden;
    overscroll-behavior: none;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
    opacity: 0;
    transition: 0.25s;
    max-width: 100vw;
}

body.show {
    opacity: 1;
}

/* ---- top menu ---- */
#navCont {
  position: relative;
  height: 80px;
  background-color: #fbfcf6;
}

/* ---- main page menu ---- */
#navContM {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  padding-top: 2px;
  z-index: 1001;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #fbfcf6;
  transition: 0.4s;
}
#navContM.sticky {
  height: 80px;
  box-shadow: 0px 0px 10px #0000002f;
  background-color: #fbfcf6;
}

.navLogo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 80px;
}

.navLogoLink {
    padding-top: 5px;
}

.navLogoImg {
    height: 24px;
    width: auto;
}

.navMenu {
    display: flex;
    direction: rtl;
    align-items: center;
    gap: 40px;
    list-style: none;
    font-size: 1.4em;
    color: #fff;
    padding-right: 80px;
}

.navTxt a {
    position: relative;
    text-decoration: none;
    color: #000;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'vrh';
}

.navTxt a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    pointer-events: none;
    width: 0%;
    height: 2px;
    border-radius: 20px;
    background: #EC297B;
    transition: 0.3s;
}

.navTxt a:hover::after {
    width: 100%;
}

.navWaBtn {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 4px;
    text-decoration: none;
    font-size: 0.7em;
    color: #fff !important;
    background-color: #EC297B;
    border: 3px solid #ffffff4d;
    border-radius: 50px;
    padding: 6px 20px;
    font-family: 'vrh';
    transition: 0.3s;
}

.navWaBtn:hover {
    transform: scale(0.98);
}

.navWaBtn:hover::after {
    width: 0% !important;
}

.mobileNav {
    width: 100%;
    height: auto;
    z-index: 1003;
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-inline: 30px;
}

.menu__icon {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-family: inherit;
  width: 2rem;
  height: 2rem;
  padding: .25rem;
  position: relative;
}

.menu__icon span {
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  top: calc(.25rem - 1px);
  left: calc(.25rem - 1px);
  transition: transform .1806s cubic-bezier(.04,.04,.12,.96);
}

.menu__icon span:before {
  content: '';
  width: 1.5rem;
  height: .125rem;
  background-color: #000;
  border-radius: 10px;
  position: absolute;
  left: 0;
  transition: transform .1596s cubic-bezier(.52,.16,.52,.84) .1008s;
}

.menu__icon span:nth-child(1)::before {
  top: .625rem;
  transform: translateY(-3px);
}

.menu__icon span:nth-child(2)::before {
  bottom: .625rem;
  transform: translateY(3px);
}

.menu__icon.active :nth-child(1),
.menu__icon.active :nth-child(2) {
  transition: transform .3192s cubic-bezier(.04,.04,.12,.96) .1008s;
}

.menu__icon.active :nth-child(1)::before,
.menu__icon.active :nth-child(2)::before {
  transform: none;
  transition: transform .1806s cubic-bezier(.04,.04,.12,.96);
}

.menu__icon.active :nth-child(1) {
  transform: rotate(45deg) translateY(1px);
}

.menu__icon.active :nth-child(2) {
  transform: rotate(-45deg) translateY(-1px);
}

.sideMenu {
  position: fixed;
  top: 0;
  right: -358px;
  width: 358px;
  height: 100dvh;
  background-color: #fbfcf6;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1002;
  padding-inline: 50px;
  overflow: hidden;
  transition: 0.5s;
}

.sideMenu.active {
  right: 0;
}

.mobileMenu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  list-style: none;
  font-size: 2.2em;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  direction: rtl;
}

.mobileMenu .navTxt a::after {
  left: 0;
}

@media screen and (max-width: 1160px) {
  .navTxt a::after { 
    opacity: 1;
  }
  .navLogo {
    display: none;
  }
  .navMenu {
    display: none;
  }
  .mobileNav {
    display: flex;
  }
  .sideMenu {
      display: flex;
  }
  .sideMenu.active {
      box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  }
}
@media screen and (max-width: 450px) {
  .sideMenu {
    width: 100%;
    right: -100%;
    box-shadow: 0px 0px 0px #00000000;
  }
}

.smbl {
  text-decoration: none;
  color: #fff;
}

.socialmMediaBtn {
  font-size: 1.5em;
  opacity: 1;
  transition: 0.3s;
  cursor: pointer;
}

.socialmMediaBtn:hover {
  opacity: 0.5;
}

.instaBtn {
  /* color: #9f00a5; */
  color: #fff;
}

.ytBtn {
  background-color: #cd201f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 0.8em;
}

.facebookBtn {
  background-color: #3b5998;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 0.8em;
}

.whatsappBtn {
  background-color: #0f8904;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.ytBtnS {
  background-color: #cd201f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.facebookBtnS {
  background-color: #3b5998;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.whatsappBtnS {
  background-color: #0f8904;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.socialmMediaCont {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 50px;
  padding: 20px 40px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  text-align: center;
  z-index: 1000;
  box-shadow: 0px 0px 10px #0000002f;
  background-color: #000000db;
  backdrop-filter: blur(12px);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.socialmMediaContSide {
  position: absolute;
  bottom: 50px;
  right: 50px;
  display: flex;
  gap: 16px;
  margin: 0 auto;
  height: auto;
  padding-block: 8px;
  margin-top: 2px;
  text-align: center;
}

.socialmMediaContSide .socialmMediaBtn {
  font-size: 1.8em;
  opacity: 1;
  transition: 0.3s;
  cursor: pointer;
}

@media screen and (max-width: 1160px) {
  .socialmMediaCont {
      display: none;
  }
}

.telCont {
  position: relative;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #EC297B;
  box-shadow: 0px 0px 10px #00000050;
  z-index: 1000;
}

.telBtn {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  font-size: 1.2em;
  padding: 18px;
  border-radius: 50%;
  box-shadow: 0px 0px 2px #ffffff50;
}

.telBtnTooltip {
  opacity: 0;
  background: #EC297B;
  box-shadow: 0px 0px 10px #00000050;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 10px;
  transition: 0.2s;
  font-family: 'vrh';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 110%;
  pointer-events: none;
}

.telBtnTooltip::before {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%) rotateZ(45deg);
  width: 10px;
  height: 10px;
  background-color: #EC297B;
  z-index: -1;
}

.telBtn:hover ~ .telBtnTooltip {
  opacity: 1;
  right: 120%;
}

/* footer */
.CopyrightBx {
  width: 100%;
  height: auto;
  background-color: #f0f0f0;
  color: #000;
  text-align: center;
  position: relative;
  direction: rtl;
  bottom: 0;
  padding: 5px 10px;
  /*border-top-right-radius: 8px;
  border-top-left-radius: 8px;*/
}

.CopyrightBx .CopyrightTxt {
  /*position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);*/
  font-size: 1.2em;
  font-family: 'vrh';
  width: 100%;
  margin-block: 10px;
}

@media screen and (max-width: 220px){
  .CopyrightBx .CopyrightTxt {
      font-size: 1em;
  }
}