
/* === CSS Reset === */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-family: 'Arboria';
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}


/* fonts */

@font-face {
    font-family: 'Arboria';
    src: url('../assets/Arboria-Black.eot');
    src: url('../assets/Arboria-Black.eot?#iefix') format('embedded-opentype'),
        url('../assets/Arboria-Black.woff2') format('woff2'),
        url('../assets/Arboria-Black.woff') format('woff'),
        url('../assets/Arboria-Black.ttf') format('truetype'),
        url('../assets/Arboria-Black.svg#Arboria-Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Arboria';
    src: url('../assets/Arboria-Medium.eot');
    src: url('../assets/Arboria-Medium.eot?#iefix') format('embedded-opentype'),
        url('../assets/Arboria-Medium.woff2') format('woff2'),
        url('../assets/Arboria-Medium.woff') format('woff'),
        url('../assets/Arboria-Medium.ttf') format('truetype'),
        url('../assets/Arboria-Medium.svg#Arboria-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Arboria';
    src: url('../assets/Arboria-Thin.eot');
    src: url('../assets/Arboria-Thin.eot?#iefix') format('embedded-opentype'),
        url('../assets/Arboria-Thin.woff2') format('woff2'),
        url('../assets/Arboria-Thin.woff') format('woff'),
        url('../assets/Arboria-Thin.ttf') format('truetype'),
        url('../assets/Arboria-Thin.svg#Arboria-Thin') format('svg');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Arboria';
    src: url('../assets/Arboria-Bold.eot');
    src: url('../assets/Arboria-Bold.eot?#iefix') format('embedded-opentype'),
        url('../assets/Arboria-Bold.woff2') format('woff2'),
        url('../assets/Arboria-Bold.woff') format('woff'),
        url('../assets/Arboria-Bold.ttf') format('truetype'),
        url('../assets/Arboria-Bold.svg#Arboria-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Arboria';
    src: url('../assets/Arboria-Light.eot');
    src: url('../assets/Arboria-Light.eot?#iefix') format('embedded-opentype'),
        url('../assets/Arboria-Light.woff2') format('woff2'),
        url('../assets/Arboria-Light.woff') format('woff'),
        url('../assets/Arboria-Light.ttf') format('truetype'),
        url('../assets/Arboria-Light.svg#Arboria-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Arboria';
    src: url('../assets/Arboria-MediumItalic.eot');
    src: url('../assets/Arboria-MediumItalic.eot?#iefix') format('embedded-opentype'),
        url('../assets/Arboria-MediumItalic.woff2') format('woff2'),
        url('../assets/Arboria-MediumItalic.woff') format('woff'),
        url('../assets/Arboria-MediumItalic.ttf') format('truetype'),
        url('../assets/Arboria-MediumItalic.svg#Arboria-MediumItalic') format('svg');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

/* account process pages */


.account-process {
    display:flex;
    width:100%;
    padding:27px 18px;
    min-height:980px;
    height:100vh;
  }


  .account-process__container {
    display: flex;
    width: 100%;

  }
  .account-process__column {
    display: flex;
    width: 100%;
    max-width: 50%;
    flex: 0 0 50%;

  }
  .account-process__column:first-child {
    padding-right:20px;
  }
  .account-process__column:last-child {
    padding-left:20px;
  }
  .account-process__fromWrapper {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;

  }

  .account-process__header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;

  }
.account-process__header > a {
    font-size:16px;
    font-weight: 500;
    color:#000639;
    width:auto;
    flex: 0 0 auto;
}

.account-process__formbox {
display: flex;
width: 402px;
max-width: 100%;
flex-direction: column;
margin: 0 auto;
}
.account-process__formbox h1 {
font-size: 48px;
font-weight: 500;
color: #000639;
line-height: 1;
margin-bottom: 43px;
}
.account-process__form {
display: flex;
width: 100%;
flex-direction: column;
}
.account-process__formGroup {
display: flex;
width: 100%;
margin-bottom: 21px;
position:relative;
}
.account-process__formGroup  input {
display: flex;
width:100%;
border:1px solid #B1B1B1;
height:55px;
padding-left:23px;
padding-right:23px;
border-radius:10px;
color:#000639;
outline: none;
}
.account-process__formGroup  input:focus , .account-process__formGroup  input:active {
box-shadow: 0 0 1px 2px rgba(4, 8, 59, 0.1);
}
.account-process__formGroup input::placeholder  {
color:#000639;
opacity: 1 !important;
}

.account-process__submit {
display: flex;
width: 100%;
background: #386A72;
color: #fff;
height: 60px;
align-items: center;
justify-content: center;
text-transform: uppercase;
margin-bottom: 21px;
border-radius: 40px;
cursor: pointer;
transition: background 0.3s ease-in-out;
-webkit-transition: background 0.3s ease-in-out;
}

.account-process__submit:hover {
background: #000639;
transition: background 0.3s ease-in-out;
-webkit-transition: background 0.3s ease-in-out;
}


.account-process__formGroup.account-process__formGroup--forgotPassword {
    display: flex;
    justify-content: center;
}
.account-process__formGroup.account-process__formGroup--forgotPassword  a {
    font-size: 16px;
    font-weight: 500;
    color:#000639;
}
.account-process__formGroup.account-process__formGroup--forgotPassword  a:hover {
    color:#386A72;
}
.account-process__header > a:hover {
    color:#386A72;
}

.account-process__footer p {
    text-align: center;
    font-weight: 500;
    color:#000639;
    font-size: 16px;
}
.account-process__footer p a {
    font-weight: 700;
}
.account-slider-wrapper {
    display: flex;
    width: 100%;
    background: linear-gradient(180deg, #F9E3A3 0%, #BBDBE0 50.54%, #FFFFFF 100%);
    border-radius: 10px;
    flex-wrap:wrap;
    overflow: hidden;
}
.account-slider-wrapper .account-slider {
    display: flex;
    width: 654px;
    margin: auto auto 0;
    align-items: flex-end;
    position: relative;
    max-width: 100%;
    padding: 0 15px;
}
.account-slider-wrapper .account-slider  .slick-list{
    overflow: visible;
    width:100%;
}
.account-slider-wrapper .account-slider .techbox:before {
    content: "";
    position:absolute;
    top:-20px;
    left:0;
    background:url(/assets/bg-pattern.webp) no-repeat top center;
    background-size:contain;
    height:500px;
    width:100%;
    transform: scale(1.2);
    z-index:0;

}

.techbox {
    background:#fff;
    border: 1.49px solid #EFEFF0;
    box-shadow: 0px 5.95px 22.3px 0px #F2F2F2;
    border-radius:22.3px;
    position:relative;
    margin-bottom:55px;
    box-shadow: 0px 5.95px 22.3px 0px #F2F2F2;
    z-index:1;
}
.techbox > * {
    position:relative;
    z-index:1;
}
.techbox__title {
    display: flex;
    align-items: center;
    margin-bottom: 42px;
  }
  .techbox__title svg {
    margin-right: 15px;
  }
  .techbox__title h2 {
    color: #00063A;
    font-size: 24px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
  }

.account-slider__item {
    position:relative;
    z-index:1;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

.about-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position:relative;
    z-index: 1;
  }
  .about-content__short {
    background: #FFFFFF66;
    border: 1.67px solid #FFFFFF;
    color:#000639;
    font-size:15px;
    font-weight:500;
    padding:20px 30px;
    border-radius:34px;
    margin:0 auto 44px;
    text-transform:uppercase;
    line-height:1;

  }
  .about-content__title {
    font-size: 48px;
    font-weight: 700;
    color: #000639;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
  }
  .about-content__text {
    font-size:32px;
    font-weight:300;
    color:#262B57;
    line-height:1.5;
    line-height:100%;
    text-align: center;
  }


.custom-controls {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
  }

.custom-dots {
    display:flex;
    width:auto;

  }
  .custom-dots  li {
    width:36px;
    height:5px;
    background: #C2BBBB;
    margin: 0 3px;
    cursor:pointer;
  }
  .custom-dots  li.active {
    background:#000639;
  }

.custom-arrow.custom-arrow--prev {
    order: 1;
    font-size:0px;
    display: flex;
    width:26px;
    height:26px;
    background: url(/assets/prev.svg) no-repeat center center;
    margin-right:66px;
    background-size: contain;
    cursor: pointer;
  }
  .custom-dots {
    order: 2;
  }
  .custom-arrow.custom-arrow--next {
    order: 3;
    font-size:0px;
    display: flex;
    width:26px;
    height:26px;
    background: url(/assets/next.svg) no-repeat center center;
    margin-left:66px;
    background-size: contain;
    cursor: pointer;
  }
  .account-process__footer.mobile-only  {
    display: none;
  }
  .mb-0 {
    margin-bottom: 0 !important;
  }
  .account-process__subtitle {
    font-weight: 400;
    color:#000639;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
  }
  .forgot .account-process__footer.mobile-only {
    display: flex;
    height:60px;
    padding:0;
  }
  .account-process__footer a{
    text-decoration:underline;
  }

  @media(max-width:1200px){

.about-content__short {
    font-size: 14px;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 22px;
  }
  .techbox {
    margin-bottom: 27px;
  }
  .about-content__title {
    font-size: 23px;
  }
  .about-content__text {
    font-size: 16px;
  }
  .custom-arrow.custom-arrow--prev {
    margin-right:16px;
  }
  .custom-arrow.custom-arrow--next {
    margin-left:16px;
  }
  .account-slider-wrapper .account-slider .techbox::before {
    transform: scale(1.1);
  }
  .account-process__formbox h1 {
    font-size: 42px;
  }
  .custom-controls {
    height:50px;

  }
  }
  @media(max-width:768px){
    .account-process__container {
        flex-direction: column;
    }
    .account-process__column {
        width:100%;
        flex:0 0 100%;
        max-width:100%;
        padding:0 !important;
    }
    .account-process__fromWrapper {
        justify-content: flex-start;
    }
    .account-process {
        padding: 0;
        min-height: unset;
        height: auto;
        justify-content: flex-start;
        align-items: flex-start;
      }
      .account-slider-wrapper  {
        padding-top:80px;
      }
      .desktop-only {
        display: none;
      }
      .account-process__footer.mobile-only {
        display: flex;
        padding-top:150px;
        padding-bottom:150px;
        justify-content: center;
        width: 100%;
      }

    .account-process__header {
        padding: 36px 20px 66px;
    }
    .account-process__formbox {
        padding:0 20px;
    }
    .custom-controls {
        margin-top:21px
      }
      .forgot .account-process__formbox h1 {
        font-size:40px;
      }
  }
  @media(max-width:374px){
    .forgot .account-process__formbox h1 {
        font-size:34px;
      }
  }


.login-form__wrapper {
  width: 100% !important;
}
.login-form__wrapper > form {
  box-shadow: none !important;
  padding: 0 !important;
}
.login-form__wrapper > form > div.logo,
.login-form__wrapper > form > h2.msg {
  display: none !important;
}
.login-form__wrapper input {
  display: flex !important;
  width: 100% !important;
  border: 1px solid #B1B1B1 !important;
  height: 55px !important;
  padding-left: 23px !important;
  padding-right: 23px !important;
  border-radius: 10px !important;
  color: #000639 !important;
  outline: none !important;
}
.login-form__wrapper button[type="submit"]{
  display: flex !important;
  width: 100% !important;
  background: #386A72 !important;
  color: #fff !important;
  height: 60px !important;
  align-items: center !important;
  justify-content: center !important;
  text-transform: uppercase !important;
  margin-bottom: 21px !important;
  border-radius: 40px !important;
  cursor: pointer !important;
  transition: background 0.3s ease-in-out !important;
  -webkit-transition: background 0.3s ease-in-out !important;
}
.login-form__wrapper button[type="submit"]:hover {
  background: #000639 !important;
  transition: background 0.3s ease-in-out !important;
  -webkit-transition: background 0.3s ease-in-out !important;
}
.hide {
    display:none;
}
