@import "custom.css";


/*HEADER*/
header {
    position: sticky;
    width: 100%;
    z-index: 2;
    background: var(--sc);
    -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.05);
}


.logo a img {
    width: 147px;
}

.logo.menubar-mobile {
    cursor: pointer;
    padding: 8px 0;
}

.menubar {
    text-align: right;
}

.menubar > ul > li {
    display: inline-block;
}

.menubar > ul > li > a {
    text-transform: capitalize;
    font-weight: 500;
    padding: 6px 10px;
    -webkit-transition: .3s;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    font-size: 14px;
    color: var(--wc);
}

.menubar > ul > li > a:hover {
    color: var(--yc);
}

.menubar ul li a img {
    width: 16px;
    margin-right: 2px;
}

.sub-btn {
    position: relative;
}

.sub-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--wc);
    width: 150px;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    border-radius: 2px;
    z-index: 3;
}

.sub-btn:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(100%);
    -ms-transform: scaleY(100%);
    transform: scaleY(100%);
}

.sub-menu > a {
    display: block;
    width: 100%;
    padding: 5px 10px;
    text-transform: capitalize;
    font-weight: 500;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    color: var(--pc) !important;
    text-transform: capitalize;
}

.sub-menu > a:hover {
    background: var(--sc);
    color: var(--wc) !important;
}


header .fa-bars {
    font-size: 25px;
    cursor: pointer;
    padding: 10px;
    color: var(--wc);
}
.menubar ul li .lang-btn img{
    width: 20px;
}
.menubar ul li .lang-btn{
    border: 1px solid var(--wc);
    border-radius: 4px;
}
/*HEADER END*/

/*MOBILE MENU*/

/*ACCORDION CUSTOM*/
.mobile-logo img {
    width: 147px;
    margin-left: 10px;
}

.mobile-logo i {
    float: right;
    margin: 5px 20px;
    color: var(--pc);
    cursor: pointer;
    height: 25px;
    width: 25px;
    line-height: 25px;
    border: 1px solid var(--pc);
    border-radius: 50%;
    text-align: center;
    font-size: 14px;

}

.mobile-logo i:hover {
    border: 1px solid var(--sc);
    color: var(--sc);
}

.mobile-logo i:hover {
    color: var(--sc);
}

.custom.accordion-button {
    text-transform: capitalize;
    font-size: 15px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    color: var(--pc);
    font-weight: 400;
}

.custom.accordion-button:hover {
    color: var(--sc);
}

.custom.accordion-button:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    border-top: 1px solid #ccc;

}

.custom.accordion-button:not(.collapsed) {
    color: var(--sc);
    background: var(--rc);
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    font-weight: 400;
}

.none.accordion-button:not(.collapsed)::after {
    content: none;
    -webkit-transform: rotate(0deg) !important;
    -ms-transform: rotate(0deg) !important;
    transform: rotate(0deg) !important;
}


.none.accordion-button::after {
    content: none;
}

.custom.accordion-body {
    padding: 0 0px;
}

.custom.accordion-body ul {
    padding: 0;
    margin: 0;
}

.custom.accordion-body ul li {
    list-style: none;
    padding: 8px 0;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.custom.accordion-body ul li a {
    text-decoration: none;
    font-size: 15px;
    text-transform: capitalize;
    color: var(--pc);
    font-weight: 400;
    display: inline-block;
    margin-left: 40px;
}

.custom.accordion-body ul li a i {
    font-size: 10px;
    margin-right: 10px;
}

.custom.accordion-body ul li:hover {
    color: var(--wc);
    background: var(--rc);
}

.custom.accordion-body ul li:hover a {
    color: var(--sc);
}

.custom.accordion-item a {
    text-decoration: none;
    display: block;
    width: 100%;
}

.custom.accordion-item .accordion-button {
    display: block;
    width: 100%;
}

.accordion-button.custom i {
    padding: 0 10px;
}

.custom.accordion-button:focus {
    border: none;
}

/*ACCORDION CUSTOM END*/


.mobile-menu {
    width: 300px;
    position: fixed;
    left: -380px;
    top: 0;
    z-index: 3;
    background: var(--wc);
    height: 100%;
    overflow: auto;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    padding: 10px 0;
}

#mobileOverlay {
    position: fixed;
    left: 0;
    width: 100%;
    top: 0;
    height: 100%;
    background: rgba(41, 0, 91, 0.59);
    z-index: 2;
    cursor: pointer;
}

.mobileAdd {
    left: 0 !important;
    width: 300px;
}

.mobile-overlay {
    position: inherit !important;
}

/*MOBILE MENU END*/

/*banner section*/
.banner-section {
    background: #E8F5F4;
}

.banner-overlay {
    background-image: url(../images/photos/banner-bg.png);
    background-repeat: no-repeat;
    background-position: right top;
}

.banner-content {
    max-width: 850px;
}

.banner-content p {
    font-size: 40px;
    line-height: 50px;
    color: var(--sc);
}

.banner-content h1 {
    font-weight: 700;
    font-size: 75px;
    line-height: 70px;
    color: var(--sc);
    text-transform: uppercase;
    padding: 10px 0;
}

.banner-content h4 {
    font-size: 50px;
    line-height: 50px;
    color: var(--sc);
    font-weight: 500;
}

.search-content label {
    display: block;
    font-weight: 600;
    font-size: 18px;
    padding-bottom: 5px;
}

.search-content > div {
    width: 25%;
    padding: 7px;
}

.search-content {
    background: var(--wc);
    padding: 10px;
    border-radius: 5px;
}


.search-content select {
    display: block;
    width: 100%;
    padding: 8px;
    border-radius: 5px;
    outline: none;
    border: none;
    font-weight: 500;
    color: #424242;
    border: 1px solid var(--gc);
}

.search-content select:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    border: 1px solid var(--sc);
}

.search-content input {
    display: block;
    width: 100%;
    padding: 8px;
    border-radius: 5px;
    outline: none;
    border: none;
    font-weight: 500;
    color: #424242;
    border: 1px solid var(--gc);
}

.search-content input:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    border: 1px solid var(--sc);
}

.search-content label {
    color: var(--gc);
    font-weight: 400;
    margin-bottom: 10px;
    display: inline-block;
    top: -4px;
}


.search-content button {
    font-weight: 700;
    font-size: 18px;
    width: 100%;
    background: var(--sc);
    color: var(--wc);
    border-radius: 5px;
    padding: 15px 0;
    height: 100%;
}

.search-content button i {
    margin-right: 10px;
}

.select-service label {
    font-weight: 500;
    padding: 0 5px;
}
.gole-right.service-single h4{
    font-size: 24px;
    line-height: 35px;
}

/*banner section end*/

/*company section*/
.sorted-select select {
    padding: 8px;
    border: 1px solid var(--pc2);
    outline: none;
    border-radius: 5px;
    transition: .2s;
}

.company-tabs .nav-item .nav-link.active {
    background: var(--sc);
    color: var(--wc);
    border-radius: 20px;
}

.company-tabs .nav-item .nav-link {
    color: var(--pc);
    font-weight: 500;
    background: #F5F5F5;
    border-radius: 20px;
    margin: 0 5 px;
}

.company-box {
    text-align: center;
    background: var(--wc);
    border: 1px solid #CCCCCC;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 20px 10px;
    height: 100%;
}

.company-box img {
    width: 100px;
    margin-bottom: 15px;
}

.company-box h6 {
    font-size: 20px;
    line-height: 23px;
    color: var(--pc2);
}

.company-box p {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    margin: 0;
    padding: 8px 0;
}

.company-box h5 {
    font-weight: 700;
    font-size: 20px;
    line-height: 23px;
    color: #FF7D04;
    padding: 5px 0;
}

.company-box a {
    font-weight: 700;
    font-size: 14px;
    color: var(--wc);
    background: var(--sc);
    padding: 6px 30px;
    border-radius: 18px;
    border: 1px solid var(--sc);
    transition: .2s;
}

.company-box a:hover {
    color: var(--sc);
    background: none;
}

/*company section end*/

/*enviroment section*/
.enviroment-content ul li {
    position: relative;
    padding: 15px 0;
    padding-left: 50px;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: var(--bc);
    transition: .2s;
}

.enviroment-content ul li:hover {
    color: #41A400;
}

.enviroment-content ul li img {
    position: absolute;
    left: 0;
    width: 30px;
}

/*enviroment section end*/

/*GOLE SECTION*/
.gole-img {
    position: relative;
}

.gole-img img {
    width: 100%;
}

.gole-img .play-btn {
    position: absolute;
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.gole-right h4 {
    font-weight: 500;
    font-size: 35px;
    line-height: 41px;
    color: var(--sc);
}

.gole-right ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;

}

.gole-right ul li i {
    position: absolute;
    top: 12px;
    left: 0;
    color: var(--sc);
}

.gole-right a {
    font-weight: 500;
    font-size: 18px;
    background: var(--sc);
    color: var(--wc);
    padding: 8px 20px;
    transition: .2s;
}

.gole-right a:hover {
    background: rgba(30, 66, 94, 0.8);
}

/*GOLE SECTION END*/

/*SERVICE SECTION*/
.service-section {
    background: #E8F5F4;
}

.service-box {
    background: #FFFFFF;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.25);
    border-radius: 0px 0px 10px 10px;
    padding: 18px;
    border-top: 3px solid #ADE28A;
    transition: .3s;
}

.service-box h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: var(--sc);
    transition: .3s;
}

.service-box p {
    color: var(--sc);
    padding-top: 10px;
    transition: .3s;
}

.service-box:hover {
    background: #41A400;
    border-top: 3px solid #1E425E;
}

.service-box:hover p {
    color: var(--wc);
}

.service-box:hover h4 {
    color: var(--wc);
}

.service-all-btn a {
    font-weight: 500;
    font-size: 18px;
    color: var(--sc);
    border: 2px solid var(--sc);
    padding: 8px 16px;
    transition: .3s;
}

.service-all-btn a:hover {
    color: var(--wc);
    background: var(--sc);
}

.apps-img a {
    background: none;
    padding: 0;
}

.apps-img a:hover {
    background: none;
}

.apps-img a img {
    height: 50px;
    width: auto;
}

/*SERVICE SECTION END*/

/*AVAILABLE SECTION*/
.available-section {
    background: var(--sc);
}

.available-left h4 {
    font-weight: 700;
    font-size: 35px;
    line-height: 50px;
    color: var(--wc);
}

.available-left .available-check > div {
    width: 50%;
}

.available-check i {
    color: #ADE28A;
    font-size: 20px;
    margin-right: 10px;
}

.available-check > div {
    padding: 10px 0;
}

.available-check span {
    font-weight: 500;
    font-size: 16px;
    color: var(--wc);
}

.available-left a {
    font-weight: 700;
    font-size: 16px;
    color: var(--sc);
    background: #ADE28A;
    padding: 10px 25px;

}

.available-img img {
    width: 100%;
}

/*AVAILABLE SECTION END*/

/*BLOG SECTION*/
.blog-box img {
    width: 100%;
    margin-bottom: 15px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog-box span {
    font-weight: 500;
    color: #686868;
}

.blog-box h4 {
    font-weight: 500;
    font-size: 24px;
    line-height: 35px;
    color: var(--sc);
}

.blog-box a {
    font-weight: 600;
    font-size: 16px;
    color: var(--wc);
    background: var(--sc);
    padding: 8px 25px;
}

/*BLOG SECTION END*/

/*FOOTER SECTION*/
.footer-part {
    background: var(--sc);
}

.footer-title .paragraph {
    font-weight: 500;
    font-size: 18px;
    color: var(--wc);
    position: relative;
}

.footer-title .paragraph::after {
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--yc);
    top: 30px;
    left: 0px;
    content: '';
}

.footer-link ul li {
    transition: .4s ease;
}

.footer-link ul li i {
    color: var(--pyc);
}

.footer-link ul li a {
    color: var(--wc);
}

.footer-link ul li:hover {
    margin-left: 5px;
}

.footer-part .media img {
    border: 5px solid var(--wc);
}

.footer-part .media p {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: var(--wc);
}

.footer-part .media span {
    color: var(--tc);
}

.footer-part .custom-control {
    height: 45px;
    font-weight: 400;
    font-size: 14px;
    padding-left: 10px;
    color: #474747;
    border: none;
    background: var(--wc);
    outline: none;
    border-radius: 5px;
}

.footer-social-media a i {
    height: 28px;
    width: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid var(--yc);
    color: var(--sc);
    background: var(--yc);
    font-size: 15px;
    transition: .2s;
    margin: 0 4px;
}

.footer-social-media a i:hover {
    color: var(--yc);
    background: none;

}

.subscribe-form {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.subscribe-form input {
    display: block;
    width: 100%;
    padding: 10px;
    background: #FCFCFF;
    border-radius: 5px;
    outline: none;
    border: none;

}

.subscribe-form input::placeholder {
    color: #A7A7A7;
    font-weight: 500;

}

.subscribe-form button {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    padding: 0 15px;
    background:
        var(--tc);
    color: var(--sc);
    font-weight: 700;
    font-size: 14px;

}

/* copyright section */
.copyright-part {
    background: #001B30;
}

.copyright-part span {
    color: var(--tc);
}
.copyright-part p{
    margin: 0;
}
/* FOOTER PART END */


/*SERVICE PAGE*/
.service-banner-content h6 {
    color: var(--yc);
    font-size: 20px;
}

.service-banner-content h2 {
    font-weight: 500;
    font-size: 55px;
    line-height: 64px;
    color: var(--wc);
}

.service-banner-content .select-service label {
    color: var(--wc);
}

.service-left {
    background: #F3F3F3;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 15px;
    position: sticky;
    top: 100px;
}

.service-left input {
    display: block;
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #CCCCCC;
    border-radius: 10px;
    font-weight: 500;
    font-size: 16px;
    padding: 8px;
    outline: none;
}

.service-left input::placeholder {
    font-weight: 500;
    font-size: 16px;
}

.service-left select {
    display: block;
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #CCCCCC;
    border-radius: 10px;
    font-weight: 500;
    font-size: 16px;
    padding: 8px;
    outline: none;
}

.service-left select::placeholder {
    font-weight: 500;
    font-size: 16px;
}

.service-left label {
    color: var(--pc2);
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 5px;
}

.service-page-box img {
    width: 100%;
    margin-bottom: 10px;
}

.service-page-box h6 {
    font-size: 16px;
    color: var(--bc);
}

.service-page-box a {
    font-weight: 500;
    color: var(--wc);
    background: var(--sc);
    display: block;
    width: 100%;
    text-align: center;
    padding: 8px;
    border: 1px solid var(--sc);
    transition: .2s;
}

.service-page-box a:hover {
    background: none;
    color: var(--sc);
}

.service-page-box p {
    margin: 0;
    padding: 5px 0;
}

.looking-section {
    background: #E8F5F4;
}

.custom-form input {
    display: block;
    width: 100%;
    background: #E8F5F4;
    border: 1px solid #1E425E;
    border-radius: 10px;
    padding: 10px;
    outline: none;
}

.custom-form-box {
    position: relative;
}

.custom-form-box label {
    position: absolute;
    top: -10px;
    left: 10px;
    padding: 0 5px;
    background: #E8F5F4;
    font-weight: 500;
    color: var(--bc);
}

.custom-form textarea {
    display: block;
    width: 100%;
    background: #E8F5F4;
    border: 1px solid #1E425E;
    border-radius: 10px;
    padding: 10px;
    outline: none;
    height: 100px;
}
.custom-form textarea::placeholder{
    font-weight: 500;
    color: var(--bc);
}
.custom-form button{
    font-weight: 700;
    font-size: 16px;
    color: var(--wc);
    background: var(--sc);
    border-radius: 5px;
    padding: 10px 25px;
}
.looking-section h6{
    font-weight: 600;
    font-size: 55px;
    line-height: 65px;
    color: var(--sc);
}
.looking-section p{
    font-size: 16px;
    max-width: 753px;
}
.service-category-menu{
    background: #13293A;
}
.service-category-menu .menubar{
    text-align: center;
}
.service-category-menu .menubar ul li a{
    color: #D6D6D6;
}
.service-category-menu .menubar ul li a:hover{
    color: #ADE28A;
}
.page-title {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: scroll;
}
.page-title h4{
    font-weight: 700;
    font-size: 35px;
    line-height: 41px;
    background: rgba(173, 226, 138, 0.85);
    text-align: center;
    padding: 30px 0;
}
.single-service-section{
    background: #E5E5E5;
}
.single-service-box{
    background: #FFFFFF;
box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.25);
border-radius: 0px 0px 10px 10px;
}
.single-service-box img{
    width: 100%;
}
.single-service-box h4{
    font-weight: 700;
    font-size: 24px;
    line-height: 40px;
    color: var(--sc);
}
.single-service-box p{
    color: var(--sc);
}
.single-service-box a{
    font-weight: 700;
    font-size: 16px;
    color: #E8F5F4;
    background: var(--sc);
    padding: 8px 20px;
}
/*SERVICE PAGE END*/

/*rahabilitation page*/
.feturn-text ul li{
    position: relative;
    padding: 10px 0;
    padding-left: 110px;
}
.feturn-text ul li .feturn-icon{
    width: 50px;
    height: 50px;
    line-height:50px;
    text-align: center;
    background:#0079D7;
    border-radius: 50%;
    position: absolute;
    left: 0;
}
.feturn-text ul li .feturn-icon img{
    width: 50%;
    background: #0079D7;
}
.feturn-text ul li  h6{
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    color: var(--sc);
}
.feturn-text ul li p{
    font-size: 16px;
}
/*rahabilitation page end*/


/*CONTACT PAGE*/
.contact-icon img{
    margin-right: 15px;
}
.contact-location h6{
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    color: var(--sc);
    border-bottom: 1px solid #cccccc;
    padding-bottom: 12px;
}
.contact-location p{
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    color: var(--sc);
}
.contact-social a i{
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 14px;
    border-radius: 50%;
    color: var(--wc);
    background: var(--sc);
    border: 1px solid var(--sc);
    margin-right: 5px;
    transition: .2s;
}
.contact-social a i:hover{
    color: var(--sc);
    background: none;
}
.contact-form{
    background: #E8F5F4;
}
.contact-form input{
    display: block;
    width: 100%;
    background: var(--wc);
border-radius: 8px;
    padding: 15px;
    border: none;
    outline: none;

}
.contact-form label{
    font-size: 15px;
    font-weight: 400;
    color: var(--bc);
}
.contact-form input::placeholder{
    font-weight: 500;
}
.contact-form select{
    display: block;
    width: 100%;
    background: var(--wc);
border-radius: 8px;
    padding: 10px;
    border: none;
    outline: none;

}
.contact-form select::placeholder{
    font-weight: 500;
}
.contact-form textarea{
    display: block;
    width: 100%;
    background: var(--wc);
border-radius: 8px;
    padding: 10px;
    border: none;
    outline: none;
    height: 150px;
}
.contact-form textarea::placeholder{
    font-weight: 500;
}
.contact-form button{
    font-weight: 500;
    font-size: 18px;
    color: var(--wc);
    background: var(--sc);
    padding: 10px 30px;
    border-radius: 10px;
}
/*CONTACT PAGE END*/

/*COMMUNITY PAGE*/
.community-box{
    text-align: center;
}
.community-img{
    height: 150px;
    width: 150px;
    line-height: 150px;
    text-align: center;
    border-radius: 50%;
    background: var(--sc);
    margin: 0 auto;
    margin-bottom: 10px;
}
.community-box h6{
    font-weight: 700;
    line-height: 28px;
    font-size: 24px;
    color: var(--sc);
    padding: 10px 0;
}
.enviroment-section{
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: scroll;
}
.enviroment-box{
    background: rgba(255, 255, 255, 0.9);
border-radius: 10px;
    padding: 30px;
    max-width: 900px;
    margin: 0 auto;
}
.enviroment-box h6{
    font-weight: 500;
    font-size: 24px;
    line-height: 26px;
    color: var(--bc);
}

.enviroment-box a{
    font-weight: 700;
    font-size: 18px;
    color: var(--wc);
    background: var(--sc);
    padding: 10px 30px;
    border-radius: 5px;
    border: 1px solid var(--sc);
    transition: .2s;
}
.enviroment-box a:hover{
    color: var(--sc);
    background: none;
}

/*COMMUNITY PAGE END*/

/*ABOUT PAGE*/
.goal-section{
    background: #E8F5F4;
}
.goal-box{
    background: #FFFFFF;
box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.25);
border-radius: 0px 0px 10px 10px;
    padding: 20px;
    background-image: url(../images/icons/goal.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    overflow: hidden;
    height: 100%;
}
.goal-box span{
    font-weight: 400px;
    font-size: 40px;
    line-height: 48px;
    color: var(--sc);
    font-family: 'Bebas Neue', cursive;
    margin-bottom: 10px;
    display: inline-block;

}
/*ABOUT PAGE END*/

/*COMPANY PAGE*/
/*
.company-section{
    background: var(--sc);
}
*/
.company-section img{
    width: 150px;
    margin-right: 30px;
}
.company-section h5{
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
}
/*
.company-section p{
    color: var(--wc);
}
*/
.company-section a{
    padding: 4px 15px;
    border-radius: 15px;
    margin-right: 10px;
}
.company-section2.company-profile{
    background: var(--sc)
}
.company-section2.company-profile img{
    margin-right: 20px;
    width: 125px;
}
.company-section2.company-profile h5{
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: var(--wc);
}
.company-section2.company-profile  p{
    font-weight: 400px;
    font-size: 14px;
    color: var(--wc);
}
.company-section2.company-profile a{
    font-weight: 500px;
    font-size: 14px;
    color: var(--wc);
    background: #2B5779;
    padding: 3px 15px;
    border-radius: 15px;
    margin: 0 4px;
}
/*COMPANY PAGE END*/


/* LOGIN PAGE */
.signin-section{
    background: #f0f0f0;
}
.login-box{
    margin:  0 auto;
    max-width: 500px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    padding: 40px;
    border-radius: 15px;
    background: var(--wc);
}
/* .login-form {
    background: var(--wc);
    height: 100%;
    border-radius: 10px;
    position: relative;
} */

.login-form h5 {
    color: var(--sc);
    font-weight: 600;
    font-size: 32px;
    text-align: center;
}

.login-form .custom-control {
    font-weight: 400;
    font-size: 16px;
    color: #757575;
    height: 40px;
    width: 100%;
    padding-left: 15px;
    outline: none;
    border-radius: 5px;
    border: 1px solid var(--gc);
}

.login-btn {
    width: 100%;
    height: 45px;
    background: var(--sc);
    border-radius: 5px;
    color: var(--wc);
}

.login-btn a {
    font-weight: 500;
    font-size: 16px;
    color: var(--wc);
    width: 100%;
    padding: 13px 100px;
    border-radius: 5px;
    line-height: 45px;
}

.signup-link p {
    left: 45px;
    bottom: 20px;
    font-weight: 500;
    font-size: 15px;
    color: var(--ac);
    margin: 0;
    text-align: right;
}

.signup-link a {
    color: #1565C0;
}
/* LOGIN PAGE END*/


.pages-banner-overlay {
    background: var(--sc);
}

.latest-post .search-bar {
    position: relative;
}


.latest-post .search-bar input {
   width: 100%;
   height: 100%;
   border: 1px solid var(--gc);
   border-radius: 10px;
   padding: 10px;
   overflow: hidden;
   outline: none;
}
.latest-post .search-bar button{
    position: absolute;
    top: 2px;
    right: 4px;
    background: none;
    height: 90%;
    background: var(--wc);
}
.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu){
    border-top-right-radius: 10px;
     border-bottom-right-radius: 10px;
}
.blog-details li{
    padding: 0;
}
.more-blog img{
    width: 100px;
}
.more-blog a p{
    color: var(--pc);
}
.more-blog a:hover p{
    color: var(--sc);
}
