/* Reset some default styles to ensure consistency across browsers */
img {
  max-width: 100%;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li {
  margin: 0;
  padding: 0;
}

ul,
li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: normal;
  overflow: auto;
}

@media (min-width: 576px) {
  body {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  body {
    font-size: 1rem;
  }
}

@media (min-width: 992px) {
  body {
    font-size: 1rem;
  }
}

@media (min-width: 1200px) {
  body {
    font-size: 1rem;
  }
}

/* Reset some default styles to ensure consistency across browsers */
.navbar {
  background-color: #ffffff99;
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  z-index: 1;
}

.navbar .navbar-brand {
  font-size: 1.5rem;
  font-weight: 400;
  color: #000000;
}

@media (min-width: 576px) {
  .navbar .navbar-brand {
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) {
  .navbar .navbar-brand {
    font-size: 1.5rem;
  }
}

@media (min-width: 992px) {
  .navbar .navbar-brand {
    font-size: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .navbar .navbar-brand {
    font-size: 1.5rem;
  }
}

.navbar .nav-item {
  font-size: 1rem;
  font-weight: 500;
  color: #000000;
}

@media (min-width: 576px) {
  .navbar .nav-item {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .navbar .nav-item {
    font-size: 1rem;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item {
    font-size: 1rem;
  }
}

@media (min-width: 1200px) {
  .navbar .nav-item {
    font-size: 1rem;
  }
}

.navbar .navbar-nav > .active > a {
  color: #000000;
}

@media (max-width: 768px) {
  .navbar .navbar-collapse {
    background-color: white;
    padding: 10px;
  }
}

.marquee {
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  width: 190px;
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 5vmax;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  font-size: 1rem;
  font-weight: 600;
}

@media (min-width: 576px) {
  .marquee {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .marquee {
    font-size: 1rem;
  }
}

@media (min-width: 992px) {
  .marquee {
    font-size: 1rem;
  }
}

@media (min-width: 1200px) {
  .marquee {
    font-size: 1rem;
  }
}

.marquee:hover {
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.marquee--inner {
  display: block;
  width: 200%;
  position: absolute;
  -webkit-animation: marquee 10s linear infinite;
          animation: marquee 10s linear infinite;
}

.marquee--inner span {
  float: left;
  width: 50%;
  overflow: hidden;
}

.marquee--inner:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

@-webkit-keyframes marquee {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}

@keyframes marquee {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}

section#home div.home-wrapper {
  background: url("../images/home-bg.png") !important;
  background-position: top;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  position: relative;
  padding-top: 120px;
}

section#home div.home-wrapper .home-left img {
  border-radius: 10px;
  -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
          box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

section#home div.home-wrapper .home-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: left;
}

@media (max-width: 992px) {
  section#home div.home-wrapper .home-right {
    padding-top: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

section#home div.home-wrapper .home-right h2 {
  font-size: 3rem;
  font-weight: 600;
  color: #000000;
}

@media (min-width: 576px) {
  section#home div.home-wrapper .home-right h2 {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  section#home div.home-wrapper .home-right h2 {
    font-size: 3rem;
  }
}

@media (min-width: 992px) {
  section#home div.home-wrapper .home-right h2 {
    font-size: 3rem;
  }
}

@media (min-width: 1200px) {
  section#home div.home-wrapper .home-right h2 {
    font-size: 3rem;
  }
}

@media (max-width: 576px) {
  section#home div.home-wrapper .home-right h2 {
    text-align: center;
  }
}

@media (max-width: 768px) {
  section#home div.home-wrapper .home-right h2 {
    font-size: 1.875rem;
  }
}

@media (max-width: 768px) and (min-width: 576px) {
  section#home div.home-wrapper .home-right h2 {
    font-size: 1.875rem;
  }
}

@media (max-width: 768px) and (min-width: 768px) {
  section#home div.home-wrapper .home-right h2 {
    font-size: 1.875rem;
  }
}

@media (max-width: 768px) and (min-width: 992px) {
  section#home div.home-wrapper .home-right h2 {
    font-size: 1.875rem;
  }
}

@media (max-width: 768px) and (min-width: 1200px) {
  section#home div.home-wrapper .home-right h2 {
    font-size: 1.875rem;
  }
}

section#home div.home-wrapper .home-right h2 span {
  background: linear-gradient(110deg, rgba(46, 180, 219, 0.45) 20%, rgba(234, 85, 98, 0.45) 40%, rgba(234, 85, 98, 0.45) 60%, rgba(46, 180, 219, 0.45) 80%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: gradientMix 8s linear infinite;
          animation: gradientMix 8s linear infinite;
}

section#home div.home-wrapper .home-right p {
  font-size: 1.125rem;
  font-weight: 400;
  color: #959BAB;
  max-width: 477px;
}

@media (min-width: 576px) {
  section#home div.home-wrapper .home-right p {
    font-size: 1.125rem;
  }
}

@media (min-width: 768px) {
  section#home div.home-wrapper .home-right p {
    font-size: 1.125rem;
  }
}

@media (min-width: 992px) {
  section#home div.home-wrapper .home-right p {
    font-size: 1.125rem;
  }
}

@media (min-width: 1200px) {
  section#home div.home-wrapper .home-right p {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {
  section#home div.home-wrapper .home-right p {
    text-align: center;
  }
}

@media (max-width: 768px) and (max-width: 768px) {
  section#home div.home-wrapper .home-right p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) and (max-width: 768px) and (min-width: 576px) {
  section#home div.home-wrapper .home-right p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) and (max-width: 768px) and (min-width: 768px) {
  section#home div.home-wrapper .home-right p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) and (max-width: 768px) and (min-width: 992px) {
  section#home div.home-wrapper .home-right p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) and (max-width: 768px) and (min-width: 1200px) {
  section#home div.home-wrapper .home-right p {
    font-size: 1rem;
  }
}

section#home div.home-wrapper .home-right .btn-cv {
  display: inline-block;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #000000;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 700;
}

section#home div.home-wrapper .home-right .btn-cv:hover {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #000000;
}

@media (min-width: 576px) {
  section#home div.home-wrapper .home-right .btn-cv {
    font-size: 1.125rem;
  }
}

@media (min-width: 768px) {
  section#home div.home-wrapper .home-right .btn-cv {
    font-size: 1.125rem;
  }
}

@media (min-width: 992px) {
  section#home div.home-wrapper .home-right .btn-cv {
    font-size: 1.125rem;
  }
}

@media (min-width: 1200px) {
  section#home div.home-wrapper .home-right .btn-cv {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {
  section#home div.home-wrapper .home-right .btn-cv {
    font-size: 1rem;
    padding: 12px;
  }
}

@media (max-width: 768px) and (min-width: 576px) {
  section#home div.home-wrapper .home-right .btn-cv {
    font-size: 1rem;
  }
}

@media (max-width: 768px) and (min-width: 768px) {
  section#home div.home-wrapper .home-right .btn-cv {
    font-size: 1rem;
  }
}

@media (max-width: 768px) and (min-width: 992px) {
  section#home div.home-wrapper .home-right .btn-cv {
    font-size: 1rem;
  }
}

@media (max-width: 768px) and (min-width: 1200px) {
  section#home div.home-wrapper .home-right .btn-cv {
    font-size: 1rem;
  }
}

section#about div.about-wrapper .about-left img {
  border-radius: 10px;
  -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
          box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

section#about div.about-wrapper h2 {
  font-size: 3rem;
  font-weight: 600;
  color: #000000;
  text-align: left;
}

@media (min-width: 576px) {
  section#about div.about-wrapper h2 {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  section#about div.about-wrapper h2 {
    font-size: 3rem;
  }
}

@media (min-width: 992px) {
  section#about div.about-wrapper h2 {
    font-size: 3rem;
  }
}

@media (min-width: 1200px) {
  section#about div.about-wrapper h2 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  section#about div.about-wrapper h2 {
    text-align: center;
  }
}

@media (max-width: 768px) {
  section#about div.about-wrapper h2 {
    font-size: 1.875rem;
  }
}

@media (max-width: 768px) and (min-width: 576px) {
  section#about div.about-wrapper h2 {
    font-size: 1.875rem;
  }
}

@media (max-width: 768px) and (min-width: 768px) {
  section#about div.about-wrapper h2 {
    font-size: 1.875rem;
  }
}

@media (max-width: 768px) and (min-width: 992px) {
  section#about div.about-wrapper h2 {
    font-size: 1.875rem;
  }
}

@media (max-width: 768px) and (min-width: 1200px) {
  section#about div.about-wrapper h2 {
    font-size: 1.875rem;
  }
}

section#about div.about-wrapper h2 span {
  position: relative;
}

section#about div.about-wrapper h2 span::after {
  content: "";
  position: absolute;
  bottom: -0.01em;
  left: 0;
  width: 100%;
  height: 4px;
  background-repeat: no-repeat;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #212121), color-stop(50%, rgba(33, 33, 33, 0.3)));
  background-image: linear-gradient(to right, #212121 50%, rgba(33, 33, 33, 0.3) 50%);
  background-size: 200% 100%;
  background-position: 100% 50%;
  -webkit-transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

section#about div.about-wrapper h2 span:hover::after {
  background-position: 0% 50%;
}

section#about div.about-wrapper .about-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: left;
}

@media (max-width: 992px) {
  section#about div.about-wrapper .about-right {
    padding-top: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

section#about div.about-wrapper .about-right h3 {
  font-size: 2rem;
  font-weight: 500;
  color: #000000;
  text-align: left;
}

@media (min-width: 576px) {
  section#about div.about-wrapper .about-right h3 {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  section#about div.about-wrapper .about-right h3 {
    font-size: 2rem;
  }
}

@media (min-width: 992px) {
  section#about div.about-wrapper .about-right h3 {
    font-size: 2rem;
  }
}

@media (min-width: 1200px) {
  section#about div.about-wrapper .about-right h3 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  section#about div.about-wrapper .about-right h3 {
    font-size: 1.5625rem;
  }
}

@media (max-width: 768px) and (min-width: 576px) {
  section#about div.about-wrapper .about-right h3 {
    font-size: 1.5625rem;
  }
}

@media (max-width: 768px) and (min-width: 768px) {
  section#about div.about-wrapper .about-right h3 {
    font-size: 1.5625rem;
  }
}

@media (max-width: 768px) and (min-width: 992px) {
  section#about div.about-wrapper .about-right h3 {
    font-size: 1.5625rem;
  }
}

@media (max-width: 768px) and (min-width: 1200px) {
  section#about div.about-wrapper .about-right h3 {
    font-size: 1.5625rem;
  }
}

section#about div.about-wrapper .about-right p {
  font-size: 1.125rem;
  font-weight: 400;
  color: #959BAB;
  max-width: 477px;
}

@media (min-width: 576px) {
  section#about div.about-wrapper .about-right p {
    font-size: 1.125rem;
  }
}

@media (min-width: 768px) {
  section#about div.about-wrapper .about-right p {
    font-size: 1.125rem;
  }
}

@media (min-width: 992px) {
  section#about div.about-wrapper .about-right p {
    font-size: 1.125rem;
  }
}

@media (min-width: 1200px) {
  section#about div.about-wrapper .about-right p {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {
  section#about div.about-wrapper .about-right p {
    text-align: center;
  }
}

@media (max-width: 768px) {
  section#about div.about-wrapper .about-right p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) and (min-width: 576px) {
  section#about div.about-wrapper .about-right p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) and (min-width: 768px) {
  section#about div.about-wrapper .about-right p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) and (min-width: 992px) {
  section#about div.about-wrapper .about-right p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) and (min-width: 1200px) {
  section#about div.about-wrapper .about-right p {
    font-size: 1rem;
  }
}

.tab-slider--nav {
  width: 100%;
  float: left;
}

.tab-slider--nav .tab-slider--tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 100%;
  float: left;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  border-radius: 5vmax;
  overflow: hidden;
  background: #EDF2F2;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.tab-slider--nav .tab-slider--tabs:after {
  content: "";
  width: 50%;
  background: #000000;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  border-radius: 5vmax;
}

.tab-slider--nav .tab-slider--tabs.slide:after {
  left: 50%;
}

.tab-slider--nav .tab-slider--tabs .tab-slider--trigger {
  width: inherit;
  font-size: 1.375rem;
  line-height: 1;
  font-weight: 500;
  color: #000000;
  text-transform: capitalize;
  text-align: center;
  padding: 11px 20px;
  position: relative;
  z-index: 2;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: color 250ms ease-in-out;
  transition: color 250ms ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@media (min-width: 576px) {
  .tab-slider--nav .tab-slider--tabs .tab-slider--trigger {
    font-size: 1.375rem;
  }
}

@media (min-width: 768px) {
  .tab-slider--nav .tab-slider--tabs .tab-slider--trigger {
    font-size: 1.375rem;
  }
}

@media (min-width: 992px) {
  .tab-slider--nav .tab-slider--tabs .tab-slider--trigger {
    font-size: 1.375rem;
  }
}

@media (min-width: 1200px) {
  .tab-slider--nav .tab-slider--tabs .tab-slider--trigger {
    font-size: 1.375rem;
  }
}

@media (max-width: 768px) {
  .tab-slider--nav .tab-slider--tabs .tab-slider--trigger {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) and (min-width: 576px) {
  .tab-slider--nav .tab-slider--tabs .tab-slider--trigger {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) and (min-width: 768px) {
  .tab-slider--nav .tab-slider--tabs .tab-slider--trigger {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) and (min-width: 992px) {
  .tab-slider--nav .tab-slider--tabs .tab-slider--trigger {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) and (min-width: 1200px) {
  .tab-slider--nav .tab-slider--tabs .tab-slider--trigger {
    font-size: 1.125rem;
  }
}

.tab-slider--nav .tab-slider--tabs .tab-slider--trigger.active {
  color: #ffffff;
}

.tab-slider--body h2 {
  font-size: 1.375rem;
  font-weight: 500;
}

@media (min-width: 576px) {
  .tab-slider--body h2 {
    font-size: 1.375rem;
  }
}

@media (min-width: 768px) {
  .tab-slider--body h2 {
    font-size: 1.375rem;
  }
}

@media (min-width: 992px) {
  .tab-slider--body h2 {
    font-size: 1.375rem;
  }
}

@media (min-width: 1200px) {
  .tab-slider--body h2 {
    font-size: 1.375rem;
  }
}

@media (max-width: 768px) {
  .tab-slider--body h2 {
    text-align: center;
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) and (min-width: 576px) {
  .tab-slider--body h2 {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) and (min-width: 768px) {
  .tab-slider--body h2 {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) and (min-width: 992px) {
  .tab-slider--body h2 {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) and (min-width: 1200px) {
  .tab-slider--body h2 {
    font-size: 1.25rem;
  }
}

.tab-slider--body .vtl {
  position: relative;
  padding: 10px 10px 10px 150px;
}

@media (max-width: 768px) {
  .tab-slider--body .vtl {
    padding: 10px;
  }
}

.tab-slider--body .vtl:before {
  content: "";
  border: 1px dashed #54505e;
  position: absolute;
  top: 77px;
  bottom: 83px;
  left: 32px;
}

@media (max-width: 768px) {
  .tab-slider--body .vtl:before {
    display: none;
  }
}

.tab-slider--body .vtl .event {
  padding: 20px 20px 20px 50px;
  position: relative;
  border-radius: 10px;
  margin-bottom: 30px;
  display: block;
}

@media (max-width: 768px) {
  .tab-slider--body .vtl .event {
    padding: 20px;
    margin-top: 62px;
  }
}

.tab-slider--body .vtl .event::after {
  position: absolute;
  top: calc(50% - 15px);
  left: -142px;
}

@media (max-width: 768px) {
  .tab-slider--body .vtl .event::after {
    top: -49px;
    left: 0;
  }
}

.tab-slider--body .vtl .event .content-event {
  color: #000000;
}

@media (max-width: 768px) {
  .tab-slider--body .vtl .event .content-event {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    text-align: center;
    margin: 0;
  }
}

.tab-slider--body .vtl .event .content-event .content-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 768px) {
  .tab-slider--body .vtl .event .content-event .content-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.tab-slider--body .vtl .event .content-event .content-head h4 {
  font-size: 1.375rem;
  font-weight: 500;
}

@media (min-width: 576px) {
  .tab-slider--body .vtl .event .content-event .content-head h4 {
    font-size: 1.375rem;
  }
}

@media (min-width: 768px) {
  .tab-slider--body .vtl .event .content-event .content-head h4 {
    font-size: 1.375rem;
  }
}

@media (min-width: 992px) {
  .tab-slider--body .vtl .event .content-event .content-head h4 {
    font-size: 1.375rem;
  }
}

@media (min-width: 1200px) {
  .tab-slider--body .vtl .event .content-event .content-head h4 {
    font-size: 1.375rem;
  }
}

@media (max-width: 768px) {
  .tab-slider--body .vtl .event .content-event .content-head h4 {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) and (min-width: 576px) {
  .tab-slider--body .vtl .event .content-event .content-head h4 {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) and (min-width: 768px) {
  .tab-slider--body .vtl .event .content-event .content-head h4 {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) and (min-width: 992px) {
  .tab-slider--body .vtl .event .content-event .content-head h4 {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) and (min-width: 1200px) {
  .tab-slider--body .vtl .event .content-event .content-head h4 {
    font-size: 1.25rem;
  }
}

.tab-slider--body .vtl .event .content-event .content-head h6 {
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
}

@media (min-width: 576px) {
  .tab-slider--body .vtl .event .content-event .content-head h6 {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .tab-slider--body .vtl .event .content-event .content-head h6 {
    font-size: 1rem;
  }
}

@media (min-width: 992px) {
  .tab-slider--body .vtl .event .content-event .content-head h6 {
    font-size: 1rem;
  }
}

@media (min-width: 1200px) {
  .tab-slider--body .vtl .event .content-event .content-head h6 {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .tab-slider--body .vtl .event .content-event .content-head h6 {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) and (min-width: 576px) {
  .tab-slider--body .vtl .event .content-event .content-head h6 {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) and (min-width: 768px) {
  .tab-slider--body .vtl .event .content-event .content-head h6 {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) and (min-width: 992px) {
  .tab-slider--body .vtl .event .content-event .content-head h6 {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) and (min-width: 1200px) {
  .tab-slider--body .vtl .event .content-event .content-head h6 {
    font-size: 0.875rem;
  }
}

.tab-slider--body .vtl .event .content-event p {
  font-size: 1rem;
  font-weight: 400;
}

@media (min-width: 576px) {
  .tab-slider--body .vtl .event .content-event p {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .tab-slider--body .vtl .event .content-event p {
    font-size: 1rem;
  }
}

@media (min-width: 992px) {
  .tab-slider--body .vtl .event .content-event p {
    font-size: 1rem;
  }
}

@media (min-width: 1200px) {
  .tab-slider--body .vtl .event .content-event p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .tab-slider--body .vtl .event .content-event p {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) and (min-width: 576px) {
  .tab-slider--body .vtl .event .content-event p {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) and (min-width: 768px) {
  .tab-slider--body .vtl .event .content-event p {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) and (min-width: 992px) {
  .tab-slider--body .vtl .event .content-event p {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) and (min-width: 1200px) {
  .tab-slider--body .vtl .event .content-event p {
    font-size: 0.875rem;
  }
}

.tab-slider--body .vtl .event1 {
  background-color: #f3eeff;
}

.tab-slider--body .vtl .event1:after {
  background: #f3eeff;
  border: 5px solid #f3eeff;
  content: "3";
  width: auto;
  height: 41px;
  border-radius: 26px;
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 30px;
  text-align: center;
  color: #111015;
  padding: 0 15px;
}

@media (max-width: 768px) {
  .tab-slider--body .vtl .event1:after {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) and (min-width: 576px) {
  .tab-slider--body .vtl .event1:after {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) and (min-width: 768px) {
  .tab-slider--body .vtl .event1:after {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) and (min-width: 992px) {
  .tab-slider--body .vtl .event1:after {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) and (min-width: 1200px) {
  .tab-slider--body .vtl .event1:after {
    font-size: 0.875rem;
  }
}

.tab-slider--body .vtl .event2 {
  background-color: #fff1fe;
}

.tab-slider--body .vtl .event2:after {
  background: #fff1fe;
  border: 5px solid #fff1fe;
  content: "2";
  width: auto;
  height: 41px;
  border-radius: 26px;
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 30px;
  text-align: center;
  color: #111015;
  padding: 0 15px;
}

@media (max-width: 768px) {
  .tab-slider--body .vtl .event2:after {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) and (min-width: 576px) {
  .tab-slider--body .vtl .event2:after {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) and (min-width: 768px) {
  .tab-slider--body .vtl .event2:after {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) and (min-width: 992px) {
  .tab-slider--body .vtl .event2:after {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) and (min-width: 1200px) {
  .tab-slider--body .vtl .event2:after {
    font-size: 0.875rem;
  }
}

.tab-slider--body .vtl .event3 {
  background-color: #e2f1fc;
}

.tab-slider--body .vtl .event3:after {
  background: #e2f1fc;
  border: 5px solid #e2f1fc;
  content: "1";
  width: auto;
  height: 41px;
  border-radius: 26px;
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 30px;
  text-align: center;
  color: #111015;
  padding: 0 15px;
}

@media (max-width: 768px) {
  .tab-slider--body .vtl .event3:after {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) and (min-width: 576px) {
  .tab-slider--body .vtl .event3:after {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) and (min-width: 768px) {
  .tab-slider--body .vtl .event3:after {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) and (min-width: 992px) {
  .tab-slider--body .vtl .event3:after {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) and (min-width: 1200px) {
  .tab-slider--body .vtl .event3:after {
    font-size: 0.875rem;
  }
}

.progress {
  background: #edf2f2;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  border-radius: 5vmax;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 10px;
  width: 288px;
}

@media (max-width: 576px) {
  .progress {
    width: 185px;
  }
}

.progress-value {
  border-radius: 5vmax;
  height: 10px;
  width: 0;
}

.progress-value.html5 {
  -webkit-animation: html5 3s normal forwards;
  animation: html5 3s normal forwards;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

.progress-value.css3 {
  -webkit-animation: css3 3s normal forwards;
  animation: css3 3s normal forwards;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

.progress-value.scss {
  -webkit-animation: scss 3s normal forwards;
  animation: scss 3s normal forwards;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

.progress-value.bootstrap5 {
  -webkit-animation: bootstrap5 3s normal forwards;
  animation: bootstrap5 3s normal forwards;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

.progress-value.reactjs {
  -webkit-animation: reactjs 3s normal forwards;
  animation: reactjs 3s normal forwards;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

.progress-value.jquery {
  -webkit-animation: jquery 3s normal forwards;
  animation: jquery 3s normal forwards;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

.progress-value.js {
  -webkit-animation: js 3s normal forwards;
  animation: js 3s normal forwards;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

.progress-value.tailwind {
  -webkit-animation: tailwind 3s normal forwards;
  animation: tailwind 3s normal forwards;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

@-webkit-keyframes gradientMix {
  to {
    background-position: 200%;
  }
}

@keyframes gradientMix {
  to {
    background-position: 200%;
  }
}

@-webkit-keyframes html5 {
  0% {
    width: 0;
  }
  100% {
    width: 97%;
  }
}

@keyframes html5 {
  0% {
    width: 0;
  }
  100% {
    width: 97%;
  }
}

@-webkit-keyframes css3 {
  0% {
    width: 0;
  }
  100% {
    width: 97%;
  }
}

@keyframes css3 {
  0% {
    width: 0;
  }
  100% {
    width: 97%;
  }
}

@-webkit-keyframes scss {
  0% {
    width: 0;
  }
  100% {
    width: 95%;
  }
}

@keyframes scss {
  0% {
    width: 0;
  }
  100% {
    width: 95%;
  }
}

@-webkit-keyframes bootstrap5 {
  0% {
    width: 0;
  }
  100% {
    width: 95%;
  }
}

@keyframes bootstrap5 {
  0% {
    width: 0;
  }
  100% {
    width: 95%;
  }
}

@-webkit-keyframes reactjs {
  0% {
    width: 0;
  }
  100% {
    width: 70%;
  }
}

@keyframes reactjs {
  0% {
    width: 0;
  }
  100% {
    width: 70%;
  }
}

@-webkit-keyframes jquery {
  0% {
    width: 0;
  }
  100% {
    width: 90%;
  }
}

@keyframes jquery {
  0% {
    width: 0;
  }
  100% {
    width: 90%;
  }
}

@-webkit-keyframes js {
  0% {
    width: 0;
  }
  100% {
    width: 80%;
  }
}

@keyframes js {
  0% {
    width: 0;
  }
  100% {
    width: 80%;
  }
}

@-webkit-keyframes tailwind {
  0% {
    width: 0;
  }
  100% {
    width: 50%;
  }
}

@keyframes tailwind {
  0% {
    width: 0;
  }
  100% {
    width: 50%;
  }
}

.skill-wrapper {
  background-color: #f9fbfbbd;
}

@media (max-width: 992px) {
  .skill-wrapper .first-column {
    padding-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.skill-wrapper h2 {
  color: #000000;
  font-size: 2rem;
  font-weight: 500;
}

@media (min-width: 576px) {
  .skill-wrapper h2 {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .skill-wrapper h2 {
    font-size: 2rem;
  }
}

@media (min-width: 992px) {
  .skill-wrapper h2 {
    font-size: 2rem;
  }
}

@media (min-width: 1200px) {
  .skill-wrapper h2 {
    font-size: 2rem;
  }
}

@media (max-width: 992px) {
  .skill-wrapper h2 {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .skill-wrapper h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) and (min-width: 576px) {
  .skill-wrapper h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) and (min-width: 768px) {
  .skill-wrapper h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) and (min-width: 992px) {
  .skill-wrapper h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) and (min-width: 1200px) {
  .skill-wrapper h2 {
    font-size: 1.75rem;
  }
}

.skill-wrapper .skills-percentage li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.skill-wrapper .skills-percentage li .color-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

@media (max-width: 576px) {
  .skill-wrapper .skills-percentage li .color-circle {
    display: none;
  }
}

.skill-wrapper .skills-percentage li .lavender {
  background-color: #CDB8FF;
}

.skill-wrapper .skills-percentage li .light-pink {
  background-color: #FFB5FB;
}

.skill-wrapper .skills-percentage li .magenta {
  background-color: #FF73A9;
}

.skill-wrapper .skills-percentage li .pale-green {
  background-color: #94D2BD;
}

.skill-wrapper .skills-percentage li .mint-green {
  background-color: #5EC5C5;
}

.skill-wrapper .skills-percentage li .coral {
  background-color: #FA6059;
}

.skill-wrapper .skills-percentage li .vivid-orange {
  background-color: #FF7F3E;
}

.skill-wrapper .skills-percentage li .golden-yellow {
  background-color: #FFB600;
}

.skill-wrapper .skills-percentage li p {
  min-width: 90px;
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
}

@media (min-width: 576px) {
  .skill-wrapper .skills-percentage li p {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .skill-wrapper .skills-percentage li p {
    font-size: 1rem;
  }
}

@media (min-width: 992px) {
  .skill-wrapper .skills-percentage li p {
    font-size: 1rem;
  }
}

@media (min-width: 1200px) {
  .skill-wrapper .skills-percentage li p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .skill-wrapper .skills-percentage li p {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) and (min-width: 576px) {
  .skill-wrapper .skills-percentage li p {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) and (min-width: 768px) {
  .skill-wrapper .skills-percentage li p {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) and (min-width: 992px) {
  .skill-wrapper .skills-percentage li p {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) and (min-width: 1200px) {
  .skill-wrapper .skills-percentage li p {
    font-size: 0.875rem;
  }
}

.skill-wrapper .skills-percentage li .percentage {
  font-size: 1rem;
  font-weight: 400;
}

@media (min-width: 576px) {
  .skill-wrapper .skills-percentage li .percentage {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .skill-wrapper .skills-percentage li .percentage {
    font-size: 1rem;
  }
}

@media (min-width: 992px) {
  .skill-wrapper .skills-percentage li .percentage {
    font-size: 1rem;
  }
}

@media (min-width: 1200px) {
  .skill-wrapper .skills-percentage li .percentage {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .skill-wrapper .skills-percentage li .percentage {
    display: none;
  }
}

@media (max-width: 768px) {
  .skill-wrapper .skills-percentage li .percentage {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) and (min-width: 576px) {
  .skill-wrapper .skills-percentage li .percentage {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) and (min-width: 768px) {
  .skill-wrapper .skills-percentage li .percentage {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) and (min-width: 992px) {
  .skill-wrapper .skills-percentage li .percentage {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) and (min-width: 1200px) {
  .skill-wrapper .skills-percentage li .percentage {
    font-size: 0.875rem;
  }
}

.skill-wrapper .knowledges-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 768px) {
  .skill-wrapper .knowledges-list {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
  }
}

.skill-wrapper .knowledges-list .knowledge-tech {
  background-color: #edf2f2;
  padding: 8px 45px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
}

@media (min-width: 576px) {
  .skill-wrapper .knowledges-list .knowledge-tech {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .skill-wrapper .knowledges-list .knowledge-tech {
    font-size: 1rem;
  }
}

@media (min-width: 992px) {
  .skill-wrapper .knowledges-list .knowledge-tech {
    font-size: 1rem;
  }
}

@media (min-width: 1200px) {
  .skill-wrapper .knowledges-list .knowledge-tech {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .skill-wrapper .knowledges-list .knowledge-tech {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) and (min-width: 576px) {
  .skill-wrapper .knowledges-list .knowledge-tech {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) and (min-width: 768px) {
  .skill-wrapper .knowledges-list .knowledge-tech {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) and (min-width: 992px) {
  .skill-wrapper .knowledges-list .knowledge-tech {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) and (min-width: 1200px) {
  .skill-wrapper .knowledges-list .knowledge-tech {
    font-size: 0.875rem;
  }
}

#contact {
  background-color: #000000;
  color: #ffffff;
}

@media (max-width: 992px) {
  #contact .contact-left {
    padding-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #contact .contact-left p {
    max-width: 410px;
  }
}

#contact h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
}

@media (min-width: 576px) {
  #contact h2 {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  #contact h2 {
    font-size: 3rem;
  }
}

@media (min-width: 992px) {
  #contact h2 {
    font-size: 3rem;
  }
}

@media (min-width: 1200px) {
  #contact h2 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  #contact h2 {
    font-size: 1.875rem;
  }
}

@media (max-width: 768px) and (min-width: 576px) {
  #contact h2 {
    font-size: 1.875rem;
  }
}

@media (max-width: 768px) and (min-width: 768px) {
  #contact h2 {
    font-size: 1.875rem;
  }
}

@media (max-width: 768px) and (min-width: 992px) {
  #contact h2 {
    font-size: 1.875rem;
  }
}

@media (max-width: 768px) and (min-width: 1200px) {
  #contact h2 {
    font-size: 1.875rem;
  }
}

#contact p {
  text-align: left;
  font-size: 1.5rem;
  font-weight: 400;
  max-width: 465px;
}

@media (min-width: 576px) {
  #contact p {
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) {
  #contact p {
    font-size: 1.5rem;
  }
}

@media (min-width: 992px) {
  #contact p {
    font-size: 1.5rem;
  }
}

@media (min-width: 1200px) {
  #contact p {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  #contact p {
    font-size: 1.125rem;
    text-align: center;
  }
}

@media (max-width: 768px) and (min-width: 576px) {
  #contact p {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) and (min-width: 768px) {
  #contact p {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) and (min-width: 992px) {
  #contact p {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) and (min-width: 1200px) {
  #contact p {
    font-size: 1.125rem;
  }
}

#contact ul li a {
  color: #ffffff;
  text-decoration: none;
}

#contact ul li a:hover {
  text-decoration: underline;
}

#contact ul li a i {
  padding-right: 20px;
}

#contact form {
  max-width: 393px;
  margin: 0 auto;
  color: #ffffff;
}

#contact form input,
#contact form textarea {
  background-color: black;
  color: #ffffff !important;
  border-radius: 9px;
}

#contact form input.form-control,
#contact form textarea.form-control {
  color: #ffffff !important;
}

#contact form ::-webkit-input-placeholder {
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
}

#contact form :-ms-input-placeholder {
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
}

#contact form ::-ms-input-placeholder {
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
}

#contact form ::placeholder {
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
}

@media (min-width: 576px) {
  #contact form ::-webkit-input-placeholder {
    font-size: 1rem;
  }
  #contact form :-ms-input-placeholder {
    font-size: 1rem;
  }
  #contact form ::-ms-input-placeholder {
    font-size: 1rem;
  }
  #contact form ::placeholder {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  #contact form ::-webkit-input-placeholder {
    font-size: 1rem;
  }
  #contact form :-ms-input-placeholder {
    font-size: 1rem;
  }
  #contact form ::-ms-input-placeholder {
    font-size: 1rem;
  }
  #contact form ::placeholder {
    font-size: 1rem;
  }
}

@media (min-width: 992px) {
  #contact form ::-webkit-input-placeholder {
    font-size: 1rem;
  }
  #contact form :-ms-input-placeholder {
    font-size: 1rem;
  }
  #contact form ::-ms-input-placeholder {
    font-size: 1rem;
  }
  #contact form ::placeholder {
    font-size: 1rem;
  }
}

@media (min-width: 1200px) {
  #contact form ::-webkit-input-placeholder {
    font-size: 1rem;
  }
  #contact form :-ms-input-placeholder {
    font-size: 1rem;
  }
  #contact form ::-ms-input-placeholder {
    font-size: 1rem;
  }
  #contact form ::placeholder {
    font-size: 1rem;
  }
}

#contact form .contact-send {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

#contact form .contact-send button {
  font-size: 1rem;
  color: #000000;
  font-weight: 600;
  cursor: pointer;
  border-radius: 14px;
}

@media (min-width: 576px) {
  #contact form .contact-send button {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  #contact form .contact-send button {
    font-size: 1rem;
  }
}

@media (min-width: 992px) {
  #contact form .contact-send button {
    font-size: 1rem;
  }
}

@media (min-width: 1200px) {
  #contact form .contact-send button {
    font-size: 1rem;
  }
}

#contact form .contact-send button:hover {
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #ffffff;
}

#contact .copyright {
  color: #5b5b5b;
  font-size: 0.9375rem;
  font-weight: 400;
}

@media (min-width: 576px) {
  #contact .copyright {
    font-size: 0.9375rem;
  }
}

@media (min-width: 768px) {
  #contact .copyright {
    font-size: 0.9375rem;
  }
}

@media (min-width: 992px) {
  #contact .copyright {
    font-size: 0.9375rem;
  }
}

@media (min-width: 1200px) {
  #contact .copyright {
    font-size: 0.9375rem;
  }
}
/*# sourceMappingURL=styles.css.map */