html, body{
font-family: 'Quicksand', 'Heebo', sans-serif;

}

.ft-logo img {
    width: 74%;
}
.ms_shadow:hover {
    background: #fb775a;
}


i.fa.fa-caret-left {
    position: absolute;
    left: -20px;
    color: #fb775a;
    font-size: 32px;
}

.carousel-control-next, .carousel-control-prev {
    width: 0;
}



i.fa.fa-caret-right {
    color: #fb775a;
    position: absolute;
    right: -21px;
    font-size: 32px;
    opacity: 1!important;
}

.fw-600{
    font-weight:600;
}

h1,h2,h3,h4,h5,h6{
font-weight:600;    
}



h3.class2:hover

{
    
color:white;    
}



#scroll-button {
            position: absolute;
            bottom: 20px;
            right: 20px;
            cursor: pointer;
        }
        
        .chevsize
{
    font-size:12px;
}

/* Directly define variables using :root */
:root {
  --orange: #fb775a;
  --blue: #71cde8;
  --blue-font: #363352;
}

html {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

.color-pink{
color:#fb775a;
}

.bg-pink{
background:#fb775a;
}

.bg-one{
background:#fb775a;
}

.new-icon:hover {
    background: #f3765b29;
}

.new-icon {
    cursor:pointer;
    border-radius:5px;
}

a:hover{
    text-decoration:none;
}

.bg-teal{
    box-shadow:1px 1px 10px #00000047;
}


.color-one{
  color:#363352;
}


.color-one{
  color:#363352;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #fb775a;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #71cde8;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 0px 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow:0px 2px 15px rgb(41 41 41 / 10%);
}

#header.header-transparent {
  background: white;
}

#header.header-scrolled {
  background:white;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 30px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #71cde8;
  text-decoration: none;
}

#header .logo img {
  margin: 0;
  max-height: 36px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  
  font-size: 15px;
  color: #47536e;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #71cde8;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #71cde8;
  color: #fff;
  padding: 12px 25px;
  margin-left: 30px;
  color: #fff;
  line-height: 1;
  border-radius: 50px;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  background: #fb775a;
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 163px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #71cde8;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
  border-radius: 1em;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #47536e;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(51, 60, 79, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 6px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #47536e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #71cde8;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #71cde8;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/



.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    border-radius: 5px;
    color: white;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
}


.nav-link:focus, .nav-link:hover {
  color: #fb775a;
}
.nav-link {
    color: #fb775a;
    font-weight: 500;
}



#hero {
  width: 100%;
  position: relative;
  overflow: hidden;
  height:100vh;
}




#hero h1 {
  font-size: 39px;
  font-weight: 600;
  color: #363352;
}

#hero h2 {
  color: #515f7d;
  margin-bottom: 27px;
  font-size: 20px;
}

#hero .download-btn {
  
  font-weight: 500;
  font-size: 15px;
  display: inline-block;
  padding: 8px 24px 10px 46px;
  border-radius: 3px;
  transition: 0.5s;
  color: #fff;
  background: #47536e;
  position: relative;
}

#hero .download-btn:hover {
  background: #71cde8;
}

#hero .download-btn i {
  font-size: 20px;
  position: absolute;
  left: 18px;
  top: 8.5px;
}

#hero .download-btn+.download-btn {
  margin-left: 20px;
}

@media (max-width: 991px) {
  #hero {
    text-align: center;
  }

  #hero .download-btn+.download-btn {
    margin: 0 10px;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 60%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
  }
}


}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding-top: 32px;
  overflow: hidden;
}

.section-bg {
  background-color: #f2f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #71cde8;
  
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background-color: #f6f8fb;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# App Features
--------------------------------------------------------------*/
.features .content {
  padding: 30px 0;
}

.features .content .icon-box {
  margin-top: 25px;
}

.features .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .content .icon-box i {
  font-size: 48px;
  float: left;
  color: #71cde8;
}

.features .content .icon-box p {
  font-size: 15px;
  color: #979aa1;
  margin-left: 60px;
}

@media (max-width: 991px) {
  .features .image {
    text-align: center;
  }

  .features .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .features .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Details
--------------------------------------------------------------*/
.details .content+.content {
  margin-top: 100px;
}

.details .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: #47536e;
}

.details .content ul {
  list-style: none;
  padding: 0;
}

.details .content ul li {
  padding-bottom: 10px;
}

.details .content ul i {
  font-size: 24px;
  padding-right: 2px;
  color: #71cde8;
  line-height: 0;
}

.details .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-slide {
  transition: 0.3s;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #71cde8;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #71cde8;
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    border: 6px solid #71cde8;
    padding: 4px;
    background: #fff;
    z-index: 1;
    transform: scale(1.2);
    margin-top: 10px;
    border-radius: 25px;
  }
}



/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #fff;
  text-align: center;
}

.pricing h3 {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 28px;
}

.pricing h4 {
  font-size: 46px;
  color: #71cde8;
  font-weight: 400;
  
  margin-bottom: 25px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding-bottom: 12px;
}

.pricing ul i {
  color: #71cde8;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .get-started-btn {
  background: #47536e;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 20px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  
  transition: 0.3s;
}

.pricing .get-started-btn:hover {
  background: #71cde8;
}

.pricing .featured {
  z-index: 10;
  margin: -30px -5px 0 -5px;
}

.pricing .featured .get-started-btn {
  background: #71cde8;
}

.pricing .featured .get-started-btn:hover {
  background: #fb775a;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .accordion-list {
  padding: 0 100px;
}

.faq .accordion-list ul {
  padding: 0;
  list-style: none;
}

.faq .accordion-list li+li {
  margin-top: 15px;
}

.faq .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .accordion-list a {
  display: block;
  position: relative;
  
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .accordion-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #b1c0df;
}

.faq .accordion-list .icon-show,
.faq .accordion-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .accordion-list .icon-show {
  display: none;
}

.faq .accordion-list a.collapsed {
  color: #343a40;
}

.faq .accordion-list a.collapsed:hover {
  color: #71cde8;
}

.faq .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .accordion-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  padding: 20px 40px;
  background: #f1f3f6;
  color: #47536e;
  text-align: center;
  border: 1px solid #fff;
}

.contact .info i {
  font-size: 48px;
  color: #9fb2d8;
  margin-bottom: 15px;
}

.contact .info h4 {
  padding: 0;
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  
}

.contact .info p {
  font-size: 15px;
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form label {
  
  margin-bottom: 5px;
  color: #8a8c95;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #71cde8;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #fff;
  border: 2px solid #71cde8;
  padding: 10px 24px;
  color: #71cde8;
  transition: 0.4s;
  border-radius: 50px;
  margin-top: 5px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #71cde8;
  color: #fff;
}

@media (max-width: 1024px) {
  .contact .php-email-form {
    padding: 30px 15px 15px 15px;
  }
}

@media (max-width: 768px) {
  .contact .php-email-form {
    padding: 15px 0 0 0;
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.border-left {
    border-left: 1px solid #ffffff2e!important;
}


#footer {
  background: #fff;
  padding: 0 0 30px 0;
  color: #47536e;
  font-size: 14px;
  background: #eff2f8;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #eff2f8;
  text-align: center;
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #47536e;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #71cde8;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #415f9d;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  color: #47536e;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  
  color: #8a8c95;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #47536e;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #9fb2d8;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #8a8c95;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #71cde8;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #71cde8;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #27282c;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  float: left;
  color: #47536e;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #47536e;
}

@media (max-width: 768px) {

  #footer .copyright,
  #footer .credits {
    float: none;
    text-align: center;
    padding: 5px 0;
  }
}


/* mycss */

.btn-secondary.focus, .btn-secondary:focus {
    color: #fff;
    background-color: #79d3e5;
    border-color: #79d3e5;
    box-shadow: 0 0 0 0.2rem rgba(130,138,145,.5);
}

.btn-secondary:hover {
    color: #fff;
    background-color: #79d3e5;
    border-color: #79d3e5;
}

.btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show>.btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #79d3e5;
    border-color: #79d3e5;
}

.cbtn{
    color:#79d3e5;
}

.icocls{    margin-top: -7px;
    padding-bottom: 8px;
    font-weight:600;
    
}
.jumbotron {
    background-color: white;
     border-radius: 0rem; 
}


.visibility-hidden{
    visibility:hidden;
}
.mybrdr{
    margin: auto 8px;
    cursor:pointer;
    border-radius: 8px;
    display: block;
    background: #fff3f3;
    }
 
 .mybtnlnk a {
    color: #fb775a;
}
    
    
    .mybrdr:hover {
    background: #fee1db;
}


    
span.myspan
{
color:#fb775a;  
}
/* /mycss */



/* tabs */
/*DEMO ONLY*/

.service-categories {
  padding-top: 3em;
  padding-bottom: 3em;
  background-size: cover;
}


/*DEMO ONLY*/

.service-categories .card {
  transition: all 0.3s;
}


.card{
  border:none;
}

.service-categories .card-title {
  padding-top: 0.5em;
}

.service-categories a:hover {
  text-decoration: none;
}



.service-card {
  background: #5d727c;
  border: 0;
}

.service-card:hover {
  background: rgba(72, 88, 104, 1);
  box-shadow: 2px 4px 8px 0px rgba(46, 61, 73, 0.2)
}

.fa {
  color: white;
}
/* /tabs */

/* about card */
.mycardimg
{
  max-width: 50%;
}


.card-title{
text-align:center;
}

.mcard-border {
  border-left: 1px solid #fb775a;
  border-right: 1px solid #fb775a;
  margin-left: -16px;
  margin-right: -16px;
}

.btn-cta{
  background: linear-gradient(180deg, #36c0e9 19.66%, #118cb1 91.13%);
  color: white;
  border-radius: 50px;
  border: 2px solid white;
  padding: 0.4em 1.3em;
  font-size: 1.2em;
}

.btn:hover {
  color: white;
  text-decoration: none;
}


.mycardimg2{
  max-width: 87%;
} 


.sec3 {
  border: 1px solid #029794;
  border-radius: 22px;
  padding: 3em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.quote-btn {
    background: #fb775a;
    color: white;
    font-size: 16px;
    border-radius: 0em 0.4em 0.4em 0em;
    height: 45px;
    padding: 0em 1.7em;
    font-weight: 300;
    border:none;
}
button.btn.btn-large.quote-btn:hover {
  color: white;
  background: #71cde8;
}



.fc-inpt {
    width: 290px!important;
    height: 45px!important;
    font-size: 17px!important;
    border-radius: 0.4em 0em 0em 0.4em!important;
box-shadow:0 0 1px rgba(42,41,40,.2), 0 2px 6px rgba(42,41,40,.08)!important;
    padding-left: 30px!important;
    padding: 6px 9px 13px 19px!important;
    color: #757575!important;
}

.fc-inpt2{
  width: 170px!important;
  height: 52px!important;
  font-size: 1.2em!important;
  border-radius: 0!important;
  /* border-left: 1px solid #019895!important; */
  border-top: 1px solid #019895!important;
  border-bottom: 1px solid #019895!important;

}




.mcard-review{

}
.form-control {
  border: none; 
}
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #fb775a;
  outline: 0;
  box-shadow: 0 0 0 0.01rem rgb(1 155 152);
}

.mycar-rev
{
  max-width: 48%;
}

.signup {
    
    font-weight:600;
    padding: 5px 10px 3px 14px;
    border: 1px solid var(--blue-font);
  border-radius: 30px;
}






.user-sing
{
  border-radius: 30px;
  margin-left: 9px;
}

.mycard-testimonial{
  border-left: 2px solid #fb775a;
    border-radius: 1em;
    border-right: 2px solid #fb775a;
    box-shadow: 2px 7px 0px -2px #fb775a;
padding:1em;

  }

@media screen and (min-width:768px){
  .card-testimonial{
    height: 22rem;
  }
}
 /* /about card */
 .shadow-effect {
  background: #fff;
  padding: 20px;
  border-radius: 4px;
  text-align: center;
border:1px solid #ECECEC;
  box-shadow: 0 19px 38px rgba(0,0,0,0.10), 0 15px 12px rgba(0,0,0,0.02);
}
#customers-testimonials .shadow-effect p {
  
  font-size: 17px;
  line-height: 1.5;
  margin: 0 0 17px 0;
  font-weight: 300;
}
.testimonial-name {
  margin: -17px auto 0;
  display: table;
  width: auto;
  background: #7033f1;
  padding: 9px 35px;
  border-radius: 100px;
  text-align: center;
  color: #fff;
  box-shadow: 0 9px 18px rgba(0,0,0,0.12), 0 5px 7px rgba(0,0,0,0.05);
}
#customers-testimonials .item {
  text-align: center;
  padding: 50px;
  margin-bottom:80px;
  opacity: .2;
  transform: scale3d(0.8, 0.8, 1);
  transition: all 0.3s ease-in-out;
}
#customers-testimonials .owl-item.active.center .item {
  opacity: 1;
  transform: scale3d(1.0, 1.0, 1);
}
.owl-carousel .owl-item img {
  height:11em;
  transform-style: preserve-3d;
  max-width: 500px;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
  background: #3190E7;
  transform: translate3d(0px, -50%, 0px) scale(0.7);
}
#customers-testimonials.owl-carousel .owl-dots{
display: inline-block;
width: 100%;
text-align: center;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot{
display: inline-block;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
  background: #3190E7;
  display: inline-block;
  height: 20px;
  margin: 0 2px 5px;
  transform: translate3d(0px, -50%, 0px) scale(0.3);
  transform-origin: 50% 50% 0;
  transition: all 250ms ease-out 0s;
  width: 20px;
}

 /* /sider */

 /* common */
 
 
 

.bg-or{
    background:#fb775a;
}

 .fa-star {
     color:gray;
 }

 span.fa.fa-star.checked {
    color: #fb775a;
}

 
 .btn-secondary{
     border:none;
 }
 .card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-height: 1px;
    padding: 0.5rem 0rem 0rem 0rem;
}

 
   /* Hide the default dropdown arrow */
    select::-ms-expand,
    select::-ms-value {
        display: none;
    }
    
    select {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        padding-right: 20px; /* Add some right padding for the arrow space */
        background: url('your_custom_arrow_image.png') no-repeat right center; /* Replace with the path to your custom arrow image */
    }
    
    .nav-pills .nav-link {
    font-weight: 600;
}
 
 .ofr {
    color: #363352;
    display: flex;
    justify-content: center;
    /* background: #085364; */
    border-radius: 0 0 8px 8px;
    margin-top: 5px;
    font-size: 1.0em;
    font-weight: 600;
}
 .multisteps-form__content > .row 
 
 {
     display:block;
     justify-content:center;
     align-items:center;
     
 }
 input[type=checkbox], input[type=radio] {
    display: none;
}


 .md-flex{
     display:flex;
     justify-content:center;
     align-items:center;
 }
 .cptr{
     cursor:pointer;
 }
 
 .ofrbg {
  /*background: #009c98;*/
  padding: 0em 1em 0em 1em;
  border-radius: 0em 0em 1em 1em;
}

.ofrbg2 {
  padding: 0.5em;
  border-radius: 1em 1em 0em 0em;
}


.ms_shadow {
    box-shadow:1px 1px 4px #00000045;
    background: #71cde8;
}

 .navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover>a {
  color: #71cde8;
  text-decoration: none;
  border-left: 2px solid #71cde8;
}
 
.navbar a, .navbar a:focus {
  transition: none;
}
 .navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover>a {
  color: #71cde8;
text-decoration: none;
}

.navbar li a {
  position: relative;
  text-decoration: none;
}
 /* /common */

 /* footer */
.footer-02{background:#363352;}

.footer-heading{
  color: white;
}


input.form-control.input-lg {
  height: 3em;
  border-radius: 5em 0em 0em 5em;
  border: 1px solid #71cde8;
}

form.form-subscribe {
  margin-top: -24px;
}



.btn-sub{
color: white;
  border-radius: 0em 3em 3em 0em;
  background: #71cde8;
  border: 1px solid #71cde8;
}


.btn-sub:hover{
  color: white;
    border-radius: 0em 3em 3em 0em;
    background: #71cde8;
    border: 1px solid #71cde8;
  }

  .ft-logo img {
    max-width: 80%;
}

button.btn.btn-sub.btn-lg:active {
  background: #71cde8;
  color: white;
  border: 1px solid #71cde8;
}




.card-img-top {
    filter: invert(1);
    width: 74%;
    padding: 0.3em;
}

/* /footer */


/* cta */
.clearfix {
  clear: both;
  }
  
  #contact-cta-section {
  padding-top: 37px;
  padding-bottom: 40px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  padding: 75px 0 10px 0;
  float: left;
  width: 100%;
  text-align: center; 
  }
  
  .wrapper-full {
    position: relative;
  margin: 0 auto;
  }
  .cta-wrapper {

  margin-bottom: 0;
  text-align: left;
  padding: 28px;
  background-color: #363352;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  }
  .cta-wrapper .details-wrapper {
  float: left;
  }
  .cta-wrapper .details-wrapper h2 {
    font-weight: 700;
    margin: 0 0 4px 0;
    color: #FFF;
    font-size: 2em;
}
  .cta-wrapper .details-wrapper p {
  font-size: 18px;
  color: #FFF;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  
  .cta-wrapper .blue-cta-button {
  
    text-transform: uppercase;
    background-color: #93CC76;
    color: #FFF;
    letter-spacing: 0.1em;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    white-space: pre;
    margin: 31px 0 25px 0;
    float: left;
    margin: 0;
    color: #fb775a;
    background-color: #FFF;
    padding: 10px;
    
    text-align: center;
    height: 2.8em;

  }
    
  
  .cta-input{
    height: 3em;
  }

  .map{
    max-width: 80%;
  }
/* /cta */


/* blog */


.gtco-testimonials {
  position: relative;
  margin-top: 30px;
}
.gtco-testimonials .owl-stage-outer {
  padding: 30px 0;
}
.gtco-testimonials .owl-nav {
  display: none;
}
.gtco-testimonials .owl-dots {
  text-align: center;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.gtco-testimonials .owl-dots span {
  position: relative;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  display: block;
  background: #fff;
  border: 2px solid #71cde8;
  margin: 0 5px;
}
.gtco-testimonials .owl-dots .active {
  box-shadow: none;
}
.gtco-testimonials .owl-dots .active span {
  background: #71cde8;
  box-shadow: none;
  height: 12px;
  width: 12px;
  margin-bottom: -1px;
}
.gtco-testimonials .card {
  background: #fb775a;

  box-shadow: 0 8px 30px -7px #c9dff0;
  margin: 0 20px;
  border-radius: 20px;
  border: 0;
}
.gtco-testimonials .card .card-img-top {
  max-width: 100px;
  border-radius: 50%;
  margin: 15px auto 0;
  box-shadow: 0 8px 20px -4px #95abbb;
  width: 100px;
  height: 100px;
}
.gtco-testimonials .card h5 {
  color: #01b0f8;
  font-size: 21px;
  line-height: 1.3;
}
.gtco-testimonials .card h5 span {
  font-size: 18px;
  color: #666;
}
.gtco-testimonials .card p {
  font-size: 14px;
  color: white;
}
.gtco-testimonials .active {
  opacity: 0.5;
  transition: all 0.3s;
}
.gtco-testimonials .center {
  opacity: 1;
}
.gtco-testimonials .center h5 {
  font-size: 24px;
}
.gtco-testimonials .center h5 span {
  font-size: 20px;
}
.gtco-testimonials .center .card-img-top {
  max-width: 100%;
  height: 120px;
  width: 120px;
}
@media (max-width: 767px) {
  .gtco-testimonials {
    margin-top: 20px;
 }
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
  outline: 0;
}
.owl-carousel button.owl-dot {
  outline: 0;
}


/* next */
.bradius{
  border-radius:8px ;
}

/* body {
background-color:  #eee;
}
 */

.title {

  margin-bottom: 50px;
  text-transform: uppercase;
}
.mycard{
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}


@media screen and (max-width:768px){
.res-p{
    padding:1em;
}
.restext-center{
 text-align:center;   
}

  .mycard{
 margin: 1em;
display: block;
}}
.card-subtitle {
  color: white;
  font-size: 1.25em;
  text-align: left;
  padding-right:10px;
}
.row.m-0 {
  border: 1px solid gray!important;
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 0; */
}


.card-block {
  font-size: 1em;
  position: relative;
  margin: 0;
  border: none;
  box-shadow: none;
   
}
.card {
  font-size: 1em;
  overflow: hidden;
  padding: 5;
  border: none;
  border-radius: .28571429rem;
  margin-top:20px;
}

.carousel-indicators li {
  border-radius: 12px;
  width: 12px;
  height: 12px;
  background-color: #404040;
}
.carousel-indicators li {
  border-radius: 12px;
  width: 12px;
  height: 12px;
  background-color: #404040;
}
.carousel-indicators .active {
  background-color: white;
  max-width: 12px;
  margin: 0 3px;
  height: 12px;
}
.carousel-control-prev-icon {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
}

.carousel-control-next-icon {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") !important;
}



/* /blog */



.card {
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* custom select */


select option {
  background: #fb775a; 
  color: #fff; 
  box-shadow: inset 20px 20px #fb775a;
  font-size:16px;
} 


/* /custom select */




/*changes*/

.hero-img {
    max-width: 72%;
    position: absolute;
    right: 0;
    top: 5px;
}

.quote-btn-center {
    background: #fb775a;
    color: white;
    font-size: 1.4em;
    border-radius: 0em 0.4em 0.4em 0em;
    height: 55px;
    padding: 0em 0.8em;
}

.fc-inpt-center {
    width: 359px!important;
    height: 55px;
    font-size: 20px;
    border-radius: 0.4em 0em 0em 0.4em;
    box-shadow: 0 0 1px rgba(42,41,40,.2), 0 2px 6px rgba(42,41,40,.08);
    padding-left: 30px;
    font-weight: 300;
    color: #757575a8;
    font-weight: 600;
}

/*/changes*/

/*partners*/

/*/partners*/

/*horizontal tab*/

/*/horizontal tab*/


/*testimonial wrap*/

.testimonial5 {
	color: #8d97ad;
  font-weight: 300;
}

.testimonial5 h1, .testimonial5 h2, .testimonial5 h3, .testimonial5 h4, .testimonial5 h5, .testimonial5 h6 {
  color: #3e4555;
}

.testimonial5 .font-weight-medium {
	font-weight: 500;
}

.testimonial5.bg-inverse {
    background-color: #3e4555;
}

.testimonial5 .subtitle {
    color: #8d97ad;
    line-height: 24px;
}

.testimonial5 .testi5 {
  position: relative;
}

.testimonial5 .testi5 .content {
  font-size: 21px;
  line-height: 30px;
  padding: 50px 30px;
}

.testimonial5 .testi5 .owl-item.center .content {
  color: #ffffff;
  background: #fb775a;
  background: -webkit-linear-gradient(legacy-direction(to right), #fb775a 0%, #ff6a5b 100%);
  background: -webkit-gradient(linear, left top, right top, from(#fb775a), to(#ff6a5b));
  background: -webkit-linear-gradient(left, #fb775a 0%, #ff6a5b 100%);
  background: -o-linear-gradient(left, #fb775a 0%, #ff6a5b 100%);
  background: linear-gradient(to right, #fb775a 0%, #ff6a5b 100%);
}

.testimonial5 .testi5 .customer-thumb {
  margin-top: -30px;
  display: none;
}

.testimonial5 .testi5 .customer-thumb img {
  width: 60px;
  margin-bottom: 20px;
}

.testimonial5 .testi5 .owl-item.center .customer-thumb {
  display: block;
}

.testimonial5 .owl-carousel .owl-item img {
	margin-left: auto;
	margin-right: auto;
}

.testimonial5 .owl-theme .owl-dots .owl-dot.active span,
.testimonial5 .owl-theme .owl-dots .owl-dot:hover span {
  background: #316ce8;
}
/*/testimonial wrap*/


/*tabs*/

.testimonial6 .font-weight-medium {
  font-weight: 500;
}

.testimonial6 h5 {
    line-height: 22px;
    font-size: 18px;
}
.testimonial6 .subtitle {
  color: #8d97ad;
  line-height: 24px;
	font-size: 16px;
}


.testimonial6 .testi6 .nav-link {
 text-align: center;
    border-radius: 0px;
    margin: 7px -3px 4px 33px;
    border-radius: 6px;
}

.testimonial6 .testi6 .nav-link img {
  width: 45px;
  opacity: 1;
}

.testimonial6 .testi6 .nav-link.active {

  background:#fee1db;
}

.testimonial6 .testi6 .nav-link.active img {
  opacity: 1;
}

.testimonial6 .btn-danger {
    background: #ff4d7e !important;
    border: 1px solid #ff4d7e !important;
}

.testimonial6 .btn-md {
    padding: 18px 0px;
    width: 60px;
    height: 60px;
    font-size: 20px;
}


.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background:#fb775a;
}


/*tabspart*/


/*/tabs*/

/*horizontal carousel*/

.carousel-cell {
  background: #8c8;
  counter-increment: carousel-cell;
  color: white;
  width: 100%;
}

.carousel-cell:before {
  display: block;
  text-align: center;
  content: counter(carousel-cell);
  height: 100%;
  width: 100%;
  font-size: 80px;
  color: white;
}

.carousel-main .carousel-cell {
  width: 100%;
  font-size: 5rem;
  padding-bottom: 56.25%;
}

.carousel-main .carousel-cell:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-nav .carousel-cell:before {
  transform: rotate(-90deg);
}

.carousel-nav {
  width: 540px;
  height: 80px;
  transform: rotate(90deg) translate(30px, -100%);
  transform-origin: left top;
}
.carousel-cell {
  transform: rotate(-90deg);
  width: 80px;
  height: 80px;
  cursor: pointer;
  font-size: 1.4rem;
}

.carousel-nav .carousel-cell {
  margin-right: 1rem;
}

/* selected cell */
.carousel-nav .carousel-cell.is-nav-selected {
  background: #ed2;
}

.flickity-prev-next-button {
  width: 40px;
  height: 40px;
  background: transparent;
}

.flickity-prev-next-button .previous {
  left: -40px;
}
.flickity-prev-next-button .next {
  right: -40px;
}
.row .left {
  max-width: 80px;
  margin-right: 2%;
  flex: 1 1 100%;
}
.row .right {
  flex: 1 1 0;
}
.row {
  display: flex;
  flex-wrap: wrap;
}

.carousel-nav .flickity-prev-next-button.next {
  right: -30px;
}
.carousel-nav .flickity-prev-next-button.previous {
  left: -30px;
}
/*horizontal carousel*/


/*other*/
  .rafting {
        background-image: url(./img/rafting.jpg);
        background-size: cover;
        color: white;
        
    }
    
    .rafting:before {
      content: "";
      position: absolute;
      left: 0; right: 0;
      top: 0; bottom: 0;
      background: rgba(0,0,0,.5);
    }
/*/other*/



/*vertical tabs*/

/*/vertical tabs*/
/*horizontal tabs*/



.btn-primary.focus, .btn-primary:focus {
    
    box-shadow: none;
}


.btn.focus, .btn:focus {
    outline: 0;
    box-shadow: none;
}


.MultiCarousel { float: left; overflow: hidden; padding: 15px; width: 100%; position:unset; }
    .MultiCarousel .MultiCarousel-inner { transition: 0.5s ease all; float: left; }
        .MultiCarousel .MultiCarousel-inner .item { float: left;}
        .MultiCarousel .MultiCarousel-inner .item > div { text-align: center; padding:10px;  color:#666;}
        
    .MultiCarousel .leftLst, .MultiCarousel .rightLst 
    { position:absolute; border-radius:50%;top:calc(50% - 30px);
        border: none;
font-size:26px;
    background: transparent;
}
    
    i.fa-chevron-right {
    color: #fb775a;
    
    }

i.fa-chevron-left	
 {
    color: #fb775a;
}

    
    .MultiCarousel .leftLst { left:-70px; }
    .MultiCarousel .rightLst { right:-70px; }
    
        .MultiCarousel .leftLst.over, .MultiCarousel .rightLst.over { pointer-events: none;     border: none;
        opacity:0.4;
 }
        
        
        
/*horizontal tabs*/

/*custom scroll*/

#custom-scroll {
  /* Set the width and height of the container */
  width: 300px;
  height: 415px;
  overflow: auto;
}

#custom-scroll::-webkit-scrollbar {
  width: 4px; /* Width of the scrollbar */
}

#custom-scroll::-webkit-scrollbar-thumb {
  background-color: #79d3e5; /* Color of the scrollbar thumb */
  border-radius: 6px; /* Rounded corners for the thumb */
}

#custom-scroll::-webkit-scrollbar-thumb:hover {
  background-color: #555; /* Color of the thumb on hover */
}

#custom-scroll::-webkit-scrollbar-track {
  background-color: #f1f1f1; /* Color of the scrollbar track */
}

#custom-scroll::-webkit-scrollbar-track:hover {
  background-color: #ddd; /* Color of the track on hover */
}


/*/custom scroll*/



/*top service*/

/*#left-side{*/
/*  height:464px;*/
/*  background-color:#fb775a;*/
/*  border-radius:0;*/
/*  margin-bottom:0;*/
/*}*/

/*#right-side{*/
/*  height:500px;*/
/*  background-image: url(https://images.unsplash.com/photo-1587058571836-8562bb05e548?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1035&q=80);*/
/*  background-repeat:no-repeat;*/
/*  border-radius:0;*/
/*}*/

/*button{*/
/*  padding:10px 20px;*/
/*  background-color:white;*/
/*  border:none;*/
/*  color:#fb775a;*/
/*  align-items:center;*/
/*}*/

/*/top service*/


/*new top service*/

.mybtnlnk {
     background: #fb775a;
    color: white;
    border-radius: 100px;
    padding: 15px 43px;
    display: inline;
    text-align: center;
    font-weight: 300;
    font-size: 1.1rem;
}

.service-img{
    max-width: 95%;
    border-radius: 15px;
}

.sfont {
    color: #707070;
    font-weight: 500;
    font-size: 1.1rem;
}

i.fa.fa-angle-right {
   width: 45px;
    height: 45px;
    color: #fb775a;
    font-size: 31px;
    border: 2px solid;
    padding: 15px;
    border-radius: 100px;
    line-height: 9px;
    font-weight: 800;
    cursor:pointer;
}



i.fa.fa-angle-left {
    
    cursor:pointer;
    width: 45px;
    height: 45px;
    color: #fb775a;
    font-size: 31px;
    border: 2px solid;
    padding: 15px;
    border-radius: 100px;
    line-height: 9px;
    font-weight: 800;
    margin-right: 17px;

}

.service-line {
        border: 2px solid transparent; /* Set a transparent solid border to reserve space for the border */
    background: linear-gradient(90deg, rgba(243, 118, 92, 0) 0%, #FF6E50 12.5%, #FF6E50 88.02%, rgba(243, 118, 92, 0) 100%);

    width: 100%;
    /*border: 1px solid var(--orange);*/
}

img.fricon {
    padding: 10px;
    border-radius: 100px;
}
/*/new top service*/


/*d css*/

  
      .innovate{
          background-color:#FF6E50;
      }
      .hi{
        margin-top:0;  
        margin-bottom:0;
      }
      .class1{
           
           border-radius: 38px; 
           background-color: white; 
           color:#FF6E50;
           width: 301.13px;
           height: 54.59px;
           font-size:19px;
      }
      
      btn:hover{
          color:#FF6E50;
      }
      
      
     h3.class2 {
    font-size: 1.2rem;
    margin-top: -2px;
}
     

      
.class1:hover {
    background-color: #FF6E50;
    border: 2px solid white;
}
      #ip2 {
    border-radius: 38px;
    border: 2px solid white;
    padding: 16px 48px;
    width: 301.13px;
    height: 54.59px;
    background: #FF6E50;
    text-align:center;
    font-size: 20px;
    align:center;
}
#ip2:focus-visible {
    outline: -webkit-focus-ring-color auto 0px;
}
.drashi {
    margin-top: -12px;
    font-size:38px
}
::placeholder{
    color:white;
}
.zip{
    font-size:22px;
    font-weight:2px;
    color:white;
}

  
/*/d css*/