@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
   font-family: "Nunito", sans-serif;
}

a {
    text-decoration: none !important;
}
.colored_line {
    display: flex;
    align-items: center;
    justify-content: stretch;
    margin-bottom: 6px;
}
.colored_line div {
    height: 5px;
    border-radius: 15px;
    margin-left: 5px;
    margin-right: 5px;
    background: #23cc88;
    width: 100%;
}
.colored_line div:nth-child(2n) {
    background: #8ecf35;
}
.colored_line div:nth-child(3n) {
    background: #ff4f58;
}
.colored_line div:nth-child(4n) {
    background: #ffb400;
}
.colored_line div:nth-child(5n) {
    background: #0bc5b7;
}
.header-sec nav.navbar {
    position: relative;
    z-index: 22;
    background: #fff !important;
    padding: 10px 0px 10px;
   
}
.header-sec .navbar-brand {
    padding: 0px;
    margin-right: 60px;
    width: 90px;
}
.header-sec .navbar-brand span {
    font-family: cursive;
    font-size: 30px;
}
.header-sec ul.navbar-nav li.nav-item a.nav-link {
    color: #00394f;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 18px;
    text-transform: uppercase;
}
.header-sec ul.navbar-nav li.nav-item a.nav-link.active {
    color: #23cc88;
}
.header-sec ul.navbar-nav li.nav-item.signinbtn a.nav-link {
    padding: 12px 31px;
    color: #fff;
    text-transform: uppercase;
    border-radius: 8px;
    font-weight: 700;
    transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    background-color: #ff9c00;
    background-image: linear-gradient(145deg, rgb(255, 79, 88) 0%, rgb(255, 180, 0) 100%);
    outline: 2px dashed #ff5453;
    outline-offset: 2px;
        text-align: center;
}
.header-sec ul.navbar-nav li.nav-item.signinbtn a.nav-link:hover {
    background: #00394f!important;
     outline: 2px dashed #00394f;
     transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
}
.header-sec ul.navbar-nav li.nav-item.signupbtn a.nav-link {
    padding: 12px 31px;
    color: #fff;
    text-transform: uppercase;
    border-radius: 8px;
    font-weight: 700;
    margin-left: 20px;
    transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    background-image: linear-gradient(145deg, rgb(35, 204, 136) 0%, rgb(142, 207, 53) 100%);
        outline: 2px dashed #2ccc81;
    outline-offset: 2px;
}
.header-sec ul.navbar-nav li.nav-item.signupbtn a.nav-link:hover {
     background: #00394f!important;
     outline: 2px dashed #00394f;
     transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
}
.dropdownprofile .nav-link img.img-fluid {
    width: 46px;
    height: 46px;
    border-radius: 100px;
    outline: 2px dashed #ff5453;
    outline-offset: 2px;
}
.dropdownprofile .nav-link::after {
    display: none;
}
.header-sec .dropdownprofile .dropdown-menu {
    position: absolute;
    margin: 15px 0px 0px 0px;
    padding: 0px 0px;
    left: auto;
    right: 0px;
    min-width: 185px;
    border-radius: 20px 20px 20px 20px;
    box-shadow: 0px 10px 30px rgb(0 0 0 / 20%);
    border: none;
    overflow: hidden;
    background: #ffffff;
}
.header-sec .dropdownprofile .dropdown-menu {
    margin: 6px 0px 0px 0px;
    padding: 0px;
    list-style: none;
}
.header-sec .dropdownprofile .dropdown-menu li a.dropdown-item.username {
    text-align: center;
    background: #00394f !important;
    color: #fff;
}
.header-sec .dropdownprofile .dropdown-menu li a {
    padding: 9px 19px;
    display: block;
    color: #000;
    border-bottom: 1px solid #ccc;
    font-size: 14px;
    font-weight: 400;
    background: none !important;
}
.header-sec .dropdownprofile .dropdown-menu li a .la {
    width: 20px;
    font-size: 17px;
    position: relative;
    top: 1px;
    margin-right: 8px;
}
.dropdownprofile a.nav-link.dropdown-toggle {
    padding: 0px !important;
}
.herobanner {
    padding: 150px 0px;
    position: relative;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    min-height: 500px;
}
.herobanner::before{
  content: "";
  position: absolute;
  background-image: url(../images/top.png);
  background-repeat: repeat-x;
  top: 0;
  width: 100%;
  height: 20px;
  z-index: 2;
}
.herobanner::after{
  content: "";
  position: absolute;
  background-image: url(../images/bottom.png);
  background-repeat: repeat-x;
  bottom: 0;
  width: 100%;
  height: 20px;
  z-index: 2;
}
.herobanner-text {
    max-width: 550px;
}
.herobanner-text h1 {
    color: #fff;
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 20px;
}
.herobanner-text h2 {
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 30px;
}
.btn.btn-info {
    background: #2ccc81;
    background-image: linear-gradient(145deg, rgb(35, 204, 136) 0%, rgb(142, 207, 53) 100%)!important;
    color: #fff !important;
    font-size: 16px;
    padding: 13px 28px;
    font-weight: 700;
    text-transform: uppercase;
    border: none !important;
    box-shadow: none !important;
    outline: 2px dashed #2ccc81 !important;
    outline-offset: 2px;
}
.btn.btn-info:hover {
    background: #00394f!important;
    outline: 2px dashed #00394f!important;
    transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
}
.btn.btn-info2:hover {
    background: #00394f!important;
    outline: 2px dashed #00394f;
    transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
}
.btn.btn-info2 {
    background: #2ccc81;
    background-image: linear-gradient(145deg, rgb(255, 79, 88) 0%, rgb(255, 180, 0) 100%)!important;
    color: #fff !important;
    font-size: 16px;
    padding: 13px 28px;
    font-weight: 700;
    text-transform: uppercase;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}
.herobanner-btn .btn.btn-info2 {
    margin-right: 20px;
}
.features-sec {
    padding: 100px 0px;
        position: relative
}
.shapes-cirlces {
    position: absolute;
    right: 0px;
    top: 50px;
}
.home-slider {
    position: absolute;
    bottom: 0px;
    width: 300px;
    left: 20px;
}
.heading {
    text-align: center;
   /* max-width: 600px;*/
    margin: 0px auto 60px;
}
.heading h2 {
    font-size: 36px;
    margin-bottom: 33px;
    color: #00394f;
    font-weight: 900;
    position: relative;
}
.heading .colored_line {
    position: absolute;
    left: 50%;
    bottom: -21px;
    width: 50%;
    transform: translateX(-50%) translateY(0%);
}
.heading p {
    font-size: 16px;
    line-height: 26px;
    color: #555555;
    margin-bottom: 0px;
    font-weight: 500;
}
.row.featuresrow {
    padding: 0px 80px;
}
.featurescard {
    padding: 45px 35px;
    box-shadow: 0px 0px 10px 0px rgba(136, 136, 136, 0.1);
    text-align: center;
    margin: 0px 10px;
    height: 100%;
    transition: 0.5s ease;
-webkit-transition: 0.5s ease;
-moz-transition: 0.5s ease;
}
.featurescard:hover {
    background: #c9f3e163;
    transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    box-shadow: 0px 0px 10px 0px rgb(136 136 136 / 29%);
}
.features-icon {
    width: 100px;
    height: 100px;
    display: inline-block;
    line-height: 50px;
    margin-bottom: 38px;
    border-radius: 50%;
    background-image: linear-gradient(145deg, rgb(35, 204, 136) 0%, rgb(142, 207, 53) 100%);
    box-shadow: 0px 18px 30px 0px rgba(38, 204, 133, 0.36);
    padding: 25px;
    outline: 2px dashed #2ccc81 !important;
    outline-offset: 2px;
}
.features2 .features-icon {
    background-image: linear-gradient(145deg, rgb(255, 79, 88) 0%, rgb(255, 180, 0) 100%);
    box-shadow: 0px 18px 24px 0px rgba(255, 114, 58, 0.36);
    outline: 2px dashed #ff5453 !important;
}
.features3 .features-icon{
    background-image: linear-gradient(145deg, rgb(1, 203, 173) 0%, rgb(71, 161, 242) 100%);
    box-shadow: 0px 18px 24px 0px rgba(1, 203, 173, 0.36);
    outline: 2px dashed #0cc4b8 !important;
}
.featurescard h3 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 43px;
    line-height: 27px;
    color: #00394f;
}
.featurescard h3::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    width: 80px;
    height: 4px;
    background-image: linear-gradient(145deg, rgb(35, 204, 136) 0%, rgb(142, 207, 53) 100%);
    margin: auto;
    bottom: -22px;
    box-shadow: 0px 18px 30px 0px rgba(38, 204, 133, 0.36);
}
.featurescard.features2 h3::after {
    background-image: linear-gradient(145deg, rgb(255, 79, 88) 0%, rgb(255, 180, 0) 100%);
    box-shadow: 0px 18px 24px 0px rgba(255, 114, 58, 0.36);
}
.featurescard.features3 h3::after {
    background-image: linear-gradient(145deg, rgb(1, 203, 173) 0%, rgb(71, 161, 242) 100%);
    box-shadow: 0px 18px 24px 0px rgba(1, 203, 173, 0.36);
}
.featurescard p {
    font-size: 16px;
    line-height: 26px;
    color: #555555;
    margin-bottom: 0px;
    font-weight: 500;
}
.howit-secbg {
    padding: 120px 0px 160px;
    position: relative;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    z-index: 1;
}
.howitbg {
  position: relative;
}
.howitbg::before {
    content: "";
    position: absolute;
    background-image: url(../images/top.png);
    background-repeat: repeat-x;
    top: 0;
    width: 100%;
    height: 20px;
    z-index: 2;
}
.howitbg::after {
    content: "";
    position: absolute;
    background-image: url(../images/bottom.png);
    background-repeat: repeat-x;
    bottom: 0;
    width: 100%;
    height: 20px;
    z-index: 2;
}
.howit-secbg::after {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #0000005e;
    z-index: -1;
}
.howit-secbg .heading h2 {
    color: #fff;
}
.howit-secbg .heading p {
    color: #fff;
}
.howitcard {
    text-align: center;
    padding: 60px 40px;
    background: #ffe9e4;
    border-radius: 50px;
    background-image: linear-gradient(145deg, rgb(35, 204, 136) 0%, rgb(142, 207, 53) 100%);
    box-shadow: 0px 18px 30px 0px rgba(38, 204, 133, 0.36);
    outline: 2px dashed #2ccc81 !important;
    outline-offset: 2px;
    transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
}
.howitcard:hover {
    transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    outline-offset: 0px !important;
    box-shadow: inset 0px 18px 24px 0px rgb(4 4 4 / 36%) !important;
}
.howitcard.howitcard2 {
    background-image: linear-gradient(145deg, rgb(255, 79, 88) 0%, rgb(255, 180, 0) 100%);
    box-shadow: 0px 18px 24px 0px rgba(255, 114, 58, 0.36);
    outline: 2px dashed #ff5453 !important;
}
.howitcard.howitcard3 {
    background-image: linear-gradient(145deg, rgb(1, 203, 173) 0%, rgb(71, 161, 242) 100%);
    box-shadow: 0px 18px 24px 0px rgba(1, 203, 173, 0.36);
    outline: 2px dashed #0cc4b8 !important;
}
.howitcard h3 {
    font-size: 23px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 27px;
    color: #fff;
}
.howitcard p {
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    margin-bottom: 0px;
    font-weight: 500;
}
.howit-icon {
    width: 100px;
    height: 100px;
    margin: 0px auto 21px;
    padding: 25px;
    background: #ffffff69;
    border-radius: 100px;
    line-height: 50px;
    outline: 2px dashed #ffffff !important;
    box-shadow: 0px 18px 30px 0px rgb(255 255 255 / 36%);
    transition: 0.5s ease;
-webkit-transition: 0.5s ease;
-moz-transition: 0.5s ease;
}
.howitcard:hover .howit-icon {
    outline-offset: 3px;
    transition: 0.5s ease;
-webkit-transition: 0.5s ease;
-moz-transition: 0.5s ease;
}
.howit-icon img.img-fluid {
    width: 51px;
    height: 51px;
    object-fit: scale-down;
}
.testimonials-sec {
    padding: 100px 0px 100px;
    position: relative;
}
.clientsecowl-desc {
    padding: 0px 235px 0px;
    text-align: center;
}
.item-img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    margin: 0px auto 20px;
}
.clientsecowl-desc ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}
.clientsecowl-desc ul li i.fa.fa-star {
    color: #ffa620;
    font-size: 18px;
    margin: 0px 3px 15px;
}
.item-img img.img-fluid {
    border-radius: 100px;
    height: 100px;
    object-fit: cover;
}
.clientsecowl-desc ul li {
    display: inline-block;
}
.item-desc h4 {
    font-size: 23px;
    font-weight: bold;
    color: #00394f;
    margin-bottom: 0px;
}
.clientsecowl-desc p {
    font-size: 18px;
    line-height: 26px;
    color: #555555;
    margin-bottom: 15px;
    font-weight: 500;
}
.testimonials-sec .owl-nav {
    display: block !important;
    text-align: center;
    margin-top: 00px;
}
.testimonials-sec .owl-nav .owl-prev {
  position: absolute;
  left: 90px;
  top: 50%;
  margin-top: -20px;
}
.testimonials-sec .owl-nav .owl-next {
  position: absolute;
  right: 90px;
  top: 50%;
  margin-top: -20px;
}
.testimonials-sec .owl-nav button {
    width: 40px;
    height: 40px;
    background-image: linear-gradient(145deg, rgb(35, 204, 136) 0%, rgb(142, 207, 53) 100%) !important;
    border-radius: 100px;
    color: #fff !important;
    font-size: 30px !important;
    margin: 0px 7px;
        outline: 2px dashed #2ccc81 !important;
    outline-offset: 2px;
}
.testimonials-sec .owl-nav button i.fa {
    position: relative;
    top: -2px;
}
.bg-right {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 200px;
    z-index: -1;
}
.bg-left {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 200px;
}
.pricingcol {
    transform: scale(.9);
}
.pricing-card {
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
    background: #fff;
        overflow: hidden;
    border-radius: 10px;
}
.pricing-header {
    padding: 30px 30px 40px;
    text-align: center;
    position: relative;
    background-size: cover !important;
    z-index: 1;
}
.pricing-header::after {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #0000005e;
    z-index: -1;
    border-radius: 10px 10px 0px 0px;
}
.pricing-header::before {
    content: "";
    position: absolute;
    background-image: url(../images/bottom.png);
    background-repeat: repeat-x;
    bottom: -2px;
    width: 100%;
    height: 20px;
    z-index: 2;
    left: 0px;
}
.pricing-header h2 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 900;
}
.pricing-header h3 {
    font-size: 38px;
    color: #4ecd66;
    margin: 0px;
    font-weight: 900;
}
.pricing-header h3 span {
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    color: #fff;
    margin-top: 6px;
    margin-left: 6px;
}
.pricing-features {
    margin: 20px 30px;
    position: relative;
}
.pricing-features ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.pricing-features ul li {
    margin: 0 auto;
    display: block;
    text-align: center;
    color: #555555;
    padding: 18px 0;
    border-bottom: 1px dashed #00394f;
    font-size: 16px;
}
.pricing-features ul li .la-check {
    color: green;
}
.pricing-features ul li .la-close {
    color: red;
}
.pricing-features ul li i {
    margin-right: 10px;
    position: relative;
    top: 2px;
}
.purchase-pricing {
    text-align: center;
    padding-bottom: 25px;
}
.purchase-pricing .btn.btn-info {
    padding: 13px 50px;
}
.pricingcol:nth-child(2) .btn.btn-info {
    background-image: linear-gradient(145deg, rgb(255, 79, 88) 0%, rgb(255, 180, 0) 100%)!important;
    outline: 2px dashed #ff5453 !important;
}
.pricingcol:nth-child(2) .btn.btn-info:hover {
        background: #00394f !important;
    outline: 2px dashed #00394f !important;
}
.pricing-card:hover .btn.btn-info {
    background: #00394f !important;
    outline: 2px dashed #00394f !important;
}
.pricingcol:nth-child(2) {
    transform: scale(1.1);
}
.pricing-sec .heading {
    margin-bottom: 90px;
}
.pricing-sec {
    padding: 100px 0px 80px;
    position: relative;
}
.howitbg2 {
    margin-top: -120px;
    z-index: 2;
    position: relative;
}
.pen-image {
    position: absolute;
    right: 30px;
    top: 200px;
}
.footersec::before {
    content: "";
    position: absolute;
    background-image: url(../images/top.png);
    background-repeat: repeat-x;
    top: 0;
    width: 100%;
    height: 20px;
    z-index: 2;
}
.footersec::after {
    content: "";
    position: absolute;
    background-image: url(../images/bottom.png);
    background-repeat: repeat-x;
    bottom: 0;
    width: 100%;
    height: 20px;
    z-index: 2;
}
.footerabout .logo {
    display: inline-block;
    width: 90px;
    margin-bottom: 20px;
}
.footerabout .logo img.img-fluid {
    filter: brightness(0) invert(1);
}
.footerlink ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.footerabout p {
    color: #fff;
    font-size: 15px;
    margin-bottom: 20px;
}
.footerabout ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.footerabout ul li {
    display: inline-block;
}
.footerabout ul li a {
    display: block;
    margin-right: 10px;
}
.footerlink {
    padding-left: 40px;
}
.footerabout ul li a .fa {
    width: 47px;
    height: 47px;
    border-radius: 100px;
    line-height: 47px;
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    box-shadow: 0px 18px 24px 0px rgba(255, 114, 58, 0.36);
    outline-offset: 1px;
    background-image: linear-gradient(145deg, rgb(35, 204, 136) 0%, rgb(142, 207, 53) 100%);
    outline: 2px dashed #2ccc81 !important;
}
.footerabout ul li a .fa.fa-facebook:hover {
    background-image: linear-gradient(145deg, rgb(24 119 242) 0%, rgb(10 73 153) 100%);
    outline: 2px dashed #fff !important;
}
.footerabout ul li a .fa.fa-twitter:hover {
    background-image: linear-gradient(145deg, rgb(29 161 242) 0%, rgb(7 104 164) 100%);
    outline: 2px dashed #fff !important;
}
.footerabout ul li a .fa.fa-instagram:hover {
    background-image: linear-gradient(145deg, rgb(228 64 95) 0%, rgb(151 11 37) 100%);
    outline: 2px dashed #fff !important;
}
.footerabout ul li a .fa.fa-linkedin:hover {
    background-image: linear-gradient(145deg, rgb(10 102 194) 0%, rgb(8 81 155) 100%);
    outline: 2px dashed #fff !important;
}
.footersec h2 {
    color: #fff;
    font-size: 22px;
    margin: 0px 0px 17px;
    position: relative;
    font-weight: 700;
}
.footerlink ul a {
    color: #fff;
    font-size: 15px;
    display: block;
    margin-bottom: 10px;
}
.footercontact .inputgroup .form-control {
    height: 50px;
    border: none;
    border-radius: 8px;
    background-color: #ffffff;
    text-align: left;
    padding: 10px 15px 10px 15px;
    color: #000;
    box-shadow: none !important;
    outline: 2px dashed #ffffff !important;
    outline-offset: 2px;
}
.footercontact .inputgroup .btn.btn-info {
    width: 100%;
    margin-top: 20px;
}
.footersec {
    background: #304566;
    padding-top: 110px;
    position: relative;
}
.footersec .colored_line {
    position: absolute;
    top: 29px;
    width: 100%;
}
.copyright p {
    margin: 0px;
    color: #fff;
    font-size: 16px;
}
.copyright p a {
  color: #fff;
}
.copyright {
    padding: 20px 0px 33px;
    margin-top: 20px;
    position: relative;
}
.copyright ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
    text-align: right;
}
.copyright ul li {
    display: inline-block;
    margin-left: 20px;
}
.copyright ul li a {
    color: #fff;
    font-size: 16px;
}
.copyright .colored_line.colored_line2 {
    top: -8px;
}
.footercont ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.footercont ul li {
    color: #fff;
    font-size: 15px;
    display: block;
    margin-bottom: 14px;
}
.footercont ul li .fa {
    width: 38px;
    height: 38px;
    border-radius: 100px;
    line-height: 38px;
    font-size: 15px;
    color: #ffffff;
    text-align: center;
    background-image: linear-gradient(145deg, rgb(255, 79, 88) 0%, rgb(255, 180, 0) 100%);
    box-shadow: 0px 18px 24px 0px rgba(255, 114, 58, 0.36);
    outline: 2px dashed #ff5453 !important;
    outline-offset: 1px;
    margin-right: 16px;
}


.pagespace {
    padding: 100px 0px;
        position: relative;
}
.loginimg {
    position: absolute;
    left: 0px;
    bottom: 0px;
}
.loginimg2 {
    position: absolute;
    right: 0px;
    bottom: 0px;
}
.loginleft {
    box-shadow: 0px 18px 24px 0px rgb(197 197 197 / 36%);
    border-radius: 20px;
    padding: 50px;
    position: relative;
    max-width: 600px;
    margin: 0px auto;
}
.form-design .form-group .form-control {
    padding: 15px 25px;
    border: 1px solid #ababab !important;
    background-color: #fff !important;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 8px;
    font-size: 16px;
    color: #000;
}
.form-design .form-group label {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #000;
}
.form-design .form-group {
    margin-bottom: 20px;
}
.form-design h2 {
    text-align: center;
    color: #000;
    font-size: 28px;
    margin-bottom: 40px;
}
.forgotpassword {
    text-align: center;
}
.passwordshow {
    position: relative;
}
.passwordshow .fa {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    color: #7e7979;
}
.forgotpassword a {
    color: #23cc88;
    font-size: 16px;
    font-weight: 500;
}
.width100 {
    width: 100%;
}
.dontaccount {
    text-align: center;
    margin: 0px !important;
}
.dontaccount p {
    color: #555555;
    margin: 0px;
    font-size: 16px;
}
.dontaccount p a {
    color: #23cc88;
    font-weight: 500;
}
.selectoption {
    display: flex;
    margin: 0px -15px;
    margin-bottom: 30px;
}
.selectoption .form-check {
    width: 50%;
    padding: 0px 15px;
}
.selectoption .form-check .form-check-label {
    position: relative;
    margin: 0px;
    display: block;
}
.selectoption .form-check .form-check-label input {
    display: none;
}
.selectoption .form-check .form-check-label span {
    display: block;
    text-align: center;
    border-radius: 8px;
    background-image: linear-gradient(145deg, rgb(118 118 118) 0%, rgb(210 210 210) 100%) !important;
    outline: 2px dashed #808080 !important;
    outline-offset: 2px;
    color: #fff;
    padding: 20px;
    font-size: 18px;
    font-weight: 700;
        cursor: pointer;
}
.selectoption .form-check .form-check-label input:checked~span {
    background-image: linear-gradient(145deg, rgb(255, 79, 88) 0%, rgb(255, 180, 0) 100%) !important;
    outline: 2px dashed #ff5453 !important;
}
.breadcrumbsec {
    background: #304566;
    padding: 50px 0px;
    position: relative;
}
.breadcrumbsec::before {
    content: "";
    position: absolute;
    background-image: url(../images/top.png);
    background-repeat: repeat-x;
    top: 0;
    width: 100%;
    height: 20px;
    z-index: 2;
}
.breadcrumbsec::after {
    content: "";
    position: absolute;
    background-image: url(../images/bottom.png);
    background-repeat: repeat-x;
    bottom: 0;
    width: 100%;
    height: 20px;
    z-index: 2;
}
.breadcrumbsec .row {
    align-items: center;
}
.pagetitle h2 {
    font-size: 27px;
    margin-bottom: 0px;
    color: #ffffff;
    font-weight: 800;
}
.breadcrumbright ol.breadcrumb {
    justify-content: end;
    margin: 0px;
    padding: 0px;
}
.breadcrumbright ol.breadcrumb li.breadcrumb-item {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}
.breadcrumbright ol.breadcrumb li.breadcrumb-item a {
    color: #fff;
}
.breadcrumbright ol.breadcrumb li.breadcrumb-item::before {
    color: #fff;
}
.form-design .form-group label a {
    color: #23cc88;
    font-weight: 500;
}
.emailverification .heading h2 {
    margin-bottom: 28px;
}
.emailverification .heading {
    margin-bottom: 30px;
}
.alert {
    padding: 10px 15px !important;
    font-size: 14px;
}
.emailverification .alert {
    max-width: 600px;
    margin: 0px auto 20px;
    text-align: center;
}







/*about*/
.aboutpage {
    padding: 100px 0px;
    position: relative;
}
.aboutpage-left .heading {
    text-align: left;
    margin-bottom: 0px;
}
.aboutpage-left .heading h2 span {
    display: block;
    font-size: 20px;
    margin-bottom: 9px;
    color: #ff4f58;
}
.aboutpage-left .heading .colored_line {
    transform: translateX(0%) translateY(0%);
    left: -4px;
}
.aboutpage-left .heading p {
    margin-bottom: 20px;
}
.aboutpage-left ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.aboutpage-left ul li {
    position: relative;
    font-size: 16px;
    line-height: 26px;
    color: #555555;
    font-weight: 500;
    min-height: 22px;
    padding-left: 35px;
    margin-bottom: 6px;
}
.aboutpage-left ul li .la-check {
    position: absolute;
    left: 0px;
    top: 2px;
    width: 22px;
    height: 22px;
    background: #ff4f58;
    border-radius: 100px;
    color: #fff;
    text-align: center;
    line-height: 23px;
    font-size: 13px;
}
.aboutpage .row {
    align-items: center;
}
.vision-sec .row.featuresrow {
    padding: 0px;
}
.vision-sec .featurescard {
    height: auto;
}
.faq-sec {
    padding: 100px 0px;
}
.faq-sec .card {
    border: none;
    background: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0px;
}
.faq-sec .card .card-header {
    border: none;
    background: none !important;
    padding: 0px;
}
.faq-sec .card .card-header a.btn {
    display: block;
    padding: 20px 50px 20px 0px;
    text-align: left;
    font-size: 16px;
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    color: #00394f;
    font-weight: 700;
}
.faq-sec .card .card-header a.btn::after {
    content: "\f106";
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    text-align: center;
    line-height: 18px;
    position: absolute;
    right: 20px;
    top: 22px;
    color: #000;
    font-size: 20px;
}
.faq-sec .card .card-body {
    padding: 20px 0px;
    font-size: 16px;
    line-height: 26px;
    color: #555555;
    margin-bottom: 0px;
    font-weight: 500;
}
.faq-sec .card .card-header a.collapsed.btn::after {
    content: "\f107";
}
.vision-sec {
    position: relative;
}
.visionicona {
    position: absolute;
    right: 0px;
    top: 50px;
    z-index: -1;
}
.visioniconb {
    position: absolute;
    left: 0px;
    bottom: -300px;
    width: 150px;
}
.contactpage {
    padding: 100px 0px;
}
.contactpage-left {
    padding-right: 40px;
}
.content-design h2 {
    font-size: 21px;
    font-weight: 500;
    color: #00394f;
    margin: 30px 0px 15px 0px;
}
.content-design p {
    font-size: 16px;
    color: #555555;
    font-weight: 500;
    line-height: 26px;
    margin-bottom: 18px;
}
.content-design ul li {
    font-size: 16px;
    color: #555555;
    font-weight: 500;
    line-height: 26px;
    margin-bottom: 10px;
}
.contactpage .heading h3 {
    font-size: 16px;
    margin: 20px 0px 0px 0px;
    color: #00394f;
    font-weight: 900;
}



/*offersec*/

.offersec {
    padding: 100px 0px 0px;
    position: relative;
}
.offer-card h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 14px;
    line-height: 27px;
    color: #00394f;
}
.offer-card {
    box-shadow: 0px 0px 10px 0px rgba(136, 136, 136, 0.1);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    position: relative;
    padding-left: 73px;
}
.offer-card p {
    font-size: 16px;
    line-height: 26px;
    color: #555555;
    margin-bottom: 0px;
    font-weight: 500;
}
.offera {
    background-color: rgb(255 233 228);
        margin-left: 10%;
}
.offerb {
   background-color: rgb(237 234 255);
       margin-left: 20%;
}
.offerc {
    background-color: rgb(255 243 216);
        margin-left: 30%;
}
.offerd {
    background-color: rgb(222 253 250);
        margin-left: 40%;
}
.offere {
    background-color: rgb(253 222 251);
        margin-left: 50%;
}
.offer-card span {
    position: absolute;
    left: -50px;
    width: 100px;
    height: 100px;
    box-shadow: 0px 0px 10px 0px rgba(136, 136, 136, 0.1);
    border-radius: 100px;
    text-align: center;
    top: 50%;
    margin-top: -50px;
    outline: 2px dashed #f96747 !important;
    background: #f9ac9b;
    outline-offset: 2px;
    color: #fff;
    font-size: 50px;
    line-height: 100px;
    font-weight: 600;
}
.offer-card.offerb span {
    outline: 2px dashed #6d53ff !important;
    background: #b5a8ff;
}
.offer-card.offerc span {
    outline: 2px dashed #ffc543 !important;
    background: #ffe2a1;
}
.offer-card.offerd span {
    outline: 2px dashed #48ffed !important;
    background: #a1fff6;
}
.offer-card.offere span {
    outline: 2px dashed #ff40f3 !important;
    background: #ffa5f9;
}
.offersec-img {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 500px;
}
.whatweaboutus {
    padding: 0px 0px 60px;
}

/*offersec*/

.offersec.welcomepageoffersec {
padding-bottom: 100px;
}





