/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Poppins",  sans-serif;
  --nav-font: "Raleway",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #3770c1; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #7eca2c; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #2c4964;  /* The default color of the main navmenu links */
  --nav-hover-color: #1977cc; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #2c4964; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #1977cc; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f1f7fc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

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);
}



.mtb-10{margin-top: 10px; margin-bottom: 10px;}
.mtb-20{margin-top: 20px; margin-bottom: 20px;}
.mtb-50{margin-top: 50px; margin-bottom: 50px;}
.mtb-80{margin-top: 80px; margin-bottom: 80px;}
.mtb-100{margin-top: 100px; margin-bottom: 100px;}
.mtb-150{margin-top: 150px; margin-bottom: 150px;}
.ptb-20{padding-top: 20px; padding-bottom: 20px;}
.ptb-10{padding-top: 10px; padding-bottom: 10px;}
.ptb-50{padding-top: 50px; padding-bottom: 50px;}
.ptb-80{padding-top: 80px; padding-bottom: 80px;}
.ptb-100{padding-top: 100px; padding-bottom: 100px;}
.ptb-150{padding-top: 150px; padding-bottom: 150px;}
.mt-10{margin-top: 10px;}
.mt-20{margin-top: 20px;}
.mt-50{margin-top: 50px;}
.mt-80{margin-top: 80px;}
.mt-100{margin-top: 100px;}
.mt-150{margin-top: 150px;}
.mb-10{margin-bottom: 10px;}
.mb-20{margin-bottom: 20px;}
.mb-50{margin-bottom: 50px;}
.mb-80{margin-bottom: 80px;}
.mb-100{margin-bottom: 100px;}
.mb-150{margin-bottom: 150px;}
.pt-10{padding-top: 10px;}
.pt-20{padding-top: 20px;}
.pt-50{padding-top: 50px;}
.pt-80{padding-top: 80px;}
.pt-100{padding-top: 100px;}
.pt-150{padding-top: 150px;}
.pb-10{padding-bottom: 10px;}
.pb-20{padding-bottom: 20px;}
.pb-50{padding-bottom: 50px;}
.pb-80{padding-bottom: 80px;}
.pb-100{padding-bottom: 100px;}
.pb-150{padding-bottom: 150px;}

.bold
{
    font-weight: 600;
}
.box_shadow
{
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.page-header
{
    background-color: #7eca2c;
    min-height: 550px;
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
}

.page-header.con_us
{
    background-image:url("../../../../images/backgrounds/headers/contact-us.jpg");
}
.page-header.about-aprc
{
    background-image:url("../../../../images/backgrounds/headers/about-us.jpg");
}
.page-header.therapy-offers
{
    background-image:url("../../../../images/backgrounds/headers/physiotherapies.jpg");
}
.page-header.ss_therapy
{
    background-image:url("../../../../images/backgrounds/headers/manual-physiotherapy.jpg");
}

.pheader-overlay
{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color:rgba(0,0,0,0.3);
}
.page-header .ph-shape
{
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 1;
}
.page-header h1
{
    color: #ffffff;
    z-index: 1;
    text-align: center;
    display: block;
}
.page-header h1::after
{
    content: "";
    width: 50%;
    height: 4px;
    background-color: #ffffff;
    display: block;
    position: relative;
    top: 5px;
    text-align: center;
    margin: auto;
}
.aprc-title
{
    color: #3770c1;
    position: relative;
    z-index: 1;
    display: inline-block;
}
.aprc-title::before
{
    content: "";
    height: 60px;
    width: 50px;
    line-height: 60px;
    text-align: center;
    background-image: url("../../../../images/backgrounds/shapes/title.svg");
    background-size: 60px 60px;
    display: inline-block;
    vertical-align: middle;
    opacity: 0.7;
    margin-left: -20px;
}
.aprc-title::after
{
    content: "";
    width: 100px;
    height: 12px;
    background-color: #7eca2c;
    display: block;
    position: absolute;
    left: 32px;
    top: 35px;
    z-index: -1;
    opacity: 0.4;
}

.header
{
    height: 100%;
    transition: all 0.5s;
}
.header-top
{
    background-color: #3770c1;
    height: 48px;
    transition: all 0.5s;
    line-height: 48px;
    overflow: hidden;
}
.ht-contact
{
    color: #ffffff;
    margin-left: -100%;
    padding-left: 100%;
    background: linear-gradient(90deg, #7eca2c 60%, #3770c1 60%);

}
.ht-contact ul
{
    margin-bottom: 0px;
    display:inline-flex;
    clip-path: polygon(0 0, 92% 0, 100% 100%, 0% 100%);
    background-color: #7eca2c;
    padding-right: 40px;
    padding-left: 10px;
}

.ht-contact ul li
{
    list-style-type: none;
    display: inline-block;
}
.ht-contact ul li a
{
    color: #ffffff;
}
.ht-contact ul li::after
{
    content: "|";
    position: relative;
    color: #ffffff;
    margin-left: 10px;
    margin-right: 10px;
    transition: all 0.5s;
}
.ht-contact ul li:last-child::after
{
    display: none;
    content: "";
}
.ht-social ul
{
    padding-left: 0px;
    margin-bottom: 0px;
}
.ht-social ul li
{
    list-style-type: none;
    display: inline-block;
    margin-left: 7px;
    margin-right: 7px;
}
.ht-social ul a
{
    color:rgba(255,255,255,0.7)
}
.ht-social ul a:hover
{
    color:rgba(255,255,255,1)
}
.header-bottom 
{
    background-color: #ffffff;
    transition: all 0.5s;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);    
}
.header-bottom .logo img
{
    max-height: 90px;
    padding: 10px 0px;
}
.scrolled .header-top
{
    height: 0;
    visibility: hidden;
    overflow: hidden;
    transition: all 0.5s;
}

.primary-btn
{
    background-color: #7eca2c;
    color: #ffffff;
    padding: 15px 30px;
    transition: all 0.5s;
    border-radius: 60px;
}
.primary-btn:hover
{
    background-color: rgba(89, 148, 30, 1);
    color: #ffffff;
    transition: all 0.5s;
    box-shadow: 0px 2px 15px rgba(89, 148, 30, 0.5);
}
.cu-info
{
    padding: 30px 15px;
}
.cu-info ul
{
    padding-left: 0px;
}
.cu-info ul li
{
    margin-top: 10px;
    list-style-type: none;
    line-height: 26px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.cu-info ul li:last-child
{
    border-bottom: none;
}
.cu-info ul li span
{
    color: #3770c1;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}
.cu-info ul li table tr td
{
    vertical-align: middle;
    border-bottom: none !important;
}
.cu-info ul li table tr td:first-child
{
    width: 170px;
}
/*.cu-info ul li i
{
    height: 35px;
    width: 35px;
    text-align: center;
    margin-right: 7px;
    margin-left: -46px;
    line-height: 35px;
    background-color:rgba(59,122,153,1);
    color: #fff;
    display: inline-block;
    border-radius: 100%;
}*/
.cu-info ul li a
{
    color: var(--default-color);
}
.cu-inquiry
{
    border-radius: 10px;
    padding: 30px 15px;
    margin-top: -200px;
    position: relative;
    z-index: 1;
    background-color: #ffffff;
}
.ba-map-wrapper
{
    border-radius: 10px;
}
.footer
{
    background-color: #3770c1;
    color:#DDDDDD;
}
.footer-bottom {padding-top: 30px; padding-bottom: 30px;}
.footer-bottom p
{
    margin-bottom: 0px;
}
.footer-bottom a
{
    color: #7eca2c;
    font-weight: 500;
}
.footer-top
{
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color:rgba(18,85,149,0.4);
    z-index: 1 !important;
    margin-top: 70px;
}
.ft-shape
{
    position: absolute;
    left: 0;
    right: 0;
    top: -2px;
    z-index: -1;
}

.ft-address h4
{color: #7eca2c;}
.ft-address ul
{
    padding-left: 0px;
}
.ft-address ul li
{
    list-style-type: none;
    line-height: 34px;
}
.ft-address ul li a
{
    color: #DDDDDD;
}

.quick-links h5
{
    color: #7eca2c;
}
.quick-links h5::after
{
    margin-top: 7px;
    content: "";
    height: 3px;
    width: 70px;
    background-color: #7eca2c;
    display: block;
}
.quick-links ul
{
    padding-left: 0px;
}
.quick-links ul li
{
    list-style-type: none;
    line-height: 36px;
}
.quick-links ul li a
{
    color: #DDDDDD;
}
.quick-links ul li a:hover
{
    color: #ffffff;
}
.quick-links .ba-form-submit-btn-wrapper
{
    margin-left: 0px !important;
    position: absolute;
    right: 8px;
    bottom: 5px;
}
.ba-form-3 .ba-form-column
{
    position: relative;
}
.ba-form-3 .ba-form-page
{
    padding: 0px !important;
}
.ft-social
{
    padding-left: 0px;
}
.ft-social li
{
    list-style-type: none;
    display: inline-block;
    margin-right: 10px;
}

/*TEMP CONTENT START FROM HERE */

.home-intro
{
    
}
.home-intro-text p
{
    line-height: 32px;
    text-align: justify;
}
.home-intro-banner
{
    position: relative;
}
.home-intro-banner .img1
{
    border-radius: 10px;
    width: 70%;
    align-content: flex-end;
}
.home-intro-banner .img2
{
    position: absolute;
    left: 5%;
    top: 15%;
    border: 7px solid #ffffff;
    border-radius: 10px;
}
.numbers
{
/*    background-color: rgba(55,112,193,0.3);
*/    position: relative;
}
.number-box
{
    background-color: #F9F9F9;
    padding: 60px 15px 15px 15px;
    position: relative;
    transition: all 0.4s;
    border-radius:10px;
}
.numbers .col-lg-3:nth-child(n+1){transform: translateY(0px);}
.numbers .col-lg-3:nth-child(n+2){transform: translateY(0px);}
.numbers .col-lg-3:nth-child(n+3){transform: translateY(0px);}
.numbers .col-lg-3:nth-child(n+4){transform: translateY(0px);}

.number-box img
{
    height: 70px;
    width: 70px;
    padding: 10px;
    line-height: 70px;
    background-color:#3770c1;
    color: #ffffff;
    border-radius: 100%;
    display: block;
    position: absolute;
    left: 50%;
    right: 50%;
    transform: translate(-50%, -50%);
    top: 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

/*.number-box i
{
    font-size: 38px;
    height: 70px;
    width: 70px;
    background-color:#3770c1;
    line-height: 70px;
    color: #ffffff;
    border-radius: 100%;
    padding: 0px;
    display: block;
    position: absolute;
    left: 50%;
    right: 50%;
    transform: translate(-50%, -50%);
    top: 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}*/
.number-box span
{
    font-size: 26px;
    font-weight: 500;
    color: #7eca2c;
}
.number-box span::after
{
    content: "\F4FE";
    font-family: bootstrap-icons;
    margin-left: 5px;
    vertical-align: bottom;
}
.number-box h5
{
    color:#3770c1;
    text-transform: capitalize;
}
.number-box:hover
{
    transform: translateY(-15px);
    transition: all 0.4s;
}
.therapies-offering
{
}

.therapy-box
{
    background-color: #ffffff;
    position: relative;
    border-radius: 15px;
    transition: all 0.4s;
    margin-top: 20px;
    margin-bottom: 20px;
}
.therapy-box-banner
{
    position: relative;
    border-radius: 15px 15px 0px 0px; 
    overflow: hidden;
}
.therapy-box-banner img
{
    transition: all 0.4s;
}
.therapy-box:hover .therapy-box-banner img
{
        transform: scale(1.2);
    transition: all 0.4s;
}
.therapy-lay
{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color:rgba(55,112,193,0);
     transition: all 0.4s;
}
.therapy-box:hover .therapy-lay
{
      background-color:rgba(55,112,193,0.3);
     transition: all 0.4s;
}
.therapy-box-text
{
    background-color: #ffffff;
    padding: 15px 15px 15px 15px;
    border-radius: 0px 0px 15px 15px;
    transition: all 0.4s;
    font-size: 16px;
    position: relative;
}
.therapy-box-text img
{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%; 
    display: none;
}
.therapy-box-text h5
{
    color: #3770c1;
    display: inline;
}
.therapy-box-text p
{
    margin-top: 10px;
}

.therapy-box:hover .therapy-box-text h5
{
    color: #7eca2c;
}
.therapy-box:hover .therapy-box-text
{
    transform: translateY(-20px);
    transition: all 0.4s;
}
.therapy-box-text h6
{
    position: absolute;
    transition: all 0.4s;
    bottom: 0px;
    opacity: 0;
}
.therapy-box:hover .therapy-box-text h6
{
    position: absolute;
    bottom: -4px;
    transition: all 0.4s;
    opacity: 1;
}

.thysiotherapy-benefits .accordion-body p
{
    margin-left: 24px;
}
.thysiotherapy-benefits .accordion-body p::before
{
    content: "\F633";
    font-weight: bold;
    color:#7eca2c;
    margin-right: 7px;
    font-family: bootstrap-icons;
    margin-left: -24px;
}
.the-ben-banner img
{
    border-radius: 10px;
}
.the-ben-text p
{
    line-height: 32px;
}
.thysiotherapy-benefits .accordion-item
{
    margin-bottom: 20px;
    border: none;
}

.thysiotherapy-benefits .accordion-button.collapsed
{
    background-color:rgba(249,249,249,1.00);
    padding: 25px 15px; 
    border-radius: 10px !important; 
    color: #444444;
}
.thysiotherapy-benefits .accordion-button
{
    background-color: rgba(55,112,193,1.00);
    color: #ffffff;
    padding: 25px 15px; 
    border-radius: 10px !important;
}
.thysiotherapy-benefits .accordion-button:not(.collapsed)::after
{
    content: "";
    color: #ffffff !important;
}
.accordion-button:focus
{
    box-shadow: none !important;
}
.ss-sidebar
{
    position: sticky;
    top: 120px;
}
.ss-index
{
    padding: 30px 15px;
    background-color:rgba(55,112,193,0.3);
/*    background-color:rgba(126,202,44,0.3);*/    
    border-radius: 15px;
}

.ss-index ul
{
    padding-left: 0px;
}
.ss-index ul li
{
    list-style-type: none;

}
.ss-index ul li a
{
    background-color: #ffffff;
    color: #444444;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 10px;
    display: block;
}
.ss-index ul li a.active
{
    background-color: #3770c1;
    color: #FFFFFF
}
.ss-cli-time
{
    padding: 30px 15px;
    background-color:rgba(55,112,193,0.3);
/*    background-color:rgba(126,202,44,0.3);
*/    border-radius: 15px;
}
.ss-cli-time ul
{
    padding-left: 0px;
}
.ss-cli-time ul li
{
    list-style-type: none;
    background-color: #ffffff;
    color: #444444;
    margin-bottom: 15px;
          padding: 15px;
    border-radius: 10px;
}

.pri-title
{
    color: #3770c1;
}
.sec-title {color: #7eca2c;}
.ss-banner p
{
    line-height: 32px;
}
.ss-brief .ss-list
{
    padding-left: 0px;
}
.ss-brief .ss-list li
{
    list-style-type: none;
    line-height: 32px;
    margin-bottom: 10px;
}
.ss-list-check
{
    padding-left: 24px;
}
.ss-list-check li
{
    list-style-type: none;
    line-height: 32px;
    font-size: 16px;
}
.ss-list-check li::before
{
    content: "\F26B";
    font-family: "bootstrap-icons";
    vertical-align:bottom;
    margin-right: 7px;
    margin-left: -24px
}
.ss-list-right
{
    padding-left: 24px;
}
.ss-list-right li
{
    list-style-type: none;
    line-height: 32px;
}
.ss-list-right li::before
{
    content: "\F333";
    font-family: "bootstrap-icons";
    vertical-align:bottom;
    margin-right: 7px;
    margin-left: -24px
}
.bg-pri
{
    background-color:#F9F9F9;
}
.aprc-book
{
    width: 100%;
    background-color: #7eca2c;
    padding: 14px 30px;
    border-radius: 60px;
    display: block;
    color: #ffffff;
}
.menu-contact
{
    padding-left: 40px;
}
.menu-contact li
{
    list-style-type: none;
    line-height: 48px;
    vertical-align: middle;
}
.menu-contact li i
{
    margin-right: 10px;
    margin-left: -40px;
    height: 30px;
    width: 30px;
    border-radius: 100%;
    text-align: center;
    line-height: 30px;
    color: #7eca2c;
    border: 1px solid #7eca2c;
    display: inline-block;
}
.lh-24
{
    line-height: 24px !important;
}
.lh-30
{
    line-height: 30px;
}
.ben-card
{
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}
.ben-card .cover img
{
    border-radius: 10px;
}
.ben-card .content
{
    padding: 30px 15px;
    min-height: 200px;
}

.ben-card .content p{margin-bottom: 0px;}
.ben-card .content:nth-child(n+1){background-color:rgba(126,202,44,0.2); margin-bottom: -10px;}
.ben-card .content:nth-child(n+2){background-color:rgba(55,112,193,0.2); margin-top: -10px;}

.ben-card .content:nth-child(n+1) h4{color:rgba(126,202,44,1);}
.ben-card .content:nth-child(n+2) h4{color:rgba(55,112,193,1);}
.comn-inq
{
    /*background: linear-gradient(180deg, #F9F9F9 50%, #ffffff 50%);*/
    padding-top: 250px;
    padding-bottom: 10px;
}
.comn-inq-inner
{
    border-radius: 15px;
}

.comn-inq .cover
{
    margin-top: -200px;
}
.comn-inq .content
{
    padding: 30px 15px 15px 15px;
}
.com-inq-now
{
    padding: 20px 40px;
    background-color:#3770c1;
}

.au-intro
{
    position: relative;
}
.au-intro .shape
{
    position: absolute;
    right: 0px;
    bottom: 0px;
    z-index: -1;
}
.text-green
{
    color:rgba(126,202,44,1);
}
.au-intro .banner1
{
    width: 75%;
}
.we-are
{
/*    background-color: rgba(55,112,193,0.3);
*/    padding-top: 70px;
    padding-bottom: 70px;
    position: relative;
}

.ww-card
{
    background-color: #ffffff;
}
.ww-swiper .swiper-slide
{
    padding: 15px;
}
.ww-swiper .wwc-content
{
    min-height: 130px;
}
.ww-swiper .wwc-content p{margin-bottom: 0px;}
.ww-navigation .swiper-button-next, .ww-navigation .swiper-button-prev
{
    position: inherit;
    left: auto !important;
    width:  auto !important;
    margin-right: 10px;
}
.ww-navigation .swiper-button-next:after
{
    content: "\F138"
}
.ww-navigation .swiper-button-prev:after
{
    content: "\F12F";    
}
.ww-navigation .swiper-button-next:after, .ww-navigation .swiper-button-prev:after
{
    font-family: "bootstrap-icons";
    font-size: 22px;
    height: 37px;
    width: 37px;
    color: rgba(0,0,0,0.6);
    line-height: 36px;
    text-align: center;
    border-radius: 5px;
}
.ww-navigation .swiper-button-next:hover:after, .ww-navigation .swiper-button-prev:hover:after
{
    color: #7eca2c;
}

.ww-navigation
{
    margin-top: 30px;
    margin-bottom: 30px;
}
.bg-green
{
    background: rgba(126,202,44,0.2);
}
.bg-blue
{
    background: rgba(55,112,193,0.2);
}
.dr-profile .dr-cover
{
    position: relative;
}
.dr-profile .dr-cover img
{
    border-radius: 0px 15px 15px 0px;
}
.dr-profile .dr-cover .exper
{
    position: absolute;
    bottom: 25px;
    right: 0px;
    background:#F9F9F9;
    padding: 10px 20px;
    border-radius: 5px 0px 0px 5px;
}
.dr-profile .exper span
{
    font-size: 22px;
    color: #3770c1;
    font-weight: 500;
}
.dr-profile .exper p
{
    margin-bottom: 0px;
}
.dr-content
{
    
}
.dr-tabs .nav-tabs
{
    border-bottom: 1px solid rgba(126,202,44,0.4);
}
.dr-tabs h5{line-height: 1.8;}
.dr-tabs .nav-tabs .nav-link
{
    background: transparent;
    padding: 12px 30px;
    border: none;
    color: #444;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 2px;
}
.dr-tabs .nav-tabs .nav-link.active, .dr-tabs .nav-tabs .nav-link:hover
{
    background: transparent;
    color:rgba(55,112,193,1.00);
    border-bottom: 5px solid #3770c1;
    margin-bottom: -3px;

}
.dr-content .flags
{
    max-height: 20px;
    margin-right: 7px;
}
.swi-exp .swiper-button-next
{
    right: 0px;
}
.swi-exp .swiper-button-next:after
{
    content: "\F285"
}
.swi-exp .swiper-button-prev
{
    left: 0px;
}
.swi-exp .swiper-button-prev:after
{
    content: "\F284";    
}
.swi-exp .swiper-button-next:after, .swi-exp .swiper-button-prev:after
{
    font-family: "bootstrap-icons";
    font-size: 18px;
    height: 37px;
    width: 37px;
    color: rgba(55,112,193,1);
    line-height: 36px;
    text-align: center;
    font-weight: bold;
}

.sss-swiper .swiper-slide
{
    padding: 15px;
}

.gr-br
{
    color:#7eca2c;
    border: 1px solid #7eca2c;
    padding: 20px 40px;
    
}

.partner-with
{
    position: relative;
    padding-top: 70px;
    padding-bottom: 60px;
}

.camera_caption
{
    top: auto;
    left: 20px !important;
    right: auto;
    bottom: 30%;
    width: 40% !important;
}
.camera_caption > div
{
    padding: 5% !important;
    background-color: rgba(249,249,249,0);
    color: #7eca2c;
}
.camera_caption_desc
{
    color: #ffffff !important;
    font-size: 18px;
}
.camera_caption_title
{
    margin-bottom: 20px;
    font-size: 2rem;
    line-height: 2.8rem;
}








/*TEMP CONTENT CLOSE HERE */
/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}



/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-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;
  }
.therapy-box-text
    {
        min-height: 140px;
    }
.dr-profile .dr-cover
    {
        padding: 15px;
    }
.dr-profile .dr-cover img
    {
        border-radius: 15px;
    }
.partner-with
    {
        margin-top: 0px;
    }
    
.camera_caption > div
    {
    padding: 10px !important;
    background-color: rgba(249, 249, 249, 0.7);
    color: #3770c1;
    border-radius: 5px;
    }
.camera_caption_title {
    margin-bottom: 10px;
    font-size: 1.3rem;
    line-height: normal;
    }
.camera_caption_desc {
    color: #444 !important;
    font-size: 14px;
}
.camera_caption
    {
        padding: 15px;
        left: 0px !important;
        width: 100% !important;
        bottom: 0px !important;
    }
    
    
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
  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: 72px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 60px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: calc(100vh - 112px);
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .container {
  z-index: 3;
}

.hero .welcome h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero .welcome p {
  font-size: 24px;
  margin: 0;
}

.hero .content {
  margin-top: 40px;
}

.hero .content .why-box {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 30px;
  border-radius: 4px;
}

.hero .content .why-box h3 {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.hero .content .why-box p {
  margin-bottom: 30px;
}

.hero .content .why-box .more-btn {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  display: inline-block;
  padding: 6px 30px 8px 30px;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.hero .content .why-box .more-btn i {
  font-size: 14px;
}

.hero .content .why-box .more-btn:hover {
  background: var(--surface-color);
  color: var(--accent-color);
}

.hero .content .icon-box {
  text-align: center;
  border-radius: 10px;
  background: color-mix(in srgb, var(--surface-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  width: 100%;
}

.hero .content .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
}

.hero .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0 20px 0;
}

.hero .content .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
}

.about .content ul i {
  flex-shrink: 0;
  font-size: 48px;
  color: var(--accent-color);
  margin-right: 20px;
}

.about .content ul h5 {
  font-size: 18px;
  font-weight: 700;
}

.about .content ul p {
  font-size: 15px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  border: 2px solid var(--background-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  background-color: var(--surface-color);
  margin-top: -27px;
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 32px;
  display: block;
  margin: 10px 0;
  font-weight: 700;
  color: var(--heading-color);
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  height: 100%;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.services .service-item .icon i {
  color: var(--contrast-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.services .service-item:hover .icon {
  background: var(--surface-color);
}

.services .service-item:hover .icon i {
  color: var(--accent-color);
}

.services .service-item:hover .icon::before {
  background: color-mix(in srgb, var(--background-color), transparent 70%);
}

.services .service-item:hover h3,
.services .service-item:hover p {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Appointment Section
--------------------------------------------------------------*/
.appointment .php-email-form {
  width: 100%;
}

.appointment .php-email-form .form-group {
  padding-bottom: 8px;
}

.appointment .php-email-form input,
.appointment .php-email-form textarea,
.appointment .php-email-form select {
  color: var(--default-color);
  background-color: transparent;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 10px !important;
}

.appointment .php-email-form input:focus,
.appointment .php-email-form textarea:focus,
.appointment .php-email-form select:focus {
  border-color: var(--accent-color);
}

.appointment .php-email-form input::placeholder,
.appointment .php-email-form textarea::placeholder,
.appointment .php-email-form select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.appointment .php-email-form input,
.appointment .php-email-form select {
  height: 44px;
}

.appointment .php-email-form textarea {
  padding: 10px 12px;
}

.appointment .php-email-form button[type=submit] {
  background: var(--accent-color);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.appointment .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Departments Section
--------------------------------------------------------------*/
.departments {
  overflow: hidden;
}

.departments .nav-tabs {
  border: 0;
}

.departments .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: var(--default-color);
  border-radius: 0;
  border-right: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-weight: 600;
  font-size: 15px;
}

.departments .nav-link:hover {
  color: var(--accent-color);
}

.departments .nav-link.active {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background-color: var(--background-color);
}

.departments .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.departments .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.departments .details p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.departments .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .departments .nav-link {
    border: 0;
    padding: 15px;
  }

  .departments .nav-link.active {
    color: var(--accent-color);
    background: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Doctors Section
--------------------------------------------------------------*/
.doctors .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  border-radius: 5px;
  transition: 0.5s;
  padding: 30px;
  height: 100%;
}

@media (max-width: 468px) {
  .doctors .team-member {
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
  }
}

.doctors .team-member .pic {
  overflow: hidden;
  width: 150px;
  border-radius: 50%;
  flex-shrink: 0;
}

.doctors .team-member .pic img {
  transition: ease-in-out 0.3s;
}

.doctors .team-member:hover {
  transform: translateY(-10px);
}

.doctors .team-member .member-info {
  padding-left: 30px;
}

@media (max-width: 468px) {
  .doctors .team-member .member-info {
    padding: 30px 0 0 0;
    text-align: center;
  }
}

.doctors .team-member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
}

.doctors .team-member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.doctors .team-member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  bottom: 0;
  left: 0;
}

@media (max-width: 468px) {
  .doctors .team-member span::after {
    left: calc(50% - 25px);
  }
}

.doctors .team-member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.doctors .team-member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
}

@media (max-width: 468px) {
  .doctors .team-member .social {
    justify-content: center;
  }
}

.doctors .team-member .social a {
  background: color-mix(in srgb, var(--default-color), transparent 94%);
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 36px;
  height: 36px;
}

.doctors .team-member .social a i {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  margin: 0 2px;
}

.doctors .team-member .social a:hover {
  background: var(--accent-color);
}

.doctors .team-member .social a:hover i {
  color: var(--contrast-color);
}

.doctors .team-member .social a+a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .info h3 {
  font-weight: 700;
  font-size: 32px;
}

.testimonials .swiper {
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
  background-color: var(--surface-color);
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 200px;
  position: relative;
  margin: 30px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  height: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  margin-right: 10px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
  border: none;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    margin: 15px;
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

.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(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-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(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 36px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}