* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.clr{
    clear:both;
  }

a {
  text-decoration: none;
}

/* nav bar */
#middle{
  margin:0 auto;
  justify-content: center;
  text-align: center;
  width: 60%;
}
.topnav {
  overflow: hidden;
  background-color: #102439;
  display: flex;
  
  margin:0 auto;
  justify-content: center;
  text-align: center;
}

.topnav a {
  float: left;  
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}


.topnav .icon {
  display: none;
}

.dropdown .dropbtn {
  font-size: 17px;    
  border: none;
  outline: none;
  color: white;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}
.mid{
  margin-top: 14px;
}
.mid2{
  margin-top: -7%;
  margin-left: -40%;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1000;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #fa9602;
  color: white;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media screen and (max-width: 600px) {
  .topnav {
  display: block;
  }
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    /* text-align: left; */
  }
  .mid {
    margin-top: -33px;
    margin-left: -150px;
}
}
@media screen and (max-width: 931px) and (min-width: 677px){
  .topnav {
    display: flex;
    }
}
/*Main Styling */
html{
	background-color: white;
  scroll-behavior: smooth;
}

body{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
}

.l-heading {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.l-heading b {
  color: rgb(253, 153, 39)
}

.lead {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  padding-left: 150px;
  padding-right: 150px;
}

.lead-head {
  font-size: 3rem;
  margin-bottom: 1rem;
  padding-left: 10px;
  padding-right: 10px;
}


/* logo */
.logo{
  height: 12rem;
  width: auto;
}

/* Navbar */
#navbar {
  text-align: center;
  position: relative;
  top:0;
  background:white; 
  color: #102439;
  justify-content: space-between;
  z-index: 1;
  /* padding: 1rem;
  border-bottom: 1px solid #eeebeb; */
}

#navbar img {
  padding-left: 20px;
}

#navbar ul {
  justify-content: center;
  padding-right: 20px;
  display: flex;
  align-items: center;
  list-style: none;
  background-color: #102439;
  padding: 1rem;
}

#navbar ul li a {
  color: white;
  padding: 1rem;
  margin: 0 0.25rem;
} 

#navbar ul li a:hover {
  color: white;
  background: #fa9602;
  border-radius: 5px;
}

/* showcase */
#showcase {
  background:  url('../images/home1.jpg') no-repeat center center/cover;
  height: 100vh;
  color: white;
  transition: opacity .5s ease;
}

#showcase-two {
  background:  url('../images/home2.jpg') no-repeat center center/cover;
  height: 50vh;
  color: white;
  transition: opacity .5s ease;
}

#showcase-three {
  background:  url('../images/home3.jpg') no-repeat center center/cover;
  height: 50vh;
  color: white;
  transition: opacity .5s ease;
}

#showcase-four {
  background:  url('../images/contact1.jpg') no-repeat center center/cover;
  height: 60vh;
  color: white;
  transition: opacity .5s ease;
}

#showcase .showcase-content {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 50px;
  /* overlay */
  position: absolute;
  top: 160px;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.4)
}

#showcase-two .showcase-content {
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 120px;
    /* overlay */
    background-color: rgba(0, 0, 0, 0.4)

}

#showcase-three .showcase-content {
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 50px;
    /* overlay */
    background-color: rgba(0, 0, 0, 0.4)

}

#showcase-four .showcase-content {
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 50px;
    /* overlay */
    background-color: rgba(0, 0, 0, 0.4)

}
/* button */
.btn {
  -webkit-appearance: none;
  display: inline-block;
  color: #fff;
  background: #fa9602;
  padding: 0.5rem 2rem;
  border: none;
  border-radius: 5px; 
  line-height: 1.625;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.75px;
  padding: 1rem 3.125rem;
  border: 1px solid transparent;
  border-radius: 50px;
  outline: none !important;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: all 0.3s ease;
}

.btn:hover{
  background: #df8600;
}

/* Service */
#services {
  position: relative;
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-fill-mode: both;
  margin-top: -100px !important;
  margin: 0px auto;
  background-color: #ffffff;
  display: block;
  max-width: 80%;
  margin-bottom: 100px;
  border-radius: 50px;
}

.services {

  max-width: 100%;
  display: flex;
  padding: 1rem;
}

.servicesone {

  max-width: 100%;
  display: flex;
  padding: 1rem;
}


.boxshadow {
  box-shadow: 0 15px 25px -7px rgba(0,0,0,0.09), 0 -12px 10px -10px rgba(0,0,0,0.04);
}

.box {
  width: 40%;
  padding: 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
 }

 .box h3 {
    padding-bottom: 14px;
 }

 .box p{
   line-height: 1.8rem;
   color: rgb(66, 66, 66);
   font-size: 14px;
 }

 .boxdark{
   background: white;
   border-left:1px solid #eeebeb;
   border-right: 1px solid #eeebeb;
 }

.details-img{
  text-align: center;
  height: 10rem;
  width: auto;
  margin-bottom: 35px;
}

/* About */
#About {
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  overflow: visible;
  flex-wrap: wrap;
  transition: opacity .5s ease;
  padding-top: 10px !important;
  padding-bottom: 100px !important;
  background-color: white !important;
  margin-bottom: 20px;
  margin-top: 20px;
  margin: 0px auto;
  color:#595959;
}

#About h1 {
  font-size: 40px ;
  text-align: center;
  padding-bottom:30px;
  margin-bottom: 20px;
}
.about{
  display: flex;
}

.about-info {
  padding: 50px;
}

.about-info-two {
  width: 100%;
  padding: 50px;
}

.about h2 {
  font-weight: 600;
  text-align: left;
  font-size: 36px;
  padding-bottom: 30px;
}

.about h2 span {
  font-weight: 50;
}

.about-text {
  line-height: 24px!important;
  font-weight: 400!important;
  color: #595959;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  padding-bottom: 40px;
}

/* Accordion */
.panel {
  padding: 0 18px;
  display: none;
  background-color: white;
  overflow: hidden;
  padding-top: 20px;
  padding-bottom: 20px;
  transition:  0.2s ease-out;
}
 .panel-text {
  line-height: 1.8;
  margin-left: 10px;
  padding-bottom: 10px;
  font-weight: 400!important;
  color: #595959;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
 }


.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  margin-bottom: 2px;
}

.accordion:after{
  content: '\002B'; /* Unicode character for "plus" sign (+) */
  font-size: 20px;
  float: right;
}

.active:after{
  content: "\2212";
}

.accordion:hover {
  color: white;
  background-color: #102439;
}

.active, .accordion:hover {
  color: white;
  background-color: #102439;
}

.about-img{
  width: 100%;
}

.about-img img{
  width: 100%;
  width: 600px;
  height: auto;
  padding: 50px;
}



.contact-title {
  padding-top: 40px;
  text-align: center;
  color: white;
}

/* Footer */
#footer {
  position: relative;
  box-sizing: border-box;
  overflow: visible;
  transition: opacity .5s ease;
  color: #8d8d8d;
  background-color: #102439 !important;
  text-align: center;
  margin-top: 30px;
  
}

.footer-info p {
  line-height: 1;
  padding-bottom: 10px;
}

.copyr {
  padding-bottom: 30px;
}

.footer-info {
  align-items: center;
  position: relative;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
  padding-top: 3%;
  padding-left: 52px;
  padding-right: 52px;
}

.footer-menu{
  padding-top: 1%;
}
.footer-menu a{
  color: #8d8d8d;
}
.footer-menu a:hover{
  color: #fa9602;
}


/* holdings */
.intro-text {
  padding: 100px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center; 
  line-height: 1.8rem;
  color: rgb(66, 66, 66);
  font-size: 16px;
 }

 /* testimonial */
#testimonial {
  
  color: rgb(66, 66, 66);
  padding-top: 30px;
  padding-bottom: 30px;
}

#testimonial h1 {
  padding-bottom: 30px;
  font-size: 28px; 
  text-align: center;
}

.testimonial-info {
  display: flex;
  padding: 20px;
}

.testimonial-box{
  padding: 10px;
}

.testimonial-border-box {
  background-color: #f7f7f7;
  padding: 20px;
  position: relative;
  border-radius: 3px;
  margin-bottom: 20px;
}

.testimonial-border-box h3 {
  padding-bottom: 20px;
}

.testimonial-border-box p {
  line-height: 1.65;
  font-size: 16px;
}

.testimonial-border-box a {
  color: #fa9602;
}

.testimonial-border-box a:hover {
  text-decoration: underline;
}

/* about */
#About-two {
  text-align: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  overflow: visible;
  flex-wrap: wrap;
  transition: opacity .5s ease;
  background-color: white !important;
  margin-bottom: 20px;
  margin-top: 200px;
  margin: 0px auto;
  color:#595959;
}

#About-two h1 {
  padding-top: 30px;
  font-size: 40px ;
  text-align: center;
  padding-bottom:10px;
  margin-bottom: 20px;
}

/* reasons */

#reasons {
  text-align: center;
  justify-content: center;
}

.reasons {
  display: flex;
  padding: 20px;
  justify-content: space-evenly;
}

.reasons-box{
  width: 28%;
  background: rgb(243, 241, 241);
  text-align: center;
  border-radius: 30px;
  color: #102439;
}

.reasons-box img {
  padding: 20px;

}

.reasons-box h1 {
  padding: 0 20px 20px 30px;
  
}

.reasons-box p {
  font-size: 16px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}

/* Service 2 */
#services-two {
  margin-top: 30px;
background-color:#102439 ;
color: white;
text-align: center;
}

#services-two h1 {
  padding-top: 50px;
  font-size: 40px ;
}

.intro-text-two {
  padding-left: 100px;
  padding-right: 100px;
  padding-top: 20px;
  padding-bottom: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center; 
  line-height: 1.8rem;
  color: white;
  font-size: 16px;
 }

 .left-align {
   text-align: left;
   padding-bottom: 50px;
 }

 #About h3 {
  font-size: 30px ;
  text-align: center;
  padding-bottom:30px;
  padding-top: 30px;
  margin-bottom: 20px;
}

/* form */
#form {
  color:#595959;
}
.form-container-two h1 {
  padding-bottom: 30px;
}

.form-container-two {
margin: 0px auto;
width: 100%;
background-color: white;
border-radius: 20px;
padding:10px;
max-width: 60%;
position: relative;
}

a {
  display: inline;
}
.form-container h1{
  padding-bottom: 20px;
}

.form-input {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
}

.radio-input{
  padding: 15px;
  margin: 5px 0 22px 0;
}

.radio-input label{
margin-right: 10px;
}

.form-container a {
margin-left: 20px;
}

/* FAQs */
#showcase-faq {
  background:  url('../images/contact1.jpg') no-repeat center center/cover;
  height: 50vh;
  color: white;
  transition: opacity .5s ease;
}

#showcase-faq .showcase-content {
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 120px;
    /* overlay */
    background-color: rgba(0, 0, 0, 0.4)

}

/* how it works */
.steps {
  align-items: center;
  margin: 10px;
width: 100%;
}

.step1 {
  background-color:#102439 ;
  color: white;
  padding-left: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  height: 100%;
}

.step-info {
  padding:20px;
background-color: rgb(238, 234, 234);
}

#showcase-how {
  background:  url('../images/reason1.jpg') no-repeat center center/cover;
  height: 50vh;
  color: white;
  transition: opacity .5s ease;
}

#showcase-how .showcase-content {
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 120px;
    /* overlay */
    background-color: rgba(0, 0, 0, 0.4)

}

.reason-h2 {
  padding: 30px;
}

/* Solution */
#showcase-solution {
  background:  url('../images/home2.jpg') no-repeat center center/cover;
  height: 50vh;
  color: white;
  transition: opacity .5s ease;
}

#showcase-solution .showcase-content {
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 120px;
    /* overlay */
    background-color: rgba(0, 0, 0, 0.4)

}

#About-solution {
  padding: 50px;
}
#About-solution h2 {
  font-size: 25px ;
  text-align: center;
  padding:30px;
  margin: 20px;
  color:#595959;
}

#About-solution h3 {
  font-size: 20px;
  margin-bottom:20px;
  color:#595959;
}

.about-solution{
  display: block;
}

.about-solution-info {
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.about-solution-text {
  line-height: 24px!important;
  font-weight: 400!important;
  color: #595959;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  padding-bottom: 10px;
}

/* investor */
#showcase-investor {
  background:  url('../images/investor1.jpg') no-repeat center center/cover;
  height: 60vh;
  color: white;
  transition: opacity .5s ease;
}


#showcase-investor .showcase-content {
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 120px;
    /* overlay */
    background-color: rgba(0, 0, 0, 0.4)

}

/* Thanks */
#showcase-thanks {
  background:  url('../images/home3.jpg') no-repeat center center/cover;
  height: 60vh;
  color: white;
  transition: opacity .5s ease;
}


#showcase-thanks .showcase-content {
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 120px;
    /* overlay */
    background-color: rgba(0, 0, 0, 0.4)

}

/* Sellnow form */

#sellnow {
  display:none;
}

select {
  -webkit-appearance: none;  /* for webkit (safari, chrome) compatibility */
  -moz-appearance: none; /* for firefox compatibility */
  appearance: none;
}

.form-popup {
  padding: 30px;
  position: fixed;
  bottom: 0px;
  left: 0px;
  z-index:100;
}

.form-container2 {
    width: 300px;
    background-color: white;
    box-shadow: 0 15px 25px -7px rgba(0,0,0,0.09), 0 -12px 10px -10px rgba(0,0,0,0.04);
  border-radius: 20px;
    padding:30px;
}



.form-container2 h1{
    padding-bottom: 20px;
}

.form-input2 {
    width: 100%;
    padding: 10px;
    margin: 3px 0 2px 0;
    border: none;
    background: #f1f1f1;
}

.radio-input2{
    padding: 15px;
    margin: 5px 0 22px 0;
}

.radio-input2 label{
  margin-right: 10px;
}

.form-container2 b {
  text-align: center;
  font-size: 18px;
}

/* btn */
.btn-open {
  margin-top: 10px;
  -webkit-appearance: none;
  display: inline-block;
  color: #fff;
  background: #fa9602;
  border: none;
  border-radius: 5px; 
  line-height: 1.625;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  font-size: 0.81rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1.75px;
  padding: 0.51rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 50px;
  outline: none !important;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: all 0.3s ease;
}

.btn-open:hover{
  background: #df8600;
}

.btn-cancel {
  margin-top: 10px;
  -webkit-appearance: none;
  display: inline-block;
  color: #fff;
  background: #252423;
  border: none;
  border-radius: 5px; 
  line-height: 1.625;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  font-size: 0.81rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1.75px;
  padding: 0.51rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 50px;
  outline: none !important;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: all 0.3s ease;
}

.btn-cancel:hover{
  background: #070707;
}

/* sell now */
.open-button {
  cursor: pointer;
  margin-top: 10px;
  -webkit-appearance: none;
  display: inline-block;
  color: #fff;
  background: #fa9602;
  border: none;
  border-radius: 5px; 
  line-height: 1.625;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  font-size: 0.81rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1.75px;
  padding: 0.51rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 50px;
  outline: none !important;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 1);
 box-shadow: 0 5px 15px #a86500;
}
#pulse {
  padding: 30px;
  position: fixed;
  bottom: 0px;
  left: 0px;
}


/* 404 */
#showcase-404 {
  background:  url('../images/investor2.jpg') no-repeat center center/cover;
  height: 60vh;
  color: white;
  transition: opacity .5s ease;
}


#showcase-404 .showcase-content {
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 120px;
    /* overlay */
    background-color: rgba(0, 0, 0, 0.4)

}


/* privacy policy */
.privacy{
  text-align: center;
  padding: 1%;
  background-color: #102439;
}

#privacy-policy{
  line-height: 1.8rem;
  color: #002e5a;
  width: 100%;
  padding-left: 10%;
  padding-right: 10%;
}

.privacy-header{
  margin: 5%;
  text-align: center;

}
.privacy-info a {
  color: red;
}
.privacy-header h1{
  line-height: 2.5rem;
  color: #002e5a;
  font-size: 40px;
  padding-bottom: 2%;
}

/* video section */
#video {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 5%;
  padding-bottom: 5%;
}
#hold-video{
  width: 90%;
  margin: 0 auto;
  text-align: center;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
 }

 .hold-video{
     max-width: 80%;
 }
