/*--
    Common Css
--*/
body {
  font-size: 14px;
  font-weight: 300;
  line-height: 25px;
  color: #3b4045;
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;

  font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
   color: #51596C;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
  margin: 0px;
}

h1,
.h1 {
  font-size: 44px;
  line-height: 56px;
}

h2,
.h2 {
  font-size: 30px;
  line-height: 35px;
}

h3,
.h3 {
  font-size: 23px;
  line-height: 25px;
}

h4,
.h4 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
}

p {
  font-size: 1rem;
  line-height: 25px;
  font-weight: 400;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

a {
  transition: all 0.2s ease-in-out 0s;
}

.mt-100 {
  margin-top: 100px;
}

.bg-1 {
  background-image: url(../images/call-to-action.jpg);
}

.bg-orange {
  background: #f9a743;
}

.bg-opacity {
  position: relative;
}

.bg-opacity:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

a:focus,
.btn:focus,
.btn:active:focus {
  box-shadow: none;
  outline: 0 none;
}

a,
a:active,
a:focus,
a:active {
  text-decoration: none;
}

.section {
  padding: 100px 0;
}

.font-size-60 {
  font-size: 60px;
  line-height: 1.2;
}

@media (max-width: 575px) {
  .font-size-60 {
    font-size: 40px;
  }
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-40 {
  margin-bottom: 40px;
}

/*--
    custom heading
--*/
.text-center {
  text-align: center;
}

.heading {
  text-align: center;
  color: #777777;
  padding-bottom: 70px;
}

.heading h2 {
  color: #3c3c3c;
  padding-bottom: 15px;
  text-transform: capitalize;
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
}

.heading p {
  font-size: 17px;
  line-height: 24px;
  font-weight: 300;
}

.subheading {
  color: #3c3c3c;
  padding-bottom: 15px;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 32px;
  line-height: 45px;
}

.btn {
  border-radius: 0;
}

.btn-main {
  color: #fff;
  border-radius: 30px;
  font-size: 18px;
  padding: 15px 40px;
  display: inline-block;
  background-color: #f9a743;
  box-shadow: 0 15px 40px rgba(249, 167, 68, 0.5);
  background-image: linear-gradient(bottom, rgba(255, 239, 206, 0) 0%, rgba(255, 239, 206, 0.25) 100%);
}

.btn-main:hover, .btn-main:focus {
  background-color: #f9a743;
  color: #fff;
}

.btn-main-sm {
  padding: 12px 35px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
}

/*Preloader*/
#preloader-wrapper {
  background-color: #fff;
  bottom: auto;
  height: 100%;
  left: auto;
  position: fixed;
  right: auto;
  top: auto;
  width: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pre-loader {
  width: 130px;
  height: 130px;
  background: #f9a743;
  border-radius: 50%;
  animation: loading 6s infinite reverse linear;
  position: relative;
  font-family: "themefisher-font" !important;
}

.pre-loader:before {
  content: "\f3bd";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  font-size: 40px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
}

@-webkit-keyframes loading {
  /*  */
  0% {
    box-shadow: inset 0 0 0 80px #f9a743;
  }
  8.49% {
    background: #f9a743;
    box-shadow: inset 0 0 0 160px #f9a743;
  }
  /* orange */
  8.5% {
    box-shadow: inset 0 0 0 0 #ff8133;
  }
  24.99% {
    background: #ff8133;
    box-shadow: inset 0 0 0 160px #ff8133;
  }
  /* yellow */
  25% {
    box-shadow: inset 0 0 0 0 #ffbe1a;
  }
  41.49% {
    background: #ffbe1a;
    box-shadow: inset 0 0 0 160px #ffbe1a;
  }
  /*  */
  41.5% {
    box-shadow: inset 0 0 0 0 #f9a743;
  }
  57.99% {
    background: #f9a743;
    box-shadow: inset 0 0 0 160px #f9a743;
  }
  /* blue */
  58% {
    box-shadow: inset 0 0 0 0 #00b5d9;
  }
  74.49% {
    background: #00b5d9;
    box-shadow: inset 0 0 0 160px #00b5d9;
  }
  /* purple */
  74.5% {
    box-shadow: inset 0 0 0 0 #9772e5;
  }
  90.99% {
    background: #9772e5;
    box-shadow: inset 0 0 0 160px #9772e5;
  }
  /*  */
  91% {
    box-shadow: inset 0 0 0 0 #f9a743;
  }
  100% {
    background: #f9a743;
    box-shadow: inset 0 0 0 80px #f9a743;
  }
}

@keyframes loading {
  /*  */
  0% {
    box-shadow: inset 0 0 0 80px #f9a743;
  }
  8.49% {
    background: #f9a743;
    box-shadow: inset 0 0 0 160px #f9a743;
  }
  /* orange */
  8.5% {
    box-shadow: inset 0 0 0 0 #ff8133;
  }
  24.99% {
    background: #ff8133;
    box-shadow: inset 0 0 0 160px #ff8133;
  }
  /* yellow */
  25% {
    box-shadow: inset 0 0 0 0 #ffbe1a;
  }
  41.49% {
    background: #ffbe1a;
    box-shadow: inset 0 0 0 160px #ffbe1a;
  }
  /*  */
  41.5% {
    box-shadow: inset 0 0 0 0 #f9a743;
  }
  57.99% {
    background: #f9a743;
    box-shadow: inset 0 0 0 160px #f9a743;
  }
  /* blue */
  58% {
    box-shadow: inset 0 0 0 0 #00b5d9;
  }
  74.49% {
    background: #00b5d9;
    box-shadow: inset 0 0 0 160px #00b5d9;
  }
  /* purple */
  74.5% {
    box-shadow: inset 0 0 0 0 #9772e5;
  }
  90.99% {
    background: #9772e5;
    box-shadow: inset 0 0 0 160px #9772e5;
  }
  /*  */
  91% {
    box-shadow: inset 0 0 0 0 #f9a743;
  }
  100% {
    background: #f9a743;
    box-shadow: inset 0 0 0 80px #f9a743;
  }
}

/* navigation */
.navbar-brand {
  color: #444;
  font-size: 25px;
  margin: 0;
  line-height: 1;
}

.nav-link {
  font-size: 14px;
  font-weight: bold;
}

.navbar-light .navbar-nav .nav-link {
  color: #444;
}

/*--
    feature start
--*/
/*--
    Feature-list start
--*/
.feature-list .btn-main {
  margin-top: 15px;
}

/*--
  Gallery start
--*/
.gallery {
  padding-bottom: 100px;
}

.gallery .owl-item {
  overflow: hidden;
  position: relative;
}

.gallery .block {
  padding: 20px;
}

.gallery .block:hover .gallery-overlay {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

.gallery .gallery-overlay {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  top: 15px;
  background: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  color: inherit;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  transition: all .3s;
  z-index: 2;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.gallery .gallery-overlay .gallery-popup {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #f9a743;
  padding: 5px 10px;
  border-radius: 40px;
  width: 50px;
  height: 50px;
}

.gallery .gallery-overlay .gallery-popup i {
  color: #fff;
  font-size: 30px;
  line-height: 40px;
  display: inline-block;
}

/*--
    service start
--*/
.testimonials .testimonial-block {
  padding: 0 10px;
}

.testimonials .testimonial-block i {
  font-size: 40px;
  display: inline-block;
  margin-bottom: 20px;
  color: #f9a743;
}

.testimonials .testimonial-block p {
  font-family: "Droid Serif", serif;
  font-size: 14px;
  color: #777;
}

.testimonials .testimonial-block .author-details {
  margin-top: 30px;
}

.testimonials .testimonial-block .author-details img {
  border-radius: 50%;
  width: 50px;
}

.testimonials .testimonial-block .author-details h4 {
  font-weight: 700;
  font-size: 20px;
  margin-top: 10px;
}

/*--
    call-to-action start
--*/
.call-to-action {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

.input-group {
  margin-top: 30px;
  position: relative;
}

.input-group .btn-submit {
  padding: 10.5px 40px !important;
  position: absolute;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  top: 0;
  right: 0;
}

.input-group input {
  height: 50px;
  border-radius: 40px;
  border: none;
  padding-left: 15px;
  box-shadow: none;
  display: table-cell;
}

.footer-menu a {
  font-size: 14;
  font-weight: 700;
  color: #444;
  padding: 10px;
}

footer {
  text-align: center;
  background: #f4f4f4;
  padding: 50px 0px;
}

footer .footer-logo {
  color: #555;
  display: block;
}

footer p.copyright-text {
  font-weight: 300;
  font-size: 12px;
  color: #888;
  letter-spacing: 3px;
  margin-top: 15px;
}

footer p.copyright-text a {
  color: #282828;
}

footer p.copyright-text a:hover {
  text-decoration: none;
}

/*# sourceMappingURL=maps/style.css.map */

.text-white-70 {
    --bs-text-opacity: 1;
    color: rgba(255,255,255,.7)!important;
}

@media (min-width: 1200px)
.lead {
    font-size: 1.5rem;
}
.lead {
    font-size: calc(1.275rem + .3vw);
    font-weight: 400;

    line-height: 2.25rem;
}

.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: .0625rem solid rgba(0,34,28,.1);
    border-radius: .3125rem;
}

.card {
    border-width: 0;
    box-shadow: 0 0.375rem 1.5rem 0 rgb(140 152 164 / 13%);
}

.card-lg>.card-body, .card-lg>.collapse .card-body {
    padding: 2rem 2rem;
}

.form-control-lg {
    min-height: calc(1.5em + 1.625rem);
    padding: .75rem 1rem;
    font-size: 1.125rem;
    border-radius: .3125rem;
}
.form-control {
    display: block;
    width: 100%;
    padding: .6125rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #51596c;
    background-color: #fff;
    background-clip: padding-box;
    border: .0625rem solid rgba(0,34,28,.1);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .3125rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.form-label {
    margin-bottom: .5rem;
    font-size: .875rem;
    font-weight: 500;
}
label {
    display: inline-block;
}

.main_promo h1 {
  color:#fff;
}

.svg-icon>svg {
    width: 3rem;
    height: 3rem;
}

.text-white {
    color: #fff!important;
}

.card-title:not(:last-child) {
    margin-bottom: .5rem;
}
.card-title {
    margin-bottom: 0;
}
.card-title {
    margin-bottom: .25rem;
}
@media (min-width: 1200px)
.h5, h5 {
    font-size: 1.375rem;
}
.h5, h5 {
    font-size: calc(1.2625rem + .15vw);
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
    color: #00221c;
}

.text-white {
    color: #fff!important;
}

.btn-group-lg>.btn, .btn-lg {
    padding: .75rem 1rem;
    font-size: 1.125rem;
    border-radius: .3125rem;
}
.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #51596c;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 0.0625rem solid transparent;
    padding: 0.6125rem 1rem;
    font-size: 1rem;
    border-radius: 0.3125rem;
    transition: all 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .btn {
        transition: none;
    }
}
.btn:hover {
    color: #51596c;
}
.btn-check:focus + .btn,
.btn:focus {
    outline: 0;
    box-shadow: 0 0 1rem 0 rgba(140, 152, 164, 0.25);
}
.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
    pointer-events: none;
    opacity: 0.65;
}
.btn-primary {
    color: #fff;
    background-color: #008060;
    border-color: #008060;
    width: 100%;
}
.btn-primary:hover {
    color: #fff;
    background-color: #006d52;
    border-color: #00664d;

}
[type=button], [type=reset], [type=submit], button {
    -webkit-appearance: button;
}
button, select {
    text-transform: none;
}
button, input, optgroup, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
}

.form-select-arrow {
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-right: 7px solid #bbbbbb;
    position: absolute;
    transition: all 0.1s;
    transform: rotate(
270deg
);
    right: 15px;
    bottom: 20px;
}

.formline {
  position: relative;
}

.end-0 {
    right: 0!important;
}
.top-0 {
    top: 0!important;
}
.position-absolute {
    position: absolute!important;
}

.formFooter, .formFooter-wrapper {
  display: none !important;
}


/******* FORM *******/
.page-section {
  padding: 0px !important;
  width: 100% !important;
}

.form-all {
  margin:0px !important;
  box-shadow: none !important;
  width: 100% !important;
}

.form-line {
  margin:0px 0px 30px 0px !important;
  padding: 0px 12px 0px 12px !important;
}

.form-line-column {
    width: 50% !important;
}

.form-pagebreak {
  margin:0px !important;
  padding: 20px 12px 20px 12px !important;
  border: none !important;
}

.form-pagebreak-next {
  width: 100% !important;
  margin-left:0px !important;
  background-color:#ef569c !important;
  border-color:#ef569c !important;
}

.form-pagebreak-next-container {
  width: 100%;
}

.avatar {
  width: 150px !important;
    position: absolute;
    top: -32px;
    right: 0px;
}

img.avatar {
  width:130px  !important;
  max-width: 130px  !important;
}

@media (max-width: 568px) {
.avatar {
   top: 10px;
}
}

header {
  background-color: #fff;
}

.heading h4 {
  color: #666e80 !important;
}



/******** VIOLET SECTION ********/



.bg_violet {
background-color: #6942ad;
}

.bg_violet p {
  text-align: left;
 --bs-text-opacity: 1;
    color: rgba(255,255,255,.8)!important;
font-weight: 500;
    line-height: 26px;
    font-size: 16px;
    margin-bottom: 0px;
}

.bg_violet .subheading {
  font-weight: 500 !important;
    text-align: left;
}



/******** WHITE BOXES ********/

.whitebox {
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0.375rem 1.5rem 0 rgb(140 152 164 / 13%);
padding: 30px;
text-align: left !important;
min-height: 300px;
}

.whitebox p {
  color: #666e80;
font-weight: 500;
    line-height: 26px;
    font-size: 16px;
    margin-bottom: 0px;
}

.whitebox h4 {
  margin-bottom: 20px !important;
  width: 100%;
  font-family: Inter, sans-serif;
font-weight: 500 !important;
font-size: 20px;

}

.icon {
  width: 80px;
  height: auto;
margin-bottom: 10px;
}

.progressbox {
margin-left: -30px;
  margin-right: -30px;
  margin-top: -30px;
border-radius: 10px 10px 0px 0px;
margin-bottom: 20px;
}
.progressbox img {
  border-radius: 10px 10px 0px 0px;
  margin-bottom: 0px;
}

.pirpar {
  min-height: 400px;
}



.numero {
  background-color: #ef569c;





  position: relative;
  margin-left: -30px;
  margin-right: -30px;
  margin-top: -30px;
border-radius: 10px 10px 0px 0px;
text-align: center;
color: #fff;
padding: 30px 30px 10px 30px;
margin-bottom: 30px;

}

.darker {
  background-color: #b3326d;
}

.dark {
  background-color: #d74286;
}

.numero h4 {
  font-size: 40px;
  color:#fff;
}


/***** NAVBAR TOP ******/
.navbar-light .navbar-nav .nav-link {
  font-weight: 500;
  font-size: 16px;
  color: #51596c;
  padding-left: 2rem;
  cursor: pointer;
}

a.nav-link:hover {
  color: #d74286 !important;
  cursor: pointer;
}







@media only screen and (max-width: 990px) {
  .main_promo {
  padding-top:30px;
}
}


.formFooter-heightMask {
  display: none !important;
}

.logo_main {
  width:200px;
}


/******* FOOTER *******/

footer {
  background-color: #6942ad;
  padding-bottom: 30px;
}

footer h4 {
  color: #fff;
  margin-bottom: 20px;
}

.copyright-text {
  border-top:1px #613ca2 solid;
  padding: 30px 0px 0px 0px;
  margin-top: 50px !important;
  margin-bottom: 0px;
  color: rgba(255,255,255,.7)!important;
}



/***** RESPONSIVE ******/


@media (max-width: 500px) {
.card .card-body {
  padding:10px !important;
}
.avatar {
  display: none;
}
}

.formFooter {
  display:none !important;
}




