@import url('https://fonts.googleapis.com/css2?family=Chocolate+Classical+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gabarito:wght@400..900&display=swap');


body, body *:not(.fa):not(.fas):not(.far):not(.fal):not(.fab):not(.fad):not(.fa-solid):not(.fa-regular):not(.fa-light):not(.fa-duotone):not(.fa-brands):not(.dashicons):not(.dashicons-before):not(.et-pb-icon):not(.ab-icon) {
    font-family: "Chocolate Classical Sans", sans-serif !important;
}

.main-wrapper{
    overflow-x: hidden;
}

@media screen and (max-width: 769px) {
    .main-wrapper{
        padding-top: var(--header-mob-height);
    }
}

/* blocks */
.h-100{
    height: 100%;
}

.ms_container{
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}

.ms_section{
    padding-top: 50px;
    padding-bottom: 50px;
}

.d-block{
    display: block;
}

.d-inline-block{
    display: inline-block;
}

.d-flex{
    display: flex;
}

.d-none{
    display: none !important;
}

.flex-center{
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-column{
    flex-direction: column;
}

/* Texts */
.text-white{
    color: white;
}

.text-light{
    color: white;
}

.text-black{
    color: black;
}

.text-blue{
    color: var(--blue);
}

.text-yellow{
    color: var(--yellow);
}

.text-dark-yellow{
    color: var(--dark-yellow);
}

.text-upper{
    text-transform: uppercase;
}

.text-center{
    text-align: center;
}

.section-title{
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.title-inner{
    display: inline-block;
}

.title-icon{
    display: inline-block;
    width: 2rem;
    transform: scale(1.7);
    opacity: 0;
}

.section-text{
    font-size: 1.1rem;
    font-weight: 600;
    text-align: justify;
}

@media screen and (max-width: 1024px) {
    .section-title{
        font-size: 1.6rem;
    }

    .section-text{
        font-size: 1.1rem;
    }
}

/* Animations */
.op-0{
    opacity: 0;
}

.animate-from-out{
    opacity: 0;
    transform: scale(2);
}

.animate-from-in{
    opacity: 0;
    transform: scale(0.1);
}

.animate-from-left{
    opacity: 0;
    position: relative;
    left: -200px;
}

.animate-from-right{
    opacity: 0;
    position: relative;
    right: -200px;
}

.animate-from-top{
    opacity: 0;
    position: relative;
    top: -200px;
}

.animate-from-bottom{
    opacity: 0;
    position: relative;
    bottom: -200px;
}

/* positions */
.p-relative{
    position: relative;
}

.p-absolute{
    position: absolute;
}


@media screen and (max-width: 769px){
    .ms_container{
        width: 85%;
    }
}

@media screen and (max-width: 500px){
    .ms_container{
        width: 100%;
        padding: 0 14px;
    }
}

/* Margins */
.mt-1{
    margin-top: 1rem;
}
.mt-2{
    margin-top: 2rem;
}
.mt-3{
    margin-top: 3rem;
}
.mt-4{
    margin-top: 4rem;
}

.mb-1{
    margin-bottom: 1rem;
}
.mb-2{
    margin-bottom: 2rem;
}
.mb-3{
    margin-bottom: 3rem;
}
.mb-4{
    margin-bottom: 4rem;
}
/* /Margins */

/* btn */
.ms_btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: var(--blue);
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
  border: none;
  width: fit-content;
}


.ms_btn-yellow{
    background: var(--yellow);
}

.btn-center{
    margin: 10px auto;
}

.ms_btn:after {
  content: " ";
  width: 0%;
  height: 100%;
  background: var(--yellow);
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
}

.ms_btn-yellow::after{
    background: var(--blue);
}

.ms_btn:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

.ms_btn span {
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 18px 25px;
  color: #fff;
  font-size: 1.125em;
  font-weight: 700;
  z-index: 20;
  transition: all 0.3s ease-in-out;
}

.ms_btn-yellow span{
    color: var(--blue);
}

.ms_btn:hover span {
  color: var(--blue);
  animation: scaleUp 0.3s ease-in-out;
}

.ms_btn-yellow:hover span{
    color: var(--yellow);
}


@keyframes scaleUp {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}

/* /btn */


/* Header */
/*.ms_header{
    height: var(--header-desk-height);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: white;
    border-bottom: 2px solid var(--blue);
    z-index: 999;
}

.header-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo{
    display: block;
    width: 150px;
}

.header-desk-navbar ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    gap: 20px;
    align-items: center;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.header-desk-navbar .menu-item a{
    font-size: 1.05rem;
    color: var(--blue);
    display: inline-block;
    position: relative;
    transition: all 200ms linear;
}

.header-desk-navbar .menu-item a:hover{
    color: var(--dark-yellow);
}

.header-desk-navbar .menu-item a[aria-current="page"]::before{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: var(--yellow);
}

.header-desk-navbar .menu-item-has-children:hover .sub-menu{
    display: block !important;
}

.header-desk-navbar .menu-item-has-children{
    position: relative;
}

.header-desk-navbar .menu-item-has-children > a::after{
    content: "\f078";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    margin-left: 5px;
}

.sub-menu{
    display: none !important;
    position: absolute;
    top: 200%;
    background-color: white;
    padding: 20px !important;
}

@media screen and (max-width: 769px) {
    .ms_header{
        height: var(--header-mob-height);
    }
} */
/* /Header */