/*===========================
        Font Family            
===========================*/
@font-face {font-family: 'Source Sans Pro'; src: url(../font/SourceSansPro-Regular.woff)}

/*===========================
      UniverSal and Body            
===========================*/
*{margin: 0; padding: 0; box-sizing: border-box;}
body{margin: 0; padding: 0; }

/*===========================
        Basic Tags            
===========================*/
a, h1, h2, h3, h4, h5, h6, li, p, span, textarea, ul{margin: 0; padding: 0; font-family: 'Source Sans Pro';}
ul,li{list-style: none;}
a{text-decoration: none; color:#000;}
p{
    font-size: 16px;
    color: #69696e;
    font-weight: 300;
    line-height: 25px;
    margin: 0 0 15px;
}

/*===========================
        Root            
===========================*/
:root{
    --whiteColor: #ffffff; --orangeColor: #f98b00; --grayColor: #69696e; --uperHeadertextSize: 13px; --navItemstextSize: 15px; --clr-bg-header: #535353; --clr-btn: #464646; --clr-dropdown: #69696e; --clr-nav-hover: #707071; --clr-dropdown-hov: #595959; --clr-dropdown-link-hov: #313131; --clr-light: #fafafa; 
    --uperHeadertextSize: 13px;
    --navItemstextSize: 15px;}

    /*CUSTOM HEADER MENU*/
header.customMenu { width: 100%; z-index: 1000; }
header.customMenu .overlay { position: absolute; width: 100%; height: 100%; top: 0; left: 0; background-color: rgba(30, 130, 95, 0.5); }
header.customMenu .container { margin: 10px auto; display: flex; position: relative; }
header.customMenu .logo-container { flex: 1; display: flex; align-items: center; }
header.customMenu .nav-btn { flex: 3; display: flex; }
header.customMenu .nav-links { flex: 2; }
header.customMenu .log-sign { justify-content: center; align-items: center; flex: 1; }
header.customMenu .logo { color: var(--clr-light); font-size: 1.1rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; line-height: 3rem; }
header.customMenu .logo span { font-weight: 300; }
header.customMenu .btn { display: inline-block; padding: 0.5rem 1.3rem; font-size: 0.8rem; border: 2px solid var(--clr-light); border-radius: 2rem; line-height: 1; margin: 0 0.2rem; transition: 0.3s; text-transform: uppercase; }
header.customMenu .btn.solid,
header.customMenu .btn.transparent:hover { background-color: var(--clr-light); color: var(--clr-btn); }
header.customMenu .btn.transparent,
header.customMenu .btn.solid:hover { background-color: transparent; color: var(--clr-light); }
header.customMenu .nav-links > ul { display: flex; justify-content: flex-start; align-items: center; }
header.customMenu .nav-link { position: relative; }
header.customMenu .nav-link > a {  color: var(--grayColor);  letter-spacing: 1px; font-size: 0.95rem; display: flex; align-items: center; justify-content: space-between; transition: 0.5s; }
header.customMenu .nav-link > a > i { margin-left: 0.2rem; }
header.customMenu .nav-link:hover > a { transform: scale(1.1); }
header.customMenu .dropdown { position: absolute; top: 100%; left: 0; width: 10rem; transform: translateY(10px); opacity: 0; pointer-events: none; transition: 0.5s; }
header.customMenu .dropdown ul { position: relative; }
header.customMenu .dropdown-link > a {display: flex;background-color: var(--clr-light);color: #ffffff;padding: 0.5rem 1rem;font-size: 0.9rem;align-items: center;justify-content: space-between;transition: 0.3s;width: 285px;padding: 7px 20px;display: block;border-bottom: 1px solid rgb(13 67 99);background: #0d4363;}
header.customMenu .dropdown-link:hover > a {color: orange;}
/* header.customMenu .dropdown-link:not(:nth-last-child(2)) { border-bottom: 1px solid var(--clr-light); } */
header.customMenu .dropdown-link i { transform: rotate(-90deg); }
header.customMenu .arrow { position: absolute; width: 11px; height: 11px; top: -5.5px; left: 32px; background-color: var(--clr-light); transform: rotate(45deg); cursor: pointer; transition: 0.3s; z-index: -1; }
header.customMenu .dropdown-link:first-child:hover ~ .arrow { background-color: var(--clr-dropdown); }
header.customMenu .dropdown-link {position: relative;width: 285px;}
header.customMenu .dropdown.second { top: 0; left: 100%; padding-left: 0.8rem; cursor: pointer; transform: translateX(10px); }
header.customMenu .dropdown.second .arrow { top: 10px; left: -5.5px; }
header.customMenu .nav-link:hover > .dropdown,
header.customMenu .dropdown-link:hover > .dropdown { transform: translate(0, 0); opacity: 1; pointer-events: auto; z-index: 1; }
header.customMenu .hamburger-menu-container { flex: 1; display: none; align-items: center; justify-content: flex-end; }
header.customMenu .hamburger-menu { width: 2.5rem; height: 2.5rem; display: flex; align-items: center; justify-content: flex-end; }
header.customMenu .hamburger-menu div { width: 1.6rem; height: 3px; border-radius: 3px; background-color: var(--clr-light); position: relative; z-index: 1001; transition: 0.5s; }
header.customMenu .hamburger-menu div:before,
header.customMenu .hamburger-menu div:after { content: ""; position: absolute; width: inherit; height: inherit; background-color: var(--clr-light); border-radius: 3px; transition: 0.5s; }
header.customMenu .hamburger-menu div:before { transform: translateY(-7px); }
header.customMenu .hamburger-menu div:after { transform: translateY(7px); }
header.customMenu #check { position: absolute; top: 50%; right: 1.5rem; transform: translateY(-50%); width: 2.5rem; height: 2.5rem; z-index: 90000; cursor: pointer; opacity: 0; display: none; }
header.customMenu #check:checked ~ .hamburger-menu-container .hamburger-menu div { background-color: transparent; }
header.customMenu #check:checked ~ .hamburger-menu-container .hamburger-menu div:before { transform: translateY(0) rotate(-45deg); }
header.customMenu #check:checked ~ .hamburger-menu-container .hamburger-menu div:after { transform: translateY(0) rotate(45deg); }
.nav-btn .nav-links .nav-link a:hover {color: #0095eb;}
@keyframes animation {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0px); }
}
@media (max-width:920px) {
    header.customMenu { background: #191919; }
    header.customMenu .hamburger-menu-container { display: flex; }
    header.customMenu #check { display: block; }
    header.customMenu .nav-btn { position: fixed; height: calc(100vh - 3rem); top: 3rem; left: 0; width: 100%; background-color: #191919; flex-direction: column; align-items: center; justify-content: space-between; overflow-x: hidden; overflow-y: auto; transform: translateX(100%); transition: 0.65s; z-index: 1; }
    header.customMenu #check:checked ~ .nav-btn { transform: translateX(0); }
    header.customMenu #check:checked ~ .nav-btn .nav-link,
    header.customMenu #check:checked ~ .nav-btn .log-sign { animation: animation 0.5s ease forwards var(--i); }
    header.customMenu .nav-links { flex: initial; width: 100%; }
    header.customMenu .nav-links > ul { flex-direction: column; }
    header.customMenu .nav-link { width: 100%; opacity: 0; transform: translateY(15px); }
    header.customMenu .nav-link > a { line-height: 1; padding: 5px; color: var(--whiteColor); }
    header.customMenu .nav-link:hover > a { transform: scale(1); background-color: #191919; }
    header.customMenu .dropdown,
    header.customMenu .dropdown.second { position: initial; top: initial; left: initial; transform: initial; opacity: 1; pointer-events: auto; width: 100%; padding: 0; background-color: var(--clr-dropdown-hov); display: none; }
    header.customMenu .nav-link:hover > .dropdown,
    header.customMenu .dropdown-link:hover > .dropdown { display: block; }
    header.customMenu .nav-link:hover > a > i,
    header.customMenu .dropdown-link:hover > a > i { transform: rotate(360deg); }
    header.customMenu .dropdown-link > a { background-color: transparent; color: var(--clr-light); padding: 1.2rem 2rem; line-height: 1; }
    header.customMenu .dropdown.second .dropdown-link > a { padding: 1.2rem 2rem 1.2rem 3rem; }
    header.customMenu .dropdown.second .dropdown.second .dropdown-link > a { padding: 1.2rem 2rem 1.2rem 4rem; }
    header.customMenu .dropdown-link:not(:nth-last-child(2)) { border-bottom: none; }
    header.customMenu .arrow { z-index: 1; background-color: var(--clr-btn); left: 10%; transform: scale(1.1) rotate(45deg); transition: 0.5s; }
    header.customMenu .nav-link:hover .arrow { background-color: var(--clr-nav-hover); }
    header.customMenu .dropdown .dropdown .arrow { display: none; }
    header.customMenu .dropdown-link:hover > a { background-color: var(--clr-dropdown-link-hov); }
    header.customMenu .dropdown-link:first-child:hover ~ .arrow { background-color: var(--clr-nav-hover); }
    header.customMenu .nav-link > a > i { font-size: 1.1rem; transform: rotate(-90deg); transition: 0.7s; }
    header.customMenu .dropdown i { font-size: 1rem; transition: 0.7s; }
    header.customMenu .log-sign { flex: initial; width: 100%; padding: 1.5rem 1.9rem; justify-content: flex-start; opacity: 0; transform: translateY(15px); }
}

/*===========================
        Header            
===========================*/
.header .upperHeader .upperHeaderow { background: #0d4363; padding: 5px 30px 5px 30px; display: flex; justify-content: space-between; align-items: center; }
.header .upperHeader .upperHeaderow .header-left { display: flex; align-items: center; gap: 15px; }
.header .upperHeader .header-left .header-left-content a { font-size: var(--uperHeadertextSize); color: var(--whiteColor); text-transform: uppercase; font-weight: 700; padding: 5px; }
.header .upperHeader .header-left .header-left-seprator { color: var(--whiteColor); }
.header .upperHeader .upperHeaderow .header-right { display: flex; align-items: center; gap: 15px; justify-content: end; }
.header .upperHeader .header-right .header-right-content a { font-size: var(--uperHeadertextSize); color: var(--whiteColor); text-transform: uppercase; font-weight: 700; padding: 5px; }
.header .upperHeader .header-right .header-right-seprator { color: var(--whiteColor); }
.header .middleHeaderRow { display: flex; align-items: center; justify-content: space-around; padding: 20px 0; }
.header .middleHeader .middle-header-left .logo-img { width: 70%; }
.header .middleHeader .middleHeaderRow .middle-header-right { display: flex; align-items: center; gap: 25px; justify-content: end; }
.header .middleHeader .middleHeaderRow .middle-header-right .icon { font-size: 16px; }
.header .navbar .nav-item a { font-size: var(--navItemstextSize); color: var(--grayColor); font-weight: 500; }
.header .navbar .nav-item .nav-link { font-size: var(--navItemstextSize); color: var(--grayColor); font-weight: 500; }
.navbar-right-content-icons { display: flex; align-items: center; gap: 20px; }
.navbar-right-content { display: flex; align-items: center; gap: 20px; }
#navbarSupportedContent { justify-content: center; align-items: center; }
.navbar-right-content-icons a { color: #000; }
.nav-button a { color: var(--whiteColor); }
.nav-button:hover {
    background: #329FD6;
    transition: 1s;
}
.navbar-logo .logo-img { width: 200px; }

    




/*===========================
        Header            
===========================*/
/* .header .upperHeader .upperHeaderow {
    background: #0d4363;
    padding: 5px 30px 5px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .upperHeader .upperHeaderow .header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header .upperHeader .header-left .header-left-content  a {
    font-size: var(--uperHeadertextSize);
    color: var(--whiteColor);
    text-transform: uppercase;
    font-weight: 700;
    padding: 5px;
}
.header .upperHeader .header-left  .header-left-seprator {
    color: var(--whiteColor);
}
.header .upperHeader .upperHeaderow .header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: end;
}

.header .upperHeader .header-right .header-right-content  a {
    font-size: var(--uperHeadertextSize);
    color: var(--whiteColor);
    text-transform: uppercase;
    font-weight: 700;
    padding: 5px;
}
.header .upperHeader .header-right .header-right-seprator {
    color: var(--whiteColor);
}

.header .middleHeaderRow {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 20px 0;
}

.header .middleHeader .middle-header-left .logo-img {
    width: 70%;
}

.header .middleHeader .middleHeaderRow .middle-header-right {
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: end;
}

.header .middleHeader .middleHeaderRow .middle-header-right .icon {
    font-size: 16px;
}
.header .middleHeader .middleHeaderRow .middle-header-right .icon .phone-number {
    text-decoration: none;
} */

/* .header .navbar .nav-item a {
    font-size: var(--navItemstextSize);
    color: var(--grayColor);
    font-weight: 500;
}

.header .navbar .nav-item .nav-link {
    font-size: var(--navItemstextSize);
    color: var(--grayColor);
    font-weight: 500;
}

.navbar-right-content-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-right-content {
    display: flex;
    align-items: center;
    gap: 20px;
}
#navbarSupportedContent {
    justify-content: center;
    align-items: center;
}

.navbar-right-content-icons a {
    color: #000;
}

.nav-button a {
    color: var(--whiteColor);
}
.navbar-logo .logo-img {
    width: 200px;
} */
/*===========================
        Banner            
===========================*/
.banner .banner-slider .slider-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
}
.banner .banner-slider {
    position: relative;
    padding: 0;
    margin: 0;
}

.banner .banner-slider .banner-content {
    padding: 0;
    position: absolute;
    top: 130px;
    right: 0;
    left: 0;
}
.bannerHeading{
    font-family: "Source Sans Pro";
    height: auto;
    width: auto;
    text-align: center;
    line-height: 79px;
    letter-spacing: 0px;
    font-weight: 700;
    font-size: 64px;
    color: var(--whiteColor);
}
.bannerParagraph{
    font-family: "Source Sans Pro";
    height: auto;
    width: auto;
    text-align: center;
    line-height: 30px;
    letter-spacing: 0px;
    font-weight: 400;
    font-size: 20px;
    color: var(--whiteColor);
}
.banner .banner-slider .banner-content .banner-button-main {
    /* text-align: center; */
    /* position: absolute; */
    /* right: 0; */
    /* left: 0; */
    /* top: 255px; */
    /* display: inline-block; */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}
.banner .banner-slider .banner-content .banner-button-main a:hover {
    background: #329fd6;
    transition: 1s;
    color: #fff;
}
.banner .banner-slider .pull-left {
    position: absolute;
    z-index: 1;
    top: 548px;
    right: 0;
    left: 900px;
    width: 35px;
    height: 38px;
    border: none;
    background: transparent;
    border: 1px solid;
}

.banner .banner-slider .pull-right {
    position: absolute;
    z-index: 5;
    top: 548px;
    left: 950px;
    width: 35px;
    height: 38px;
    border: none;
    background: transparent;
    border: 1px solid;
}
/*===========================
        Buttons            
===========================*/
.nav-button{font-size: 16px; padding: 10px 25px; background-color: var(--orangeColor); color: #fff; font-weight: 400; font-family: 'Source Sans Pro'; border-radius: 5px; }
.banner-button{color: #fff; background-color: var(--orangeColor); font-family: "Source Sans Pro"; height: auto; width: auto; line-height: 25px; letter-spacing: 0px; font-weight: 400; font-size: 16px; padding: 15px 40px;}

/*===========================
        Section 2           
===========================*/
.sectionTwofont{ font-size: 18px; line-height: 25px; color: #000; font-weight: 600;}




/* Section 1 */
.section1 {
    background: #CCCCCC;
}
.section1 .cards a {
    text-decoration: none;
}
.section1 .container {
    padding: 100px 0;
}

.section1 .cards p {
    text-align: center;
    font-size: 16px;
    font-family: sans-serif;
    font-weight: 600;
}
.section1 .cards p:hover{
    color: #000;
}

.section1 .cards img {
    width: 100%;
    margin-top: 10px;
    height: 150px;
    object-fit: scale-down;
}

.section1 .card-5 p {
    font-size: 15px;
}
.section1 .card-6 img {
    height: 145px;
}

.section1 .card-1 img {
    height: 155px;
}

/* Section 2 */
.section2 .row {
    background: #fff;
}

.section2 .section2-content h1 {
    text-transform: uppercase;
    text-align: center;
    font-size: 30px !important;
    line-height: 35px;
    font-weight: 600;
    letter-spacing: 0px;
    color: var(--grayColor)
}
.section2 .section2-content {
    padding: 35px  15px;
}

/* Section 3 */
.section3{
    background: url(../img/section2_6.jpg);
    padding: 100px 0px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section3 .container-fluid {
    padding: 0px 80px;
}

.section3 .content {
    width: auto;
    height: auto;
    padding: 40px 35px 30px 35px;
    background: linear-gradient( 257deg ,#2388bd73,#231f46);
    border-radius: 15px;
}

.section3 .content h1 {
    color: #fff;
    font-family: sans-serif;
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 600;
}

.section3 .content p {
    color: #fff;
    margin-bottom: 25px;
}

.section3 .content span {
    color: #fff;
    font-style: italic;
    font-size: 18px;
    font-weight: 600;
}

/* Section 4 */
.section4 {
    background: linear-gradient(257deg, #2388bd, #231f46);
}

.section4 .container-fluid {
    padding: 50px 50px;
}

.section4 .section4-left .section4-left-content h1 {
    color: #fff;
    text-align: center;
}

.section4 .section4-left .section4-left-content p {
    color: #fff;
    text-align: center;
}

.section4 .section4-right .section4-right-content h1 {
    color: #fff;
    text-align: center;
}

.section4 .section4-left .section4-left-content label {
    color: #fff;
}
.section4 .section4-left .section4-left-content .form-name {
    display: flex;
    align-items: center;
    gap: 50px;
}

.section4 .section4-left .section4-left-content .form-name-field-1 {
    display: flex;
    flex-direction: column;
}

.section4 .section4-left .section4-left-content .form-name-field-2 {
    display: flex;
    flex-direction: column;
}

.section4 .section4-left .section4-left-content .form-email.field {
    display: flex;
    align-items: center;
    gap: 50px;
}

.section4 .section4-left .section4-left-content .form-email-field-1 {
    display: flex;
    flex-direction: column;
}
/* .section4 .section4-left .section4-left-content .custom-field {
    width: 420px;
} */
.section4 .section4-left .section4-left-content .sub-name {
    font-size: 13px;
}
.section4 .section4-left .section4-left-content .form-email-field-2 {
    display: flex;
    flex-direction: column;
}
.section4 .section4-left .section4-left-content .comment-field {
    width: 100%;
    height: 120px;
}

.section4 .section4-left .section4-left-content #phone {
    width: 100%;
}
.section4 .section4-left .section4-left-content span.red-star {
    color: #ff0a19;
}
.section4 .section4-left .section4-left-content .input-field:focus {
    background-color: transparent;
    color: white;
    outline: none;
}
.section4 .section4-left .section4-left-content .input-field  {
    background-color: #3f506000;
    box-sizing: border-box;
    border-radius: 2px;
    color: #fff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    display: block;
    float: none;
    font-size: 16px;
    border: 2px solid #fff;
    padding: 6px 10px;
    /* height: 38px; */
    /* width: 100%; */
    line-height: 1.3;
    box-shadow: 0px 10px 30px 0px rgb(0 0 0 / 15%);
}
.section4 .section4-left .section4-left-content .form-btn {
    background-color: #147691;
    border: 2px solid #fff;
    cursor: pointer;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    line-height: 25px;
    padding: 15px 25px;
}

/* Footer */

.main-footer .col .col-heading h4 {
    margin: 0 0 15px;
    font-size: 16px;
    line-height: 25px;
    color: #69696e;
}

.main-footer .col .footercol2-list a {color: #69696e;line-height: 25px;font-size: 16px;font-weight: 300 !important;text-decoration: none !important;}

.main-footer .footercol3 .col-content p {
    color: #69696e !important;
    font-size: 16px;
    line-height: 25px;
}

.main-footer .footercol1 .col-content p {
    color: #69696e !important;
    font-size: 16px;
    line-height: 25px;
}
.main-footer .col-heading img {
    width: 50%;
    display: block;
    margin-bottom: 18px;
    height: 30%;
}
.footerinnerdiv {
    display: flex;
    padding: 100px 0 0 0;
}
/* .main-footer .container {
    padding: 60px 0 25px 0;
} */

/* .main-footer .container {
    padding: 60px 0;
}
.main-footer .col .col-heading img {
    width: 250px;
}

.main-footer .row {
    justify-content: center;
    align-items: baseline;
}

.main-footer .col .col-content {
    margin-top: 50px;
}

.main-footer .col .col-content .footercol2-list {
    list-style: none;
    padding: 0;
}

.main-footer .col .col-content .footercol2-list li a {
    text-decoration: none;
    color: #000;
}
.main-footer .footercol3 .col-content p:before {
    content: '';
    width: 100%;
    position: absolute;
    border: 0.5px solid #000;
    top: 0;
}

.main-footer .footercol3 .col-content p {
    position: relative;
    padding-top: 15px;
} */









/*===========================
    History Page/About Us           
===========================*/
.historyContent-2 .historyContent-2-right-row2-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.historyContent-2  .historyContent-2-right-row1-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.historyBanner {
    background: url("../img/History/Historybanner.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 396px;
    display: flex;
    align-items: center;
}

.historyBanner-content {
    position: relative;
}

.historyBanner .historyBanner-content h1 {
 
    font-family: "Source Sans Pro";
    height: auto;
    color: rgb(255, 255, 255);
    text-decoration: none;
    white-space: normal;
    text-align: left;
    line-height: 79px;
    font-weight: 700;
    font-size: 64px;
}
.historyContent-1 .historyContent-left h1 {
    font-size: 35px;
    line-height: 40px;
    font-weight: 600;
    letter-spacing: 0px;
    color: var(--grayColor);
    margin-bottom: 15px;
}

.historyContent-1 .historyContent-left h4 {
    font-size: 30px !important;
    line-height: 35px;
    font-weight: 600;
    letter-spacing: 0px;
    color: var(--grayColor);
    margin-bottom: 15px;
}

.historyContent-1 .historyContent-left p {
    font-size: 16px;
    color: var(--grayColor);
    font-weight: 300;
    line-height: 25px;
    margin-bottom: 15px;
}

.historyContent-2 h1 {
    font-style: normal;
    color: var(--grayColor);
    font-size: 30px;
    line-height: 30px;
    font-weight: 600 !important;
}

.historyContent-2 .historyContent-2-mainHeading {
    position: relative;
}

.historyContent-2 .historyContent-2-mainHeading hr {
    position: absolute;
    top: 0;
    width: 70%;
    left: 403px;
    right: 0;
}

.historyContent-2 .historyContent-2-left .historyContent-2-left-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.historyContent-1 .row {
    padding: 100px 0 100px 0;
    display: flex;
    align-items: center;
}
.historyContent-1 .historyContent-right img {
    width: 100%;
}
.historyContent-2-left {
    padding: 50px 0;
}

.historyContent-2 .content-1 p {
    padding: 25px;
}

.historyContent-2 .content-2 p {
    padding: 0 45px;
}
.historyContent-2 .historyContent-2-right {
    padding-top: 55px;
}
.historyContent-2 .historyContent-2-right {
    padding-top: 55px;
}

.historyContent-2 .historyContent-2-right .historyContent-2-right-row1 .historyContent-2-right-row1-card p {
    color: #1354a2;
    font-weight: 600;
}


.historyContent-2 .historyContent-2-right-row1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 50px;
    padding: 25px 0;
}

.historyContent-2 .historyContent-2-right-row2 {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: start;
    padding: 25px 0;
}

.historyContent-2 .historyContent-2-right-row2 .icon {
    width: 50px;
}


.historyContent-2 .historyContent-2-right-row1 .historyContent-2-right-row1-card .icon {
    width: 50px;
}

.historyContent-2 .historyContent-2-right-row1 .historyContent-2-right-row1-card p {
    text-align: center;
    color: #1354a2;
    font-weight: 600;
}
.historyContent-2 .historyContent-2-right-row2 .historyContent-2-right-row2-card p {
    text-align: center;
    color: #1354a2;
    font-weight: 600;
}
.historyContent-2 .row {
    justify-content: center;
    align-items: center;
}
.historyTabs .historyTabsContent h1 {
    padding: 25px 0;
    font-style: normal;
    color: var(--grayColor);
    font-size: 30px;
    line-height: 30px;
    font-weight: 600;
}
ul#myTab {
    gap: 10px;
}
.historyTabs .historyTabsContent p {
    padding: 0 0 25px 0;
    font-size: 16px;
    color: var(--grayColor);
    font-weight: 300;
    line-height: 25px;
}
.historyTabs .nav-tabs .nav-item {
    border-color: #4d9ae1;
    background-color: #5aa1e3;
    color: #fff;
}
button#home-tab {
    border-color: #4d9ae1;
    background-color: #5aa1e3;
    color: #fff;
}
.tab-content .tab-pane p {
    /* padding: 0 0 25px 0; */
    font-size: 16px;
    color: var(--grayColor);
    /* font-weight: 300; */
    /* line-height: 25px; */
}
.tab-content .tab-pane ul li {
    /* padding: 0 0 25px 0; */
    font-size: 16px;
    color: var(--grayColor);
    /* font-weight: 300; */
    /* line-height: 25px; */
}
.historyTabs .tab-content ul {
    padding: 25px 0;
}

.historyTabs .tab-content .row {
    padding: 25px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*===========================
    About Us -> Page 4           
===========================*/
.patientBanner{
    background: url('../img/for-patients-banenr.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    display: flex;
    align-items: center;
}
.patientBanner h1{
    font-family: "Source Sans Pro";
    height: auto;
    color: rgb(255, 255, 255);
    text-decoration: none;
    white-space: normal;
    text-align: left;
    line-height: 79px;
    font-weight: 700;
    font-size: 64px;
}
.patientCardMain img {
    width: 100px;
}

.patientCard .patientCardMain {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 25px 50px;
    margin: 25px 0;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 15%);
    padding: 40px !important;
    border-radius: 6px;
    height: 360px;
}

.patientCard .patientCardMain h3 {
    text-align: center;
    font-size: 18px;
    font-size: 20px !important;
    line-height: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #69696e;
    margin: 15px 0;
}

.patientCard .patientCardMain p {
    font-size: 16px;
    line-height: 25px;
    color: #69696e;
    text-align: center;
    font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
}
.pateintContentMain h1 {
    font-size: 35px;
    line-height: 40px;
    font-weight: 600;
    color: #69696e;
    font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
}
.pateintContentMain h1 {
    font-size: 35px;
    line-height: 40px;
    font-weight: 600;
    color: #69696e;
    font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
    margin-bottom: 15px;
    text-align: center;
}

.pateintContentMain p {
    font-size: 16px;
    line-height: 25px;
    color: #69696e;
    margin: 0px 0 10px;
    text-align: center;
    font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
}

.patientContent .row {
    padding: 100px 0 50px 0;
}
/*===========================
    About Us -> Page 5           
===========================*/
.partnerBanner{
    background: url('../img/partner-banner.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    display: flex;
    align-items: center;
}
.partnerBanner h1{
    font-family: "Source Sans Pro";
    height: auto;
    color: rgb(255, 255, 255);
    text-decoration: none;
    white-space: normal;
    text-align: left;
    line-height: 79px;
    font-weight: 700;
    font-size: 64px;
}
.partner1 .content h1 {
    font-size: 35px;
    line-height: 40px;
    font-weight: 600;
    color: #69696e;
    font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
    margin-bottom: 15px;
    text-align: center;
}

.partner1 .content p {  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif; font-size: 16px;line-height: 25px;color: #69696e;margin: 0px 0 10px;text-align: center;}

.partner3 .content h1 {
    font-size: 35px;
    line-height: 40px;
    font-weight: 600;
    color: #69696e;
    font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
    margin-bottom: 15px;
    text-align: center;
}

.partner3 .content p {
    font-size: 16px;
    line-height: 25px;
    color: #69696e;
    margin: 0px 0 10px;
    text-align: center;
    font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
}

.partner3 .content p a {
    text-decoration: underline;
    font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
}
.partner2 .content h1 {
    font-size: 35px;
    line-height: 40px;
    font-weight: 600;
    color: #69696e;
    font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
    margin-bottom: 15px;
    text-align: center;
}

.partner2 .row {
    border-bottom: 1px solid;
    padding: 15px 0 10px 0;
    text-align: center;
}
.partner1 .content {
    padding: 100px 0 0 0;
}
.partner2 .content {
    padding: 50px 0 15px 0;
}
.partner3 .content {
    padding: 50px 0 100px 0;
}
/*===========================
    About Us -> Page 6           
===========================*/
.practitionerBanner{
    background: url('../img/career-main-image.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    display: flex;
    align-items: center;
}
.practitionerBanner h1{
    font-family: "Source Sans Pro";
    height: auto;
    color: rgb(255, 255, 255);
    text-decoration: none;
    white-space: normal;
    text-align: left;
    line-height: 79px;
    font-weight: 700;
    font-size: 64px;
}
.practitioner1 .content h1 {
    font-size: 35px;
    line-height: 40px;
    font-weight: 600;
    color: #69696e;
    font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
    margin-bottom: 15px;
}

.practitioner1 .content p {
    font-size: 16px;
    line-height: 25px;
    color: #69696e;
    margin: 0px 0 10px;
    font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
}

.practitioner1 .content {
    padding: 100px 0 50px 0;
}

.practitioner1 .content ul {
    list-style: disc !important;
    padding: 0 25px;
}

.practitioner1 .content ul li {
    font-size: 16px;
    line-height: 25px;
    color: #69696e;
    margin: 0px 0 10px;
}
.practitioner2 .content {
    padding: 0 0 25px 0;
}

.practitioner2 .content h1 {
    font-size: 35px;
    line-height: 40px;
    font-weight: 600;
    color: #69696e;
    font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
    margin-bottom: 15px;
}

.practitioner2 .content p {
    font-size: 16px;
    line-height: 25px;
    color: #69696e;
    margin: 0px 0 10px;
    font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
}
.practitioner2 .table {
    font-weight: 600;
    line-height: 25px;
    color: #69696e;
    font-size: 16px !important;
    font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
}
.practitioner3 .content {
    padding: 25px 0 50px 0;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}
.practitioner3 .content p {
    font-size: 16px;
    line-height: 25px;
    color: #69696e;
    font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
}
.practitioner3 .content p a{
    font-size: 16px;
    line-height: 25px;
    color: #69696e;
    font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
}
.practitioner3 .content  a{
    font-size: 16px;
    line-height: 25px;
    color: #69696e;
    text-decoration: underline;
    font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
}
/* ================================================
                Solution Pages
=================================================*/
.mainSolutionBanner{
    background: url(../img/banner-image-delete-1.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 500px;
    display: flex;
    align-items: center;
}
section.mainsolution1 {
    background: #0000a0;
    padding: 80px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.mainsolution1 .content p {
    font-weight: 600;
    line-height: 25px;
    color: #fff;
    text-align: center;
}
.solution-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 28px;
}

.mainSolutionBanner .content h1 {
    font-family: "Source Sans Pro";
    height: auto;
    color: rgb(255, 255, 255);
    text-decoration: none;
    white-space: normal;
    text-align: left;
    line-height: 79px;
    font-weight: 700;
    font-size: 64px;
}
.content ul {
    padding: 10px 0;
    margin: 0 0 15px 0;
}
.sideImge .img-fluid {
    width: 100%;
}
.mainsolution1 .content h1 {
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
}
.mainsolution2 .content h1 {
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
}
.solutionBanner {
    background: url('../img/solution/solutionpagebanner.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    display: flex;
    align-items: center;
}

.solutionBanner .content {
    position: relative;
}

.solutionBanner .content h1 {
    font-family: "Source Sans Pro";
    height: auto;
    color: rgb(255, 255, 255);
    text-decoration: none;
    white-space: normal;
    text-align: left;
    line-height: 79px;
    font-weight: 700;
    font-size: 64px;
}
.solution1 .content p {
    margin: 0 0 15px;
    font-size: 16px;
    color: #69696e;
    line-height: 25px;
}
.banneraccordian .accordion .accordion-body strong {
    margin: 0 0 15px;
    font-size: 16px;
    color: #69696e;
    line-height: 25px;
    font-weight: 400;
}

button.accordion-button:focus {
    background-color: #69696e;
    color: white;
}
/* .solution1 .container {
    padding: 100px 0px;
} */

/* .banneraccordian .container {
    padding: 100px 0;
} */



/* ================================================
                Shop Pages
=================================================*/
.shopBanner .content {
    text-align: center;
}

.shopBanner .content h1 {
    color: #69696e;
    font-family: 'Source Sans Pro' !important;
    font-style: normal !important;
    font-size: 50px !important;
    line-height: 40px !important;
    margin: 25px 0;
}

section.shopBanner {
    padding: 50px;
    background: rgba(247,247,247,1);
}
.shopProducts .product-content img {
    width: 100%;
}

.shopProducts .product-content {
    padding: 25px;
    margin: 25px 0;
    position: relative;
}

.product-name-price {
    text-align: center;
    margin: 10px 0;
}

.shopProducts .product-content .product-name-price a {
    text-decoration: none;
    color: #69696e;
}

/* .product-content .hover-icon {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background: #ddd;
    padding: 25px;
    position: absolute;
    right: 0;
    left: 25px;
    top: 341px;
    width: 366px;
    height: 0;
    opacity: 0;
} */

.product-content .hover-icon:hover {
    opacity: 1;
    height: 0px;
    background: #fff;
    transition: all .3s ease-in-out;
} 

/* ================================================
                compliance Pages
=================================================*/
.complianceBanner{
    background: url('../img/compliance/default-heading-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    display: flex;
    align-items: center;
}
.complianceBanner .content h1 {
    font-family: "Source Sans Pro";
    height: auto;
    color: rgb(255, 255, 255);
    text-decoration: none;
    white-space: normal;
    text-align: left;
    line-height: 79px;
    font-weight: 700;
    font-size: 64px;
}
.compliance1 .content {
    padding: 50px 0 0 0;
}
.compliance1 .content p {
    margin: 0 0 15px;
    font-size: 16px;
    color: #69696e;
    line-height: 25px;
}
.compliance2 .text-content h1 {
    font-size: 30px !important;
    line-height: 35px;
    font-weight: 600;
    letter-spacing: 0px;
    color: #69696e !important;
}
.compliance2 .text-content p {
    margin: 0 0 15px;
    font-size: 16px;
    color: #69696e;
    line-height: 25px;
}
.compliance2 .img-content img {
    width: 100%;
}

.compliance2 .row {
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}
.compliance3 .row {
    padding: 35px 0 50px 0;
}



/* ================================================
                career Pages
=================================================*/
.careerBanner{
    background: url('../img/compliance/default-heading-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    display: flex;
    align-items: center;
}
.careerBanner h1 {
    font-family: "Source Sans Pro";
    height: auto;
    color: rgb(255, 255, 255);
    text-decoration: none;
    white-space: normal;
    text-align: left;
    line-height: 79px;
    font-weight: 700;
    font-size: 64px;
}
.career-content-1 .row {
    padding: 100px 0 0 0;
}
.career-content-1 .right-content p {
    font-size: 16px;
    color: #69696e !important;
    font-weight: 400;
    line-height: 25px;
    font-family: 'Source Sans Pro';
    margin: 0 0 4px;
}

.career-content-1 .right-content strong {
    font-weight: 600;
    line-height: 25px;
    color: #69696e;
    margin: 0 0 15px;
}
.content-section-2 .main-content h1 {
    font-weight: 600;
    line-height: 25px;
    color: #69696e;
    margin-bottom: 25px;
}

.content-section-2 .main-content {
    padding: 50px 0;
}

.content-section-2 .main-content p {
    font-family: "Source Sans Pro";
    line-height: 25px;
    font-weight: 300;
    font-style: normal;
    color: #69696e;
    font-size: 16px;
    margin: 0 0 15px;
}
.content-section-2 .main-content h4 {
    font-weight: 600;
    line-height: 25px;
    color: #69696e;
    margin-bottom: 25px;
}

.content-section-2 .main-content ul li {
    font-family: "Source Sans Pro";
    line-height: 25px;
    font-weight: 300;
    font-style: normal;
    color: #69696e;
    font-size: 16px;
    margin: 0 0 15px;
}

.content-section-2 .main-content .career-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-section-2 .main-content .career-links a {
    font-family: "Source Sans Pro";
    line-height: 25px;
    font-weight: 300;
    font-style: normal;
    color: #69696e;
    font-size: 16px;
    margin: 0 0 15px;
    text-decoration: underline;
}


/* ================================================
                Contact Pages
=================================================*/

.contactBanner {
    background: url(../img/contact-us-main-image.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    display: flex;
    align-items: center;
}
.contactBanner h1 {

    font-family: "Source Sans Pro";
    height: auto;
    color: rgb(255, 255, 255);
    text-align: left;
    line-height: 79px;
    letter-spacing: 0px;
    font-weight: 700;
    font-size: 64px;
}
.contact-section1 .main-content .icon-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-section1 .main-content p {
    text-align: center;
}

.contact-section1 .row2 .icontext {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.contact-section1 .row2 .icontext .content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form .main-content h1 {
    font-size: 35px;
    line-height: 40px;
    font-weight: 600;
    letter-spacing: 0px;
    color: #69696e;
    text-align: center;
    margin: 0 0 15px;
}

.form .main-content p {
    font-size: 16px !important;
    line-height: 25px;
    color: #69696e;
    margin: 0 0 15px;
    text-align: center;
}
.field-contact-form {
    width: 500px;
    box-sizing: border-box;
    margin-bottom: 0;
    color: #626262;
    background-color: rgba(255, 255, 255, 1);
    border-color: #EBEBEB;
    font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
    box-shadow: inset 0 0 2px 2px rgba(0, 0, 0, 0.02);
    padding: 10px;
    outline: none;
    margin: 0;
    width: 1273px;
    max-width: 100%;
    display: block;
    margin-bottom: 20px;
    font-size: 15px;
    border-width: 1px;
    border-style: solid;
    border-radius: 0;
    box-sizing: border-box;
}
.button-contact-form {
    background-color: #0d4363;
    border: 0px !important;
    border-radius: 0px !important;
    color: #ffffff;
    margin: 0 10px 15px 0;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .03), inset 0px 4px 3px -2px rgba(0, 0, 0, .07);
    display: inline-block;
    position: relative;
    padding: 10px 20px;
    font-size: inherit;
    overflow: hidden;
    text-decoration: none !important;
    cursor: pointer;
    border-style: solid;
    transition: color .1s ease-in-out, background-color .1s ease-in-out, border-color .1s ease-in-out;
    font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
}
.contact-section1 .row {
    padding: 50px 0 25px 0;
}

.contact-section1 .row2 {
    padding: 25px 0 50px 0;
}

.form .main-content {
    padding: 100px 0  50px 0;
}

/* ================================================
                Contact Pages
=================================================*/

.blogBanner {
    background: url(../img/contact-us-main-image.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    display: flex;
    align-items: center;
}
.blogBanner .content h1 {
    font-family: "Source Sans Pro";
    color: rgb(255, 255, 255);
    text-decoration: none;
    white-space: normal;
    text-align: left;
    line-height: 79px;
    letter-spacing: 0px;
    font-weight: 700;
    font-size: 64px;
}
section.blogcontent {
    padding: 100px 0;
}
.blogcontent .content-img img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blogcontent .container {
    box-shadow: 0px 2px 18px 4px rgb(0 0 0 / 12%) !important;
    padding: 30px 50px 30px 50px;
    color: #69696e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blogcontent .content-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.blogcontent .content-text {
    padding: 25px 0;
}



/* ================================================
                Cart Pages
=================================================*/
.the_content_wrapper {
    margin: 0 1%;
}

.mfn-checkout-steps {
    list-style: none;
    margin: 0 0 40px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: disc outside;
color: #69696e;
}

.mfn-checkout-steps li:not(:last-child) {
    padding-right: 40px;
    margin-right: 40px;
    position: relative;
}

.the_content_wrapper ul li {
    margin-bottom: 0px;
}
.mfn-checkout-steps li {
    display: flex;
    align-items: center;
}

.mfn-checkout-steps li.active .mfn-step-number {
    background: #0095eb;
    color: #fff;
    border-color: transparent;
}
.mfn-checkout-steps li .mfn-step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    margin-right: 15px;
    border: 1px solid rgba(0,0,0,0.8);
    color: rgba(0,0,0,0.8);
}









/* ================================================
                CheckOut Pages
=================================================*/

.billing-form-label {
    line-height: 2;
    margin-bottom: 5px;
    font-weight: 500;
}

.billing-form-field {
    box-shadow: inset 0 0 2px 2px rgba(0, 0, 0, 0.02);
    font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
    color: #626262;
    background-color: rgba(255, 255, 255, 1);
    border-color: #EBEBEB;
    width: 100%;
    line-height: normal;
    padding: 10px;
    outline: none;
    margin: 0;
    display: block;
    margin-bottom: 20px;
    font-size: 15px;
    border-width: 1px;
    border-style: solid;
    border-radius: 0;
    box-sizing: border-box;
}
.order-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.sub-order-card {
    padding: 0 50px;
}

.order-card-content p {
    padding: 30px 25px;
    border: 1px solid rgba(0,0,0,0.8);
    border-radius: 8px;
}

.order-card-button {
    margin: 25px 0;
    text-align: center;
    background: var(--orangeColor);
    padding: 15px 10px;
    border-radius: 8px;
}

.order-card-button a {
    color: #fff;
    text-decoration: none;
}

.order-card-return {
    text-align: center;
}

.order-card-return a {
    color: rgba(0,0,0,0.8);
}

td {
    padding: 32px 10px;
    line-height: 1.4;
    background: none;
    box-shadow: 0 0 0 0;
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: rgba(0,0,0,0.8);
}


.order-card {
    background: rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 50px 0;
}

.order-card h1 {
    font-size: 30px;
    line-height: 35px;
    font-weight: 500;
    letter-spacing: 0px;
}
.the_content_wrapper {
    padding: 70px 0 29px 0;
}
.page-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}




.refer {
    background: url(../img/career-main-image.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 500px;
    align-items: center;
    display: flex;

}

.refer h1 {
    font-family: "Source Sans Pro";
    height: auto;
    color: rgb(255, 255, 255);
    text-decoration: none;
    white-space: normal;
    text-align: left;
    line-height: 79px;
    font-weight: 700;
    font-size: 64px;
    margin: auto 25px;

}
.refer2 .main {
    box-shadow: 0px 2px 18px 4px rgb(0 0 0 / 12%) !important;
    margin-top: 20px;
    margin-bottom: 50px;
    border-radius: 10px;
    background-color: #ffffff;
    padding: 60px 50px;
    margin: 80px 50px;
}


.refer2 .main {
    box-shadow: 0px 2px 18px 4px rgb(0 0 0 / 12%) !important;
    margin-top: 20px;
    margin-bottom: 50px;
    border-radius: 10px;
    background-color: #ffffff;
    padding: 60px 50px;
    margin: 80px 50px;
}

.refer2 .refer2-maim h1 {
    font-weight: 600;
    line-height: 25px;
    text-align: center;
    margin-bottom: 0;
    font-size: 32px;
    color: #69696e;
    letter-spacing: 0px;
    font-family: "Source Sans Pro";
    margin: 25px auto;
}

.refer2 .refer2-maim p {
    text-align: center;
    font-family: "Source Sans Pro";
    color: #69696e;
    font-size: 16px;
    line-height: 25px;
    margin: 0 0 15px;
}

.refer2 .refer2-maim .referbutton {
    background: #f98f08;
    color: #fff;
    padding: 15px 30px 15px 30px;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
}

.referbtn {display: flex;align-items: center;justify-content: center;}

.refer2 .row2 .row2-refer2-main h1 {
    font-size: 25px;
    line-height: 30px;
    font-family: Source Sans Pro;
    margin-bottom: 0;
    color: #69696e;
    font-weight: 400;
    letter-spacing: 0px;
    margin: 30px 0;
    
}

.row2 .row2-refer2-main p {
    font-family: "Source Sans Pro";
    color: #69696e;
    font-size: 16px;
    line-height: 25px;
}
.checkbox-item {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 15px 0;
}
input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #007bff; /* Blue border */
    border-radius: 4px; /* Rounded corners */
    outline: none; /* Remove focus outline */
    cursor: pointer;
}

/* Blue background when checked */
input[type="checkbox"]:checked {
    background-color: #007bff; /* Blue color */
}

.formbtn-1.formbtn {display: flex;}

.next-btn {
    font-size: 16px;
    font-weight: 500;
    line-height: 25px !important;
    letter-spacing: 0;
    color: rgb(255, 255, 255);
    /* display: inline-block; */
}

.nextbtn {
    background-color: #0d4363;
    transition: all 0.25s ease-in-out;
    cursor: pointer;
    overflow: hidden;
    padding: 20px 50px;
    display: inline-block;
    margin: 15px auto;
}

.prev-btn {
    font-size: 16px;
    font-weight: 500;
    line-height: 25px !important;
    letter-spacing: 0;
    color: rgb(255, 255, 255);
}

.prevbtn {
    background-color: #0d4363;
    transition: all 0.25s ease-in-out;
    cursor: pointer;
    overflow: hidden;
    padding: 20px 50px;
    display: inline-block;
    margin: 15px auto;
}

.form-group {
    margin: 25px 0;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    flex-direction: column;
}





.form-group {
    margin-bottom: 15px;
}
label {
    display: block;
    font-weight: bold;
    color: #69696e;
}
input[type="text"],
input[type="date"],
input[type="time"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 10px;
    border: 0.5px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 15px;
    margin-bottom: 0;
    margin-top: 0;
    box-shadow: inset 0 0 2px 2px rgba(0, 0, 0, 0.02);
    color: #626262;
    background-color: rgba(255, 255, 255, 1);
    border-color: #EBEBEB;
}
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
textarea:focus {
    outline-color: #4eb1b6;
    color: #626262;
    background-color: rgba(233, 245, 252, 1) !important;
    border-color: #d5e5ee;
}
button[type="submit"] {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.form-main .form-group label {
    color: #69696e;
}








.vaccineformfield {
    display: flex;
    align-items: center;
    gap: 15px;
}

#signatureCanvas {
    border-width: 2px;
    border-style: dashed;
    border-color: rgb(221, 221, 221);
    background-color: rgb(255, 255, 255);
    cursor: crosshair;
    pointer-events: auto;
    height: 180px;
    width: 300px;
}





  




  