/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */

@import url('https://fonts.googleapis.com/css2?family=Poppins: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');



:root {
    --default-font: "Poppins", sans-serif;
    --heading-font: "Poppins", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

/* Global Colors */
:root {
    /* Background Color - This color is applied to the background of the entire website as well as individual sections. */
    --background-color: #fff;

    /* Default Color - This is the default color used for the majority of the text content. */
    --default-color: #fff;

    /* Heading Color - This color is used for titles, headings and secondary elements. */
    --heading-color: #aaa;

    /* Accent Color - This is the main accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out. */
    --accent-color: #000;

    /* Contrast Color - This is a color used for text when the background color is one of the heading, accent, or default colors. Its purpose is to ensure proper contrast and readability when placed over these more dominant colors. */
    --contrast-color: #161718;
}

/* Nav Menu Colors */
:root {
    /* Nav Color - This is the default color of the main navmenu links. */
    --nav-color: rgba(0, 0, 0, 0.7);

    /* Nav Hover Color - This color is applied to main navmenu links when they are hovered over. */
    --nav-hover-color: #000;

    /* Nav Dropdown Background Color - This color is used as the background for dropdown boxes that appear when hovering over primary navigation items. */
    --nav-dropdown-background-color: #161718;

    /* Nav Dropdown Color - This color is used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-color: rgba(255, 255, 255, 0.8);

    /* Nav Dropdown Hover Color - Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
    --nav-dropdown-hover-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}


.btn-primary {
  font-size: 18px;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 13px 30px !important;
  background-color: #f93939; 
  color: #fff; 
  border-radius: 12px;
  background-image: linear-gradient(75deg, #FD9A30, #F37335, #f12711, #f5af19); 
  background-size: 300% ;
  background-position: left;
  border: none;
  transition: 300ms background-position ease-in-out;
}

.btn-primary:hover {
/*background-image: linear-gradient(to right, #e74246 0%, #feba5b 0%, #e74246 100%);*/
background-position: right; 
}


.btn-outline-secondary {
    font-size: 18px;
    font-weight: 500;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 13px 30px !important;
    border-radius: 12px;
    border: 2px solid #fcb059;
    transition: all 0.3s ease, background-position 1ms;
    color: #000;
}

.btn-outline-secondary:hover, .btn-outline-secondary:active, .btn-outline-secondary:focus  {
    background: #fdb75a5e !important;
    border: 2px solid #fcb059 !important;
    color: #000 !important;
}


.btn-simple {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    padding: 13px 30px;
    border-radius: 12px;
    color: rgba(0,0,0,0.7);
}
.btn-simple:hover{ 
  color:rgba(0,0,0,1)
}






/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
    font-weight: normal;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: var(--default-color);
    padding: 20px 5vw;
    transition: all 0.5s;
    z-index: 997;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 36px;
    margin-right: 8px;
}


.header-contact {
    display: flex;
}

.header .header-contact a svg {
    width: 26px
}


.header .header-contact a:hover svg {
    stroke-dashoffset: 146.27833557128906px;
    stroke-dasharray: 73.13916778564453px;
    -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
    transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
}

.header .header-contact a:active svg {
    stroke-dashoffset: 219.4175033569336px;
}


.header .logo i {
    font-size: 28px;
    margin-right: 6px;
}

.tittle-section h2 {
 
  font-size: 54px;
  font-weight: bold;
  
  line-height: 1.3;
  text-align: center;
  color: #161f28;
}
.tittle-section p {

  font-size: 16px;
  line-height: 2;
  text-align: center;
  color: #5f5f5f;
  margin-bottom:40px;
}

/* HOVER EFFECT 3 */

/*
.effect-3 a:before,
.effect-3 a:after {
  content: "";
  height: 1px;
  width: 0;
  opacity: 0;
  background-color: #000;
  position: absolute;
  transition: all .5s;
}

.effect-3 a:before {
  top: -3px;
}

.effect-3 a:after {
  bottom: -3px;
  right: 0;
}

.effect-3 a:hover:before,
.effect-3 a:hover:after {
  width: calc(100% + 20px);
  opacity: 0.7;
}
*/
@media (max-width: 1200px) {.header-contact{position: absolute; display: none;}}

@media (max-width: 1200px) {

    .header .logo {
        order: 1;
    }

    .header .logo h1 {
        font-size: 26px;
    }

    .header .logo i {
        font-size: 20px;
    }





    .header .navmenu {
        order: 3;
    }
}

.scrolled .header {
    box-shadow: 0px 0 18px #a4a5ac36;
    background-color: var(--background-color);
    padding: 10px 5vw;

}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: #5f5f5f;
        padding: 18px 15px;
        font-size: 18px;
        font-family: var(--nav-font);
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        letter-spacing: 0.7px;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {

    .shadow-div {          
      padding: 20px!important;
      border-radius: 25px!important;
    }

    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
/*        margin-right: 10px;*/
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-dropdown-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 90%);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--default-color), transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--default-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--default-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}

/*--------------------------------------------------------------
# Hero Menu
--------------------------------------------------------------*/
.main {
    position: relative;
    margin-top: -105px
}

.hero {
    background: url(../img/bg-home.png) no-repeat top center;
    background-size: cover;
    height: 100vh;
    display: flex;
}



.hero .hashtag {
    background: #fff;
    border-radius: 50px;
    font-size: 14px;
    line-height: 1.43;
    text-align: left;
    color: #161f28;
    padding: 5px 18px;

}

.hero h1 {
    font-size: 54px;
    font-weight: bold;
    line-height: 1.26 !important;
    color: #161f28;
    margin-top: 24px;
}

.hero p {


    font-size: 16px;

    line-height: 1.67;

    color: #000;

}

.default-grad {
    background: #F77354;
    background: linear-gradient(to right, #F77354 0%, #F5596B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
    .hero{height: auto !important; text-align: center}

.hero h1 {
    font-size: 36px;
    margin-top: 12px;
}


}

/*--------------------------------------------------------------
# Dashboard Menu
--------------------------------------------------------------*/
.dashboard{background: url(../img/curve-bg.svg) center top; background-size: cover;  position: relative; margin-top: -200px}
.gallery-details .swiper-pagination .swiper-pagination-bullet-active {  background-color: var(--accent-color);  
  width: 50px !important;  border-radius: 50px;}

  @media (max-width: 767px) {


.dashboard {
    background: linear-gradient(to right, #FAD0C4 0%, #FFD1FF 100%);
    background-size: cover;
    position: relative;
    margin-top: -2px;
}




}
/*--------------------------------------------------------------
# Prducts
--------------------------------------------------------------*/
.product .card-body {padding: 40px;}
.product .card-body img{height: 70px;}
.product .card-body p{font-size: 16px;  color: #5f5f5f; margin-top: 10px}
.product .card-body h5{ font-size: 24px;  font-weight: bold;   color: #323232; margin-top: 20px}

.btn-kmore{position: relative; padding: 0px 10px 0px 0px; font-weight: 600; font-size: 20px}
.btn-kmore .arrow {
  /* Style your arrow (font, color, etc.) */
  font-size: 24px;
  color: inherit; /* Inherit button text color */
  position: absolute;
  right: -10px; /* Adjust arrow position */
  top: 50%; /* Center arrow vertically */
  transform: translate(-00%,-50%); /* Align arrow with button text */
  transition: transform 0.3s ease-in-out; /* Animation on hover */
}

.btn-kmore:hover .arrow {transform: translate(5px,-50%); /* Move arrow on hover */}
.sefmed{background-color: #F0FFF1; border:none; border-radius: 10px;}
.ordr-book{background-color: #e2effc; border:none; border-radius: 10px;}
.vizit{background-color: #f1f0ff; border:none; border-radius: 10px;}
.coursework{background-color: #ffe8f0; border:none; border-radius: 10px;}

 @media (max-width: 767px){
.product .card-body img{height: auto; width: 100%}


 }
/*--------------------------------------------------------------
# USP's
--------------------------------------------------------------*/
.usps  {
  
  padding: 80px 0px 0px 0px;
  background-image: linear-gradient(66deg, #000 13%, #091a20 62%);
}
.usps .tittle-section h2{text-align: left;
  background-image: linear-gradient(to right, #20e2d7, #f9fea5);
  font-size: 54px;
  font-weight: bold;
  line-height: 1.3;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.usps .tittle-section p{
  font-size: 18px;
  line-height: 1.56;
  text-align: left;
  color: #fff;
}
.usps .feature {text-align: center; padding: 15px}

.usps .feature h5 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.56;
  color: #fff;
  margin-top:10px;
}

@media (max-width: 767px){
.usps{padding-bottom: 80px}
 }

/*--------------------------------------------------------------
# clients-logo
--------------------------------------------------------------*/
.clients-logo {
  padding: 80px 0;
  background-image: linear-gradient(to right, #fad0c4, #fad0c4 1%, #ffd1ff);
}



@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  margin: 20px 0;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), #fbd0cd);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #fed1f6);
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 35s slide infinite linear;
}

.logos-slide img {
/*  height: 50px;*/
  margin: 0 40px;
}

/*--------------------------------------------------------------
# Fetures
--------------------------------------------------------------*/
.features{text-align:center; padding-bottom: 0px}
.features img{}
.features h5{
padding: 10px 0px;
font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: #000;}

.features p{color: #000}
.Fast-On-Boarding {
 
  
}

/*--------------------------------------------------------------
# Globally users
--------------------------------------------------------------*/
.user-card {
  padding: 40px 90px;
  border-radius: 51px;
  background-color: #fff1eb;
}
.user-card .card {border:none; padding:20px; text-align:center; justify-content:center; }
.user-card .card img{ width:64px; margin:0 auto 20px auto;  }

.user-card .card h5{
  background-image: linear-gradient(to right, #f77062, #fe5196);
  font-size: 38px;
  font-weight: 600;
  line-height: 1.26;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.user-card .card p{
  font-size: 18px;
  line-height: 1.56;
  letter-spacing: normal;
  text-align: center;
  color: #000;
}


/*--------------------------------------------------------------
# sfa
--------------------------------------------------------------*/

.sfa {
  
  padding: 80px 0;
  background-color: #161f28;
  text-align: center;
}
.sfa .tittle-section h2 {  color: #fff;}
.sfa .tittle-section p {  color: #fff;}
.sfa img {  width: 70px}
.sfa h5  { font-size: 36px; font-weight: bold; line-height: 1.11; color: #fff; padding: 10px 0px}
.sfa p { font-size: 16px; line-height: 1.75; color: #fff;}

/*--------------------------------------------------------------
# get-in-touch
--------------------------------------------------------------*/

.get-in-touch {
 
  padding: 80px 0;
  background-image: linear-gradient(117deg, #ffecd2 7%, #fcb69f 117%);
}
.form-wrap{background-color: #fff; border-radius: 10px; padding: 30px 160px}
.form-wrap h4{


  font-size: 26px;

  line-height: 1.08;
 
  text-align: center;
  color: #464646;
}


.form-wrap h4 span {
  font-weight: bold;
  color: #f55c68;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/


/*.footer {
    --background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    padding: 40px 0;position: relative;
}*/
    
.footer {
  padding: 97px 0 0;
  background: url('../img/footer-img.png' ) no-repeat top, linear-gradient(220deg, #290a05 20%, #0c0920 100%) ;
  color:#fff;
}
.footer .logo-footer{width: 200px; margin-bottom: 20px}

.footer h4{color:#fff; margin-top:20px;  font-size: 20px;
  font-weight: bold;
  line-height: 1.33;
}
.footer ul li a {padding: 4px 0px; margin: 8px 0px; display: block;}

.footer .card{padding: 20px;}

.footer a{color:rgba(255, 255, 255, 0.6);}
.footer a:hover{color:rgba(255, 255, 255, 1);}

.footer .card p {
    font-size: 15px;
    line-height: 1.6;
    padding: 0px;
    margin: 4px 0px;
}

.footer h5{margin: 0px; padding-right:20px;}

.footer .copyright {padding: 36px 0px; border-bottom:1px solid #fff  }

.footer .copyright p {margin-bottom: 0; color: #6A494F; font-size: 16px}
.footer .some-links, .footer .social-links{margin: 10px 0px;}

.footer .some-links a{ margin: 0px 10px;}
.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.6);
    font-size: 16px;
    color:rgba(255, 255, 255, 0.6);
    margin: 0 5px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 1);
}

.footer .credits {
    margin-top: 10px;
    font-size: 13px;
    text-align: center;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    display: flex;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999;
}
#preloader:before{ background: linear-gradient(90deg,#fad0c4,#ffd1ff);}
#preloader:after{background: linear-gradient(90deg,#ffd1ff,#ffd1ff);}

#preloader:before,
#preloader:after {
    content: "";
/*    background-color: #000000;*/
    position: absolute;
    inset: 0;
    width: 50%;
    height: 100%;
    transition: all 0.3s ease 0s;
    z-index: -1;
}

#preloader:after {
    left: auto;
    right: 0;
}

#preloader .line {
    position: relative;
    overflow: hidden;
    margin: auto;
    width: 1px;
    height: 280px;
    transition: all 0.8s ease 0s;
}

#preloader .line:before {
    content: "";
    position: absolute;
    background-color: #e789ff;
    left: 0;
    top: 50%;
    width: 1px;
    height: 0%;
    transform: translateY(-50%);
    animation: lineincrease 1000ms ease-in-out 0s forwards;
}

#preloader .line:after {
    content: "";
    position: absolute;
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    transform: translateY(-100%);
    animation: linemove 1200ms linear 0s infinite;
    animation-delay: 2000ms;
}

#preloader.loaded .line {
    opacity: 0;
    height: 100% !important;
}

#preloader.loaded .line:after {
    opacity: 0;
}

#preloader.loaded:before,
#preloader.loaded:after {
    animation: preloaderfinish 300ms ease-in-out 500ms forwards;
}

@keyframes lineincrease {
    0% {
        height: 0%;
    }

    100% {
        height: 100%;
    }
}

@keyframes linemove {
    0% {
        transform: translateY(200%);
    }

    100% {
        transform: translateY(-100%);
    }
}

@keyframes preloaderfinish {
    0% {
        width: 5 0%;
    }

    100% {
        width: 0%;
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 27px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--default-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 88px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color:#fffaee;
    position: relative;
    margin-top: 100px;

}

.page-title .heading {
    padding: 60px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
    font-size: 64px;
    font-weight: 400;
}

.page-title .heading .cta-btn {
    color: var(--default-color);
    background: var(--accent-color);
    font-weight: 400;
    font-size: 14px;
    display: inline-block;
    margin-top: 20px;
    padding: 12px 40px;
    border-radius: 4px;
    transition: 0.5s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-title .heading .cta-btn:hover {
    background-color: color-mix(in srgb, var(--accent-color) 90%, white 10%);
}

.page-title nav {
    background-color: color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 20px 0;
}

.page-title nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.page-title nav ol li+li {
    padding-left: 10px;
}

.page-title nav ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 100px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 14px;
    font-weight: 400;
    padding: 0;
    line-height: 1px;
    margin: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    position: relative;
    font-family: var(--default-font);
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: var(--accent-color);
    margin: 4px 10px;
}

.section-title p {
    color: var(--heading-color);
    margin: 0;
    font-size: 36px;
    font-weight: 400;
    font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery .gallery-item img {
    transition: 0.3s;
}

.gallery .gallery-links {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: all ease-in-out 0.3s;
    background: rgba(0, 0, 0, 0.6);
    z-index: 3;
}

.gallery .gallery-links .preview-link,
.gallery .gallery-links .details-link {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    transition: 0.3s;
    line-height: 1.2;
    margin: 30px 8px 0 8px;
}

.gallery .gallery-links .preview-link:hover,
.gallery .gallery-links .details-link:hover {
    color: #ffffff;
}

.gallery .gallery-links .details-link {
    font-size: 30px;
    line-height: 0;
}

.gallery .gallery-item:hover .gallery-links {
    opacity: 1;
}

.gallery .gallery-item:hover .preview-link,
.gallery .gallery-item:hover .details-link {
    margin-top: 0;
}

.gallery .gallery-item:hover img {
    transform: scale(1.1);
}

.glightbox-clean .gslide-description {
    background: #272727;
}

.glightbox-clean .gslide-title {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h2 {
    font-weight: 700;
    font-size: 24px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.about .content ul strong {
    margin-right: 10px;
}

.about .content ul i {
    font-size: 16px;
    margin-right: 5px;
    color: var(--accent-color);
    line-height: 0;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
    box-shadow: 0px 0 20px color-mix(in srgb, var(--default-color), transparent 90%);
    box-sizing: content-box;
    padding: 30px;
    margin: 40px 30px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: 0.3s;
}

.testimonials .testimonial-item .stars {
    margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    border: 4px solid var(--background-color);
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 0;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
    height: auto;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.testimonials .swiper-slide {
    opacity: 0.3;
}

@media (max-width: 1199px) {
    .testimonials .swiper-slide-active {
        opacity: 1;
    }

    .testimonials .swiper-pagination {
        margin-top: 0;
    }

    .testimonials .testimonial-item {
        margin: 40px 20px;
    }
}

@media (min-width: 1200px) {
    .testimonials .swiper-slide-next {
        opacity: 1;
        transform: scale(1.12);
    }
}

/*--------------------------------------------------------------
# Gallery Details Section
--------------------------------------------------------------*/
.gallery-details .portfolio-details-slider img {
    width: 100%;
}

.gallery-details .swiper-wrapper {
    height: auto;
}

.gallery-details .swiper-button-prev,
.gallery-details .swiper-button-next {
    width: 48px;
    height: 48px;
}

.gallery-details .swiper-button-prev:after,
.gallery-details .swiper-button-next:after {
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(0, 0, 0, 0.15);
    font-size: 24px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.gallery-details .swiper-button-prev:hover:after,
.gallery-details .swiper-button-next:hover:after {
    background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

    .gallery-details .swiper-button-prev,
    .gallery-details .swiper-button-next {
        display: none;
    }
}

.gallery-details .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.gallery-details .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    opacity: 1;
}

.gallery-details .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.gallery-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.gallery-details .portfolio-info h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    bottom: 0;
}

.gallery-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.gallery-details .portfolio-info ul li {
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
}

.gallery-details .portfolio-info ul strong {
    text-transform: uppercase;
    font-weight: 400;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 14px;
}

.gallery-details .portfolio-info .btn-visit {
    padding: 8px 40px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50px;
    transition: 0.3s;
}

.gallery-details .portfolio-info .btn-visit:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.gallery-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.gallery-details .portfolio-description p {
    padding: 0;
}

.gallery-details .portfolio-description .testimonial-item {
    padding: 30px 30px 0 30px;
    position: relative;
    background: color-mix(in srgb, var(--default-color), transparent 97%);
    margin-bottom: 50px;
}

.gallery-details .portfolio-description .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50px;
    border: 6px solid var(--background-color);
    float: left;
    margin: 0 10px 0 0;
}

.gallery-details .portfolio-description .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0 5px 0;
    padding-top: 20px;
}

.gallery-details .portfolio-description .testimonial-item h4 {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.gallery-details .portfolio-description .testimonial-item .quote-icon-left,
.gallery-details .portfolio-description .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 50%);
    font-size: 26px;
    line-height: 0;
}

.gallery-details .portfolio-description .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.gallery-details .portfolio-description .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.gallery-details .portfolio-description .testimonial-item p {
    font-style: italic;
    margin: 0 0 15px 0 0 0;
    padding: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
    background-color: var(--contrast-color);
    padding: 50px 30px;
    transition: all 0.3s ease-in-out;
    height: 100%;
    position: relative;
    z-index: 1;
}

.services .service-item:before {
    content: "";
    position: absolute;
    background: var(--accent-color);
    inset: 100% 0 0 0;
    transition: all 0.3s;
    z-index: -1;
}

.services .service-item .icon {
    margin-bottom: 15px;
}

.services .service-item .icon i {
    color: var(--default-color);
    background-color: var(--accent-color);
    font-size: 24px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: ease-in-out 0.3s;
}

.services .service-item h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
    font-family: var(--default-font);
}

.services .service-item h4 a {
    color: var(--heading-color);
    transition: ease-in-out 0.3s;
}

.services .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
    transition: ease-in-out 0.3s;
}

.services .service-item:hover h4 a,
.services .service-item:hover p {
    color: var(--default-color);
}

.services .service-item:hover i {
    color: var(--accent-color);
    background-color: var(--default-color);
}

.services .service-item:hover:before {
    background: var(--accent-color);
    inset: 0;
    border-radius: 0px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
    --heading-font: var(--default-font);
    border-bottom: 1px dashed color-mix(in srgb, var(--default-color), transparent 60%);
    width: 100%;
    height: 100%;
    padding: 0 0 15px 0;
}

.pricing .pricing-item h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.pricing .pricing-item h4 {
    margin: 0;
    font-size: 16px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
    margin-bottom: 30px;
}
#contact-form {color:#000;}

.contact .info-item i {
    font-size: 20px;
    color: var(--accent-color);
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 40%);
    margin-right: 15px;
}

.contact .info-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px 0;
    font-family: var(--default-font);
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact .info-item:hover i {
    background: var(--accent-color);
    color: var(--contrast-color);
}

@media (max-width: 575px) {
    .contact .php-email-form {
        padding: 20px;
    }
}

.contact .php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: var(--background-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.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 var(--accent-color);
    border-top-color: var(--background-color);
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--accent-color);
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
    color: var(--default-color);
    background: var(--accent-color);
    font-weight: 400;
    font-size: 14px;
    display: inline-block;
    margin-top: 20px;
    padding: 14px 40px;
    border: 0;
    border-radius: 4px;
    transition: 0.5s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact .php-email-form button[type=submit]:hover {
    background-color: color-mix(in srgb, var(--accent-color) 90%, white 10%);
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# sefmed css
--------------------------------------------------------------*/
#sefmed-hero {
    background: url(../img/sefmed/bg.png) no-repeat top center;
    background-size: cover;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding-bottom: 0px !important;
    padding-top: 120px;
}
#sefmed-hero img{margin-top: 20px;}

.d-board{position: relative; }

.clients-logo-sefmed {
    padding: 20px 0;
    background-image: linear-gradient(to right, #20e2d7, #f9fea5);
}

.clients-logo-sefmed .logos::before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), #41e6cf);
}

.clients-logo-sefmed .logos::after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), #d8faad);
}

.clients-logo-sefmed .logos {    margin: 0px 0;}

.iphone {    box-shadow: 0px 0px 22px #00000021;    border-radius: 43px;}

.app-features-wrap{
    background: url(../img/sefmed/bg-iphone.png) no-repeat top left,
     url(../img/sefmed/bg-iphone-right.png) no-repeat top right ;



 }


.app-features {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.88;
  text-align: left;
  color: #3d3d3d;
  padding: 16px 20px;
  border-radius: 6px;
  background-image: linear-gradient(to right, #fff3e9, #fff);
  margin: 10px 0px ;
} 


.smart-features {

  background-image: linear-gradient(to bottom, #f0e7974f, #fff);
}


.nav-pills{
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    overflow: auto;
    flex-direction: row;
}
.nav-pills .nav-item {    width: 50%; }
.nav-link {  width: 100%; text-align: center; padding: 20px 30px; background: #e7e7d8; font-size: 20px;
  font-weight: 600; color: #353434}
.nav-pills .nav-link {border-radius: 0px;}

.nav-pills li:first-child .nav-link {
  border-top-left-radius: 5px;  border-bottom-left-radius: 5px;}

.nav-pills li:last-child .nav-link {
  border-top-right-radius: 5px;  border-bottom-right-radius: 5px;
}
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
      color: #353434;
  background-image: linear-gradient(to right, #fcd650, #98f2bb);
}
.nav-pills .nav-link:hover{color: #000}



.tab-pane {  padding: 20px;}
.tab-pane  h1 {
 
  background-image: linear-gradient(to right, #e74246, #feba5b);
  font-size: 52px;
  font-weight: bold;
  line-height: 1.13;
  text-align: left;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tab-pane p {
  font-size: 16px;
  line-height: 2.5;
  text-align: left;
  color: #000;
}


/*f-e-section-1*/
.f-e-section-1 .container, .f-e-section-2 .container, .f-e-section-3 .container, .f-e-section-4 .container{position: relative;}

.f-e-section-1 {background-image: linear-gradient(70deg, #000 13%, #091a20 62%); padding: 120px 0px;
  h2 {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.62;
    
    color: #fff;
  }
  p {
    margin-top: 30px;
    font-size: 16px;
    line-height: 2;
    
    color: #fff;
  }
  .d-element {
    position: absolute;
    top: -50px;
    left: -100px;
}

}


.f-e-section-3 {padding: 150px 0px;
  h2 {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.62;
    
    color: #161f28;
  }
  p {
    margin-top: 30px;
    font-size: 16px;
    line-height: 2;
    
    color: #161f28;
  }
  .d-element {
    position: absolute;
    top: -100px;
    left: -100px;
}
}


.f-e-section-2, .f-e-section-4 {
  background:url(../img/sefmed/circle.png) no-repeat center, linear-gradient(to right, #84fab0, #8fd3f4);
}

.f-e-section-2, .f-e-section-4{
h2 {
  font-size: 26px;
  font-weight: 500;

  line-height: 1.62;

  
  color: #161f28;
}
p {
  
  font-size: 16px;
  
  line-height: 1.75;
 
  
  color: #161f28;
}
}


/*timeline */

.timeline {
    position: relative;
    padding: 30px 10px 10px 10px;
    margin: 0 auto;
    overflow: hidden;
    color: #ffffff;
}


.Key-Features {
  font-size: 16px;
  line-height: 2;
  text-align: center;
  color: #fff;
  padding: 6px 18px;
  border-radius: 6px;
  background-image: linear-gradient(to right, #f77062, #fe5196);
  display: block;

}

.timeline:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -1px;
    border-right: 2px dashed #c4d2e2;
    height: 100%;
    display: block;
}

.timeline-row {
    padding-left: 50%;
    position: relative;
    margin-bottom: 30px;
}

.timeline-row .timeline-time {
    position: absolute;
    right: 50%;
    top: 11px;
    text-align: right;
    margin-right: 20px;
    color: #2c332c;
    font-size: 27px;
    font-weight: 800;
}

.timeline-row .timeline-time small {
    display: block;
    font-size: .8rem;
    color: #8796af;
}

.timeline-row .timeline-content {
    position: relative;
    padding: 20px 30px;
    -webkit-border-radius: 10px 30px 170px 80px;
    -moz-border-radius: 10px 30px 170px 80px;
    border-radius: 10px 30px 170px 80px;
}

.timeline-row .timeline-content:after {
    content: "";
    position: absolute;
    top: 20px;
    height: 3px;
    width: 40px;
}

.timeline-row .timeline-content:before {
    content: "";
    position: absolute;
    top: 20px;
    right: -50px;
    width: 20px;
    height: 20px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    z-index: 100;
    background: #ffffff;
    border: 2px dashed #c4d2e2;
}

.timeline-row .timeline-content h4 {
    margin: 0 0 20px 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    background-image: linear-gradient(to right, #65bd60, #5ac1a8 25%, #3ec6ed 50%);
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    padding: 5px 20px 5px 37px ;
    line-height: 1.45;
    letter-spacing: normal;
    text-align: left;
    /* -webkit-background-clip: text; */
    /* background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    border-radius: 10px 0px 50px 10px;
}

.timeline-row .timeline-content ul {
    margin-bottom: 30px;
  font-size: 16px;
  line-height: 2;
  color: #2c2c2c;
}

.timeline-row .timeline-content i {
    font-size: 2rem;
    color: #ffffff;
    line-height: 100%;
    padding: 10px;
    border: 2px solid #ffffff;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    margin-bottom: 10px;
    display: inline-block;
}

.timeline-row .timeline-content .thumbs {
    margin-bottom: 20px;
}

.timeline-row .timeline-content .thumbs img {
    margin-bottom: 10px;
}

.timeline-row:nth-child(even) .timeline-content {
  background-image: linear-gradient(to right, #d7fffe, #d7fffe);
    margin-left: 40px;
    text-align: left;
}

.timeline-row:nth-child(even) .timeline-content:after {
    left: -39px;
    border-right: 18px solid #d7fffe;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.timeline-row:nth-child(even) .timeline-content:before {
    left: -50px;
    right: initial;
}

.timeline-row:nth-child(odd) {
    padding-left: 0;
    padding-right: 50%;
}

.timeline-row:nth-child(odd) .timeline-time {
    right: auto;
    left: 50%;
    text-align: left;
    margin-right: 0;
    margin-left: 20px;
}

.timeline-row:nth-child(odd) .timeline-content {
    background-image: linear-gradient(to right, #d7fffe, #d7fffe);
    margin-right: 40px;
    margin-left: 0;
    text-align: left;
}

.timeline-row:nth-child(odd) .timeline-content:after {
    right: -39px;
    border-left: 18px solid #d7fffe;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

@media (max-width: 767px) {
    .timeline {
        padding: 15px 10px;
    }
    .timeline:after {
        left: 28px;
    }
    .timeline .timeline-row {
        padding-left: 0;
        margin-bottom: 16px;
    }
    .timeline .timeline-row .timeline-time {
        position: relative;
        right: auto;
        top: 0;
        text-align: left;
        margin: 0 0 6px 56px;
    }
    .timeline .timeline-row .timeline-time strong {
        display: inline-block;
        margin-right: 10px;
    }
    .timeline .timeline-row .timeline-icon {
        top: 52px;
        left: -2px;
        margin-left: 0;
    }
    .timeline .timeline-row .timeline-content {
        padding: 15px;
        margin-left: 56px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        position: relative;
    }
    .timeline .timeline-row .timeline-content:after {
        right: auto;
        left: -39px;
        top: 32px;
    }
    .timeline .timeline-row:nth-child(odd) {
        padding-right: 0;
    }
    .timeline .timeline-row:nth-child(odd) .timeline-time {
        position: relative;
        right: auto;
        left: auto;
        top: 0;
        text-align: left;
        margin: 0 0 6px 56px;
    }
    .timeline .timeline-row:nth-child(odd) .timeline-content {
        margin-right: 0;
        margin-left: 55px;
    }
    .timeline .timeline-row:nth-child(odd) .timeline-content:after {
        right: auto;
        left: -39px;
        top: 32px;
        border-right: 18px solid #d7fffe;
        border-left: inherit;
    }
    .timeline.animated .timeline-row:nth-child(odd) .timeline-content {
        left: 20px;
    }
    .timeline.animated .timeline-row.active:nth-child(odd) .timeline-content {
        left: 0;
    }
}



.features-sefmed{
  text-align: center;

  background-image: linear-gradient(118deg, #e3eff3 1%, #f0f9fe 96%);
}

.features-sefmed h5 {
    padding: 10px 0px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    color: #000;
}

.features-sefmed p {color: #000;}


/*download section*/
.interst-card{
  padding: 30px;
  border-radius: 12px;
  background-color: #a32061;
}

.interst-card h5{
 font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
}
.interst-card p{
  font-size: 16px;
   line-height: 1.75;
   color: #fff;
   margin-top: 18px;
}
.interst-card .btn {
  padding: 13px 30px;
  border-radius: 12px;
  border: solid 1px #fff;
  background-color: rgba(0, 0, 0, 0);
  color: #fff;
}

.interst-card .btn:hover {
 
  background-color: rgba(256, 256, 256, 1);
  color: #222;
}

.download-card{
  padding: 30px;
  border-radius: 12px;
  background-color: #1f5ab4;
}

.download-card h5{
 font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
}
.download-card p{
  font-size: 16px;
   line-height: 1.75;
   color: #fff;
   margin-top: 18px;
}
.download-card .btn {
  padding: 13px 30px;
  border-radius: 12px;
  border: solid 1px #fff;
  background-color: rgba(0, 0, 0, 0);
  color: #fff;
}

.download-card .btn:hover {
 
  background-color: rgba(256, 256, 256, 1);
  color: #222;
}
/*--------------------------------------------------------------
# Order Book
--------------------------------------------------------------*/ 


#ordr-hero {
    background: url(../img/orderbook/bg.png) no-repeat top center;
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 0px !important;
/*    padding-top: 120px;*/
}
.page-logo{margin-top:20px; }

.clients-logo-ordrbook {
    padding: 20px 0;
      background-image: linear-gradient(to right, #68e0cf, #209cff);


      .logos::after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), #2aa5f9);
}
.logos::before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), #5ed7d6);
}

}

.ordr-features{padding: 100px 0px;

h2{
 font-size: 44px;
  font-weight: bold;
  line-height: 1.59;
  color: #161f28;
}
h2 span{color: red}
p, ul {
  font-size: 16px;
  line-height: 2;

  color: #5f5f5f;
}
}
.ordr-features:nth-child(odd) {
  background-color: #fff; 
}

.ordr-features:nth-child(even) {
  background: url(../img/sefmed/circle.png) no-repeat center, #E0F9FF; 
}
/*--------------------------------------------------------------
# vizits page starts
--------------------------------------------------------------*/
#vizits-hero {
    background: url(../img/vizits/bg.png) no-repeat top center;
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 0px !important;
    /*    padding-top: 120px;*/
}

.clients-logo-vizits {
    padding: 20px 0;
    background-image: linear-gradient(to right, #2cd8d5, #a4f);

    .logos::before {
        left: 0;
        background: linear-gradient(to left, rgba(255, 255, 255, 0), #3fc1db);
    }

    .logos::after {
        right: 0;
        background: linear-gradient(to right, rgba(255, 255, 255, 0), #975bf9);
    }
}

.vizits-features {
    padding: 100px 0px;

    h2 {
        font-size: 44px;
        font-weight: bold;
        line-height: 1.59;
        color: #161f28;
    }

    h2 span {
        color: red
    }

    p,
    ul {
        font-size: 16px;
        line-height: 2;

        color: #5f5f5f;
    }

    h5 {
        padding: 20px 0px;
        line-height: 2;

        font-size: 16px;
        font-weight: 500;
        color: #5f5f5f;
        margin: 0px !important;
    }}

.vizits-features:nth-child(odd) {
    background-color: #fff;
}

.vizits-features:nth-child(even) {
    background-image: linear-gradient(to right, #fff1eb, #ace0f9);
}
/*--------------------------------------------------------------
# vizits page starts
--------------------------------------------------------------*/
#coursework-hero {
    background: url(../img/coursework/bg.png) no-repeat top center;
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 0px !important;
    /*    padding-top: 120px;*/
}

.clients-logo-coursework {
    padding: 20px 0;
      background-image: linear-gradient(to right, #ff9a9e, #fad0c4 99%, #fad0c4);

    .logos::before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), #fea2a4);
}

    .logos::after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), #fbc8bf);
}
}

.coursework-features {
    padding: 100px 0px;

    h2 {
        font-size: 44px;
        font-weight: bold;
        line-height: 1.59;
        color: #161f28;
    }

    h2 span {
        color: red
    }

    p,
    ul {
        font-size: 16px;
        line-height: 2;

        color: #5f5f5f;
    }

    h5 {
        padding: 20px 0px;
        line-height: 2;

        font-size: 16px;
        font-weight: 500;
        color: #5f5f5f;
        margin: 0px !important;
    }}

.coursework-features:nth-child(odd) {
    background-color: #fff;
}

.coursework-features:nth-child(even) {
    background-image: linear-gradient(to right, #e3fdf5, #ffe6fa);
}


/*--------------------------------------------------------------
# about us page
--------------------------------------------------------------*/
.page-title {

    h2 {

        font-size: 36px;
        font-weight: bold;

        line-height: 1.28;
        color: #161f28;
    }

    p {

        font-size: 16px;

        line-height: 2;

        color: #5f5f5f;
    }
}


.about-card {
    padding: 30px 0px;

    .card {

        padding: 40px;
        border-radius: 25px;
        background-color: #eef6fa;
        border: none;
    }

    h2 {

        font-size: 24px;
        font-weight: 500;

        line-height: 1.92;

        color: #161f28;
    }

    p {

        font-size: 16px;

        line-height: 2;

        color: #5f5f5f;
    }

    ul li {

        font-size: 16px;

        line-height: 2;

        color: #5f5f5f;
    }
}



.about-card:first-child {

    padding-top:60px ;
}

.about-card:last-child {
  padding-bottom:60px ;

}

/*--------------------------------------------------------------
# Starter responsive css
--------------------------------------------------------------*/
/* call css */
@-webkit-keyframes pulse{
  0%{
    -webkit-transform: scale(0.9);
  }
  50%{
    -webkit-transform: scale(1.1);
  }
  100%{ 
    -webkit-transform: scale(0.9);
  }
}
.mypage-alo-phone {
    position: fixed;
    right: -16px;
    bottom: 57px;
    visibility: visible;
    background-color: transparent;
    width: 110px;
    height: 110px;
    cursor: pointer;
    z-index: 200000 !important;
}
.mypage-alo-ph-img-circle {
        width: 30px;
        height: 30px;
        top: 43px;
        left: 43px;
        position: absolute;
        background:  url(https://i.imgur.com/J9AXAq7.png) no-repeat center center;
        -webkit-border-radius: 100%;
        -moz-border-radius: 100%;
        border-radius: 100%;
        border: 2px solid transparent;
        opacity: .7;
        -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;
        -webkit-transform-origin: 50% 50%;
        -moz-transform-origin: 50% 50%;
        -ms-transform-origin: 50% 50%;
        -o-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        background-color: #FF992C;
        background-size: 70%;
      -webkit-animation: pulse 01s infinite;
}
.mypage-alo-ph-circle-fill {
  
    width: 60px;
    height: 60px;
    top: 28px;
    left: 28px;
    position: absolute;
    -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;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    background-color: rgba(241, 168, 5, 0.5);
    opacity: .75 !important;
    -webkit-animation: pulse 1s infinite;
}
.mypage-alo-ph-circle{
    width: 90px;
    height: 90px;
    top: 12px;
    left: 12px;
    position: absolute;
    background-color: transparent;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid rgba(30, 30, 30, 0.4);
    opacity: .1;
    border-color:#ffb56b;
    opacity: .5;
}
/*whatsapp butto*/

.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 30px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

.btn-whatsapp-pulse-border {
    bottom: 120px;
    right: 20px;
    animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 25px;
    border: 5px solid #25d366;
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }
    75% {
        padding: 50px;
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.contact-card, 
.contact-card p{ color: #161f28;}
.contact-card i{font-size: 30px;  color: #161f28 !important;}
.contact-card h6{ color: #161f28; font-size: 20px}
.contact-card h6{}


#contact-form-main{background-color: #fff; padding: 60px; border-radius:5px; box-shadow:0px 0px 40px #0000001f; }

#contact-form-main textarea{height: 200px;}
#contact-form-wrap{ position: relative; margin-top:-250px; background: none;
label{ color: #161f28; }

 h2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.92;
    color: #161f28;
}

p {
    font-size: 16px;
    line-height: 2;
    color: #5f5f5f;
}
input{}
}

#referral-form-wrap{

h2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.92;
    color: #161f28;
}

p {
    font-size: 16px;
    line-height: 2;
    color: #5f5f5f;
}

}
#referral-form {


textarea{height:140px}

h5{color: #161f28;
    margin: 20px 0px;
    background: #f5f8ff;
    padding: 13px 15px;
    border-radius: 44px;
    box-shadow: 1px 1px 2px #d9d9d9;
    display: inline-block;

}
h5 span{ background:#575757; color:#fff; border-radius:100px; width:32px; height:32px; 
    display:inline-block; text-align:center; line-height:32px; margin-right:10px }


}

#referral-form .card {
    background: #d8f0e0;
    padding: 20px 20px 2px 20px;
    border: 1px solid #ffff;
    h2{color:#2d623f}
}
.cbtn .btn-primary {display: inline-block !important;}



@media (max-width: 767px) {
   .parent-about{padding: 20px}
.hero{padding: 140px 0px}
.page-logo img{width: 100%}
.usps .tittle-section h2, .tittle-section h2 {font-size: 42px; text-align: center;}
.usps .tittle-section p {text-align: center;}
.user-card {    padding: 40px 20px; text-align: center;}
.form-wrap{padding: 30px 30px}.user-card .col-md-3 {margin-top: 20px;}
.app-features-wrap {    background: none;}
.iphone {    margin-bottom: 30px;}
.tab-pane h1 {    margin-top: 20px;    font-size: 42px;   }
.d-element{ display:none; }
.logos::before, .logos::after {  display:none; }
.f-e-section-1, .f-e-section-2, .f-e-section-3, .f-e-section-4 {text-align: center; padding: 60px 0px;}
.timeline-row .timeline-content::before {top: 32px; left: -47px;  right:auto;   }
.Key-Features {display: inline-block; margin-left:30px }
.interst-card {margin-bottom: 1rem;}
.header {padding: 20px 5px; }
.scrolled .header {padding: 10px 5px;}
.download-section{text-align: center;}
#ordr-hero{padding-bottom: 20px}


#contact-form-main {    padding: 30px;}



}



.shadow-div {
    box-shadow: 0px 0px 64px #c6c6c6;
    background: #f9f9f9;
    padding: 50px;
    border-radius: 54px;
}

.gallery-details .swiper-pagination {
    margin: 0px !important;
    position: absolute;
    bottom:0px;
}


.f-image {
    box-shadow: 0px 0px 40px #00000017;
    border-radius: 25px;
}
.f-icon {
    background: #fff;
    padding: 9px;
    border-radius: 14px;
    position: relative;
    margin-bottom: -36px;
    left: -14px;
    box-shadow: 0px 0px 6px #0000003d;
    /* margin-bottom: 15px; */
}

.payroll-page{} 

.payroll-page h2{


background: linear-gradient(90deg, #fbce26 0%, #fff 100%);
/*
background: -moz-linear-gradient(0deg, hsla(298, 68%, 90%, 1) 0%, hsla(30, 82%, 91%, 1) 100%);

background: -webkit-linear-gradient(0deg, hsla(298, 68%, 90%, 1) 0%, hsla(30, 82%, 91%, 1) 100%);

filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#F6D5F7", endColorstr="#FBE9D7", GradientType=1 );
*/
padding: 5px 30px ;
border-radius: 36px 0px 0px 6px;
} 

.payroll-page h5{color: #000} 
.form-horizontal {
  color: #000;
}

.modal-title {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  color: #161f28;
}
.review-section {  
  margin: 40px 20px;
}