/* [Master Stylesheet]*/
/*
Template Name: Conference
Template Author: imenta
Version: - v1.0.0
*/

/* :: root */
:root {
  --color-main-purple : #7902B7; /* rgb(49,109,119) */
  --color-main-blue:#27348B ;
  --color-hover:#009FE3;
  --color-black: #232323;
  --color-body: #8D8D8D;
  --color-white:#FBFBFB;
  --color-gray: #E8E8E8;
  --color-des-card:#E7F6FD;
  --gradiant: linear-gradient(85.51deg, #7902B7 -0.51%, #009FE3 96.36%);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
@media (prefers-reduced-motion: no-preference){
  :root {
    scroll-behavior: smooth;
  }
}

html {
  overflow-y: scroll;
  overflow-x: hidden;
  -ms-overflow-style: scrollbar;
}

body {
  margin: 0;
  font-family: 'Courier New', Courier, monospace;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-body);
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a {
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: inherit;
}
input {
	outline: none;
	border: none;
}
input:focus,
input:hover {
  border-color: transparent !important;
}
button {
  outline: none !important;
  border: none;
}
/* :: Disable AOS delay on mobile*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* :: Header */
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  background: transparent;
}
#header.header-transparent {
  background: transparent;
}
#header.header-scrolled {
  background: var(--color-white);
  height: 70px;
  padding: 15px 0;
  color: var(--color-black);
  box-shadow: 1px 0 3px rgba(0, 0, 0, 0.2);
} 
#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 64px;
}

/* :: Navigation Menu */
/* ================================ */
/* Desktop Navigation */
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 0.9rem;
  font-family: inherit;
  color: inherit;
  white-space: nowrap;
  transition: 0.3s;
}
@media (max-width: 1024px) {
  .navbar a,
  .navbar a:focus {
    padding: 10px 0 10px 5px;
    font-size: 0.7rem;
  }
}
.navbar a i,
.navbar a:focus i {
  font-size: 0.7rem;
  line-height: 0;
  margin-left: 5px;
  color: var(--color-hover);
}
.navbar > ul > li > a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 3px;
  right: 0px;
  background-color: var(--color-main-purple);
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover::before,
.navbar li:hover > a::before,
.navbar .active::before {
  visibility: visible;
  width: 25px;
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--color-second);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  right: 0px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  border-radius: 4px;
}
.navbar .dropdown ul li {
  min-width: 200px;
  margin-top: 5px;
  background-color: var(--color-des-card);
  border-radius: 16px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: none;
  color: var(--color-main);
}
.navbar .dropdown ul a i {
  font-size: 0.7rem;
}
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: var(--color-main);
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown-sub ul {
  top: 0;
  right: calc(100% - 30px);
  visibility: hidden;
  background: var(--color-des-card);
  border-radius: 16px;
  margin-right: 10px;
}
.navbar .dropdown .dropdown-sub:hover > ul {
  opacity: 1;
  top: 0;
  right: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown-sub ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown-sub:hover > ul {
    left: -100%;
  }
}
/* :: Mobile Navigation */
.mobile-nav-toggle {
  color: var(--color-second);
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.3s;
}
@media (max-width:991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: var(--color-main-purple);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top:15px;
  left: 15px;
  color: var(--color-second);
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 2px;
  padding: 12px 0;
  background-color: var(--color-main-blue);
  color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 0.8rem;
  color: var(--color-second);
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: var(--color-second);
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 1px 20px;
  padding:  10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 0.6rem;
}
.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: var(--color-second);
}
.navbar-mobile .dropdown > .dropdown-active,
.navbar-mobile .dropdown .dropdown-sub > .dropdown-active {
  display: block;
  color: var(--color-black);
}

/* :: Hero Section  */
#hero {
  width: 100%;
  height: 100vh;
  background-color: #fff;
  overflow: hidden;
  position: relative;
  padding: 120px 0 0 0;
}
@media (max-width: 991px){
  #hero {
      padding-top: 80px;
  }
}
#hero h1 {
  color: var(--color-main-purple);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}
#hero p {
  font-size: 0.9rem;
  line-height: normal;
  font-weight: 500;

}
#hero .btn-register {
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 16px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: var(--color-main-purple);
  color: #fff;
}
#hero .btn-register:hover {
  background: #fff;
  color: var(--color-main-purple);
  border: 1px solid var(--color-main-purple);
  text-decoration: none;
}
#hero .hero-img {
  position: relative;
}

#hero .hero-img::after {
  position: absolute;
  content: '';
  background-color: var(--color-main-purple);
  max-width: 720px; 
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.1;
  top: 0;
  left: 0;
  width: 85%;
  height: 100%; 
}
#hero img{
  max-width: 600px; 
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}
/* :: Section General */
section {
  padding: 70px 0;
  overflow: hidden;
}
.section-bg {
  background-color: #fff;
}
.section-title {
  padding-bottom: 30px;
}
.section-title h2 {
  color: var(--color-main-purple);
  font-size: 22px;
  font-weight: bold;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  position: relative;
}
.section-title h2::after {
  content: "";
  position: absolute;
  width: 87%;
  height: 2px;
  display: inline-block;
  background: var(--color-hover);
  margin: 4px 10px;
}

/* :: News */
.news-section {
  background: #fff;
}
.news-section .news {
  padding: 10px;  
  margin-bottom: 40px;
  background: var(--color-des-card);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 10px 10px;
}
.news-section .news .news-image {
  max-height: 400px;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  margin: -10px -10px 20px -10px;
}
.news-section .news img {
  transition: all ease-in-out 0.4s;
}
.news-section .news .news-title {
  font-size: 18px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}
.news-section .news .news-title a {
  color: #565656;
  transition: 0.3s;
}
.news-section .news .news-title a:hover,
.news-section .news .news-title a:focus {
  color: var(--color-hover);
}
.news-section .news .news-content p {
  line-height: 24px;
  text-align: justify;
}
.news-section .news .news-content .read-more {
  text-align: end;
}
.news-section .news .news-content .read-more a {
  display: inline-block;
  color: #565656;
  transition: 0.3s;
  font-size: 14px;
}
.news-section .news .news-content .read-more a:hover,
.news-section .news .news-content .read-more a:focus {
  color: var(--color-hover);
}
.news-section .news .news-content .read-more i {
  font-size: 12px;
}
/* ::Clients */
.clients .clients-slider .swiper-slide img {  
  opacity: 0.5;
  transition: 0.3s;
}
.clients .clients-slider .swiper-slide img:hover {
  opacity: 1;
}
.swiper-button-next:hover,
.swiper-button-next:focus, 
.swiper-button-prev:hover,
.swiper-button-prev:focus {
  color: var(--color-hover);
  text-shadow: 2px 5px 5px rgba(115, 181, 244, 0.5);
  font-weight: bold;
}

/* :: Footer */
#footer {
  color: #8D8D8D;
  font-size: 14px;
  background: #E8E8E8;
  padding: 50px 10px;
}
#footer .footer-about,
#footer .footer-links,
#footer .footer-contact {
  text-align: center;
  padding: 20px 50px;
}
#footer h4,
#footer h4 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1; 
  text-align: center;
  margin-bottom: 20px;
}
#footer p {
  text-align: justify;
  line-height: 1.2;
}
#footer .footer-links {
  text-align: center;
}
#footer .footer-links ul {
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;

}
#footer .footer-links ul li {
  list-style: none;
  margin-left: 30px;
}
#footer .footer-links ul li a {  
  font-weight: bold;
  color: var(--color-main-purple);
}
#footer .footer-links ul li a:hover,
#footer .footer-links ul li a:focus { 
  color: var(--color-main-blue);
}
#footer .footer-links .link-social a {
  opacity: 0.5;
}
#footer .footer-links .link-social a:hover,
#footer .footer-links .link-social a:focus {
  opacity: 1;
}

/* ::LOGIN */
.limiter {
  width: 100%;
  margin: 0 auto;
}
.container-login {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background: url("./assets/panel/images/bg.jpg") no-repeat center;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.container-login::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(164,214,237, 0.6);
}

.wrap-login {
  width: 400px;
  border-radius: 10px;
  overflow: hidden;
  padding: 10px 10px 7px 10px;
  background: transparent;
}
/* ::Form Login */
.login-form {
  width: 100%;
  background: var(--color-white);
  border-radius: 10px;
  overflow: hidden;
  padding: 55px 30px 37px 30px;
}
.login-form-avatar {  
  position: relative;
  top: 30px;
  font-size: 50px;
  color: #5E81A5;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color:#BEE1F2 ;/* rgb(165 203 223 / 87%);*/
  margin: 0 auto;
}
.login-form-title {
  font-family: inherit;
  font-size: 30px;
  color: #565656;
  line-height: 1.2;
  text-align: center;
  display: block;
}
/* ::input form */
.wrap-input {
  width: 100%;
  position: relative;
  border: 1px solid #E8E8E8;
  background: #E8E8E8;
  margin: 20px auto;
  border-radius: 15px;
}
.input-form {
  font-size: 16px;
  color: var(--color-black);
  line-height: 1.2;
  display: block;
  width: 100%;
  height: 45px;
  background: transparent;
  padding: 0 10px;
}
.form-checkbox,
.login-link {
  padding-right: 5px;
  padding-top: 5px;
  padding-bottom: 35px;
}

.input-checkbox {
  /* display: none; */
}
.label-checkbox {
  font-family: inherit;
  font-size: 13px;
  color: #565656;
  line-height: 1.2;
  position: relative;
  padding-right: 2px;
  cursor: pointer;
}
.login-link a {
  font-size: 13px;
  color: #565656;
  line-height: 1.2;
}
.login-link a:hover,
.login-link a:focus {
  color: var(--color-main-purple);
}
.container-login-form-btn {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.login-form-btn {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 50px;
  border-radius: 16px;
  background: var(--color-main-purple);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.register-form-btn {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 50px;
  border-radius: 16px;
  border: 1px solid var(--color-main-purple);
  background: #E8E8E8;
  color: #565656;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.login-form-btn:focus,
.login-form-btn:hover,
.register-form-btn:focus,
.register-form-btn:hover {
  background: var(--color-main-blue);
  border: var(--color-main-blue);
  color: #fff;
}