* {
    font-family: 'Lato', sans-serif;
    font-family: 'Montserrat', sans-serif;
    font-family: 'Oswald', sans-serif;
    font-family: 'Roboto', sans-serif;
}

.mainColorForProject {
    color: #1C8C73!important;
}

.mainColorForProjectGreen {
    color: #1C8C73!important;
}

.mainColorForProjectBlue {
    color: #2A89C9!important;
}

.mainColorForProjectYellow {
    color: #F09E2A!important;
}

h1, h2, h3, h4, h5, h6 {
    color: #2A89C9;;
}


.mainBackgroundColor {
    /*background: -webkit-gradient(linear, left top, left bottom, from(#edf1f2), to(#d5e2f2));*/
    /*background: linear-gradient(to bottom, #edf1f2, #d5e2f2);*/
    background-color: transparent!important;
}

.vertical-header-wrapper {
    text-shadow: 4px 4px 2px rgba(150, 150, 150, 1);

}

.vertical-header {
    font-weight: bold !important;
    text-align: start;
}

.social-icons > a {
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
}

/*end pagination....................................................................................*/
/*loading******************************************************************************/
.loading_part {
    position: fixed;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.7);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.lds-roller {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
}

.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
    top: 63px;
    left: 63px;
}

.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
    top: 68px;
    left: 56px;
}

.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
    top: 71px;
    left: 48px;
}

.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
}

.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
    top: 71px;
    left: 32px;
}

.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
    top: 68px;
    left: 24px;
}

.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
    top: 63px;
    left: 17px;
}

.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12px;
}

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*    end loading******************************************************/
#globe {
    -webkit-animation: rotation 5.5s infinite linear;
    animation: rotation 5.5s infinite linear;
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
    to {
        -webkit-transform: rotateY(359deg);
        transform: rotateY(359deg);
    }
}

#globe:hover {
    -webkit-animation: none;
    animation: none;
}

#languages .dropdown-link {
    text-align: center;
}

.w-form-done > div {
    color: green;
    font-weight: 400;
    font-size: 13px;
}

.w-form-fail > div {
    color: red;
    font-weight: 400;
    font-size: 13px;
}

.footer-logo.w-nav-brand > h3 {
    color: #ffffff;
    letter-spacing: 3px;
}

/*team member//////////////////////////////////////////////////////////////////////////*/
.go-corner {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: absolute;
    width: 40px;
    height: 40px;
    overflow: hidden;
    top: -1px;
    right: -1px;
    background-color: rgba(28, 140, 115, 0.9);
    border-radius: 0 4px 0 40px;
    cursor: pointer;
}

.go-arrow {
    margin-top: -4px;
    margin-right: -8px;
    color: white;
    font-family: courier, sans;
}

.team-member-card {
    z-index: 0;
    overflow: hidden;
}

.team-member-card:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -16px;
    right: -16px;
    background: rgba(28, 140, 115, 0.9);
    height: 40px;
    width: 40px;
    border-radius: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: -webkit-transform 0.25s ease-out;
    transition: -webkit-transform 0.25s ease-out;
    transition: transform 0.25s ease-out;
    transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}


.team-member-card:hover * {
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    color: rgba(255, 255, 255, 0.95);
}

.team-member-card:hover .card-corner-line {
    width: 60px;
}

.card-corner-line-bottom {
    margin-right: 30px;
    position: absolute;
    left: -1px;
    bottom: 12px;
    margin-left: 0;
    display: none;
}

.team-member-card:hover .team-member-avatar {
    -webkit-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
    -webkit-transition-property: -webkit-transform, -webkit-filter;
    transition-property: -webkit-transform, -webkit-filter;
    -o-transition-property: transform, filter;
    transition-property: transform, filter;
    transition-property: transform, filter, -webkit-transform, -webkit-filter;
    -webkit-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.57, 0.21, 0.69, 1);
    -o-transition-timing-function: cubic-bezier(0.57, 0.21, 0.69, 1);
    transition-timing-function: cubic-bezier(0.57, 0.21, 0.69, 1);
}

/* end team member//////////////////////////////////////////////////////////////////////////*/
/*video play part/////////////////////////////////////////////////////////////////////////////*/
.video-play-modal-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    z-index: 222222;
    display: none;
}

#closePlayModal {
    position: absolute;
    top: 3%;
    right: 3%;
    color: #ffffff;
    cursor: pointer;
    font-size: 30px;
}

.video-play-modal {
    width: 70%;
    height: 70%;
    margin: 7% auto;
}

.video-play-modal > iframe {
    width: 100%;
    height: -webkit-fill-available;
    height: -moz-available;
    height: fill-available;
}

@media screen and (max-width: 767px) {
    #closePlayModal {
        position: absolute;
        top: 3%;
        right: 5%;
        color: #ffffff;
        cursor: pointer;
        font-size: 30px;
    }

    .video-play-modal {
        width: 90%;
        height: 35%;
        margin: 15% auto;
    }
}

/*end video play part/////////////////////////////////////////////////////////////////////////////*/
.search-menu-button {
    height: 40px;
    width: 40px;
    background-image: -webkit-gradient(linear, left top, right top, from(#F09E2A), to(#fb874c));
    background-image: linear-gradient(90deg, #ff935c, #fb874c);
    font-size: 15px;
    line-height: 45px;
    text-align: center;
    color: #ffffff;
    padding: 0;
    border-radius: 50%;
}

/*popuppppppppppppppppppppppppppppppppppppppppppppppppppppp*/
.popup-container {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform: scale(1.3);
    position: fixed;
    z-index: 1111;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(21, 17, 17, 0.61);
    display: flex;
    align-items: center;
}

.popup-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
}

.popup-content p {
    font-size: 17px;
    padding: 10px;
    line-height: 20px;
}

.popup-content span {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.popup-content span:hover,
.popup-content span:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.showPopUp {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.more-articles {
    margin: 30px 30px 50px;
    font-size: 20px;
}

.more-articles a {
    margin: 0 10px;
    text-decoration: underline;
}

/*popuppppppppppppppppppppppppppppppppppppppppppppppppppppp*/
.searchHeader {
    text-align: center;
}

.search-form {
    max-width: unset;
}

#searchResultUl {
    width: 90%;
    margin: 3% auto;
    max-height: 50vh;
    overflow-x: auto;
}

#searchResultUl > li {
    background: #fff;
    padding: 5px;
    display: block;
    margin: 5px 0;
    width: auto;
}

#searchResultUl > li > a > img {
    max-height: 80px;
    width: 130px;
}

#searchResultUl > li > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-between;
    text-decoration: none;
}

#searchResultUl a > span {
    color: black;
    float: unset;
    font-size: 16px;
    font-weight: unset;
    margin: 19px 5px;
}

@media screen and (max-width: 767px) {
    #searchResultUl {
        width: 95%;
        max-height: 50vh;
        padding-left: 0;
    }

    #searchResultUl > li {
        background: #fff;
        padding: 5px;
        display: block;
        margin: 5px 0;
        width: auto;
    }

    #searchResultUl > li > a > img {
        max-height: 100%;
        width: 100px;
        text-align: center;
    }

    .popup-content {
        width: 70%;
    }
}

.page-wrapper {
    /*background-image: url("../files/main.jpeg")!important;*/
    /*background-position: center;*/
    /*background-repeat: no-repeat;*/
    /*background-size: cover;*/
}
/*esearch//////////////////////////////////////////////////////////////////////////*/
