@import url('https://fonts.googleapis.com/css2?family=Fira+Sans+Condensed:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
:root {
    --main-color: #183c5a;
    --brand-color: #ce7f2e;
    --body-color: #7a7a7a;
    --secondary-color: #262F36;
    /*#27262c*/
    --font-family-main: 'Roboto', sans-serif;
    --font-family-body: 'Fira Sans Condensed', sans-serif;
}

html {
    font-size: 16px;
}

body {
    font-family: var(--font-family-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--body-color);
    
}
body p{
    text-align:justify;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-body);
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

a,
a:hover,
a:active {
    text-decoration: none;
}

button:active,
.btn:active,
button:focus,
.btn:focus,
.form-control:focus,
input:focus {
    outline: unset !important;
    box-shadow: none !important;
}

button,
.btn,
.button-bn,
.button-df {
    font-family: var(--font-family-main);
    font-weight: 500;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.image {
    display: block;
    position: relative;
}

.image.is-5by4 {
    padding-top: 90%;
}

.image.is-4by3 {
    padding-top: 75%;
}

.image.is-5by3 {
    padding-top: 50%;
}

.image.is-5by4 img,
.image.is-4by3 img,
.image.is-5by3 img {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(25, 25, 21, 0.55);
}

.parallax {
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.float-container {
    position: fixed;
    top: 45%;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    width: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    z-index: 999999;
}

.float-container a {
    z-index: 99;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 200px;
    height: 30px;
    margin-right: -150px;
    margin-bottom: 10px;
    padding: 10px 20px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    color: white;
    border-color: #46b8da;
    border-radius: 5px 0 0 5px;
    background-color: #eb690b;
    -webkit-box-shadow: 0 2px 4px #7d7d7d;
    box-shadow: 0 2px 4px #7d7d7d;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    font-family: var(--font-family-main);
    
}

.float-container a:hover {
    margin-right: 0;
    background-color: #c45100;
    -webkit-box-shadow: 0 2px 4px #7d7d7d;
    box-shadow: 0 2px 4px #7d7d7d;
}

#paginationContainer a{
   color: white;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
    border: 1px solid #ddd;
    background: #183c5a;
}
.pagination a.active {
  background-color: #183c5a !important;
  color: white;
}


/* Icon settings - remove if not needed*/
.float-container .icon:before {
    font-family: "Font Awesome 5 Free";
    margin-right: 20px;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.icon.one:before {
    content: "\f073";
}

.icon.two:before {
    content: "\f086";
}

.icon.three:before {
    content: "\f1d8";
}
#icon1,#icon2,#icon3,#icon4,#icon5,#icon6,#icon7,#icon8,
#icon9,#icon10,#icon11,#icon12,#icon13,#icon14,#icon15,#icon16,#icon17,#icon18,#icon19,#icon20,#icon22,#icon23,#icon24,
#icon25,#icon26,#icon27,#icon28,#icon29,#icon30,#icon31,#icon32{
    font-size: 11px;
    border-radius: 10px;
    border: 1px solid #000;
   padding: 3px 13px 3px 7px;
   margin-left:3px;

    
    
}
#icon21{
      font-size: 11px;
    border-radius: 10px;
    border: 1px solid gray;
   padding: 3px 13px 3px 7px;
   margin-left:3px;
}






/* Media queries */
@media screen and (max-width:440px)
{
    
	.float-container .icon:last-child {
		display: none;
	}
    .float-container
    {
        position: fixed;
        top: auto;
        bottom: 0;

        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
            -ms-flex-direction: row;
                flex-direction: row;

        width: 100%;

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: auto;
        -webkit-box-align: auto;
        -ms-flex-align: auto;
        align-items: auto;
    }
		.float-container a.icon
    {
        right: 0;
        bottom: 0;

        width: 100%;
        margin-right: 0;
        margin-bottom: 0;
        padding: 5px;

        border-radius: 0;
        -webkit-box-shadow: 0 0 0 #7d7d7d;
                box-shadow: 0 0 0 #7d7d7d;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
		border-left: 1px solid darkorange;
		border-right: 1px solid darkorange;
    }
    
   .header-social-links{
       display:none !important;
       
   }
}


/* about us page ko css start */

.banner-slider {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 3rem 1rem;
    position: relative;
  
}

.banner-text {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    position: relative;
    color: rgb(0, 0, 0);
}

.banner-text h1 {
    font-size: 34px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

.bg {
    position: absolute;
    background-color: var(--body-color);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.75;
}

.bannder-table {
    display: table;
    width: 100%;
    /*height: 100%;*/
}

.header {
    border-top: 5px solid var(--brand-color);
}

.pb_30 {
    padding-bottom: 30px !important;
}

.pt_60 {
    padding-top: 60px !important;
}

p {
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-family-main);
}


/* about us page ko css end */


/* team ko css start */

.pb_90 {
    padding-bottom: 90px !important;
}

.team-item img {
    width: 100%;
    height: auto;
}


img {
    max-width: 100%;
    height: auto;
}

.team-item {
    overflow: hidden;
    border: 1px solid #ddd;
    margin-top: 30px;
    position: relative;
}
.team-item .team-photo {
    height: 288px;
}

.team-text {
    text-align: center;
    color: #fff;
    background: var(--brand-color);
    padding: 15px;
    position: relative;
    z-index: 99;
}

.team-social {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 20px;
    background: #eef1f5;
    padding: 10px 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.team-social ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.team-social li {
    display: inline-block;
    margin-left: -5px;
}

.team-social li a {
    display: block;
    width: 35px;
    height: 33px;
    line-height: 33px;
    background: #f1f1f1;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #eaeaea;
    text-decoration: none;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

a:hover,
a:active,
a:visited,
a:focus {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

a {
    font-size: 13px;
}

.executive-team-photo {
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.executive-team-photo img {
    width: 100%;
    height: 100%;
}

.staff-team-photo img {
    border-radius: 10px;
    border: 1px solid var(--body-color)
}

.executive-team-text h4,
.staff-team-text h4 {
    color: var(--brand-color);
}

.executive-team-content,
.executive-team-content>p,
.staff-team-content,
.staff-team-content>p {
    font-size: 14px;
    font-size: 1.4;
}


/* .header-area,
ul.nav-menu li ul li a,
.searchbar .input-search,
.text-animated li a,
.slider-one .owl-nav .owl-prev,
.slider-one .owl-nav .owl-next,
.about-tab:before,
.progress-gallery .bar-container .progress .progress-bar-custom,
.choose-item:before,
.feature-icon i,
.feature-item:hover .feature-text,
.bg-counterup,
.portfolio-bg,
.faq-header button.faq-button,
.faq-header button.faq-button.collapsed:hover,
.booking-area:before,
.bg-booking,
.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next,
.team-text,
.team-social li a:hover,
.price-header i,
.button-df a,
.bg-testimonial,
.testimonial-carousel .owl-dots .owl-dot,
.blog-carousel .owl-nav .owl-prev,
.blog-carousel .owl-nav .owl-next,
.blog-author li.blog-button a,
.call-us:before,
.footer-item h3:before,
.footer-item h3:after,
.footer-item .btn,
.footer-item ul.footer-social li a,
.scroll-top,
.headstyle h4:before,
.headstyle h4:after,
.team-detail-text ul li a,
.sidebar-item h3:before,
.sidebar-item h3:after,
.event-contact-item,
.gallery-bg,
.testimonial-grid .testimonial-description p:before,
.testimonial-two-carousel .testimonial-description p:before,
.form-button .btn,
.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next,
.sidebar-item button,
.contact-item:hover .contact-icon,
.contact-form .btn, span.input-group-btn{
    background: #000000!important;
} */

.team-text a {
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    font-family: var(--font-family-main);
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 4px;
    text-decoration: none;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.team-text p {
    margin: 0;
    text-align:center;
}


/* team ko css end */


/* team-detail ko css start */

.team-detail-photo {
    margin-top: 30px;
}

.team-info {
    background: #f5f5f5;
    border: 1px solid #e1e1e1;
    padding: 30px;
    margin-top: 30px;
}

.headstyle h4 {
    display: inline-block;
    position: relative;
    font-size: 22px;
    font-weight: 500;
    padding-bottom: 9px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.headstyle h4:before {
    position: absolute;
    content: '';
    width: 70%;
    height: 1px;
    background: #010918;
    left: 0;
    bottom: 0;
}

.headstyle h4:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: #010a1b;
    left: 0;
    bottom: -5px;
}

.team-info ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.team-info ul li {
    padding-bottom: 5px;
}

.team-info ul li span {
    color: #031535;
    margin-right: 10px;
}

.team-detail-text {
    margin-top: 30px;
}

.team-detail-text ul {
    list-style: none;
    margin: 0;
    margin-top: 15px;
    padding: 0;
}

.team-detail-text ul li {
    text-align: center;
    display: inline-block;
    margin-right: 7px;
    margin-top: 5px;
}

.team-detail-text ul li a {
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: var(--main-color);
    color: #fff;
    transition: all 0.3s;
}

.team-detail-text h4 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 7px;
    color: rgb(0, 0, 0) !important;
}

.team-detail-text p {
    margin-top: 20px;
}


/* team-detal ko css end */


/* partners css start */

.partners-item {
    background-color: #fff;
    border: 1px solid #ddd;
}

.partners-photo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
    margin: 0 auto;
}
/*.partners-photo img{*/
/*    height:100px;*/
/*}*/


/* partners css end */


/* photo gallery ko css start */

.gallery-group {
    border: 1px solid #ededed;
    margin-top: 30px;
}

.gallery-photo {
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 196px;
    position: relative;
}

.gallery-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--main-color);
    visibility: hidden;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

.gallery-table {
    display: table;
    width: 100%;
    height: 100%;
}

.gallery-icon {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.gallery-icon a {
    position: relative;
    font-size: 26px;
    color: #fff;
    text-decoration: none;
    z-index: 99;
}

.gallery-group:hover .gallery-bg {
    opacity: 0.7;
    transform: scale(1);
    visibility: visible;
}

.gallery-icon a {
    position: relative;
    font-size: 26px;
    color: #fff;
    text-decoration: none;
    z-index: 99;
}

.gallery-group:hover .gallery-icon {
    opacity: 1;
    visibility: visible;
}


/* photo gallery ko css end */


/* faq ko css start */

.mt-30 {
    margin-top: 30px !important;
}

.faq-item {
    border: 0px;
    margin-bottom: 15px;
}

.faq-body {
    border: 1px solid #fff;
    border-top: 0;
    background: #fff;
    padding: 25px;
    line-height: 1.6;
}

.faq-header button.faq-button {
    cursor: pointer;
    font-size: 16px !important;
    text-align: left;
    display: block;
    width: 100%;
    padding: 15px;
    font-weight: 500;
    text-decoration: none;
    background: var(--main-color);
    color: #fff;
    border: 0;
}

.faq-header button.faq-button i {
    margin-right: 5px;
}

.faq-header button.faq-button.collapsed {
    color: #313131;
}

.faq-header button.faq-button.collapsed:hover {
    background: var(--main-color);
    color: #fff;
}

.event-contact-item:hover,
.faq-body,
.feature-item:hover .feature-icon i,
.faq-header button.faq-button.collapsed {
    background: #f5f5f5!important;
}


/* faq ko css end */


/* contact form ko css start */

.contact-item {
    text-align: center;
    border: 1px solid var(--main-color);
    min-height: 180px;
    position: relative;
    background: #fafafa;
    padding: 30px 15px;
    padding-top: 60px;
    margin-top: 71px;
    transition: all 04s ease-in-out;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.contact-item:hover .contact-icon {
    background-color: var(--main-color) !important;
    color: #fff;
    transition: all 0.4s ease-in-out;
}

.contact-icon {
    position: absolute;
    width: 82px;
    height: 82px;
    font-size: 32px;
    line-height: 82px;
    top: 0px;
    left: 50%;
    background: #fafafa;
    color: var(--main-color);
    border-radius: 50%;
    border: 1px solid var(--main-color);
    margin-top: -41px;
    transform: translate(-50%, 0%);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.contact-text {
    margin-top: 0px;
}

.contact-text h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
    font-family: var(--font-family-main);
}

.contact-text p{
    text-align: center!important;
}

.pt_90 {
    padding-top: 90px !important;
}

.form-group input {
    font-size: 15px;
    font-family: 'Work Sans', sans-serif;
    height: 40px;
    box-shadow: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0 12px;
}

.contact-form textarea {
    height: 190px;
}

.form-group textarea {
    font-size: 15px;
}

.contact-form .btn {
    cursor: pointer;
    display: inline-block;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 30px;
    border: 1px solid var(--main-color);
    background: var(--main-color) !important;
    color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.map-area iframe {
    width: 100%;
    height: 450px;
    margin-bottom: -5px;
}


/* contact form ko css end */


/* event ko css start */

.event-item {
    border: 1px solid #ddd;
    background: #f1f1f1;
    padding: 30px;
    padding-top: 15px;
    margin-top: 30px;
}

.event-photo {
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 175px;
    margin-top: 15px;
}

.event-body {
    margin-top: 15px;
}

.event-header {
    overflow: hidden;
    margin-bottom: 15px;
    display: table;
    width: 100%;
}

.event-header ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

li.event-header-left {
    float: left;
    vertical-align: top;
    display: table-cell;
    width: 100%;
    padding-right: 10px;
}

li.event-header-left h4 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--brand-color);
}

li.event-header-left span {
    margin-right: 15px;
}

li.event-header-left i {
    color: var(--main-color);
    margin-right: 4px;
}

.button-df a {
    display: inline-block;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #fff;
    background: var(--brand-color);
    border: 1px solid var(--brand-color);
    border-radius: 0px;
    padding: 8px 16px;
    text-decoration: none;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.button-df a:hover {
    background-color: #fff;
    color: var(--brand-color);
    border: 1px solid var(--brand-color);
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.button-df a i {
    margin-left: 5px;
}


/* event ko css end */


/* event detail ko css start */

img {
    max-width: 100%;
    height: auto;
}

/*.event-detail-content {*/
/*    margin-top: 30px;*/
/*}*/

.event-photo-item img {
    width: 100%;
}

.event-contact-item {
    text-align: center;
    background: var(--brand-color);
    color: #fff;
    padding: 30px 5px;
    margin-top: 30px;
    border: 1px solid var(--brand-color);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.event-contact-item:hover>* {
    color: var(--brand-color);
}

.event-contact-icon i {
    font-size: 18px;
}

/*.event-detail-text {*/
/*    margin-top: 30px;*/
/*}*/

.event-detail-text h3 {
    color: var(--main-color);
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.event-map {
    margin-top: 30px;
}

.headstyle h4 {
    color: var(--main-color);
    display: inline-block;
    position: relative;
    font-size: 22px;
    font-weight: 500;
    padding-bottom: 9px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.headstyle h4:before {
    position: absolute;
    content: '';
    width: 70%;
    height: 1px;
    background: var(--brand-color);
    left: 0;
    bottom: 0;
}

.headstyle h4:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: var(--brand-color);
    left: 0;
    bottom: -5px;
}

.event-map iframe {
    width: 100%;
    height: 350px;
}

.mt_50 {
    margin-top: 50px !important;
}

.share_buttons a {
    text-align: center;
}

.share_buttons a i {
    border: 1px solid #3b5998;
    color: #fff!important;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    display: inline-block;
    font-size: 20px;
    margin-right: 4px;
}

.share_buttons a.facebook i {
    background: #3b5998;
    border-color: #3b5998;
}

.share_buttons a.twitter i {
    background: #00aced;
    border-color: #00aced;
}

.share_buttons a.pinterest i {
    background: #EB4823;
    border-color: #EB4823;
}

.share_buttons a.linkedin i {
    background: #0e76a8;
    border-color: #0e76a8;
}


/* event detail ko css end */


/* project ko css starts */

.services-item {
    border: 1px solid #f5f5f5;
    margin-top: 30px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.service-info {
    margin-top: 30px;
}

.single-ser-carousel {
    margin-bottom: 30px;
}

.image-effect {
    position: relative;
    display: block;
    max-width: 100%;
}

.services-photo {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    height: 196px;
}

.services-text {
    background: #f5f5f5;
    padding: 20px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.image-effect:before,
.image-effect:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .3);
    z-index: 6;
    -webkit-transition: transform .5s, opacity .2s ease-in-out 0s;
    -o-transition: transform .5s, opacity .2s ease-in-out 0s;
    transition: transform .5s, opacity .2s ease-in-out 0s;
    opacity: 0;
    filter: alpha(opacity=0);
}

.services-text h3 a {
    color: var(--brand-color);
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-transform: uppercase;
}

.services-text p {
    margin-bottom: 10px;
        height: 65px;
}

.services-text .button-bn a {
    color: var(--brand-color);
    font-size: 16px;
    font-weight: 500;
}

.service-info .button-bn a {
    background-color: var(--main-color);
    border-color: var(--main-color);
    border-radius: 0;
}

.service-info .button-bn a:hover {
    opacity: 0.8;
}

.button-bn a {
    font-weight: 500;
    text-decoration: none;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.button-bn i {
    margin-left: 3px;
}

.service-info h2 {
    color: var(--brand-color);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.service-sidebar {
    margin-top: 30px;
}

.service-sidebar-item:first-child {
    margin-top: 0;
}

.service-sidebar-item {
    margin-top: 30px;
    border: 1px solid #ddd;
    padding: 30px;
}

.service-sidebar-item {
    margin-top: 30px;
    border: 1px solid #ddd;
    padding: 30px;
}

.service-sidebar-item ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-sidebar-item ul li:first-child {
    padding-top: 0;
}

.service-sidebar-item ul li {
    padding: 6px 0;
}

.service-sidebar-item ul li a {
    color: var(--main-color);
    opacity: 0.9;
    font-weight: 500;
    transition: all 0.3s all;
}

.service-sidebar-item ul li a:hover {
    opacity: 0.7;
}


/* project ko css end */


/* news ko css starts */

.blog-one-item {
    margin-top: 30px;
}

.blog-one-item img {
    width: 100%!important;
}

.blog-one-text {
    margin-top: 20px;
}

.blog-one-text ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-one-text ul li {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 5px;
}

.blog-one-text ul li i {
    color: var(--main-color);
    margin-right: 5px;
}

.blog-one-text ul li a {
    font-family: 'Work Sans', sans-serif;
    text-decoration: none;
}

.blog-one-text h3 a {
    color: var(--brand-color);
    font-size: 24px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s linear;
}

.blog-one-text h3 a:hover {
    opacity: 0.8;
    transition: all 0.4s linear;
}

.blog-one-text p {
    margin-bottom: 20px;
}

.sidebar {
    margin-top: 30px;
}

.sidebar-item:first-child {
    margin-top: 0;
}

.sidebar-item {
    margin-top: 30px;
    border: 1px solid #ddd;
    padding: 30px;
}

.sidebar-item h3 {
    color: var(--main-color);
    display: inline-block;
    position: relative;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    padding-bottom: 12px;
    margin-bottom: 30px;
}

.sidebar-item h3:before {
    position: absolute;
    content: '';
    width: 70%;
    height: 1px;
    background: var(--brand-color);
    left: 0;
    bottom: 0;
}

.sidebar-item h3:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: var(--brand-color);
    left: 0;
    bottom: -5px;
}

.sidebar-recent-item {
    overflow: hidden;
    display: table;
    margin-bottom: 25px;
}

.recent-photo {
    vertical-align: top;
    display: table-cell;
    float: left;
    width: 105px;
    padding-right: 8px;
}

.recent-text {
    vertical-align: top;
    display: table-cell;
    padding-left: 5px;
}

.recent-photo img {
    max-width: 100%;
    height: auto;
}

.recent-text a {
    display: block;
    margin-bottom: 5px;
    text-decoration: none;
    font-family: var(--font-family-main);
    font-weight: 500;
    color: var(--main-color);
    font-size: 14px;
    line-height: 1.4;
}

.rpwwt-post-date {
    position: relative;
    font-size: 14px;
    color: var(--body-color);
    padding-left: 21px;
}

.rpwwt-post-date:before {
    position: absolute;
    content: '\f017';
    font-family: "Font Awesome 5 Free";
    left: 0;
    top: 0;
}

.sidebar-item ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-item ul li:first-child {
    padding-top: 0;
}

.sidebar-item ul li {
    padding: 8px 0;
}

.sidebar-item ul li a {
    display: inline-block;
    position: relative;
    text-decoration: none;
    padding-left: 10px;
    font-family: 'Work Sans', sans-serif;
}

.single-blog {
    margin-top: 30px;
}

.single-blog img {
    width: 100%;
    margin-bottom: 30px;
}

.single-blog h3 {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--brand-color);
}

.single-blog ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.single-blog ul li {
    display: inline-block;
    margin-top: 2px;
    margin-right: 15px;
    font-size: 14px;
    font-family: 'Work Sans', sans-serif;
}

.single-blog ul li i {
    color: var(--main-color);
    margin-right: 5px;
}

.single-blog ul li a {
    text-decoration: none;
    font-size: 14px;
    font-family: 'Work Sans', sans-serif;
}

.single-blog p {
    margin: 0;
    margin-top: 15px;
}


/* news ko css end */

.slick-prev,
.slick-next {
    color: var(--main-color);
    z-index: 99999;
}

.slick-prev::before,
.slick-next::before {
    color: inherit;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: var(--secondary-color);
}

.slick-prev {
    left: 0;
}

.slick-next {
    right: 0;
}

.header {
    border-top: 5px solid var(--brand-color);
}

.logo {
    max-width: 400px;
}

.header-social-links .list-inline-item:not(:last-child) {
    margin-right: 16px;
}

.header-social-links li a {
    font-size: 18px;
    color: var(--main-color);
    transition: all 0.34s ease-in-out;
}

.header-social-links li a:hover {
    color: var(--brand-color);
    transition: all 0.35s ease-in-out;
}

.header-btn {
    background-color: var(--main-color);
    border-color: var(--main-color);
    font-weight: 500;
    box-shadow: 4px 4px 6px 0px var(--secondary-color);
    transition: all 0.35s ease-in-out;
}

.header-btn:hover,
.header-btn:focus,
.header-btn:active {
    background-color: var(--brand-color);
    border-color: var(--brand-color);
    transition: all 0.35s ease-in-out;
}

.header-language a {
    color: var(--main-color);
    font-size: 20px;
    font-weight: 500;
    transition: all 0.35s ease-in-out;
}

.header-language a:hover {
    color: var(--brand-color);
    transition: all 0.35s ease-in-out;
}

.header-language span {
    color: var(--main-color);
    font-size: 20px;
    font-weight: 500;
}

.main-menu {
    background: var(--main-color);
}

.main-menu .navbar-nav .nav-link {
    display: block;
    font-size: 15px;
    font-family: var(--font-family-body);
    font-weight: 500;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 8px 16px !important;
    letter-spacing: 1px;
    transition: all .3s ease;
}

.main-menu .nav-item:last-child .nav-link {
    padding-right: 0 !important;
}

.main-menu .navbar-nav .nav-item:hover .nav-link {
    color: var(--brand-color);
    transition: all .3s ease;
}

.main-menu .navbar-nav .nav-link.active,
.main-menu .navbar-nav .show>.nav-link {
    color: var(--brand-color);
}

.main-menu .navbar-nav .nav-item.dropdown .dropdown-menu li .dropdown-item {
    font-family: var(--font-family-body);
    font-weight: 500;
}

.main-menu .navbar-nav .dropdown-item.active, .main-menu .navbar-nav .dropdown-item:active{
    background: var(--brand-color);
    color: #fff !important;
    border: 0;
}


/* ============ desktop view ============ */

@media all and (min-width: 992px) {
    .main-menu .nav-item:first-child .nav-link {
        padding-left: 0 !important;
    }
    .main-menu .navbar-nav .nav-item .dropdown-menu {
        display: none;
    }
    .main-menu .navbar-nav .nav-item:hover .dropdown-menu {
        display: block;
        border-radius: 0;
        background-color: #fff;
        box-shadow: 2px 0 11px -3px rgb(0 0 0 / 20%);
        padding: 0;
        transition: all .5s ease;
    }
    .main-menu .navbar-nav .nav-item.dropdown  .dropdown-menu  li  .dropdown-item:hover {
        background: var(--brand-color);
        color: #fff;
        border: 0;
    }
    .main-menu .navbar-nav .nav-item.dropdown .dropdown-menu li .dropdown-item, 
    .main-menu .navbar-nav .nav-item.dropdown .dropdown-another .dropdown-toggle{
        display: block;
        font-size: 15px;
        text-transform: capitalize;
        color: var(--brand-color);
        padding: 8px 16px !important;
        border-bottom: 1px solid #E9E9E9;
        transition: all .3s ease;
    }
    
    .main-menu .navbar-nav .nav-item .dropdown-another .dropdown-menu{
        display: none;
    }
    .main-menu .navbar-nav .nav-item .dropdown-another:hover .dropdown-menu{
       display: block;
        position: absolute;
        top: 0;
        left: 99%;
    }
    .main-menu .navbar-nav .nav-item .dropdown-another .nav-link{
        text-transform: capitalize;
    }
}
.text-center p{
    text-align:center !important;
}



/* ============ desktop view .end// ============ */

.home-carousel {
    position: relative;
}

.home-carousel .carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    max-width: 50%;
    text-align: left;
}

.home-carousel .carousel-caption h5 {
    font-size: 48px;
    font-weight: 500;
}

.home-carousel .carousel-caption .btn {
    letter-spacing: 1px;
    transition: all .5s ease-in-out;
}

.home-carousel .carousel-caption .btn:hover {
    color: #fff;
    background-color: var(--brand-color);
    border-color: var(--brand-color) !important;
    transition: all .5s ease-in-out;
}

.home-section {
    padding-top: 60px;
}

.home-section-title a {
    font-size: 24px;
    text-transform: capitalize;
    color: var(--main-color);
    font-weight: 500;
    font-family: var(--font-family-body);
    line-height: 32px;
    word-break: break-word;
}

.home-section-btn .btn {
    background-color: var(--main-color);
    border-color: var(--main-color);
    transition: all 0.35s ease-in-out;
}

.home-section-btn .btn:hover,
.home-section-btn .btn:focus,
.home-section-btn .btn:active {
    background-color: var(--brand-color);
    border-color: var(--brand-color);
    transition: all 0.35s ease-in-out;
}

/*.home-counter {*/
/*    background-color: var(--brand-color);*/
/*}*/
.home-counter {
    background: url(../img/bg.jpeg);
}
.home-counter-text h4 {
    font-family: var(--font-family-main);
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    color: #fff;
    margin: 0;
}

.home-counter-item .icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #fff;
    color: #fff;
    text-align: center;
}

.home-counter-item .icon-box i {
    font-size: 22px;
    line-height: 48px;
    color: #fff;
}

.home-counter-item span {
    font-family: var(--font-family-main);
    font-size: 32px;
    font-weight: 500;
    line-height: 42px;
    color: #fff;
    display: inline-block;
}
.home-counter-item p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
}

.home-project .home-section-header,
.home-downloads-publications .home-section-header,
.home-notice-announcement .home-section-header,
.home-upcoming-events .home-section-header,
.home-social-media-feed .home-section-header,
.home-gallery .home-section-header {
    background-color: var(--main-color);
}

.home-project .home-section-title a,
.home-downloads-publications .home-section-title a,
.home-notice-announcement .home-section-title a,
.home-upcoming-events .home-section-title a,
.home-social-media-feed .home-section-title a,
.home-gallery .home-section-title a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.home-section-article-list {
    padding: 16px 16px 0 16px;
}

.home-section-article-item .image-box {
    width: 120px;
    height: 80px;
    margin-right: 10px;
}

.home-section-article-item .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-section-article-item .content h5 a {
    color: var(--heading-color);
    font-size: 18px;
    font-weight: 500;
    font-family: var(--font-family-body);
    transition: all 0.35s ease-in-out;
}

.home-section-article-item .content h5 a:hover {
    color: var(--brand-color);
    transition: all 0.35s ease-in-out;
}
.home-section-article-item .image-box + .content {
    width: calc(100% - 120px) !important;
}

.home-section-article-view-all .view-all {
    color: var(--main-color);
    font-weight: 700;
    font-family: var(--font-family-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.home-section-article-view-all .view-all:after {
    bottom: -4px;
    content: "";
    display: block;
    height: 2px;
    left: 0;
    position: absolute;
    background: var(--main-color);
    opacity: 0.6;
    transition: width 0.3s ease 0s, opacity 0.3s ease 0s;
    width: 0;
}

.home-section-article-view-all .view-all:hover:after {
    width: 100%;
    opacity: 0.9;
}


/* .home-member {
    position: relative;
    display: block;
    z-index: 1;
}

.home-member-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgb(24 24 24 / 70%), rgb(46 45 45 / 70%));
    z-index: -1;
} */

.home-member {
    background-color: var(--secondary-color);
}

.btn-member .btn {
    color: #fff;
    font-size: 20px;
    font-family: var(--font-family-main);
    font-weight: 500;
    letter-spacing: 1px;
    border: 2px solid var(--brand-color);
    border-radius: 0;
    transition: all 0.4s linear;
}

.btn-member .btn:hover,
.btn-member .btn:active,
.btn-member .btn:focus {
    background-color: var(--brand-color);
    transition: all 0.4s linear;
}

.home-testimonial {
    background-color: rgb(206 127 46 / 85%);
}

.home-testimonial .home-section-title,
.home-partners .home-section-title {
    font-size: 24px;
    text-transform: capitalize;
    color: var(--main-color);
    font-weight: 500;
    font-family: var(--font-family-body);
    line-height: 32px;
    word-break: break-word;
}

.home-testimonial-content {
    max-width: 80%;
    margin: 0 auto;
}

.home-testimonial-content .content p {
    color: #fff;
}

.home-testimonial-content .author-image {
    width: 60px;
    height: 60px;
}

.home-testimonial-content .author-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.home-testimonial-content .author-header>* {
    font-family: var(--font-family-main);
    color: #fff;
}

.home-testimonial-content .author-header h5 {
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
}

.home-testimonial-content .author-header p {
    font-size: 14px;
    line-height: 16px;
}

#homeTestimonialCarousel .slick-arrow {
    display: none !important;
}

#homePartnersCarousel.slick-slider {
    margin: 0 -15px;
}

#homePartnersCarousel .slick-slide {
    padding: 10px;
    text-align: center;
    margin-right: 15px;
    margin-left: 15px;
}

.home-partners-item {
    background: #fff;
    border: 1px solid #ddd;
    /* margin-right: 10px; */
}

.home-partners-item figure {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
    margin: 0 auto;
}

.gallery-wrap .gallery-img {
    flex: 0 0 45%;
    max-width: 45%;
    padding: 10px;
    padding-top: 0;
    text-align: center;
}


   .footer {
  background-image: url('footer-backg.png');
   /*background-repeat: no-repeat;*/
}



/*.cookie-notification {*/
/*  padding: 20px 30px;*/
/*  position: fixed;*/
/*  bottom: 0;*/
/*  border-top: 1px solid #ccc;*/
/*  box-shadow: 0px 2px 10px #888888;*/
/*  background: #fff;*/
/*}*/

/*.cookie-notification p {*/
/*  color: #262626;*/
/*  font-size: 12px;*/
/*  line-height: 17px;*/
/*  letter-spacing: 0.1px;*/
/*  padding: 0 30px 0 0;*/
/*}*/

/*.btn-close-cookie-notification {*/
/*  background-color: black;*/
/*  border: none;*/
/*  color: white;*/
/*  padding: 13px;*/
/*  cursor: pointer;*/
/*  max-height: 40px;*/
/*  font-size: 12px;*/
/*  position: relative;*/
/*}*/

.cookie-alert {
  position: fixed !important;
  bottom: 15px;
  right: 15px;
  width: 320px;
  margin: 0 !important;
  z-index: 999;
  opacity: 0;
  transform: translateY(100%);
  transition: all 500ms ease-out;
}

.cookie-alert.show {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 1000ms;
}

.btn.accept-cookies{
    background-color: var(--main-color);
    border-color: var(--main-color);
    border-radius: 0;
}


/* .home-newsletter .single {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.home-newsletter .single h2 {
    font-size: 22px;
    color: white;
    margin-bottom: 8px;
}

.home-newsletter .single .form-control {
    height: 50px;
    background: rgba(255, 255, 255, 0.6);
    border-color: transparent;
    border-radius: 20px 0 0 20px;
}

.home-newsletter .single .form-control:focus {
    box-shadow: none;
    border-color: var(--main-color);
}

.home-newsletter .single .btn {
    min-height: 50px;
    border-radius: 0 20px 20px 0;
    background: var(--main-color);
    color: #fff;
} */

.footer-container {
    margin-left: -15px;
    margin-right: -15px;
}

.footer-contact-list {
    flex: 0 0 auto;
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
}

.footer-contact-title,
.footer-contact-content>* {
    color: #fff;
}

.footer-contact-content span {
    font-size: 15px;
}

.footer-socials li a {
    /*font-size: 18px;*/
    /*width: 35px;*/
    /*height: 35px;*/
    /*text-align: center;*/
    /*background: #fff;*/
    /*display: inline-block;*/
    /*color: var(--secondary-color);*/
    /*line-height: 38px;*/
    /*border-radius: 50%;*/
    /*transition: all 0.4s linear;*/
    
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    width: 35px;
    height: 35px;
    /* text-align: center; */
    background: #fff;
    /* display: inline-block; */
    color: var(--secondary-color);
    /* line-height: 38px; */
    border-radius: 50%;
    transition: all 0.4s linear;
}

.footer-socials li a:hover {
    background-color: var(--brand-color);
    color: #fff;
    transition: all 0.4s linear;
}


/*

.footer-advocacy ul li span.footer-border::before {
    content: ' ';
    width: 20px;
    height: 2px;
    background: #FFFFFF;
    display: block;
}

.footer-advocacy ul li .footer-content {
    padding-left: 16px;
    vertical-align: top;
    position: relative;
    top: -6px;
}

.footer-advocacy ul li .footer-content a {
    font-family: var(--font-family-body);
    font-weight: 500;
    font-size: 16px;
    color: #C9C9C9;
}

.footer-advocacy ul li .footer-content a:hover {
    color: var(--brand-color);
}

.footer-advocacy ul li .footer-content span {
    color: var(---brand-color);
    font-size: 14px;
    font-weight: 500;
    display: block;
}

.footer-quick-links ul li {
    margin-bottom: 14px;
}

.footer-quick-links ul li a {
    color: #C9C9C9;
    font-size: 15px;
}

.footer-quick-links ul li a::before {
    content: "\F231";
    display: inline-block;
    font-family: 'bootstrap-icons' !important;
    font-style: normal;
    font-weight: bold !important;
    font-variant: normal;
    vertical-align: middle;
    margin-right: 8px;
}

.footer-quick-links ul li a:hover {
    color: var(--brand-color);
} */

.footer-bottom {
    background: var(--secondary-color);
    border-top: 1px solid #696a6a;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #fff;
}

.footer-bottom p span i {
    color: var(--brand-color);
}


/* Resource Center CSS */

span.resource-login a,
span.resource-register a {
    color: var(--brand-color);
    font-size: 18px;
    font-weight: 500;
    font-family: var(--font-family-body);
}

.resource-or-text {
    color: var(--main-color);
}

.main-website-btn {
    border-color: var(--main-color);
    color: var(--main-color);
    transition: all 0.4s linear;
}

.main-website-btn a {
    color: var(--main-color);
    transition: all 0.4s linear;
}

.main-website-btn:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
    transition: all 0.4s linear;
}

.main-website-btn:hover a {
    color: #fff;
    transition: all 0.4s linear;
}

.resource-section-heading-title {
    margin: 0;
    padding: 0;
    color: var(--main-color);
    border-bottom: 1px solid var(--main-color);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1.36;
    margin-bottom: 15px;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.top-resource-item {
    margin: 0 10px;
}

#topResourceCarousel .slick-prev,
#topResourceCarousel .slick-next {
    position: absolute;
    z-index: 10;
    display: inline-block !important;
    margin: 0!important;
    width: auto;
    height: auto;
    line-height: 1;
    background: transparent !important;
    text-align: center;
    color: var(--main-color) !important;
    transition: all 0.25s ease-in 0s;
    padding: 0 !important;
    cursor: pointer;
    opacity: 0;
}

#topResourceCarousel .slick-prev::before,
#topResourceCarousel .slick-next::before {
    color: var(--main-color);
    font-size: 32px;
    opacity: 1;
}

#topResourceCarousel .slick-prev {
    left: 30px;
    bottom: 200px;
}

#topResourceCarousel .slick-next {
    right: 30px;
    bottom: 200px;
}

#topResourceCarousel:hover .slick-prev,
#topResourceCarousel:hover .slick-next {
    opacity: 1;
}

.top-resource-img {
    position: relative;
    overflow: hidden;
}

.top-resource-img img {
    width: 100%;
    height: auto;
}

.top-resource-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: inline-block;
}

.top-resource-content::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 0px;
    background: -webkit-linear-gradient(180deg, rgba(21, 21, 21, 0) 0%, #151515 100%);
    background: -o-linear-gradient(180deg, rgba(21, 21, 21, 0) 0%, #151515 100%);
    background: linear-gradient(180deg, rgba(21, 21, 21, 0) 0%, #151515 100%);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.top-resource-content-inner {
    padding: 20px;
    position: relative;
    z-index: 999;
}

.top-resource-title {
    font-weight: 500;
}

.top-resource-title a {
    color: #fff;
    transition: all 0.4s ease-in-out;
}

.top-resource-title a:hover {
    color: var(--main-color);
    transition: all 0.4s ease-in-out;
}

.resource-meta .resource-meta-user a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.4s ease-in-out;
}

.resource-meta .resource-meta-user a:hover {
    opacity: 0.75;
    transition: all 0.4s ease-in-out;
}

.resource-meta span, .resource-meta span a {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    display: inline-block;
}

.resource-content {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4em;
}

.middle-resource-left-1-item-left .resource-img,
.middle-resource-right-1-item-left .resource-img {
    width: 250px;
    min-width: 250px;
    height: 200px;
    min-height: 200px;
    margin-right: 20px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.middle-resource-left-1-item-left .resource-img a img,
.middle-resource-right-1-item-left .resource-img a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 0px;
    transition: 0.5s;
}

.middle-resource-left-1-item-right .resource-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
}

.middle-resource-left-1-item-right .resource-title a,
.middle-resource-right-1-item-right .resource-title a,
.middle-resource-right-2-item-left .resource-title a {
    color: var(--secondary-color);
    transition: all .4s linear;
}

.middle-resource-left-1-item-right .resource-title a:hover,
.middle-resource-right-1-item-right .resource-title a:hover,
.middle-resource-right-2-item-left .resource-title a:hover {
    color: var(--main-color);
    transition: all .4s linear;
}

.middle-resource-left-1-item-right .resource-meta .resource-meta-user a,
.middle-resource-right-1-item-right .resource-meta .resource-meta-user a,
.middle-resource-right-2-item-left .resource-meta .resource-meta-user a {
    color: var(--brand-color);
}

.middle-resource-left-1-item-right .resource-meta span,
.middle-resource-right-1-item-right .resource-meta span,
.middle-resource-right-2-item-left .resource-meta span {
    color: var(--secondary-color);
}

.middle-resource-right-1-item-left .resource-img,
.middle-resource-right-2-item-right .resource-img {
    min-width: 120px;
    width: 120px;
    min-height: 120px;
    height: 120px;
    margin-right: 10px;
    margin-bottom: 0;
}

.middle-resource-right-1-item-left .resource-img a img,
.middle-resource-right-2-item-right .resource-img a img {
    width: 100%;
    height: 100%;
}

.middle-resource-right-1-item-right .resource-title,
.middle-resource-right-2-item-left .resource-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.middle-resource-right-2-item-right .resource-img {
    margin-left: 10px;
    margin-right: 0;
}

.middle-resource-right-2-item-right .resource-img a img {
    border-radius: 50%;
}

#bottomResourceCarousel.slick-slider {
    margin: 0 -10px;
}

.bottom-resource-content .resource-meta .resource-meta-user a {
    color: var(--brand-color);
}

.bottom-resource-content .resource-meta span {
    color: var(--secondary-color);
}

.bottom-resource-item {
    margin: 10px;
}

.bottom-resource-list .slick-prev {
    left: 0;
}

.bottom-resource-list .slick-next {
    right: 0;
}

.bottom-resource-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 21px;
}

.bottom-resource-title a {
    color: var(--main-color);
    transition: all 0.4s ease-in-out;
}

.bottom-resource-title a:hover {
    color: var(--secondary-color);
    transition: all 0.4s ease-in-out;
}

.resource-center-cat-content .resource-meta .resource-meta-user a {
    color: var(--brand-color);
}

.resource-center-cat-content .resource-meta span {
    color: var(--secondary-color);
}

.resource-center-cat-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 21px;
}

.resource-center-cat-title a {
    color: var(--main-color);
    transition: all 0.4s ease-in-out;
}

.resource-center-cat-title a:hover {
    color: var(--secondary-color);
    transition: all 0.4s ease-in-out;
}

#loadMoreContent .col {
    display: none;
}

.load-more-btn {
    width: 200px;
    color: #fff;
    display: block;
    text-align: center;
    margin: 5px auto;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--main-color);
    background-color: var(--main-color);
    transition: .3s linear;
    cursor: pointer;
}

.load-more-btn:hover {
    color: var(--main-color);
    background-color: #fff;
    border: 1px solid var(--main-color);
    text-decoration: none;
    transition: .3s linear;
}

.noContent {
    color: #000 !important;
    background-color: transparent !important;
    border: none !important;
    pointer-events: none;
}

.resource-center-single .resource-meta .resource-meta-user a {
    color: var(--brand-color);
}

.resource-center-single .resource-meta span {
    color: var(--secondary-color);
}

.resource-center-single-title {
    color: var(--main-color);
    font-weight: 500;
}

.resource-center-single-related-post-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 21px;
}

.resource-center-single-related-post-title a {
    color: var(--main-color);
    transition: all 0.4s ease-in-out;
}

.resource-center-single-related-post-title a:hover {
    color: var(--secondary-color);
    transition: all 0.4s ease-in-out;
}


/* Online Resource Center */

#orcMainAgendaCarousel.slick-slider,
#orcMainRecentBlogCarousel.slick-slider {
    margin: 0 -10px;
}

.orc-main-agenda-item {
    margin: 10px;
}

.orc-main-agenda-list .slick-prev {
    left: 0;
}

.orc-main-agenda-list .slick-next {
    right: 0;
}

.orc-main-agenda-thumb-wrap {
    /* background-color: rgb(206 127 46 / 50%); */
    background-color: rgb(16 26 98 / 20%);
}

.orc-main-agenda-thumb {
   
    height: 250px;
    min-width: 200px;
    min-height: 200px;
    margin: 0 auto;
    padding: 20px;
}

.orc-main-agenda-thumb img {
    width: 100%;
    height: 100%;
}

.orc-main-agenda-content {
    background-color: var(--main-color);
    padding: 15px;
        height: 100px;
}


.orc-main-agenda-title a {
    font-size: 24px;
    line-height: 1;
     font-weight: 500;
    letter-spacing: 1px;
    color: #fff;
    transition: all 0.4s ease-in-out;
}

.orc-main-agenda-title a:hover {
    opacity: 0.75;
    transition: all 0.4s ease-in-out;
}

.orc-main-recent-blog-title a {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;
    color: var(--secondary-color);
    transition: all 0.4s ease-in-out;
}

.orc-main-recent-blog-title a:hover {
    color: var(--main-color);
    transition: all 0.4s ease-in-out;
}

.orc-main-recent-blog-content .resource-meta .resource-meta-user a {
    color: var(--secondary-color);
}

.orc-main-recent-blog-content .resource-meta span {
    color: #767676;
}

.orc-sdgs-pillars-items {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 200px;
    border: 1px solid #d5d7d9;
}

.icon-box i {
    font-size: 48px;
    color: var(--brand-color);
    margin-bottom: 10px;
}

.orc-sdgs-pillars-content h5 {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    margin-top: 20px;
}

.orc-sdgs-pillars-content h5 a {
    color: var(--secondary-color);
}

.orc-inner-cat-item {
    border: 1px solid #d1cece;
    padding: 15px;
}

.orc-inner-cat-thumb {
    width: 100px;
    height: 120px;
    margin-right: 15px;
}

.orc-inner-cat-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.orc-inner-cat-content h5 {
    font-size: 18px;
    font-weight: 500;
}

.orc-inner-cat-content h5 a {
    color: var(--secondary-color);
}

.goals-wrapper.goals-wrapper-space {
    margin-bottom: 0rem !important;
}

.heading-block h2 {
    color: var(--secondary-color);
    font-size: 34px;
    line-height: 59px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
    border-right: 1px solid var(--main-color);
}

.headinginfo-number {
    font-family: var(--font-family-main);
    font-size: 28px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0;
}

.headinginfo-text {
    font-family: var(--font-family-main);
    font-size: 14px;
    color: #757575;
    margin-bottom: 0;
}

.view-goals-inner {
    position: relative;
}


/* line 22579, ../sass/bundle.scss */

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #ffffff;
    background-clip: border-box;
    border: 0 solid rgba(0, 0, 0, 0.125);
    border-radius: 0;
}


/* line 22610, ../sass/bundle.scss */

.card-body {
    flex: 1 1 auto;
    padding: 1.25rem;
}


/* line 14376, ../sass/bundle.scss */

.goal-target .goal-logo {
    margin-bottom: 15px;
}


/* line 14380, ../sass/bundle.scss */

.goal-target .goal-header {
    flex-direction: column;
}


/* line 14384, ../sass/bundle.scss */

.goal-target .indicators>div {
    padding: 1.25rem;
}


/* line 14390, ../sass/bundle.scss */

.card-goal {
    position: relative;
    cursor: pointer;
    padding-left: 0;
    padding-right: 0;
}


/* line 14394, ../sass/bundle.scss */

.card-goal>a {
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.33);
}


/* line 14401, ../sass/bundle.scss */

.card-goal .goal-image {
    z-index: 1;
    width: 100%;
    position: absolute;
    height: 100%;
}


/* line 14409, ../sass/bundle.scss */

.card-goal:hover>a {
    text-decoration: none;
}


/* line 14413, ../sass/bundle.scss */

.card-goal:hover .card-body {
    opacity: 1;
}


/* line 14417, ../sass/bundle.scss */

.card-goal:hover .goal-image {
    z-index: -1;
}


/* line 14421, ../sass/bundle.scss */

.card-goal:hover .goal-logo {
    z-index: -1;
    visibility: hidden;
}


/* line 14426, ../sass/bundle.scss */

.card-goal:hover .goal-image {
    visibility: hidden;
}


/* line 14431, ../sass/bundle.scss */

.card-goal .card-body {
    padding: 20px;
    opacity: 0;
    position: relative;
    width: 100%;
    height: 100%;
    color: #ffffff;
}


/* line 14440, ../sass/bundle.scss */

.card-goal .goal-logo {
    position: absolute;
    max-width: 150px;
    left: 10px;
    bottom: 10px;
    z-index: 1;
}


/* line 14448, ../sass/bundle.scss */

.card-goal .goal-number {
    opacity: 0.28;
    font-family: "Oswald-Bold";
    font-size: 32px;
    margin-bottom: 15px;
    display: inline-block;
    line-height: 1.11;
}


/* line 14457, ../sass/bundle.scss */

.card-goal .goal-text {
    font-family: var(--font-family-body);
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
}


/* line 14467, ../sass/bundle.scss */

.card-goal .goal-title {
    font-family: var(--font-family-main);
    font-size: 18px;
    line-height: 1.11;
}


/* line 14473, ../sass/bundle.scss */

.card-goal .goal-info {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
}


/* line 14478, ../sass/bundle.scss */

.card-goal .goal-info>div {
    display: flex;
    flex-direction: column;
    padding-right: 0;
    padding-left: 0;
}


/* line 14485, ../sass/bundle.scss */

.card-goal .goal-info .number {
    font-family: var(--font-family-body);
    font-size: 25px;
    display: inline-block;
    line-height: 1.1;
    color: #ffffff;
}


/* line 14493, ../sass/bundle.scss */

.card-goal .goal-info .feature {
    font-family: var(--font-family-main);
    font-size: 12px;
    margin-bottom: 0;
    color: #ffffff;
}


/* line 14501, ../sass/bundle.scss */

.card-goal .btn-goal {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    border-radius: 1px;
    border: 1px solid #ffffff;
    color: #ffffff;
    justify-content: center;
    font-size: 14px;
}


/* line 14513, ../sass/bundle.scss */

.card-goal.goal-1 .card-body {
    background: #e5233d;
}


/* line 29455, ../sass/bundle.scss */

.card-goal.goal-2 .card-body {
    background: #dda73a;
}


/* line 29459, ../sass/bundle.scss */

.card-goal.goal-3 .card-body {
    background: #4ca146;
}


/* line 29463, ../sass/bundle.scss */

.card-goal.goal-4 .card-body {
    background: #c5192d;
}


/* line 29467, ../sass/bundle.scss */

.card-goal.goal-5 .card-body {
    background: #ef402c;
}


/* line 29471, ../sass/bundle.scss */

.card-goal.goal-6 .card-body {
    background: #27bfe6;
}


/* line 29475, ../sass/bundle.scss */

.card-goal.goal-7 .card-body {
    background: #fbc412;
}


/* line 29479, ../sass/bundle.scss */

.card-goal.goal-8 .card-body {
    background: #a31c44;
}


/* line 29483, ../sass/bundle.scss */

.card-goal.goal-9 .card-body {
    background: #f26a2d;
}


/* line 29487, ../sass/bundle.scss */

.card-goal.goal-10 .card-body {
    background: #e01483;
}


/* line 29491, ../sass/bundle.scss */

.card-goal.goal-11 .card-body {
    background: #f89d2a;
}


/* line 29495, ../sass/bundle.scss */

.card-goal.goal-12 .card-body {
    background: #bf8d2c;
}


/* line 29499, ../sass/bundle.scss */

.card-goal.goal-13 .card-body {
    background: #407f46;
}


/* line 29503, ../sass/bundle.scss */

.card-goal.goal-14 .card-body {
    background: #1f97d4;
}


/* line 29507, ../sass/bundle.scss */

.card-goal.goal-15 .card-body {
    background: #59ba48;
}


/* line 29511, ../sass/bundle.scss */

.card-goal.goal-16 .card-body {
    background: #126a9f;
}


/* line 29515, ../sass/bundle.scss */

.card-goal.goal-17 .card-body {
    background: #13496b;
}

.goals-banner .goals-link {
    font-size: 15px;
    color: #ffffff;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #ffffff;
    position: relative;
    margin-bottom: 20px;
    display: inline-block;
}


/* line 13365, ../sass/bundle.scss */

.goals-banner {
    font-family: var(--font-family-main);
    padding: 13px 0 30px;
    position: relative;
}


/* line 13472, ../sass/bundle.scss */

.goals-banner .goals-link {
    font-size: 15px;
    color: #ffffff;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #ffffff;
    position: relative;
    margin-bottom: 20px;
    display: inline-block;
}


/* line 13482, ../sass/bundle.scss */

.goals-banner .goal-number {
    opacity: 0.3;
    font-size: 60px;
    font-family: var(--font-family-body);
    line-height: 0.98;
    color: #ffffff;
    margin-bottom: 10px;
}


/* line 13491, ../sass/bundle.scss */

.goals-banner h1 {
    color: #ffffff;
    margin-bottom: 50px;
    position: relative;
}


/* line 13496, ../sass/bundle.scss */

.goals-banner h1::after {
    content: "";
    background-color: #ffffff;
}


/* line 13502, ../sass/bundle.scss */

.goals-banner .lead {
    font-family: var(--font-family-body);
    font-size: 18px;
    font-weight: bold;
    line-height: 1.22;
    color: #ffffff;
    margin-bottom: 90px;
}


/* line 13511, ../sass/bundle.scss */

.goals-banner .goal-logo {
    position: absolute;
    right: 30px;
    bottom: 35px;
    width: 80px;
}


/* line 13370, ../sass/bundle.scss */

.goals-banner.goal-1 {
    background: linear-gradient(90deg, #e5233d 68%, rgba(76, 161, 70, 0.60828) 100%), url("../assets/goal-02.jpg");
    background-repeat: no-repeat;
    background-position: center right;
}


/* line 13376, ../sass/bundle.scss */

.goals-banner.goal-2 {
    background: linear-gradient(90deg, #dda73a 68%, rgba(76, 161, 70, 0.60828) 100%), url("../assets/goal-02.jpg");
    background-repeat: no-repeat;
    background-position: center right;
}


/* line 13382, ../sass/bundle.scss */

.goals-banner.goal-3 {
    background: linear-gradient(90deg, #4ca146 68%, rgba(76, 161, 70, 0.60828) 100%), url("../assets/goal-02.jpg");
    background-repeat: no-repeat;
    background-position: center right;
}


/* line 13388, ../sass/bundle.scss */

.goals-banner.goal-4 {
    background: linear-gradient(90deg, #c5192d 68%, rgba(76, 161, 70, 0.60828) 100%), url("../assets/goal-02.jpg");
    background-repeat: no-repeat;
    background-position: center right;
}


/* line 13394, ../sass/bundle.scss */

.goals-banner.goal-5 {
    background: linear-gradient(90deg, #ef402c 68%, rgba(76, 161, 70, 0.60828) 100%), url("../assets/goal-02.jpg");
    background-repeat: no-repeat;
    background-position: center right;
}


/* line 13400, ../sass/bundle.scss */

.goals-banner.goal-6 {
    background: linear-gradient(90deg, #27bfe6 68%, rgba(76, 161, 70, 0.60828) 100%), url("../assets/goal-02.jpg");
    background-repeat: no-repeat;
    background-position: center right;
}


/* line 13406, ../sass/bundle.scss */

.goals-banner.goal-7 {
    background: linear-gradient(90deg, #fbc412 68%, rgba(76, 161, 70, 0.60828) 100%), url("../assets/goal-02.jpg");
    background-repeat: no-repeat;
    background-position: center right;
}


/* line 13412, ../sass/bundle.scss */

.goals-banner.goal-8 {
    background: linear-gradient(90deg, #a31c44 68%, rgba(76, 161, 70, 0.60828) 100%), url("../assets/goal-02.jpg");
    background-repeat: no-repeat;
    background-position: center right;
}


/* line 13418, ../sass/bundle.scss */

.goals-banner.goal-9 {
    background: linear-gradient(90deg, #f26a2d 68%, rgba(76, 161, 70, 0.60828) 100%), url("../assets/goal-02.jpg");
    background-repeat: no-repeat;
    background-position: center right;
}


/* line 13424, ../sass/bundle.scss */

.goals-banner.goal-10 {
    background: linear-gradient(90deg, #e01483 68%, rgba(76, 161, 70, 0.60828) 100%), url("../assets/goal-02.jpg");
    background-repeat: no-repeat;
    background-position: center right;
}


/* line 13430, ../sass/bundle.scss */

.goals-banner.goal-11 {
    background: linear-gradient(90deg, #f89d2a 68%, rgba(76, 161, 70, 0.60828) 100%), url("../assets/goal-02.jpg");
    background-repeat: no-repeat;
    background-position: center right;
}


/* line 13436, ../sass/bundle.scss */

.goals-banner.goal-12 {
    background: linear-gradient(90deg, #bf8d2c 68%, rgba(76, 161, 70, 0.60828) 100%), url("../assets/goal-02.jpg");
    background-repeat: no-repeat;
    background-position: center right;
}


/* line 13442, ../sass/bundle.scss */

.goals-banner.goal-13 {
    background: linear-gradient(90deg, #407f46 68%, rgba(76, 161, 70, 0.60828) 100%), url("../assets/goal-02.jpg");
    background-repeat: no-repeat;
    background-position: center right;
}


/* line 13448, ../sass/bundle.scss */

.goals-banner.goal-14 {
    background: linear-gradient(90deg, #1f97d4 68%, rgba(76, 161, 70, 0.60828) 100%), url("../assets/goal-02.jpg");
    background-repeat: no-repeat;
    background-position: center right;
}


/* line 13454, ../sass/bundle.scss */

.goals-banner.goal-15 {
    background: linear-gradient(90deg, #59ba48 68%, rgba(76, 161, 70, 0.60828) 100%), url("../assets/goal-02.jpg");
    background-repeat: no-repeat;
    background-position: center right;
}


/* line 13460, ../sass/bundle.scss */

.goals-banner.goal-16 {
    background: linear-gradient(90deg, #126a9f 68%, rgba(76, 161, 70, 0.60828) 100%), url("../assets/goal-02.jpg");
    background-repeat: no-repeat;
    background-position: center right;
}


/* line 13466, ../sass/bundle.scss */

.goals-banner.goal-17 {
    background: linear-gradient(90deg, #13496b 68%, rgba(76, 161, 70, 0.60828) 100%), url("../assets/goal-02.jpg");
    background-repeat: no-repeat;
    background-position: center right;
}


/* Volunteer Application Form */

.application-form {
    -webkit-box-shadow: 0px 0px 5px 2px #d1c9c9;
    -moz-box-shadow: 0px 0px 5px 2px #d1c9c9;
    box-shadow: 0px 0px 5px 2px #d1c9c9;
    background-color: #fff;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.application-form label:not(.form-check-label) {
   
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

.application-form label {
    font-family: var(--font-family-body);
    font-color:#000 !important;
}

.btn-application-form {
    background-color: var(--main-color);
    border-color: var(--main-color);
    border-radius: 0;
    transition: all 0.4s ease-in-out;
}

.btn-application-form:hover, .btn-application-form:active {
    background-color: var(--brand-color);
    border-color: var(--brand-color);
    color: #fff;
    transition: all 0.4s ease-in-out;
}



.orc-icpd-inner > *{
    font-family: var(--font-family-main);
}

.orc-icpd-inner h1, .orc-icpd-inner h2, .orc-icpd-inner h3, .orc-icpd-inner h4, .orc-icpd-inner h5, .orc-icpd-inner h6{
    color: var(--main-color);
}

.orc-icpd-inner ul{
    padding-left: 40px;
}

.orc-icpd-inner a{
    color: var(--heading-color);
    transition: all 0.4s linear;
}

.orc-icpd-inner a:hover{
    opacity: 0.85;
    transition: all 0.4s linear;
}

.orc-icpd-inner ul li, .orc-icpd-inner p, .orc-icpd-inner a{
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}

.orc-icpd-inner ul ul{
    padding-left: 40px;
}

.member-application-form {
    max-width: 80%;
}

.member-membership-registration-detail-table thead tr {
    vertical-align: middle;
}

.member-membership-registration-detail-table thead tr th {
    color: var(--main-color);
    font-size: 15px;
    font-weight: 500;
}

.member-membership-registration-detail-table tbody tr td:first-child {
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
}

.signature_of_member_wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.signature_upload {
    position: relative;
    max-width: 270px;
}

.signature_upload .signature_edit {
    position: absolute;
    right: 0;
    z-index: 1;
    top: -10px;
}

.signature_upload .signature_edit input {
    /*display: none;*/
}

.signature_upload .signature_edit input+label {
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-bottom: 0;
    border-radius: 10px;
    background: #ffffff;
    border: 2px solid #e2dddd;
    box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 12%);
    cursor: pointer;
    font-weight: normal;
    transition: all 0.2s ease-in-out;
}


/* .signature_upload .signature_edit input+label:hover {
    background: #f1f1f1;
    border-color: #d6d6d6;
} */

.signature_upload .signature_edit input+label:after {
    content: "\002B";
    font-weight: 500;
    color: #757575;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
    font-size: 24px;
}

.signature_upload .signature_preview {
    width: 250px;
    height: 100px;
    position: relative;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.signature_upload .signature_preview>div {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #e3e3e3;
}


/* career css starts and all table */

.current-vacancy th,
.current-vacancy td,
.table-wrap th,
.table-wrap td {
    font-family: var(--font-family-main);
    padding: 1rem;
}

.current-vacancy tbody th,
.current-vacancy tbody td,
.table-wrap tbody th,
.table-wrap tbody td {
    color: var(--body-color);
}

.current-vacancy thead tr th,
.table-wrap thead tr th {
    color: var(--main-color);
}

.current-vacany-detail-btn {
    background-color: var(--brand-color);
    border: 1px solid var(--brand-color);
    color: #fff;
}

.current-vacany-detail-btn:hover,
.current-vacany-detail-btn:active,
.current-vacany-detail-btn:focus {
    color: var(--brand-color);
    border: 1px solid var(--brand-color);
    background-color: #fff;
}

.table-wrap-download a {
    color: var(--brand-color);
    font-weight: 500;
    text-decoration: underline;
    transition: all 0.4s ease-in-out;
}

.table-wrap-download a:hover {
    opacity: 0.85;
    transition: all 0.4s ease-in-out;
}

.event-detail-text h2,
.career-detail-modal .modal-header .modal-title {
    color: var(--brand-color);
}

#ft-form {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15
}

#ft-form *,
#ft-form ::after,
#ft-form ::before {
    box-sizing: border-box
}

#ft-form input,
#ft-form select,
#ft-form textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

#ft-form select {
    text-transform: none
}

#ft-form [type=submit] {
    -webkit-appearance: button
}

#ft-form legend {
    padding: 0
}

#ft-form h2,
#ft-form p {
    margin: 0
}

#ft-form fieldset {
    margin: 0;
    padding: 0
}

#ft-form html {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    line-height: 1.5
}

#ft-form body {
    font-family: inherit;
    line-height: inherit
}

#ft-form *,
#ft-form ::after,
#ft-form ::before {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb
}

#ft-form textarea {
    resize: vertical
}

#ft-form input::-moz-placeholder,
#ft-form textarea::-moz-placeholder {
    color: #9ca3af
}

#ft-form input:-ms-input-placeholder,
#ft-form textarea:-ms-input-placeholder {
    color: #9ca3af
}

#ft-form input::placeholder,
#ft-form textarea::placeholder {
    color: #9ca3af
}

#ft-form h2 {
    font-size: inherit;
    font-weight: inherit
}

#ft-form input,
#ft-form select,
#ft-form textarea {
    padding: 0;
    line-height: inherit;
    color: inherit
}

#ft-form [type=date],
#ft-form [type=email],
#ft-form [type=tel],
#ft-form [type=text],
#ft-form select,
#ft-form textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    border-color: #6b7280;
    border-width: 1px;
    border-radius: 0;
    padding-top: .5rem;
    padding-right: .75rem;
    padding-bottom: .5rem;
    padding-left: .75rem;
    font-size: 1rem;
    line-height: 1.5rem
}

#ft-form [type=date]:focus,
#ft-form [type=email]:focus,
#ft-form [type=tel]:focus,
#ft-form [type=text]:focus,
#ft-form select:focus,
#ft-form textarea:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 0 #fff, 0 0 0 3px rgba(199, 210, 254, .5), 0 0 #0000;
    border-color: #2563eb
}

#ft-form input::-moz-placeholder,
#ft-form textarea::-moz-placeholder {
    color: #6b7280;
    opacity: 1
}

#ft-form input:-ms-input-placeholder,
#ft-form textarea:-ms-input-placeholder {
    color: #6b7280;
    opacity: 1
}

#ft-form input::placeholder,
#ft-form textarea::placeholder {
    color: #6b7280;
    opacity: 1
}

#ft-form select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right .5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
    -webkit-print-color-adjust: exact;
    color-adjust: exact
}

#ft-form [type=checkbox],
#ft-form [type=radio] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    display: inline-block;
    vertical-align: middle;
    background-origin: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    flex-shrink: 0;
    height: 1rem;
    width: 1rem;
    color: #2563eb;
    background-color: #fff;
    border-color: #6b7280;
    border-width: 1px
}

#ft-form [type=checkbox] {
    border-radius: 0
}

#ft-form [type=radio] {
    border-radius: 100%
}

#ft-form [type=checkbox]:focus,
#ft-form [type=radio]:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 0 #fff, 0 0 0 3px rgba(199, 210, 254, .5), 0 0 #0000;
}

#ft-form [type=checkbox]:checked,
#ft-form [type=radio]:checked {
    border-color: transparent;
    background-color: currentColor;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat
}

#ft-form [type=checkbox]:checked {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e")
}

#ft-form [type=radio]:checked {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e")
}

#ft-form [type=checkbox]:checked:focus,
#ft-form [type=checkbox]:checked:hover,
#ft-form [type=radio]:checked:focus,
#ft-form [type=radio]:checked:hover {
    border-color: transparent;
    background-color: currentColor
}

#ft-form [type=checkbox]:indeterminate {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
    border-color: transparent;
    background-color: currentColor;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat
}

.file_picker_ux {
    display: block;
}

.file_picker_ux label {
    padding-bottom: 15px;
}

#ft-form [type=checkbox]:indeterminate:focus,
#ft-form [type=checkbox]:indeterminate:hover {
    border-color: transparent;
    background-color: currentColor
}

#ft-form [type=file] {
    background: unset;
    border-color: inherit;
    border-width: 0;
    border-radius: 0;
    padding: 0;
    font-size: unset;
    line-height: inherit
}

#ft-form [type=file]:focus {
    outline: 1px auto -webkit-focus-ring-color
}

#ft-form fieldset {
    font-size: 100%;
    margin-top: 1rem;
    margin-bottom: 1.5rem
}

#ft-form fieldset:first-child {
    margin-top: 0
}

#ft-form fieldset>* {
    display: block;
    margin-bottom: 1.5rem
}

#ft-form fieldset> :last-child {
    margin-bottom: 0
}

#ft-form fieldset>.two-cols>* {
    display: block;
    margin-bottom: 1.5rem
}

#ft-form fieldset>.two-cols> :last-child {
    margin-bottom: 0
}

@media only screen and (min-width:640px) {
    #ft-form fieldset>.two-cols {
        display: flex;
        align-items: flex-end
    }
    #ft-form fieldset>.two-cols>* {
        display: block;
        margin-right: 1.5rem;
        margin-top: 0;
        margin-bottom: 0;
        flex: 1
    }
    #ft-form fieldset>.two-cols> :last-child {
        margin-right: 0
    }
    .paginate_button {
   font-size: 13px !important;
    padding: 0px !important;
    margin-bottom:15px !important;
}
}

#ft-form fieldset div>label {
    display: inline-flex;
    align-items: flex-start;
    margin-top: .5rem;
    width: 100%
}

#ft-form fieldset div>label:last-child {
    margin: .5rem 0 0 0
}

#ft-form fieldset div.inline {
    padding: .55rem 0 0;
    width: 100%
}

#ft-form fieldset div.inline>label {
    width: auto;
    margin-right: .5rem
}

#ft-form fieldset div.inline>label:last-child {
    margin-right: 0
}

#ft-form fieldset>.two-cols div.inline {
    padding: .55rem 0
}

#ft-form fieldset>legend {
    font-weight: 500;
    font-size: 120%;
    margin-bottom: 1rem
}

#ft-form fieldset>p {
    margin: 0
}

#ft-form [type=file] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    border-color: #6b7280;
    border-width: 1px;
    border-radius: 0;
    padding-top: .5rem;
    padding-right: .75rem;
    padding-bottom: .5rem;
    padding-left: .75rem;
    font-size: 1rem;
    line-height: 1.5rem
}

#ft-form [type=file]:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 0 #fff, 0 0 0 3px rgba(199, 210, 254, .5), 0 0 #0000;
    border-color: #2563eb
}

#ft-form [multiple],
#ft-form [type=date],
#ft-form [type=datetime-local],
#ft-form [type=email],
#ft-form [type=file],
#ft-form [type=month],
#ft-form [type=number],
#ft-form [type=password],
#ft-form [type=search],
#ft-form [type=tel],
#ft-form [type=text],
#ft-form [type=time],
#ft-form [type=url],
#ft-form [type=week],
#ft-form select,
#ft-form textarea {
    border-radius: .375rem;
    margin-top: .25rem;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgba(0, 0, 0, .05);
    border-color: #bbb;
    width: 100%
}

#ft-form [multiple] select,
#ft-form [type=date] select,
#ft-form [type=datetime-local] select,
#ft-form [type=email] select,
#ft-form [type=file] select,
#ft-form [type=month] select,
#ft-form [type=number] select,
#ft-form [type=password] select,
#ft-form [type=search] select,
#ft-form [type=tel] select,
#ft-form [type=text] select,
#ft-form [type=time] select,
#ft-form [type=url] select,
#ft-form [type=week] select,
#ft-form select select,
#ft-form textarea select {
    padding-right: 2.5rem
}

#ft-form [multiple]:focus,
#ft-form [type=date]:focus,
#ft-form [type=datetime-local]:focus,
#ft-form [type=email]:focus,
#ft-form [type=file]:focus,
#ft-form [type=month]:focus,
#ft-form [type=number]:focus,
#ft-form [type=password]:focus,
#ft-form [type=search]:focus,
#ft-form [type=tel]:focus,
#ft-form [type=text]:focus,
#ft-form [type=time]:focus,
#ft-form [type=url]:focus,
#ft-form [type=week]:focus,
#ft-form select:focus,
#ft-form textarea:focus {
    border-color: #bbb;
    box-shadow: 0 0 0 0 #fff, 0 0 0 3px rgba(199, 210, 254, .5), 0 0 #0000
}

#ft-form [type=checkbox],
#ft-form [type=radio] {
    color: #4f46e5;
    box-shadow: none;
    border-radius: .25rem;
    border-color: #bbb;
    margin-right: .5rem
}

#ft-form [type=checkbox]:focus,
#ft-form [type=radio]:focus {
    border-color: #bbb;
    box-shadow: 0 0 0 0 #fff, 0 0 0 3px rgba(199, 210, 254, .5), 0 0 #0000
}

#ft-form [type=radio] {
    border-radius: 100%
}

#ft-form .btns {
    text-align: right;
    margin-top: 3rem
}

#ft-form .btns>input[type=button],
#ft-form .btns>input[type=reset],
#ft-form .btns>input[type=submit] {
    display: inline-block;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgba(0, 0, 0, .05);
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: .6rem;
    padding-bottom: .6rem;
    line-height: 1.25rem;
    border-width: 1px;
    border-radius: .375rem;
    border-color: #bbb;
    background-color: #fff;
    cursor: pointer;
    margin-left: .5rem;
    font-weight: 700
}

#ft-form .btns>input[type=button]:focus,
#ft-form .btns>input[type=reset]:focus,
#ft-form .btns>input[type=submit]:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    border-color: #bbb;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(199, 210, 254, .5), 0 0 #0000
}

#ft-form .btns>input[type=submit] {
    background-color: #f3f4f5;
    transition: background-color .1s
}

#ft-form .btns>input[type=submit]:hover {
    background-color: #f8f9fa
}

.career-photo-item img {
    width: 70%;
}


/* career css ends */


/* resource blog css starts */

.resource-center-cat-content .resource-meta .resource-meta-user a {
    color: var(--brand-color);
}

.resource-center-cat-content .resource-meta span {
    color: var(--secondary-color);
}

.resource-center-cat-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 21px;
}

.resource-center-cat-title a {
    color: var(--main-color);
    transition: all 0.4s ease-in-out;
}

.resource-center-cat-title a:hover {
    color: var(--secondary-color);
    transition: all 0.4s ease-in-out;
}

#loadMoreContent .col {
    display: none;
}

.load-more-btn {
    width: 200px;
    color: #fff;
    display: block;
    text-align: center;
    margin: 5px auto;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--main-color);
    background-color: var(--main-color);
    transition: .3s linear;
    cursor: pointer;
}

.load-more-btn:hover {
    color: var(--main-color);
    background-color: #fff;
    border: 1px solid var(--main-color);
    text-decoration: none;
    transition: .3s linear;
}

.noContent {
    color: #000 !important;
    background-color: transparent !important;
    border: none !important;
    pointer-events: none;
}

.resource-center-single .resource-meta .resource-meta-user a {
    color: var(--brand-color);
}

.resource-center-single .resource-meta span {
    color: var(--secondary-color);
}

.resource-center-single-title {
    color: var(--main-color);
    font-weight: 500;
}

.resource-center-single-related-post-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 21px;
}

.resource-center-single-related-post-title a {
    color: var(--main-color);
    transition: all 0.4s ease-in-out;
}

.resource-center-single-related-post-title a:hover {
    color: var(--secondary-color);
    transition: all 0.4s ease-in-out;
}

.middle-resource-right-1-item-left .resource-img,
.middle-resource-right-2-item-right .resource-img {
    min-width: 120px;
    width: 120px;
    min-height: 120px;
    height: 120px;
    margin-right: 10px;
    margin-bottom: 0;
}

.middle-resource-right-1-item-left .resource-img a img,
.middle-resource-right-2-item-right .resource-img a img {
    width: 100%;
    height: auto;
}

.middle-resource-right-1-item-right .resource-title,
.middle-resource-right-2-item-left .resource-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.middle-resource-right-2-item-right .resource-img {
    margin-left: 10px;
    margin-right: 0;
}

.middle-resource-right-2-item-right .resource-img a img {
    border-radius: 50%;
}


/* resource blog css end */


/* Responsive CSS */

@media( min-width: 992px) and (max-width: 1200px) {
    .main-menu .navbar-nav .nav-link {
        padding: 8px 10px !important;
    }
    .footer-contact-list:first-child {
        width: 100%;
    }
    .footer-contact-list:not(:first-child) {
        width: 33.33%;
    }
    
}

@media (max-width: 992px) {
    .navbar-toggler {
        border-color: #fff;
        border-radius: 0;
        padding: 4px 8px;
    }
    .navbar-toggler i {
        color: #fff;
        font-size: 32px;
        font-weight: 500;
    }
    .home-carousel .carousel-caption {
        top: 0;
        transform: translateY(0%);
        max-width: 100%;
        text-align: left;
    }
    .home-carousel .carousel-caption h5 {
        font-size: 24px;
    }
    .home-carousel .carousel-caption .btn {
        padding: 0.4rem 0.8rem !important;
        font-size: 1rem;
    }
    .middle-resource-right-1-item,
    .middle-resource-right-2-item {
        justify-content: flex-start !important;
    }
    .middle-resource-left-1-item {
        flex-direction: column;
        justify-content: flex-start !important;
        align-items: flex-start !important;
    }
    .middle-resource-left-1-item .resource-img {
        width: 100%;
        height: 100%;
        margin-bottom: 20px;
    }
    .application-form {
        max-width: 100%;
    }
    .footer-contact-list:first-child {
        width: 100%;
    }
    .footer-contact-list:not(:first-child) {
        width: 33.33%;
    }
    .headerOne{
        display: block!important;
    }
    .header-right {
    justify-content: flex-end!important;
    display: flex;
}
}

@media (max-width: 768px) {
    .footer-contact-list:first-child,
    .footer-contact-list:not(:first-child) {
        width: 100%;
    }
    #homePartnersCarousel.slick-slider {
        margin: 0;
    }
}

@media (max-width: 576px) {
    .header-social-links .list-inline-item:not(:last-child) {
        margin-right: 4px;
    }
    #homeCarousel img{
        object-fit: cover;
        height:250px !important;
    }
    .home-carousel .carousel-caption h5 {
font-size: 18px !important;
}
    .home-counter-item span{
        font-size:15px;
        
    }
    .home-counter-item p {
        font-size: 8px;
    margin: 4px;
    text-align: center;
    }
    .team-item .team-photo {
    height: auto;
}
.signature_of_member_wrap {
    display: block;
}
li.event-header-left span {
    display: block;
}
.event-content p{
    font-size: 13px;
}
.form-check-inline {
    display: block;
}
#organization_objective_wrap .add-record{
    float:right;
}
.footer-bottom p {
   
    font-size: 9px;
   
}
.contact-details{
    display: flex;
    gap: 20px;
}
/*.dropdown-menu{*/
/*    display:inline-block  !important;*/
/*}*/
    .home-counter-text h4{
        font-size:12px !important;
    }
     .home-section-title{
        padding-left:5px !important;
    }
    .home-section-text {
        padding-top: 5px !important;
    padding-bottom: 5px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    }
    .footer .mb-4 {
    margin-bottom: 0.5rem!important;
}
.footer .mb-3 {
    margin-bottom: 0.4rem!important;
}
.footer.py-5 {
    padding-top: 1rem!important;
    padding-bottom: 1rem!important;
}


}

@media only screen and (max-width: 767px) {
  .resource-login-register{
      margin-right: 0!important;
  }
  .header-right .btn {
    margin-bottom: 10px;
     margin-top: 18px;
  }
  .header-right .btn i{
    display: none!important;
  }

  .header-right .btn a {
    display: flex;
    align-items: center;
  }

  .header-right .btn a i {
    font-size: 22px;
    margin-right: 10px;
  }
  .partners-photo img{
      height:100px;
      
  }
  .current-vacancy thead tr th, .table-wrap thead tr th {
    
    font-size: 13px;
    
    padding: 4px
  }
  .current-vacancy tbody th, .current-vacancy tbody td, .table-wrap tbody th, .table-wrap tbody td {
   
    font-size: 10px;
   
    padding: 4px;
}
.margin-0{
    margin: 0!important;
}
 
 


 
}

@media (max-width: 375px){
    .headerOne{
        margin: 0 -5px;
    }
    .header-right {
    justify-content: center!important;
}
.header-right .btn span{
    font-size:12px;
}
.ps-1 {
    display:none !important;
}
/*.dropdown-menu{*/
/*    display:inline-block !important;*/
/*}*/
.home-counter-text h4{
        font-size:12px !important;
    }
    .home-section-title{
        padding-left:5px !important;
    }
.home-section-text {
        padding-top: 5px !important;
    padding-bottom: 5px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    }
    .home-counter-item p {
        font-size: 8px;
    margin: 0px;
    text-align: center;
    }
     .home-counter-item span{
        font-size:12px;
        
    }
    .home-counter-item .icon-box {
    width: 45px !important;
    height: 45px !important;
}
.paginate_button {
   font-size: 13px !important;
    padding: 0px !important;
      margin-bottom:15px !important;
}
a.carreer-content {
    display: none;
}
 .home-section-text img {
    float: left;
    margin: 0 20px 20px 0;
    width: 40%;
  }
  
  .home-section-text p {
    margin-bottom: 10px;
  }

.text-image img{
    display:none !important;
}
.position-wrapper .postion-item .title-item ul li {
    font-size: 12px;
}
.common-position p a,.common-position p ,.common-position p  a i{
   
   font-size: 12px !important;
    text-align:justify !important;
}


}
.requirement{
    font-size:14px;
    margin-left:230px; 
    width:40%; 
    color:#000;
}

@media (max-width: 767px) {
  .home-section {
    padding-top: 10px;
  }
  .requirement{
          font-size: 14px;
    margin: 15px !important;
  width:100% !important;
    color: #000;
}
a.carreer-content {
    display: none;
}
  .member-membership-registration-detail-table {
    width: 250% !important;
  }
  .banner-text h1 {
    font-size: 28px;
  
}







