/* FONTS */

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

/* VARIABLES */

:root{
    --header-height: 4rem;
    --font-semi: 600;
}
:root{
    --first-color: #CC00CC;
    --second-color: #5CD3FF;
    --third-color: #FFFFFF;
    --fourth-color: #000000;
    --fifth-color: #8E8E8E;
}
:root{
    --body-font: 'Loew';
    --big-font-size: 2.5rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --h4-font-size: 1rem;
    --h5-font-size: 0.96rem;
    --normal-font-size: 0.938rem;
}
@media screen and (min-width: 960px){
    :root{
        --big-font-size: 3rem;
        --h2-font-size: 2rem;
        --h3-font-size: 1.75rem;
        --h4-font-size: 1.5rem;
        --h5-font-size: 1.25rem;
        --normal-font-size: 1rem;
    }
}
:root{
    --mb-1: 0.5rem;
    --mb-2: 1rem;
    --mb-3: 1.5rem;
    --mb-4: 2rem;
    --mb-5: 2.5rem;
    --mb-6: 3rem;
}
:root{
    --z-back: -10;
    --z-normal: 1;
    --z-tooltip: 10;
    --z-fixed: 100;
}

/* ANIMATIONS */

@-webkit-keyframes GerakanKeKanan {
    0% {
      opacity: 0;
      -webkit-transform: translateX(-10rem);
      transform: translateX(-10rem); 
    }
    80% {
      -webkit-transform: translateX(1rem);
      transform: translateX(1rem); 
    }
    100% {
      opacity: 1;
      -webkit-transform: translate(0);
      transform: translate(0); 
    } 
}
@keyframes GerakanKeKanan {
    0% {
      opacity: 0;
      -webkit-transform: translateX(-10rem);
      transform: translateX(-10rem); 
    }
    80% {
      -webkit-transform: translateX(1rem);
      transform: translateX(1rem); 
    }
    100% {
      opacity: 1;
      -webkit-transform: translate(0);
      transform: translate(0); 
    } 
}
@-webkit-keyframes GerakanKeKiri {
    0% {
      opacity: 0;
      -webkit-transform: translateX(10rem);
      transform: translateX(10rem); 
    }
    80% {
      -webkit-transform: translateX(-1rem);
      transform: translateX(-1rem); 
    }
    100% {
      opacity: 1;
      -webkit-transform: translate(0);
      transform: translate(0); 
    } 
}
@keyframes GerakanKeKiri {
    0% {
      opacity: 0;
      -webkit-transform: translateX(10rem);
      transform: translateX(10rem); 
    }
    80% {
      -webkit-transform: translateX(-1rem);
      transform: translateX(-1rem); 
    }
    100% {
      opacity: 1;
      -webkit-transform: translate(0);
      transform: translate(0); 
    } 
}

/* BASE */

*,::before,::after{
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    margin: 0 0 0 0;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    color: var(--fourth-color);
    background-color: #FCF7F7;
    overflow-x: hidden;
}
h1,h2,p{
    margin: 0;
}
p, li{
    line-height: 25px;
}
ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
a{
    text-decoration: none;
}
img{
    max-width: 100%;
    height: auto;
    display: block;
}
  
/* CLASS CSS */
  
.section{
    padding-top: 3rem;
    position: relative;
}
.section-title{
    font-size: var(--h2-font-size);
    color: var(--fourth-color);
    margin-top: var(--mb-2);
    margin-bottom: var(--mb-1);
    text-align: left;
}
.title-line {
    margin-bottom: var(--mb-4);
    display: inline-block;
    margin-left: 0;
    width: 64px;
    height: 0.12rem;
    border: none;
    background: linear-gradient(117.96deg, #bbe0ee8e 0%, var(--first-color) 100%);
}
  
/* LAYOUT */
  
.bd-grid{
    max-width: 1124px;
    display: grid;
    grid-template-columns: 100%;
    grid-column-gap: 2rem;
    width: calc(100% - 2rem);
    margin-left: var(--mb-2);
    margin-right: var(--mb-2);
}
.col-2{
    max-width: 1124px;
    display: grid;
    grid-column-gap: 2rem;
    width: calc(100% - 0rem);
}
.l-header{
    width: 100%;
    position: fixed;
    z-index: var(--z-fixed);
    background-color: transparent;
    transition: background-color 1s ease 0s;
}
#header1.l-header{
    background-image: linear-gradient(to bottom, rgb(155, 155, 155), rgba(255, 255, 255, 0)) !important;
}
.l-header.scrolled {
    background-color: var(--first-color);
    transition: background-color 1s ease 0s;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5); 
}
#header1.l-header.scrolled {
    background-image: none !important; 
}
  
/* TERM SECTION */
.term-section{
    margin-bottom: 4rem;
}
.term-section .contact-button-container{
    margin-top: 3rem;
}
.term-section .contact-button{
    display: block;
    background-image: linear-gradient(to right, var(--second-color) 0%, var(--first-color) 100%);
    border-radius: 41px;
    color: var(--third-color);
    padding: 1rem 1rem;
    font-weight: var(--font-semi);
    outline: none;
    font-size: var(--normal-font-size);
    cursor: pointer;
    width: 175px;
    text-align: center;
    transition: all .5s ease-in-out;
    background-size: 100% 100%;
    -webkit-tap-highlight-color: transparent;
}
.term-section .contact-button:hover{
    outline: none;
    background-position: 100% 0;
    background-size: 300% 100%;
    transition: all .5s ease-in-out;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5); 
}
.term-section .contact-button:active, .term-section .contact-button:focus {
    outline: none;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    box-shadow: 0px 0rem 0rem rgba(0, 0, 0, 0); 
    transition: all .5s ease-in-out;
}
.term-section .term-container{
    padding-bottom: 10rem;
}
.term-section .term{
    grid-template-columns: repeat(2,1fr);
    max-width: 1124px;
    display: grid;
    grid-column-gap: 2rem;
    width: calc(100% - 2rem);
}
  
/* CONTACT FORM MODAL */
  
#contactModal {
    display: none;
    position: fixed;
    z-index: var(--z-fixed);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4);
}
#contactModal .contact-modal-content {
    background-color: #fefefe;
    padding: 20px 20px 30px 20px;
    border: 1px solid #888;
    width: 60%;
    height: 100%;
    top: 0;
    right: -100%;
    position: fixed;
    overflow-y: scroll;
}
#contactModal .contact-close {
    position: absolute;
    top: 20;
    left: 10;
    color: #aaaaaa;
    font-size: 3rem;
    font-weight: bold;
    display: none;
    padding-top: 1rem;
}
#contactModal .contact-close img{
    width: 1.5rem !important;
  }
#contactModal .contact-close:hover,
#contactModal .contact-close:focus {
    color: var(--fourth-color);
    text-decoration: none;
    cursor: pointer;
}
#contactModal .modal-title{
    font-size: var(--h2-font-size);
    color: var(--fourth-color);
    margin-top: var(--mb-6);
    margin-bottom: var(--mb-1);
    text-align: left;
}
#contactModal .modal-subtitle{
    font-size: var(--h3-font-size);
    color: var(--fifth-color);
    margin-bottom: var(--mb-1);
    text-align: left;
}
#contactModal .submit-button-container{
    margin-top: 3rem;
}
#contactModal .submit-button{
    display: block;
    background-image: linear-gradient(to right, var(--second-color) 0%, var(--first-color) 100%);
    border-radius: 41px;
    color: var(--third-color);
    padding: 1rem 1rem;
    font-weight: var(--font-semi);
    outline: none;
    font-size: var(--normal-font-size);
    cursor: pointer;
    width: 175px;
    text-align: center;
    transition: all .5s ease-in-out;
    background-size: 100% 100%;
    border: none;
    -webkit-tap-highlight-color: transparent;
}
#contactModal .submit-button:hover{
    outline: none;
    background-position: 100% 0;
    background-size: 300% 100%;
    transition: all .5s ease-in-out;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5); 
}
#contactModal .submit-button:active, #contactModal .submit-button:focus {
    outline: none;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    box-shadow: 0px 0rem 0rem rgba(0, 0, 0, 0); 
    transition: all .5s ease-in-out;
}
#contactModal form {
    margin: 2em 0;
}
#contactModal .form-group {
    display: flex;
    flex-flow: column-reverse;
    margin-bottom: 1rem;
}
#contactModal .container-input-col-2{
    grid-template-columns: repeat(2,1fr);
    max-width: 1124px;
    display: grid;
    grid-column-gap: 2rem;
    width: calc(100% - 0rem);
}
#contactModal .form-label, #contactModal .form-input {
    transition: all 0.3s;
    touch-action: manipulation;
    font-family: var(--body-font);
}
#contactModal .form-input {
    font-size: var(--h5-font-size);
    border: 0;
    border-bottom: 1px solid var(--fifth-color);
    -webkit-appearance: none;
    border-radius: 0;
    padding-bottom: 1rem;
    cursor: text;
    width: 100%;
}
#contactModal .form-input.textarea {
    padding-bottom: 1rem;
}
#contactModal .container-select{
    position: relative;
}
#contactModal .form-input.select {
    background-color: #fff;
    cursor: pointer;
    font-size: 1.5rem;
}
#contactModal .form-input.select option:hover{
    background-color: var(--first-color);
}
#contactModal .select-caret-down{
    position: absolute;
    right: 0;
    top: 1rem;
    width: 2%;
}
#contactModal .form-input:focus {
    outline: 0;
    border-bottom: 1px solid var(--first-color);
    font-family: var(--body-font);
}
#contactModal .form-label {
    letter-spacing: 0.05em;
    font-size: var(--h5-font-size);
    color: var(--fifth-color);
}
#contactModal .form-input:placeholder-shown + .form-label {
    cursor: text;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transform-origin: left bottom;
    transform: translate(0, 2.125rem);
}
#contactModal ::-webkit-input-placeholder {
    opacity: 0;
    transition: inherit;
}
#contactModal .form-input:not(:placeholder-shown) + .form-label,
#contactModal .form-input:focus + .form-label {
    transform: translate(0, 0) scale(1);
    color: var(--first-color);
    font-weight: bold;
    font-size: 1rem;
}
/* custom select2 */
#contactModal .select2-container {
    border: 0;
    border-bottom: 1px solid var(--fifth-color);
}
#contactModal .select2-results__option:focus {
    outline: 0;
    border-bottom: 1px solid var(--first-color) !important;
}
#contactModal .select2-selection {
    border: 0;
    -webkit-appearance: none;
    border-radius: 0;
    padding-bottom: 1rem;
    width: 100%;
    background-color: var(--third-color);
    font-size: 1.5rem;
    cursor: pointer !important;
    -webkit-tap-highlight-color: transparent;
}
#contactModal .select2.select2-container.select2-container--default{
    width: 100% !important;
}
#contactModal .select2-container--default.select2-container--focus .select2-selection--multiple{
    border: 0 !important;
}
#contactModal .select2-selection__rendered{
    font-size: var(--h5-font-size) !important;
}
#contactModal .select2-selection__choice{
    border: 1px solid var(--fifth-color);
    padding-bottom: 5px !important;
    background-color: var(--third-color) !important;
}
#contactModal .select2-selection__choice__remove{
    color: var(--fourth-color) !important;
    margin-right: 5px !important;
    font-size: 1.5rem !important;
}
#contactModal .select2-search__field{
    display: none !important;
}
#contactModal .select2-results__option{
    font-size: 1.5rem !important;
}
#contactModal .select2-container--default .select2-results__option--highlighted[aria-selected]{
    background-color: var(--first-color) !important;
}
#contactModal .select2-container--default .select2-results>.select2-results__options{
    max-height: 100% !important;
}
#contactModal .select2-container--default .select2-search--inline .select2-search__field{
    width:100% !important;
}

/* NAV */
  
.nav{
    height: calc(var(--header-height) + 1rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: var(--font-semi);
}
.nav .nav-item{
    margin-bottom: var(--mb-4);
}
.nav .nav-link{
    position: relative;
    color: var(--third-color);
    line-height: 40px;
    -webkit-tap-highlight-color: transparent;
}
.nav .nav-link:hover{
    position: relative;
    color: var(--third-color);
}
.nav .nav-link::after{
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    left: 0;
    top: 2rem;
    bottom: 0;
    right: 0;
    margin: 0 auto;
    background-color: var(--third-color);
    transition: all .3s;
}
.nav .nav-link:hover::after{
    width: 80%;
    height: 0.18rem;
    transition: all .3s;
}
.nav .header-menu-mobile{
    display: none;
}
.nav .nav-social-media{
    display: none;
}
.nav .nav-logo img{
      width: 5rem;
      -webkit-animation-name: GerakanKeKanan;
      animation-name: GerakanKeKanan;
      -webkit-animation-duration: 2s;
      animation-duration: 2s;
}
.nav .nav-logo{
    -webkit-tap-highlight-color: transparent;
}
.nav .nav-toggle{
    color: var(--third-color);
    font-size: 1.5rem;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.nav .nav-link.active::after{
    position: absolute;
    content: "";
    width: 80%;
    height: 0.18rem;
    left: 0;
    top: 2rem;
    bottom: 0;
    right: 0;
    margin: 0 auto;
    background-color: var(--third-color);
}
.nav .show{
    right: 0 !important;
}

/* FOOTER */

.l-footer{
    position: relative;
    margin-top: 3rem;
    width: 100%;
    height: calc(100% - 2rem);
    overflow: hidden !important;
    background-color: #FFFFFF;
    padding: 20px 0 0 0;
}
.l-footer p{
    line-height: 25px;
}
.l-footer .bg-container{
    position: relative;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0 0 40rem;
    background: linear-gradient(127.82deg, #5CD3FF 0%, #CC00CC 80%, #CC00CC 100%);
}
.l-footer .svg-1{
    position: absolute;
    top: 1rem;
    left: 0;
    z-index: 2;
}
.l-footer .svg-2{
    position: absolute;
    top: 2rem;
    left: 0;
    z-index: 1;
    transform: rotate(3deg);
}
.l-footer .svg-3{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.l-footer .hidden-line{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background-color: #FCF7F7;
    width: 100%;
    height: 10%;
}
.l-footer .footer-text-container{
    z-index: 1;
    position: absolute;
    bottom: 4rem;
}
.l-footer .footer-col-3{
    grid-template-columns: repeat(3,1fr);
    max-width: 1124px;
    display: grid;
    grid-column-gap: 2rem;
    width: calc(100% - 2rem);
}
.l-footer .footer-1,
.l-footer .footer-2,
.l-footer .footer-3{
    margin-right: auto;
    margin-left: auto;
}
.l-footer .footer-text-container .footer-1 img{
    width: 5rem;
    margin-bottom: var(--mb-6);
}
.l-footer .footer-text-container p,
.l-footer .footer-text-container a{
    color: var(--third-color) !important;
}
.l-footer .footer-text-container .footer-2 li{
    line-height: 2rem;
}
.l-footer .footer-text-container .footer-2 li a{
    -webkit-tap-highlight-color: transparent;
}
.l-footer .footer-text-container .footer-2 li a:hover{
    font-weight: bold;
}
.l-footer .footer-title{
    font-size: var(--h5-font-size);
    color: var(--third-color);
    margin-top: 0;
    margin-bottom: var(--mb-1);
    text-align: left;
}
.l-footer .footer-title-line {
    margin-bottom: var(--mb-5);
    display: inline-block;
    margin-left: 0;
    width: 64px;
    height: 0.12rem;
    border: none;
    background: linear-gradient(117.96deg, #7D7D7D 0%, var(--third-color) 100%);
}
.l-footer .footer-contact-mobile{
    display: none;
}
.l-footer .footer-3 .footer-address img,
.l-footer .footer-3 .footer-phone img{
    float: left;
    width: 1.2rem;
}
.l-footer .footer-3 .footer-address p,
.l-footer .footer-3 .footer-phone p{
    float: right;
    width: 85%;
}
.l-footer .footer-3 .footer-phone{
    clear: both;
    margin-top: 6rem !important;
}

/* ================ MEDIA QUERY ================ */

@media screen and (max-width: 960px){
    .term-section .term-container{
      padding-bottom: 2rem;
    }
    .term-section .term{
      grid-template-columns: 100%; 
    }
    #contactModal .contact-modal-content {
      margin: auto;
      width: 100%;
    }
    #contactModal .contact-close {
      display: block;
    }
    #contactModal .modal-title{
      margin-top: 5rem;
    }
    #contactModal .form-label {
      font-size: var(--normal-font-size);
    }
    #contactModal .form-input {
      padding-bottom: 1rem;
    }
    #contactModal .form-input.textarea {
        padding-bottom: 1rem;
    }
    #contactModal .form-input.select {
      font-size: 1rem;
      padding-bottom: .5rem;
    }
    #contactModal .select-caret-down{
      top: .5rem;
    }
    #contactModal .form-input:not(:placeholder-shown) + .form-label,
    #contactModal .form-input:focus + .form-label {
        font-size: .5rem;
    }
    /* custom select2 */
    #contactModal .select2-selection__rendered {      
      font-size: 1rem !important;
    }
    #contactModal .select2-selection {
      font-size: 1rem !important;
      padding-bottom: .5rem !important;
    }
    #contactModal .select2-results__option{
      font-size: 1rem !important;
    }
  
    /* NAV */
  
    .nav .nav-menu{
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100%;
      padding: 2rem;
      background-color: var(--third-color);
      transition: .5s;
    }
    .nav .header-menu-mobile{
      display: block;
      background-image: linear-gradient(to bottom, rgb(155, 155, 155), rgba(255, 255, 255, 0)) !important;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 90px;
    }
    .nav .header-menu-mobile .nav-logo-mobile{
      display: inline-block;
      padding: 1.5rem 2rem;
      float: left;
    }
    .nav .header-menu-mobile .nav-close-mobile{
      display: inline-block;
      padding: 1.5rem 2rem;
      float: right;
    }
    .nav .line-menu-1{
      margin-bottom: 0.4rem;
      -webkit-animation-name: GerakanKeKiri;
      animation-name: GerakanKeKiri;
      -webkit-animation-duration: 2s;
      animation-duration: 2s;
    }
    .nav .line-menu-2{
      margin-left: auto;
      -webkit-animation-name: GerakanKeKiri;
      animation-name: GerakanKeKiri;
      -webkit-animation-duration: 2s;
      animation-duration: 2s;
    }
    .nav .nav-list{
      margin: 10rem 0;
    }
    .nav .nav-link{
      color: var(--fourth-color);
    }
    .nav .nav-link:hover{
      color: var(--second-color) !important;
    }
    .nav .nav-link.active{
      color: var(--second-color) !important;
    }
    .nav .nav-item{
      margin-bottom: var(--mb-1);
    }
    .nav .nav-logo img{
      width: 4rem !important;
    }
    .nav .nav-logo-mobile img{
      width: 4rem !important;
    }
    .nav .nav-close-mobile img{
      width: 1.5rem !important;
    }
    .nav .nav-social-media{
      display: inline-block;
    }
    .nav .nav-social-media img{
      display: inline-block;
      margin-right: 1rem;
    }
    .nav .home-title{
      line-height: 2.5rem !important;
    }  

    /* FOOTER */

    .l-footer .svg-1{
        position: absolute;
        top: 1rem;
        left: 0;
        z-index: 2;
    }
    .l-footer .svg-2{
        position: absolute;
        top: 1.3rem;
        left: 0;
        z-index: 1;
        transform: rotate(3deg);
    }
    .l-footer .footer-text-container{
      bottom: 3rem;
    }
    .l-footer .footer-text-container .footer-1 img{
      margin-bottom: var(--mb-3);
    }
    .l-footer .footer-text-container .footer-1 p{
      display: none;
    }
    .l-footer .hidden-line{
      height: 6%;
    }
    .l-footer .footer-2 .footer-title-line {
      margin-bottom: var(--mb-2);
      display: block;
      margin-right: auto;
      margin-left: auto;
    }
    .l-footer .footer-2 .footer-title{
      text-align: center;
    }
    .l-footer .footer-text-container .footer-2 li{
      text-align: center;
    }
    .l-footer .footer-col-3{
      grid-template-columns: 100%;
      width: calc(100% - 2rem);
    }
    .l-footer .footer-3{
        float: none;
        width: 100%;
        margin-bottom: var(--mb-5);
    }
    .l-footer .footer-contact-mobile{
      display: block;
    }
    .l-footer .footer-contact-desktop{
      display: none;
    }
    .l-footer .footer-3 .footer-title,
    .l-footer .footer-3 .footer-title-line{
      display: none;
    }
    .l-footer .footer-3 .footer-address img,
    .l-footer .footer-3 .footer-phone img{
        display: none;
    }
    .l-footer .footer-3 .footer-address p,
    .l-footer .footer-3 .footer-phone p{
        float: none;
        width: 100%;
        text-align: center;
    }
    .l-footer .footer-3 .footer-phone{
      margin-top: 1rem !important;
    }
}
  
@media screen and (min-width: 960px){
    body{
      margin: 0;
    }
  
    .section{
      padding-top: 4rem;
    }
  
    .section-title{
      margin-bottom: var(--mb-1);
    }
  
    .title-line{
      margin-bottom: var(--mb-5);
      width: 180px;
    }
    
    /* NAV */
    .nav{
      height: calc(var(--header-height) + 1rem);
    }
    .nav .nav-menu{
      -webkit-animation-name: GerakanKeKiri;
      animation-name: GerakanKeKiri;
      -webkit-animation-duration: 2s;
      animation-duration: 2s;
    }
    .nav .nav-list{
      display: flex;
      padding-top: 0;
      float: left;
    }
    .nav .nav-item{
      margin-left: var(--mb-6);
      margin-bottom: 0;
    }
    .nav .nav-toggle{
      display: none;
    }
    .nav .nav-link{
      color: var(--third-color);
    }
  
    #contactModal .modal-title, #contactModal .modal-subtitle{
      margin-bottom: var(--mb-1);
    }

    /* FOOTER */

    .l-footer .footer-text-container .footer-1 p{
      text-align: justify;
    }
    .l-footer .footer-3 .footer-address p,
    .l-footer .footer-3 .footer-phone p{
      text-align: justify;
    }
}
  
@media screen and (min-width: 1024px){
    .bd-grid{
      margin-left: auto;
      margin-right: auto;
    }
}

@media screen and (min-width: 1500px){

  /* FOOTER */

  .l-footer .footer-text-container{
    bottom: 1rem;
  }
}