

/*
*
*
#CSS Map
01. Default
02. Form
*
*
*/

/* 01. Default */

* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
  }
  a,
  button:active,
  button:focus,
  input:active,
  input:focus {
    outline: 0 !important;
  }
  a:hover {
    text-decoration: none;
  }
  
  @-webkit-keyframes boinkyOne {
    0% {
      -webkit-transform: rotateY(0);
      transform: rotateY(0);
      -webkit-animation-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
      animation-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
    }
    10% {
      -webkit-transform: rotateY(15deg);
      transform: rotateY(15deg);
    }
    20% {
      -webkit-transform: rotateY(-15deg);
      transform: rotateY(-15deg);
    }
    30% {
      -webkit-transform: rotateY(15deg);
      transform: rotateY(15deg);
    }
    40% {
      -webkit-transform: rotateY(-15deg);
      transform: rotateY(-15deg);
    }
    50% {
      -webkit-transform: rotateY(15deg);
      transform: rotateY(15deg);
    }
    60% {
      -webkit-transform: rotateY(-15deg);
      transform: rotateY(-15deg);
    }
    100% {
      -webkit-transform: rotateY(0);
      transform: rotateY(0);
    }
  }
  
  @keyframes boinkyOne {
    0% {
      -webkit-transform: rotateY(0);
      transform: rotateY(0);
      -webkit-animation-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
      animation-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
    }
    10% {
      -webkit-transform: rotateY(15deg);
      transform: rotateY(15deg);
    }
    20% {
      -webkit-transform: rotateY(-15deg);
      transform: rotateY(-15deg);
    }
    30% {
      -webkit-transform: rotateY(15deg);
      transform: rotateY(15deg);
    }
    40% {
      -webkit-transform: rotateY(-15deg);
      transform: rotateY(-15deg);
    }
    50% {
      -webkit-transform: rotateY(15deg);
      transform: rotateY(15deg);
    }
    60% {
      -webkit-transform: rotateY(-15deg);
      transform: rotateY(-15deg);
    }
    100% {
      -webkit-transform: rotateY(0);
      transform: rotateY(0);
    }
  }
  
  @-webkit-keyframes fadeInAnimation {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  @keyframes fadeInAnimation {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  /* 02. Default */
  .forma{
      width: 35%;
  }
  #formbox {
    background: #ffffff;
    -webkit-box-shadow: 0px 16px 16px 0px rgb(0 0 0 / 10%);
    box-shadow: 0px 16px 16px 0px rgb(0 0 0 / 10%);
    border-radius: 10px;
    width: 100%;
    margin-bottom: -45px;
  }
  .filed_group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #fff;
    padding: 0px 45px 8px 45px;
  }
  .intl-tel-input {
    width: 100%;
  }
  .submit {
    display: inline-block;
    background: -webkit-gradient(linear, left bottom, left top, from(#4be207), to(#4be207)), #cc0000;
    background: -o-linear-gradient(bottom, #4be207, #4be207), #cc0000;
    background: linear-gradient(0deg, #4be207, #4be207), #cc0000;
    -webkit-box-shadow: 0px 4px 10px rgb(0 0 0 / 25%);
    box-shadow: 0px 4px 10px rgb(0 0 0 / 25%);
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    border: 0;
    padding: 13px 0;
    margin-top: 25px;
    -webkit-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
    transition: all 0.1s linear;
    -webkit-animation-name: boinkyOne;
    animation-name: boinkyOne;
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
  }
  .form_title {
    background: #efefef;
    -webkit-box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
    box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
    position: relative;
    padding: 0 30px;
  }
  .form_title h3 {
    text-align: center;
    padding: 8px 0;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 25px;
    color: #000000;
    height: 70px;
    margin-bottom: 15px;
  }
  .form_info p {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 11px;
    line-height: 1.2;
    text-align: center;
    color: #737373;
    margin: 25px 0;
  }
  .form_info {
    padding: 0 60px;
    background: #fff;
  }
  .form__footer {
    display: block;
    padding: 0px 30px;
    margin: 0 auto;
    background: #e8e6e7;
    border-radius: 0;
    text-align: center;
  }
  .form__footer img {
    max-width: 100%;
  }
  #checklabel,
  #check {
    display: none;
  }
  #fname,
  #lname,
  #email,
  #phone {
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    padding: 8px;
    background: #f2f2f2;
    border: 1px solid rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
  }
  #phone {
    padding-left: 60px;
  }
  
  /* container */
  .container {
    max-width: 1360px;
    margin: 0 auto;
  }
  
  /* intro */
  .intro {
    background: #313131 url('../../assets/img/header-desktop 1 1.png');
    background-position: left !important;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 28px 0;
  }
  
  .introInner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .introText {
    width: 39%;
    margin-left: 28%;
    text-align: center;
  }
  .introSub {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 36px;
    line-height: 49px;
    text-align: center;
    color: #000;
  }
  .introTitle {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 85px;
    line-height: 105px;
    text-align: center;
    color: #ff7c33;
    margin: 20px 0;
    text-transform: uppercase;
  }
  .sub {
    margin-bottom: 20px;
  }
  .introBtn {
    padding: 14px 50px;
    background: #ff7c33;
    border: 2px solid #dd6e30;
  }
  .btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
    color: #ffffff;
    background: #ff7c33;
    border-radius: 50px;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
  }
  .introBottom {
    background: #00466f;
    height: 115px;
    padding: 20px 0;
    padding-left: 15%;
  }
  .introBottomInner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .introBottomSub {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 19px;
    line-height: 23px;
    color: #ffffff;
  }
  .introBottomImg {
    margin-left: 30px;
    position: relative;
    top: -53px;
  }
  .introBottomDekstopImg {
    width: 182px;
  }
  
  /* calculator */
  .calc {
    margin: 75px 0;
    margin-bottom: 0 !important;
  }
  #calculator {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-shadow: 0px 4px 10px rgb(0 0 0 / 25%);
    box-shadow: 0px 4px 10px rgb(0 0 0 / 25%);
    border-radius: 50px;
    position: relative;
  }
  .init h2,
  .profit h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 34px;
    font-weight: 700;
    font-style: normal;
    line-height: 44px;
    text-align: center;
    margin-bottom: 30px;
  }
  .init h2 {
    color: #000000;
  }
  .profit h2 {
    color: #fff;
  }
  .profit h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin-top: 20px;
    text-align: center;
    color: #fff;
  }
  .init,
  .profit {
    width: 50%;
    padding: 50px;
  }
  .init {
    background: #ffffff;
    border-radius: 50px 0px 0px 50px;
  }
  .profit {
    background: #fe9802;
    border-radius: 0 50px 50px 0px;
  }
  .input-group {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
  }
  .input-group.mb-3.calcbox {
    margin-top: 20px;
  }
  .paybox span {
    height: 40px;
    background-color: #e9e9e9;
    border-radius: 50px 0px 0px 50px;
  }
  .input-group-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0px 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #000;
    text-align: center;
    white-space: nowrap;
    position: absolute;
    top: 0px;
    left: 0px;
  }
  .form-control {
    background: #ffffff;
    border: none !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 50px;
    height: 40px;
    width: 100%;
    padding-left: 30px;
    -webkit-box-shadow: 0px 4px 10px rgb(0 0 0 / 25%);
    box-shadow: 0px 4px 10px rgb(0 0 0 / 25%);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 16px;
    font-weight: 400;
    color: #000;
  }
  .init input {
    padding-left: 70px;
  }
  
  .calcArrowbtn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    font-style: normal;
    line-height: 22px;
    fill: #ffffff;
    color: #ffffff;
    background: #fe9802;
    -webkit-box-shadow: 0px 4px 10px rgb(0 0 0 / 25%);
    box-shadow: 0px 4px 10px rgb(0 0 0 / 25%);
    border-radius: 50px;
    padding: 14px 40px;
    border: 0;
    margin-top: 40px;
    cursor: pointer;
  }
  
  /* what */
  .what {
    padding: 100px 0;
  }
  .whatInner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  .whatText {
    width: 45%;
  }
  .whatTitle {
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
    color: #373737;
  }
  .whatImg {
    width: 45%;
  }
  .whatImg img {
    max-width: 100%;
  }
  .arrowImg {
    text-align: right;
  }
  .mobileArrow {
    display: none;
  }
  
  /* start */
  .start {
    padding: 75px 0;
    background: #f2f2f2;
    position: relative;
  }
  .start:after {
    content: '';
    width: 40px;
    height: 40px;
    background: #efefef;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    bottom: -20px;
    left: 50%;
  }
  .startTitle {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 35px;
    line-height: 49px;
    text-align: center;
    color: #000;
  }
  .startBoxs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 80px;
  }
  .startBlockTitle {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
    color: #363f40;
    margin: 20px 0;
  }
  .startBox {
    width: 20%;
    text-align: center;
  }
  .startImg {
    text-align: center;
  }
  .startImg img {
    max-width: 100%;
  }
  
  /* payments */
  .payments {
    padding-top: 100px;
    text-align: center;
  }
  .paymentsBtn {
    background: #ff7c33;
    padding: 22px 140px;
    width: 80%;
    padding: 20px;
    border-radius: 50px;
    border: 0 !important;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    cursor: pointer;
  }
  .paymentsBtn:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  .paymentsImg {
    text-align: center;
    margin-top: 75px;
  }
  .paymentsImg img {
    max-width: 100%;
  }
  
  /* footer */
  .footer {
    padding: 100px 0;
  }
  .footerLinks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .footerLink {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 15px;
    line-height: 18px;
    color: #8e8e8e;
    margin-right: 60px;
  }
  .footerText {
    margin-top: 40px;
  }
  
  .footerSub {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    color: #737373;
    margin: 20px 0;
  }
  .footerSub:first-child {
    font-size: 15px;
    line-height: 18px;
    color: #8e8e8e;
  }
  .footerSub:last-child {
    margin-bottom: 0;
  }
  
  /* miss-popup */
  .miss {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000000ab;
    height: 100%;
    z-index: 100000000;
  }
  .miss.open {
    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;
  }
  .missInner {
    max-width: 70%;
    width: 100%;
    margin: 0 auto;
    border-radius: 30px;
    -webkit-transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    -o-transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    -webkit-animation: fadeInAnimation ease 1s;
    animation: fadeInAnimation ease 1s;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .missTop {
    background:#ff7c33;
    padding: 12px 0;
    text-align: center;
    border-radius: 30px 30px 0 0;
  }
  .missTop img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
  }
  .missBottom {
    background-color: #fff;
    padding: 30px 0;
    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;
    row-gap: 30px;
    border-radius: 0 0 30px 30px;
  }
  .missSub {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 39px;
    text-align: center;
    color: #000000;
  }
  .missSub1 {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    color: #000000;
  }
  .missBtn {
    display: inline-block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 37px;
    color: #ffffff;
    background: #ff7c33;
    -webkit-box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
            box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
    border-radius: 30px;
    padding: 17px 80px;
    margin: 0 auto;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  .missBtn:hover {
    -webkit-box-shadow: 0 0 10px #00466f;
            box-shadow: 0 0 10px #00466f;
    -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  .missCloseBtn{
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
  }
  .formaCloseBtn {
    position: absolute;
    right: 5px;
    top: 5px;
    cursor: pointer;
    z-index:1;
  }
  .missCloseBtn i,.formaCloseBtn i {
    font-size: 25px;
    color: #fff;
  }
  .formaCloseBtn i {
    color: #000;
  }
  
  /* formPopup */
  .forma.open{
      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;
      position: fixed;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background-color: #000000ab;
      z-index: 10000000;
  }
  .forma.open #formbox{
      width: 35%;
      -webkit-transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
      -o-transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
      transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
      -webkit-animation: fadeInAnimation ease 1s;
      animation: fadeInAnimation ease 1s;
      -webkit-animation-iteration-count: 1;
      animation-iteration-count: 1;
      -webkit-animation-fill-mode: forwards;
      animation-fill-mode: forwards;
      position:relative;
      box-shadow: 21px 21px 5px rgb(255 121 0 / 50%)
  }
  .formaCloseBtn{
      display: none;
      -webkit-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
  }
  .forma.open .formaCloseBtn{
      display: block;
  }