/* RESET */

*{
    margin: 0;
    padding: 0;
    box-sizing: 0;
}

body{
    background: rgb(255, 251, 246);
    font-family: 'Montserrat', sans-serif;
}

p{
    margin-bottom: 0;
}

#e-mail{
    position: absolute;
    top: -9999px;
}

/* NAVBAR */

nav{
    padding: 1rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #03336c;
    background: rgb(255, 251, 246);
    text-align: right;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
    position: fixed;
    z-index: 20;
    width: 100%;
}

.nav-txt>h3{
    font-weight: 800;
    font-size: 20px;
}

.flex {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    gap: 20px;
  }

  .flex > * {
    flex: 1;
  }

/* NAV TOP */

.nav-top {
    position: fixed;
    bottom: 16px;
    right: 32px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #fff07c2a;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s;
  }
  
  .nav-top.active {
    bottom: 50px;
    pointer-events: auto;
    opacity: 1;
  }

  
  /*CAROUSEL*/

  /* CSS Variables to set num slides, total-slides (duplicated on html to best transition) + scroll-distance (real slides)  */
  :root {
    --total-slides-width: calc(290px * 80);
    --scroll-distance: calc(-290px * 40);
  }
  
 .carousel-box {
    animation-name: scroll;
    animation-duration: 200s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    display: flex;
    width: var(--total-slides-width);
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(var(--scroll-distance));
    }
  }

.carousel {
    background: white;
    /*box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .125);*/
    height: 140px;
    margin: auto;
    overflow: hidden;
    position: relative;
    padding-top: 20px;
    }
    
    .carousel:before,
    .carousel:after {
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 120px;
    position: absolute;
    width: 200px;
    z-index: 2;
    }
    
    .carousel:after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
    }
    
    .carousel:before {
    left: 0;
    top: 0;
    }
    
    .slide {
    height: 100px;
    width: 250px;
    margin-left: 20px;
    margin-right: 20px;
    }

    .section-carousel>h2{
        font-weight: 800;
        color:#03336c;
        padding: 1rem;
        text-align: center;
    }
  
/* INPUT PLATE */
  
  .plate-container {
    width: 100%;
    margin: 20px auto;
  }
  
  .entry_Q {
    color: #333;
    background-color: #fff;
    background-repeat: no-repeat;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 75px;
    line-height: 110px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    padding-left: 60px;
    height: 6rem;
    background-position: left;
    width: 100%;
    border: 2px solid #0036a3;
    border-radius: 15px;
    background-image: url('../images/plaque.svg');
    outline: 2px solid #fff;
  }
  
  .entry_Q::placeholder {
    color: #eee;
  }

  
/* SECTIONS */

.section-entry{
    display: flex;
    justify-content: space-around;
    color: white;
    background-image: linear-gradient(rgba(0, 54, 163, 0.4), rgba(0, 54, 163, 0.4)), url('../images/b4.jpg');
    background-size: cover;
    padding: 9rem 3rem;
    padding-top: 15rem;
}

.section-entry2{
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
}

.low-div{
     width: 50px;
    border-top: 7px solid rgb(124,147,248);
    margin-bottom: 1rem;
    margin-top: -0.5rem;
}

.entry2-box{
    width: 300px;
    text-align: center;
    margin: auto;
}

.entry2-box>p{
    font-size: 20px;
    padding: 1.5rem;
}

.entry2-title{
font-weight: 900;
font-size: 30px;
text-align: center;
padding-bottom: 2.5rem;
}

.com{
    font-size: 30px;
    font-family:auto;
    font-weight: 900;
    padding-right: 0.5rem;
    font-size: 2.5rem;
}

.deco-img{
    max-width: 700px;
}

.deco-img2{
    max-width: 600px;
}

.entryform{
    width: 40%;
    padding: 3rem;
}

.entryform2{
    width: 50%;
}

.entryform2>p{
    padding-bottom: 1rem;
    display: flex;
    gap: 10px;
    font-size: 20px;
    align-items: center;
    text-shadow: 1px 1px 2px black;
}

#firstform{
    width: 70%;
    margin-left: 5rem;
    margin-top: 3rem;
}

.entryform1>h2{
    color: white;
    text-align: left;
    font-weight: 800;
    font-size: 40px;
    text-shadow: 1px 1px 2px black;
}

.entryform1>h3{
    color: white;
    text-align: left;
    font-size: 25px;
    margin: 1rem 0;
    font-weight: 800;
    text-shadow: 1px 1px 2px black;
}

.entryform1>img{
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.entryform1>p{
    text-shadow: 1px 1px 2px black;
}

#firstform>lable>h3{
    text-shadow: 1px 1px 2px black; 
    font-size: 24px;
}

#errormsg-0{
    background-color: #ff755d;
    color: white !important;
    width: fit-content;
    border-radius: 20px;
}

/* SECTION 2 */

.section-hero{
    background-image: linear-gradient(#f16d153b, #f16d1539), url("../images/h.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 20rem;
}

.section-hero>h1{
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 50px;
    font-weight: 800;
    text-shadow: 3px 0px 7px rgba(61, 61, 61, 0.5), -3px 0px 7px rgba(61, 61, 61, 0.5), 0px 4px 7px rgba(60, 60, 60, 0.5);
}

/* SECTION 3 */

.section3{
    color: #03336c;
    padding: 3rem 5rem;
    background-color: #eeeef4;
}

.section3>h2{
    text-align: center;
    font-weight: 800;
    font-size: 35px;
    padding: 2rem;
    max-width: 900px;
    margin: auto;
}

.section3-container{
    display: flex;
    flex-direction: column;
   max-width: 800px;
   text-align: justify;
    margin: auto;
}

.s3-container{
    display: flex;
    gap:50px;
    padding: 2rem;
}

.s3-box{
box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
border-radius: 40px 40px 40px 0px;
background-color: white;
width: 80%;
margin: auto;
padding: 2rem 4rem;
}

.s3-box>h3{
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.s3-box>p{
    font-size: 14px;
    text-align: justify;
    text-align-last: auto;
    hyphens: auto;  
    margin-bottom: 1rem;
}

.s3-box>img{
    cursor: pointer;
}

.more-icon{
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
    margin-right: -2rem;
}

.s3-btn{
    background: #f4871f;
    width: 20rem;
    margin: auto;
    margin-top: 3rem;
    color: white;
    border-radius: 50px;
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    cursor: pointer;
    transition: 1s all;
}

.s3-btn:hover{
    background-color: #f16d15;  
}

/* SECTION 4 */

.section4{
padding: 6rem 8rem;
color: #03336c;
}

.s4-container{
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 0 5rem;
}

.s4-container>img{
    border-radius: 500px;
    width: 250px;
    height: 250px;
    object-fit: cover;
}
.s4-container>div>h4{
    font-size: 30px;
    font-weight: 600;
}

.s4-container>div>p{
    text-align: justify;
    text-align-last: auto;
    hyphens: auto;
}

.s4-container>div>img{
    min-width: 300px;
}

.span-orange{
    color:#ff7d04;
}

.arrow{
    position: absolute;
    bottom: 10px;
    right: 24px;
}

/* SECTION 5 */

.section5{
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #e1740e;
    color: white;
    padding: 1rem;
}

.section5>div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    width: 30%;
    text-align: center;
}

.section5>div>img{
    cursor: pointer;
    padding-bottom: 1rem;
}

.entryform1{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 3rem;
}

.entryform1>p{
    margin-left: 3rem;
    margin-bottom: 5px;
    margin-top: 15px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.section-sep{
    background: rgb(124,147,248);
    background: linear-gradient(180deg, rgba(124,147,248,1) 0%, rgba(87,114,213,1) 100%);
    color: white !important;
    padding: 3rem;
}

/* BUTTONS */

.next-btnn{
    background-color: #f4871f;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    border-radius: 10px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: 1s all;
}

.next-btnn:hover{
    background-color: #d16e11; 
}

.next-btn {
    appearance: button;
    background-color: #d16e11;
    border: solid transparent;
    border-radius: 5px;
    border-width: 0 0 4px;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: din-round,sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: .8px;
    line-height: 20px;
    margin: 0;
    margin-top: 15px;
    outline: none;
    overflow: visible;
    padding: 13px 16px;
    text-align: center;
    text-transform: uppercase;
    touch-action: manipulation;
    transform: translateZ(0);
    transition: filter .2s;
    user-select: none;
    -webkit-user-select: none;
    vertical-align: middle;
    white-space: nowrap;
    width: 100%;
  }
  
  .next-btn:after {
    background-clip: padding-box;
    background-color: #f4871f;
    border: solid transparent;
    border-radius: 5px;
    border-width: 0 0 4px;
    bottom: -4px;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
  }
  
  .next-btn:main,
  .next-btn:focus {
    user-select: auto;
  }
  
  .next-btn:hover:not(:disabled) {
    filter: brightness(1.1);
    -webkit-filter: brightness(1.1);
  }
  
  .next-btn:disabled {
    cursor: auto;
  }


.back-btn {
  appearance: button;
  background-color: #747474;
  border: solid transparent;
  border-radius: 5px;
  border-width: 0 0 4px;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-family: din-round,sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .8px;
  line-height: 20px;
  margin: 0;
  margin-top: 15px;
  outline: none;
  overflow: visible;
  padding: 13px 16px;
  text-align: center;
  text-transform: uppercase;
  touch-action: manipulation;
  transform: translateZ(0);
  transition: filter .2s;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
  white-space: nowrap;
  width: 100%;
}

.back-btn:after {
  background-clip: padding-box;
  background-color: #959595;
  border: solid transparent;
  border-radius: 5px;
  border-width: 0 0 4px;
  bottom: -4px;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.back-btn:main,
.back-btn:focus {
  user-select: auto;
}

.back-btn:hover:not(:disabled) {
  filter: brightness(1.1);
  -webkit-filter: brightness(1.1);
}

.back-btn:disabled {
  cursor: auto;
}

/* INSIDE FORM */


.question-title{
    color: rgb(255, 255, 255);
}

.question-subtitle{
    color: orange;
}

.bottom-icons{
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #eeeeee;
    padding: 1rem;
    gap: 30px;
}

.bottom-1{
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
font-size: 14px;
gap: 5px;
}

.error{
    border: 1px solid #ec634b !important;
    background-color: #f5e8e9 !important;
}

.errormsg{
color: #ec634b;
margin-bottom: 0.5rem;
}

.bullet-active{
    background: rgb(244,135,31);
    background: linear-gradient(90deg, rgba(244,135,31,1) 0%, rgba(244,172,31,1) 100%);
    color: white;
    border-radius: 5px;
}

.form1-bullet{
    padding: 0.5rem 1rem;
    display: flex;
align-items: center;
}

.form1-bullet>img{
    padding-right: 10px;
}

.on-form{
    display: flex;
    justify-content: space-around;
    gap: 50px;
    padding: 2rem;
    background: linear-gradient(180deg, rgba(87,114,213,1) 0%, rgba(63,98,225,1) 100%);
    padding-top: 12rem;
}

.form1-box, .question{
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
    padding: 1rem;
    border-radius: 5px;
    border: 1px solid white;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.form1-box>p{
    padding-bottom: 5px;
    }

.form1-box>p>img{
padding-right: 10px;
}

.error-span{
    font-size: 30px;
    margin-bottom: -5px;
}

.error-alert{
    background-color: rgb(255, 107, 107);
    color: white;
    text-align: center;
    padding: 0.5rem;
    padding-top: 0.3rem;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
}

#mainform{
    width: 60%;
}

.section2{
    background-color: white;
    height: 10rem;
}

/* FOOTER */

.footer{
    text-align: center;
    background-color: #223e68;
    color: white;
    padding: 1rem 3rem;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
}

footer>p>a{
    color: white;
}

footer>p>a:hover{
    color: white;
}

.check{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 10px;
    font-size: .8rem;
    justify-content: flex-end;
}

.form-control{
    margin-bottom: 0.2rem;
}

.form-select{
    margin-bottom: 0.2rem;
}

lable>span, .span-label{
    color: #03336c;
    font-weight: 600;
}

.group-form{
    display: flex;
    gap: 10px;
}

.question{
    width: 100%;
}

@media screen and (max-width: 1380px) {

    .s5-box{
        width: 100%;
        height: 100%;
    }

    .arrow{
        position:inherit;
        bottom: auto;
        right: auto;
    }
}
@media screen and (max-width: 1000px) {
    .section-entry{
        flex-direction: column;
    }

    .entryform2{
        width: 70%;
        margin-top: 2rem;
    }

    #firstform{
        width: 100%;
        margin-left: 0;
    }

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

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

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

    .entry2-title{
        font-size: 30px;
    }
    
    .entry2-box>p{
        font-size: 18px;
    }

    .section3{
        padding: 0;
    }

    .section-entry3>p{
        padding: 0;
        padding-top: 4rem;
        text-align: justify;
        font-size: 15px;
    }

    .on-form{
        flex-direction: column;
        gap: 30px;
        padding-top: 8rem;
    }


    .s3-container{
        flex-direction: column;
        padding: 0;
    }

    .section4{
        padding: 1rem;
        margin: auto;
    }

    .s3-box{
        padding: 2rem;
    }

    .more-icon{
        margin-right: 0;
        margin-top: 2rem;
    }

    .s3-btn>span>h5{
        font-size: 17px;
    }

    .s3-btn>span>p{
        font-size: 15px;
    }

    .section3-container{
        padding-bottom: 2rem;
    }

    .s32{
        margin-top: 3rem;
    }

    .s4-container{
        flex-direction: column;
        padding: 2rem 1rem;
    }

    .s42{
        display: flex;
        flex-direction: column-reverse;
    }

    .s4-container>img{
        max-width: 100%;
        padding-bottom: 1rem;
    }

    .section5>div>img{
        width: 40px;
    }

    .section5>div{
        width: 90%;
    }

    .section5>div>p{
        font-size: 15px;
        padding-top: 0.5rem;
    }


    #mainform{
        width: 100%;
    }

    .hide-box{
        display: none;
    }

    .section-entry2>p{
        padding: 3rem 0.5rem;
        font-size: 18px;
    }

    .section-hero>h1{
        font-size: 40px;
    }

  }

  @media screen and (max-width: 600px){

    nav{
        padding: 1rem;
    }

    nav>img{
        max-width: 80px;
    }
    .nav-txt>h3{
        font-size: .9rem;
            }

            .section-hero>h1{
                font-size: 35px;
                width: 90%;
            }
        
            .nav-txt>h4{
                font-size: .9rem;
            }

            .s4-container{
                gap: 20px;
            }

            .section3>h2{
                font-size: 25px;
                padding-top: 1rem;
            }

            .entryform1 > img{
               display: none;
            }

            .entryform1>h3{
                display: none;
            }

            .s4-container>img{
                width: 200px;
                height: 200px;
            }

            .entry2-box{
                width: 100%;
            }

            .entryform2{
                width: 100%;
            }

            .entryform1{
                margin-left: 0;
                text-align: left;
            }

            .entryform1>h2{
                font-size: 25px;
            }

            .entryform1>p{
                margin-left: 0;
                margin-bottom: 0;
            }

            #firstform{
                margin-left: 0;
                margin-bottom: 3rem;
                text-align: center;
                margin-top: 0;
            }

            .section5{
                flex-direction: column;
                padding: 0;
            }

            .section5>div>img{
                padding-bottom: 0;
            }

            #firstform>lable>h3{
                font-size: 20px;
            }

            .entryform2>p{
                font-size: 16px;
            }

            .entryform2>p>img{
                width: 20px;
            }

            .flex{
                flex-direction: column;
                align-items: normal;
                gap: 5px;
            }

            .s3-btn{
                width: 80%;
            }

            .s5>h2{
                font-size: 25px;
            }

            .divider{
                min-height: 20px;
            }

            .section-review{
                border-bottom: 11px solid rgb(124,147,248);
            }

            .section-review>img{
                display: none;
            }

            .rev-mobile{
                width: 100%;
                height: 9rem;
                object-fit: cover;          
            }

            .review-txt {
                padding: 2rem 0rem;
                padding-right: 2rem;
                padding-left: 0.5rem;
            }

            .footer>img{
                width: 50px;
            }

            .footer{
                padding: 0.2rem;
                justify-content: space-around;
            }

            .footer>p{
                font-size: 8px;
                margin-bottom: 0
            };

            .choices[data-type*="select-one"] .choices__inner {
                height: 42px;
            }

            .choices__list--single .choices__item{
                font-size: 1rem !important;
                margin-top: -6px;
                line-height: 2rem;
            }
  }

  @media screen and (max-width: 450px){

    nav>img{
        max-width: 50px;
        padding-bottom: 10px;
    }

    nav{
        flex-direction: column;
        padding: 0.5rem;
    }

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

    .nav-txt>h3{
font-size: .8rem;
margin-bottom: 0;
    }

    .nav-txt>h4{
        font-size: .8rem;
        margin-bottom: 0;
    }

    .section-entry{
        padding: 0rem 1.5rem;
        padding-top: 6rem !important;
        padding-bottom: 2rem;
        background-image: linear-gradient(rgba(0, 54, 163, 0.4), rgba(0, 54, 163, 0.4)), url(../images/back.jpg);
        background-size: cover;
        background-position-x: 26%;
    }

    .section3-container>p{
        padding: 0 2rem;
    }

    .section-sep{
        padding: 2.6rem;
    }

    .entry2-title{
        padding-bottom: 1rem;
    }

    .entry_Q{
        height: 4rem;
        background-image: url('../images/plaquem.svg');
    }

    .entry2-box>img{
        max-width: 50px;
    }

    .entry2-box>p{
        padding: 0.5rem 0;
        font-size: .9rem;
    }

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

    .form-select-lg {
        font-size: 1rem !important;
    }

    .section5-boxes{
        padding: 0;
        gap:20px;
    }

    .s5{
        padding: 0;
        text-align: center;
        padding-bottom: 1rem;
    }

    .s5>p{
        text-align: justify !important;
        font-size: .9rem;
    }

    .entry_Q {
        font-size: 55px;
    }


    .bottom-icons{
        flex-direction: column;
        gap:0px;
    }
}