:root {
     --mainColor: #e9791e;
     --secondColor: #0e395e;
}
 * {
     letter-spacing: 0 !important;
}
 body {
     background-color: #fff;
     font-family: 'Raleway', sans-serif;
    /* font-size: 14px;
     */
}
.tag   {
	background: #e9791e;
	padding: 4px;
	color: #fff;
	font-size: 12px;
}
 .valid-form, .relative {
     position: relative;
}
 .valid-form label.error {
     position: absolute;
     bottom: -23px;
     background: #fff;
     color: red;
     text-align: center;
     display: inline-block;
     width: 100%;
     padding: 0;
}
 .form_footer_style input.error {
     border-color: red
}
 #result {
     background: #fff;
     color: green;
     text-align: center;
}
 .btn-subscribe {
     border: none;
     background: transparent;
     position: absolute;
     left: 0;
     bottom: 0;
     padding: 3px;
}
 .btn-subscribe i{
     font-size: 20px;
     color: #777
}
 .btn-subscribe:hover i{
     color: var(--mainColor)
}
 [type="email"], [type="number"], [type="tel"], [type="url"] {
     direction: ltr;
     padding-left: 30px !important;
}
 ul {
     list-style: none;
     padding: 0;
     margin: 0;
}
 .fullwidth{
     width: 100% !important;
     max-width: auto;
}
 a, a:hover {
     text-decoration: none;
     transition: .4s ease-in-out;
     -webkit-transition: .4s ease-in-out;
     -moz-transition: .4s ease-in-out;
     -ms-transition: .4s ease-in-out;
     -o-transition: .4s ease-in-out;
}
 .lead_li {
     font-size: 1.2rem;
     font-weight: 500;
     line-height: 1.8;
}
 .lines-1, .lines-2, .lines-3, .lines-4, .lines-5, .lines-6, .lines-7, .lines-8, .lines-9, .lines-10, .lines-11, .lines-12, .lines-13, .lines-14, .lines-15 {
     display: -webkit-box !important;
     overflow: hidden;
     -webkit-box-orient: vertical;
}
 .lines-1 {
     -webkit-line-clamp: 1;
}
 .lines-2 {
     -webkit-line-clamp: 2;
}
 .lines-3 {
     -webkit-line-clamp: 3;
}
 .lines-4 {
     -webkit-line-clamp: 4;
}
 .lines-5 {
     -webkit-line-clamp: 5;
}
 .lines-6 {
     -webkit-line-clamp: 6;
}
 .lines-7 {
     -webkit-line-clamp: 7;
}
 .lines-8 {
     -webkit-line-clamp: 8;
}
 .lines-9 {
     -webkit-line-clamp: 9;
}
 .lines-10 {
     -webkit-line-clamp: 10;
}
 .lines-11 {
     -webkit-line-clamp: 11;
}
 .lines-12 {
     -webkit-line-clamp: 12;
}
 .lines-13 {
     -webkit-line-clamp: 13;
}
 .lines-14 {
     -webkit-line-clamp: 14;
}
 .lines-15 {
     -webkit-line-clamp: 15;
}
 .loaders {
     position: fixed;
     z-index: 999999;
     background: #fff;
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all ease-in-out .5s;
}
 .loaders img {
     max-width: 350px;
     -webkit-animation: fadeAnimation 1s infinite;
     -moz-animation: fadeAnimation 1s infinite;
     -o-animation: fadeAnimation 1s infinite;
     animation: fadeAnimation 1s infinite;
}
 @-webkit-keyframes fadeAnimation {
     0%, 100% {
         opacity: 0;
    }
     50% {
         opacity: 1;
    }
}
 @-moz-keyframes fadeAnimation {
     0%, 100% {
         opacity: 0;
    }
     50% {
         opacity: 1;
    }
}
 @-o-keyframes fadeAnimation {
     0%, 100% {
         opacity: 0;
    }
     50% {
         opacity: 1;
    }
}
 @keyframes fadeAnimation {
     0%, 100% {
         opacity: 0;
    }
     50% {
         opacity: 1;
    }
}
 .chat-btns {
     position: fixed;
     top: 70%;
     left: 0;
     transform: translateY(-50%);
     -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
     -ms-transform: translateY(-50%);
     -o-transform: translateY(-50%);
     z-index: 5;
}
 .chat-btns a {
     display: block;
     padding: .8rem .7rem;
     color: #fff;
     font-size: 1.1rem;
     text-align: center;
}
 .chat-btns a svg {
     width: 30px;
     height: 30px;
}
 .chat-btns a.facebook {
     background-color: var(--mainColor);
}
 .chat-btns a.whatsapp {
     background-color: #4dc247;
}
 .chat-btns a.telegram {
     background-color: #28a7e7;
}
 .modalOnLoadPage {
     position: fixed;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
     -ms-transform: translate(-50%, -50%);
     -o-transform: translate(-50%, -50%);
     z-index: 99999;
     display: flex;
     align-items: center;
     justify-content: center;
     width: 100%;
     height: 100%;
}
 .modalOnLoadPage::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.8);
     z-index: -1;
}
 .modalOnLoadPage .fa-times {
     position: absolute;
     top: 40px;
     right: 22%;
     color: #f00;
     font-size: 2rem;
     transform: translateX(-50%);
     -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
     -ms-transform: translateX(-50%);
     -o-transform: translateX(-50%);
}
 .modalOnLoadPage .img {
     display: block;
     text-align: center;
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
     -ms-transform: translate(-50%, -50%);
     -o-transform: translate(-50%, -50%);
}
 .modalOnLoadPage img {
     object-fit: contain;
     width: 100%;
}
/* START => Header */
 header {
     position: fixed;
     top: 0;
     left: 0;
     z-index: 99;
     width: 100%;
     transition: .2s;
     -webkit-transition: .2s;
     -moz-transition: .2s;
     -ms-transition: .2s;
     -o-transition: .2s;
}
 .top-header {
     background-color: rgba(14, 57, 94, 0.705);
     color: #fff;
     padding: .5rem 0;
     transition: .5s;
     -webkit-transition: .5s;
     -moz-transition: .5s;
     -ms-transition: .5s;
     -o-transition: .5s;
}
 .img-events {
     position: absolute;
     top: 0;
     left: 50%;
     transform: translateX(-50%);
     -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
     -ms-transform: translateX(-50%);
     -o-transform: translateX(-50%);
     z-index: -1;
     pointer-events: none;
     user-select: none;
     width: 100%;
}
 .img-events img {
     width: 100%;
 }
 header.sticky .img-events {
     opacity: .3;
}
 .top-header a {
     color: #fff;
}
 .top-header a:hover {
     color: var(--mainColor);
}
 .contact-head a {
     margin: auto .5rem;
}
 .contact-head a:not(:last-child) {
     margin-right: 0;
}
 .address span {
     font-weight: 500;
     display: inline-block;
}
 .social-icon a {
     margin: auto .5rem;
}
 .middle-header {
     background-color: rgba(255, 255, 255, 0.2);
}
 .logo {
     padding: .8rem 1.2rem;
     background-color: #fff;
     border-radius: 10px;
     -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
     -ms-border-radius: 10px;
     -o-border-radius: 10px;
}
 .logo img {
     max-width: 130px !important;
     transition: .3s;
     -webkit-transition: .3s;
     -moz-transition: .3s;
     -ms-transition: .3s;
     -o-transition: .3s;
}
 .btn-toggle-menu {
     display: none;
}
 nav>ul {
     display: flex;
}
 nav>ul>li {
     position: relative;
}
 nav>ul>li>a {
     font-size: 14px;
     padding: 2rem .5rem;
     font-weight: 700;
     color: #fff;
     position: relative;
}
 nav>ul>li>a:hover {
     color: var(--mainColor);
}
 nav>ul>li>a::before, nav>ul>li>a.active::before {
     content: "...";
     position: absolute;
     bottom: 0;
     left: 50%;
     font-size: 2.5rem;
     text-align: center;
     transform: translateX(-50%) scale(0);
     -webkit-transform: translateX(-50%) scale(0);
     -moz-transform: translateX(-50%) scale(0);
     -ms-transform: translateX(-50%) scale(0);
     -o-transform: translateX(-50%) scale(0);
     transition: 0.3s;
     -webkit-transition: 0.3s;
     -moz-transition: 0.3s;
     -ms-transition: 0.3s;
     -o-transition: 0.3s;
}
 nav>ul>li>a:hover::before, nav>ul>li>a.active::before {
     transform: translateX(-50%) scale(1);
     -webkit-transform: translateX(-50%) scale(1);
     -moz-transform: translateX(-50%) scale(1);
     -ms-transform: translateX(-50%) scale(1);
     -o-transform: translateX(-50%) scale(1);
     color: var(--mainColor);
}
 .dropdown-toggle::after {
     content: "\f107";
     font-family: "Font Awesome 5 Free";
     font-weight: 900;
     border: 0;
     vertical-align: middle;
     transition: 0.3s;
     -webkit-transition: 0.3s;
     -moz-transition: 0.3s;
     -ms-transition: 0.3s;
     -o-transition: 0.3s;
}
 .dropdown-toggle.show::after {
     transform: rotate(-90deg);
     -webkit-transform: rotate(-90deg);
     -moz-transform: rotate(-90deg);
     -ms-transform: rotate(-90deg);
     -o-transform: rotate(-90deg);
}
 .dropdown-menu {
     min-width: 220px;
     padding: 0px 0px;
     background-color: var(--secondColor);
     box-shadow: 0px 10px 18px rgba(0, 0, 0, 0.1);
     -webkit-box-shadow: 0px 10px 18px rgba(0, 0, 0, 0.1);
     transition: 0.5s;
     -webkit-transition: 0.5s;
     -moz-transition: 0.5s;
     -ms-transition: 0.5s;
     -o-transition: 0.5s;
}
 .dropdown-menu>li {
     display: block;
     position: relative;
     -webkit-transition: all .4s ease;
     transition: all .4s ease;
}
 .dropdown-menu>li+li {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
}
 .dropdown-menu>li>a {
     font-size: 14px;
     color: #fff;
     font-weight: 500;
     padding: 6px 10px;
     display: block;
     line-height: 26px;
     white-space: nowrap;
     position: relative;
     -webkit-transition: all .4s ease;
     transition: all .4s ease;
}
 .dropdown-menu>li:hover>a {
     color: #fff;
     background: var(--mainColor);
}
 .middle-left-header>div {
     margin: auto .5rem;
     margin-right: 0;
}
 .box-search {
     position: fixed;
     top: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 100%;
     background-color: #fff;
     z-index: 9;
     padding: 2.5rem;
     box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
     border-radius: 0 0 5px 5px;
     display: none;
}
 .box-search form input {
     width: 100%;
     padding: .8rem 1rem;
     border: 1px solid #666;
     border-right: 0;
     outline: none;
     background-color: transparent;
     color: #333;
}
 .box-search form button {
     outline: none;
     width: 70px;
     padding: 1rem;
     border: 1px solid #666;
     border-left: 0;
     background-color: var(--mainColor);
     color: #fff;
     border-radius: 0 5px 5px 0;
     transition: 0.3s;
}
 .box-search form button:hover {
     background-color: #eee;
     background-color: var(--secondColor);
}
 .box-search strong {
     margin: 1rem auto;
     color: #444;
}
 .btn-show-search {
     cursor: pointer;
     color: #ffd;
     transition: 0.3s;
     -webkit-transition: 0.3s;
     -moz-transition: 0.3s;
     -ms-transition: 0.3s;
     -o-transition: 0.3s;
}
 .btn-show-search:hover {
     color: var(--mainColor);
}
 .box-search .close_search {
     position: absolute;
     top: 20px;
     right: 30px;
     cursor: pointer;
     color: #f00;
     font-size: 2rem;
}
 .langs {
     margin-left: 1rem;
}
 .langs a {
     padding-left: 1rem;
     border-left: 1px solid #fff;
}
 header.sticky {
     transform: translateY(-40px);
     -webkit-transform: translateY(-40px);
     -moz-transform: translateY(-40px);
     -ms-transform: translateY(-40px);
     -o-transform: translateY(-40px);
     background-color: #fff;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
 header.sticky .top-header {
     transform: translateY(-40px);
}
 header.sticky .logo img {
     max-width: 110px !important;
}
 header.sticky .btn-show-search, header.sticky nav>ul>li>a {
     color: #444;
}
 header.sticky .box-search {
     transform: translateX(-50%) translateY(40px);
     -webkit-transform: translateX(-50%) translateY(40px);
     -moz-transform: translateX(-50%) translateY(40px);
     -ms-transform: translateX(-50%) translateY(40px);
     -o-transform: translateX(-50%) translateY(40px);
}
/* //END => Header */
/* START => Home Slides */
 .home-slider, .home-slider .owl-stage-outer, .home-slider .owl-stage, .home-slider .owl-item, .home-slider .item {
     /*height: 450px;*/
}
 .home-slider .item {
     background-position: center center;
     background-size: cover;
     background-repeat: no-repeat;
     width: 100%;
     height: 100%;
     position: relative;
     overflow: hidden;
     display: flex;
     align-items: center;
     justify-content: end;
    /* z-index: 1;
     */
}
 .home-slider .item .img-slide {
     width: 100%;
     height: 100%;
}
 .home-slider .item .img-slide img {
     width: 100%;
     /*height: 100%;*/
     /*object-fit: fill;*/
}
 .home-slider.owl-theme .owl-nav {
     position: absolute;
     left: 50%;
     bottom: 19px;
     font-size: 20px;
     color: var(--mainColor);
     transform: translateX(-50%);
     -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
     -ms-transform: translateX(-50%);
     -o-transform: translateX(-50%);
}
 .home-slider.owl-theme .owl-nav>button {
     background-color: transparent;
     border: 2px solid var(--mainColor);
     color: var(--mainColor);
     padding: .3rem 0.8rem !important;
     transition: 0.4s;
     -webkit-transition: 0.4s;
     -moz-transition: 0.4s;
     -ms-transition: 0.4s;
     -o-transition: 0.4s;
     font-size: 12px;
}
 .home-slider.owl-theme .owl-nav>button:focus, .home-slider.owl-theme .owl-nav>button:hover {
     outline: 0;
     border-color: var(--secondColor);
     background-color: var(--secondColor);
     color: #fff;
}
/* //END => Home Slides */
/* START => About Us */
 .sec-about {
    /* background-color: var(--mainColor);
     */
}
 .txt-about h1 {
     color: #333;
}
 .txt-about p {
     color: #333;
     font-size: 1.25rem;
     font-weight: 300;
     line-height: 1.;
}
 .btn-more {
     border: 2px solid var(--secondColor);
     color: var(--secondColor);
     font-weight: bold;
     display: inline-block;
     padding: .8rem 1rem;
     margin: 1rem auto;
}
 .btn-more:hover {
     background-color: var(--secondColor);
     color: #fff;
}
/* //END => About Us */
/* START => Sub Websites */
 .website-img {
     display: block;
     background-position: center center;
     background-size: 100% 100%;
     width: 100%;
     height: 100%;
     position: relative;
}
 .website-img::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
    /* background-color: rgba(0, 0, 0, 0.5);
     */
     transition: 0.4s linear;
     -webkit-transition: 0.4s linear;
     -moz-transition: 0.4s linear;
     -ms-transition: 0.4s linear;
     -o-transition: 0.4s linear;
}
 .website-img:hover::before {
     background-color: rgb(255 255 255 / 60%);
}
 .website-img img.img-primary {
     width: 100%;
}
 .website-img .img-logo {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
     -ms-transform: translate(-50%, -50%);
     -o-transform: translate(-50%, -50%);
     z-index: 1;
     transition: 0.4s linear;
     -webkit-transition: 0.4s linear;
     -moz-transition: 0.4s linear;
     -ms-transition: 0.4s linear;
     -o-transition: 0.4s linear;
     max-height: 300px;
}
 .website-img strong {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
     -ms-transform: translate(-50%, -50%);
     -o-transform: translate(-50%, -50%);
     z-index: 1;
     color: #fff;
     font-weight: bold;
     font-size: 2rem;
     transition: 0.4s linear;
     -webkit-transition: 0.4s linear;
     -moz-transition: 0.4s linear;
     -ms-transition: 0.4s linear;
     -o-transition: 0.4s linear;
     text-align: center;
}
 .website-img:hover .img-logo, .website-img:hover strong {
     transform: translate(-50%, -50%) scale(1.2);
     -webkit-transform: translate(-50%, -50%) scale(1.2);
     -moz-transform: translate(-50%, -50%) scale(1.2);
     -ms-transform: translate(-50%, -50%) scale(1.2);
     -o-transform: translate(-50%, -50%) scale(1.2);
}
/* //END => Sub Websites */
/* START => Activites */
 .slides-actv.owl-theme .owl-stage {
     display: flex;
     align-items: center;
     justify-content: center;
     margin: auto;
}
 .slides-actv.owl-theme .owl-stage .owl-item {
     display: inline-block;
     float: none;
     vertical-align: middle;
}
 .item-ach {
     display: block;
     text-align: center;
}
 .item-ach img, .slides-actv .item-ach img {
     height: 100px;
     width: auto;
     display: block;
     margin: auto;
    /* box-shadow: 0px 0px 5px #999;
     */
}
 .item-ach span {
     color: #444;
     font-weight: bold;
     font-size: 1.2rem;
     margin-top: 1rem;
     display: block;
}
 .modalActivites .item-project .project-content .title {
    /* font-size: 1rem;
     */
}
 .modalActivites .item-project .btn-styled {
     padding: .5rem 1rem;
     font-size: .8rem;
     border-radius: 6px;
     -webkit-border-radius: 6px;
     -moz-border-radius: 6px;
     -ms-border-radius: 6px;
     -o-border-radius: 6px;
}
 .slides-actv.owl-theme .owl-nav {
     margin-top: 2rem;
}
 .slides-actv.owl-theme .owl-nav>button {
     background-color: transparent;
     border: 2px solid var(--mainColor);
     color: var(--mainColor);
     padding: .3rem 0.8rem !important;
     transition: 0.4s;
     -webkit-transition: 0.4s;
     -moz-transition: 0.4s;
     -ms-transition: 0.4s;
     -o-transition: 0.4s;
     font-size: 12px;
}
 .slides-actv.owl-theme .owl-nav>button:focus, .slides-actv.owl-theme .owl-nav>button:hover {
     outline: 0;
     border-color: var(--secondColor);
     background-color: var(--secondColor);
     color: #fff;
}
/* //END => Activites */
/* START => Gallery */
 .grid-item {
     width: 100%;
     height: 250px;
     overflow: hidden;
     display: block;
     margin-bottom: .1rem;
     position: relative;
}
 .grid-item.small {
     height: 200px;
}
 .grid-item::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: #333;
     opacity: 0;
     filter: alpha(opacity=0);
     -webkit-transition: opacity 0.3s ease-in-out;
     -o-transition: opacity 0.3s ease-in-out;
     transition: opacity 0.3s ease-in-out;
}
 .grid-item:hover::before {
     opacity: 0.9;
     filter: alpha(opacity=90);
}
 .grid-item i {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%) scale(0);
     -webkit-transform: translate(-50%, -50%) scale(0);
     -moz-transform: translate(-50%, -50%) scale(0);
     -ms-transform: translate(-50%, -50%) scale(0);
     -o-transform: translate(-50%, -50%) scale(0);
     transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
     -webkit-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
     -moz-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
     -ms-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
     -o-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
 .grid-item:hover i {
     transform: translate(-50%, -50%) scale(2);
     -webkit-transform: translate(-50%, -50%) scale(2);
     -moz-transform: translate(-50%, -50%) scale(2);
     -ms-transform: translate(-50%, -50%) scale(2);
     -o-transform: translate(-50%, -50%) scale(2);
     color: var(--mainColor);
}
 .grid-item img {
     max-width: 100%;
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: 0.4s;
     -webkit-transition: 0.4s;
     -moz-transition: 0.4s;
     -ms-transition: 0.4s;
     -o-transition: 0.4s;
}
 .side-fliters {
     background-color: #f5f5f5;
}
 .side-fliters .title {
     padding: 1rem;
     text-align: center;
     background-color: var(--secondColor);
     color: #fff;
}
 .side-fliters .title strong {
}
 .side-fliters .links-filters {
}
 .side-fliters .links-filters li {
}
 .side-fliters .links-filters li a {
     padding: 1rem;
     display: block;
     color: #444;
     font-weight: 600;
}
 .side-fliters .links-filters li a:hover, .side-fliters .links-filters li a.active {
     color: #fff;
     background-color: var(--mainColor);
}
 .gallery_sounds iframe {
     width: 100% !important;
}
/* //END => Gallery */
/* START => Achievements */
 .sec-achievements {
     position: relative;
     background-repeat: no-repeat;
     background-size: cover;
     background-attachment: fixed;
     z-index: 1;
}
 .sec-achievements::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(255, 255, 255, 0.8);
     z-index: -1;
}
 .sec-achievements .title {
     margin-bottom: 5rem;
}
 .sec-achievements .title strong {
     font-weight: bold;
     color: var(--mainColor);
}
 #timeline .timeline-item:after, #timeline .timeline-item:before {
     content: "";
     display: block;
     width: 100%;
     clear: both;
}
 #timeline {
     width: 100%;
     margin: 30px auto;
     position: relative;
     padding: 0 10px;
     -webkit-transition: all 0.4s ease;
     -moz-transition: all 0.4s ease;
     -ms-transition: all 0.4s ease;
     transition: all 0.4s ease;
    /* direction: ltr !important;
     */
}
 #timeline:before {
     content: "";
     width: 3px;
     height: 100%;
     background: var(--mainColor);
     left: 50%;
     top: 0;
     position: absolute;
}
 #timeline:after {
     content: "";
     clear: both;
     display: table;
     width: 100%;
}
 #timeline .timeline-item {
     margin-bottom: 50px;
     position: relative;
}
 #timeline .timeline-item .timeline-icon {
     background: #fff;
     width: 100px;
     height: 100px;
     padding: 5px;
     display: flex;
     align-items: center;
     justify-content: center;
     border: 3px solid var(--mainColor);
     position: absolute;
     top: 0;
     left: 50%;
     overflow: hidden;
     border-radius: 50%;
     -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
     -ms-border-radius: 50%;
     -o-border-radius: 50%;
     transform: translateX(-50%);
     -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
     -ms-transform: translateX(-50%);
     -o-transform: translateX(-50%);
}
 #timeline .timeline-item .timeline-icon img {
     max-width: 100%;
     width: 65px;
}
 #timeline .timeline-item .timeline-content {
     width: 45%;
     min-height: 300px;
     display: flex;
     flex-wrap: wrap;
     flex-direction: column;
     align-content: flex-start;
     justify-content: center;
     align-items: flex-start;
     background: #fff;
     padding: 20px;
     box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
     border-radius: 5px;
     -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
     -ms-border-radius: 5px;
     -o-border-radius: 5px;
     transition: all 0.3s ease;
     -webkit-transition: all 0.3s ease;
     -moz-transition: all 0.3s ease;
     -ms-transition: all 0.3s ease;
     -o-transition: all 0.3s ease;
}
 #timeline .timeline-item .timeline-content.right {
     float: right;
}
 #timeline .timeline-item .timeline-content.right:before {
     right: 45%;
     left: inherit;
     border-left: 0;
     border-right: 7px solid #ee4d4d;
}
 #timeline .timeline-item .timeline-content p {
     font-weight: 600;
     position: relative;
     padding-left: 1.5rem;
}
 #timeline .timeline-item .timeline-content p::after {
     content: "\f00c";
     font-family: "Font Awesome 5 Free";
     font-weight: 900;
     position: absolute;
     left: 0;
     color: var(--mainColor);
}
 @media screen and (max-width: 768px) {
     #timeline {
         margin: 30px;
         padding: 0px;
         width: 90%;
    }
     #timeline:before {
         left: 0;
    }
     #timeline .timeline-item .timeline-content {
         width: 90%;
         float: right;
    }
     #timeline .timeline-item .timeline-content:before, #timeline .timeline-item .timeline-content.right:before {
         left: 10%;
         margin-left: -6px;
         border-left: 0;
         border-right: 7px solid #ee4d4d;
    }
     #timeline .timeline-item .timeline-icon {
         left: 0;
    }
}
 .modalAchive .modal-body {
     padding: 0;
}
 .modalAchive .content-bg {
     background-attachment: fixed;
     background-size: cover;
     padding: 1rem;
     position: relative;
     z-index: 1;
}
 .modalAchive .content-bg::before {
    /* content: "";
     */
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.9);
     z-index: -1;
}
 .modalAchive .content-bg .txt-achive-modal {
     color: #444;
     font-weight: 300;
}
/* //END => Achievements */
/* START => News */
 .sec-news {
     background-color: #eee;
}
 .gallery-top4, .gallery-top3 {
     border-bottom: 4px solid #fff;
}
 .gallery-top4 .item-vid-slide {
     position: relative;
}
 .gallery-top4 .item-vid-slide span {
     position: absolute;
     top: 30px;
     right: 40px;
     z-index: 1;
     background-color: var(--mainColor);
     color: #fff;
     padding: .5rem 1rem;
}
 .gallery-top4 .item-vid-slide a, .gallery-top3 .item-news-slide .img-slide {
     height: 430px;
}
 .gallery-top4 .item-vid-slide a img, .gallery-top3 .item-news-slide .img-slide img {
     width: 100%;
}
 .gallery-thumbs4 .item-vid-slide a, .gallery-thumbs3 .item-news-slide .img-slide {
     height: 120px;
}
.gallery-thumbs4 .item-vid-slide a img, .gallery-thumbs3 .item-news-slide .img-slide img {
    width: 100%;
    /* height: 100%; */
    object-fit: contain;
}
 .item-news-slide a {
     color: #fff;
     position: absolute;
     bottom: 0;
     left: 0;
     padding: 1rem;
     z-index: 1;
     width: 100%;
}
 .gallery-top3 .item-news-slide a {
     height: 140px;
}
 .item-news-slide a::before {
     content: "";
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgb(14,57,94);
     background: linear-gradient(0deg, rgba(14,57,94,1) 0%, rgba(255,255,255,0) 100%);
     z-index: -1;
}
 .item-news-slide a strong {
     font-weight: bold;
     font-size: 13px;
     background-color: var(--mainColor);
     color: #fff;
     padding: 5px 10px;
     border-radius: 30px;
     -webkit-border-radius: 30px;
     -moz-border-radius: 30px;
     -ms-border-radius: 30px;
     -o-border-radius: 30px;
     margin-bottom: .5rem;
     display: inline-block;
}
 .item-news-slide a p {
     margin: 0;
     font-weight: bold;
}
 .item-vid-slide {
}
 .item-vid-slide p.title_vid {
     margin: 0;
     color: #fff;
     position: absolute;
     bottom: 0;
     left: 0;
     padding: 1rem;
     z-index: 1;
     width: 100%;
     height: 100px;
     text-align: right;
     display: flex;
     align-items: center;
     justify-content: center;
}
 .item-vid-slide p.title_vid::before {
     content: "";
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgb(14,57,94);
     background: linear-gradient(0deg, rgba(14, 57, 94, 1) 0%, rgba(255, 255, 255, 0) 100%);
     z-index: -1;
}
 .item-vid-slide a {
     display: block;
     position: relative;
}
 .item-vid-slide a::before {
     /*content: "";*/
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(14, 57, 94, 0.8);
     transition: 0.3s;
     -webkit-transition: 0.3s;
     -moz-transition: 0.3s;
     -ms-transition: 0.3s;
     -o-transition: 0.3s;
     opacity: 0.2;
}
 .item-vid-slide:hover a::before {
     opacity: 1;
}
 .gallery-top4 .item-vid-slide a img {
     width: 100%;
    /*height: 100%;*/
    /*object-fit: contain;*/
}
}
 .item-vid-slide a i {
     font-size: 3rem;
}
 .item-vid-slide.thumb a i {
     font-size: 2rem;
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
     -ms-transform: translate(-50%, -50%);
     -o-transform: translate(-50%, -50%);
     z-index: 1;
     color: var(--mainColor);
}
 .href_void {
     pointer-events: none !important;
}
 .swiper-button-next1, .swiper-button-prev2 {
     position: absolute;
     top: 50%;
     width: calc(var(--swiper-navigation-size)/ 44 * 27);
     height: var(--swiper-navigation-size);
     margin-top: calc(-1 * var(--swiper-navigation-size)/ 2);
     z-index: 10;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #ffffff;
}
 .swiper-button-next1.swiper-button-disabled, .swiper-button-prev2.swiper-button-disabled {
     opacity: .35;
     cursor: auto;
     pointer-events: none;
}
 .swiper-button-next1:after, .swiper-button-prev2:after {
     font-family: swiper-icons;
     font-size: var(--swiper-navigation-size);
     text-transform: none!important;
     letter-spacing: 0;
     text-transform: none;
     font-variant: initial;
     line-height: 1;
     color: #ffffff;
}
 .swiper-button-next1:after {
     content: 'next';
}
 .swiper-button-prev2:after {
     content: 'prev';
}
 .swiper-button-next1 {
     right: 10px;
     left: auto;
}
 .swiper-button-prev2 {
     left: 10px;
     right: auto;
}
/*********************************************/
 .item-news-slide.thumb a {
     padding: 4px 6px;
    /* text-align: center;
     */
     pointer-events: none;
}
 .item-news-slide.thumb a strong {
     font-size: 11px;
     padding: 3px 5px;
}
 .item-news-slide a strong.btn-styled {
     border-radius: 6px;
     -webkit-border-radius: 6px;
     -moz-border-radius: 6px;
     -ms-border-radius: 6px;
     -o-border-radius: 6px;
}
 .item-news-slide.thumb a p {
     font-weight: 500;
     font-size: 12px;
}
 .item-news .img__news>a {
     display: block;
     position: relative;
     overflow: hidden;
     height: 250px;
}
 .item-news .img__news>a::before {
     content: "";
     position: absolute;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.80);
     transition: all 0.5s;
     opacity: 0;
}
 .item-news:hover .img__news>a::before {
     opacity: 1;
}
 .item-news .img__news>a img {
     width: 100%;
     height: 100%;
     object-fit: contain;
}
 .item-news .img__news a i {
     position: absolute;
     top: 50%;
     left: 50%;
     color: #fff;
     z-index: 9;
     transition: all .4s ease;
     -webkit-transition: all .4s ease;
     -moz-transition: all .4s ease;
     -ms-transition: all .4s ease;
     -o-transition: all .4s ease;
     transform: translate(-50%, -50%) scale(0);
     -webkit-transform: translate(-50%, -50%) scale(0);
     -moz-transform: translate(-50%, -50%) scale(0);
     -ms-transform: translate(-50%, -50%) scale(0);
     -o-transform: translate(-50%, -50%) scale(0);
}
 .item-news:hover .img__news a i {
     transform: translate(-50%, -50%) scale(1);
}
 .item-news .img__news a:hover i {
     color: var(--mainColor);
}
 .item-news .inf__news {
     padding-top: 20px;
}
 .item-news .inf__news .date {
     position: relative;
     display: inline-block;
     height: 45px;
     border-bottom: 3px solid #dadada;
     transition: all 700ms ease 500ms;
     text-transform: uppercase;
}
 .item-news .inf__news .date strong {
     color: var(--mainColor);
}
 .item-news .inf__news .by__name {
     color: var(--mainColor);
     font-weight: bold;
}
 .item-news .inf__news .by__name b {
     color: #666;
}
 .item-news .inf__news a.title__news {
     color: #27282c;
     font-size: 18px;
     font-weight: bold;
     display: -webkit-box;
     overflow: hidden;
     -webkit-box-orient: vertical;
     -webkit-line-clamp: 3;
}
 .item-news .inf__news .desc__news {
     color: #828282;
     overflow: hidden;
     height: 50px;
}
 .item-news .inf__news .link__more {
     color: #27282c;
     font-size: 15px;
     line-height: 20px;
     font-weight: 500;
     text-transform: capitalize;
     font-family: 'Rubik', sans-serif;
     transition: all 500ms ease;
}
 .item-news .inf__news a.title__news:hover, .item-news .inf__news .link__more:hover {
     color: var(--mainColor);
}
 .item-news .inf__news .link__more i {
     transition: .5s;
}
 .item-news .inf__news .link__more:hover i {
     transform: translateX(10px);
}
 .btn-styled {
     display: inline-block;
     background-color: var(--mainColor);
     color: #fff;
     padding: 1rem;
     font-weight: 600;
     font-size: 1rem;
     border-radius: 15px;
     -webkit-border-radius: 15px;
     -moz-border-radius: 15px;
     -ms-border-radius: 15px;
     -o-border-radius: 15px;
    /* box-shadow: 5px -5px 5px rgba(0, 0, 0, 0.4) inset;
     */
     border: 0;
     outline: none;
     transition: 0.3s;
     -webkit-transition: 0.3s;
     -moz-transition: 0.3s;
     -ms-transition: 0.3s;
     -o-transition: 0.3s;
}
 .btn-styled:focus, .btn-styled:hover {
     color: #fff;
     outline: none;
     background-color: var(--secondColor);
}
 .btn-more_articles {
     border-radius: 10px;
     -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
     -ms-border-radius: 10px;
     -o-border-radius: 10px;
}
/* //END => News */
/* START => Our Partners */
 .sec-partner {
     background-color: #f5f5f5
}
 .sec-title, .sec-partner .sec-title {
     margin-bottom: 5rem;
}
 .sec-title strong, .sec-partner .sec-title strong {
     font-weight: bold;
     color: var(--mainColor);
}
 .btn_styled23 {
     background: #ffffff;
     border: solid 1px #e6e6e6;
     display: inline-block;
     width: 80px;
     height: 80px;
     line-height: 80px;
     margin: 5px;
     position: relative;
     text-align: center;
     vertical-align: middle;
     border-radius: 10px;
     -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
     -ms-border-radius: 10px;
     -o-border-radius: 10px;
}
 .btn_styled23 span {
     background: #f2594b;
     border-radius: 4px;
     color: #ffffff;
     display: inline-block;
     font-size: 10px;
     font-weight: 700;
     line-height: normal;
     padding: 5px 10px;
     position: relative;
     text-transform: uppercase;
     z-index: 1;
}
 .btn_styled23 span:last-child {
     margin-left: -20px;
}
 .btn_styled23:before, .btn_styled23:after {
     background: #ffffff;
     border: solid 3px #9fb4cc;
     border-radius: 4px;
     content: '';
     display: block;
     height: 35px;
     left: 50%;
     margin: -17px 0 0 -12px;
     position: absolute;
     top: 50%;
    /*transform:translate(-50%,-50%);
    */
     width: 25px;
}
 .btn_styled23:hover:before, .btn_styled23:hover:after {
     background: #e2e8f0;
}
 .btn_styled23:before {
     margin: -23px 0 0 -5px;
}
 .btn_styled23:hover {
     background: #e2e8f0;
     border-color: #9fb4cc;
}
 .btn_styled23:active {
     background: #dae0e8;
     box-shadow: inset 0 2px 2px rgba(0, 0, 0, .25);
}
 .btn_styled23 span:first-child {
     display: none;
}
 .btn_styled23:hover span:first-child {
     display: inline-block;
}
 .btn_styled23:hover span:last-child {
     display: none;
}
 .partner-items .item {
     display: flex;
     align-items: center;
     justify-content: center;
     height: 200px;
}
 .partner-items .item img {
     max-height: 100%;
     max-width: initial;
     width: auto;
}
 .slides-partner.owl-theme .owl-nav [class*=owl-] {
     all: unset;
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 35px;
     height: 35px;
     background-color: #333;
     color: #fff;
     border-radius: 4px;
     opacity: .6;
     cursor: pointer;
}
 .slides-partner.owl-theme .owl-nav [class*=owl-]:hover {
     opacity: 1;
     background-color: var(--mainColor);
}
 .slides-partner.owl-theme .owl-nav button.owl-prev {
     left: 0;
}
 .slides-partner.owl-theme .owl-nav button.owl-next {
     right: 0;
}
/* //END => Our Partners */
/* START => Footer */
 footer {
     background-color: #04151f;
     box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
 footer .title-footer {
     font-weight: bold;
     color: #fff;
}
 .footer-links a {
     color: #fff;
     display: block;
}
 .footer-links a:hover {
     color: var(--mainColor);
}
 .footer-links .links a {
     padding-bottom: .5rem;
}
 .img-app {
     margin-bottom: 1rem;
}
 .img-app a {
     display: inline-block;
     margin: auto .4rem;
}
 .img-app a img {
     max-height: 50px;
}
 footer .social-links {
     text-align: center;
}
 footer .social-links li, footer .social-links a {
     display: inline-block;
     margin: auto 3px;
}
 footer .social-links i {
     color: #FFF;
     width: 30px;
     height: 30px;
     line-height: 30px;
     text-align: center;
     border-radius: 50%;
     transition: .5s;
}
 footer .social-links a:hover i {
     transform: scale(1.1);
     -webkit-transform: scale(1.1);
     -moz-transform: scale(1.1);
     -ms-transform: scale(1.1);
     -o-transform: scale(1.1);
}
 footer .social-links a .fa-facebook-f {
     background-color: #3b5998
}
 footer .social-links a .fa-twitter {
     background-color: #55acee
}
 footer .social-links a .fa-whatsapp {
     background-color: #4dc247
}
 footer .social-links a .fa-google-plus-g {
     background-color: #dd4b39
}
 footer .social-links a .fa-instagram {
     background-color: #e95950;
     background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
}
 footer .social-links a .fa-linkedin-in {
     background-color: #007bb5
}
 footer .social-links a .fa-youtube {
     background-color: #e95950
}
 footer .social-links a .fa-snapchat {
     background-color: #ffcd36;
}
 .links-square {
     display: flex;
     align-items: center;
     flex-wrap: wrap;
}
 .links-square li {
     max-width: calc(100% / 4);
     flex: 0 0 calc(100% / 4);
     padding: 0.3rem;
}
 .links-square li a {
     background-color: var(--mainColor);
     padding: 1rem 1.5rem;
     font-size: .9rem;
     font-weight: bold;
     display: inline-block;
     color: #fff;
     text-align: center;
     width: 100%;
     color: #000;
     border-radius: 4px;
     -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
     -ms-border-radius: 4px;
     -o-border-radius: 4px;
}
 .links-square li a:hover {
     background-color: var(--secondColor);
     color: #fff;
}
 .form_footer_style {
}
 .form_footer_style label {
     background-color: var(--mainColor);
     color: #000;
     display: block;
     padding: .4rem .4rem;
     font-weight: bold;
     font-size: 14px;
}
 .form_footer_style input {
     display: block;
     width: 100%;
     border: 0;
     padding: .5rem .3rem;
     font-size: 14px;
}
 .footer-copyright {
     background-color: var(--secondColor);
     color: #fff;
}
/* //END => Footer */
/***************************************************************************************************/
/***************************************************************************************************/
/***************************************************************************************************/
/***************************************************************************************************/
/***************************************************************************************************/
/***************************************************************************************************/
/***************************************************************************************************/
/***************************************************************************************************/
/* * 12. inner-banner styles */
 .page-item.active .page-link {
     z-index: 3;
     color: #fff;
     background-color: var(--mainColor);
     border-color: var(--mainColor);
}
 .page-link {
     color: var(--mainColor);
}
 .inner-banner {
     background-color: #011928;
     background-repeat: no-repeat;
     background-size: cover;
     background-attachment: fixed;
     background-position: bottom;
     position: relative;
     background-image: url('../images/slides/02.jpg');
}
 .inner-banner::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background-color: #011928;
     opacity: 0.5;
}
 .inner-banner .container {
     position: relative;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-pack: center;
     -ms-flex-pack: center;
     justify-content: center;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -ms-flex-direction: column;
     flex-direction: column;
     padding-top: 169px;
     padding-bottom: 1.5rem;
}
 .inner-banner__title {
     margin: 0;
     text-transform: uppercase;
     font-size: 3rem;
     font-weight: 700;
     letter-spacing: -0.04em;
     color: #fff;
     margin-top: 1rem;
}
 .thm-breadcrumb {
     margin: 0;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-pack: center;
     -ms-flex-pack: center;
     justify-content: center;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
}
 .thm-breadcrumb li {
     font-size: 20px;
     text-transform: capitalize;
}
 .thm-breadcrumb li a {
     color: #fff;
}
 .thm-breadcrumb li+li::before {
     content: '.';
     color: #fff;
     margin-left: 15px;
     margin-right: 15px;
}
/* START => About Us */
 .bg-gray {
     background-color: #f8f8f8;
}
 .page-about .txt-about p {
     font-size: 1rem;
     font-weight: 500;
}
 blockquote {
     position: relative;
     padding: 30px 30px 30px;
     border-right: 5px solid #f1f1f1;
     color: #444;
     font-size: 18px;
     font-style: italic;
     background-image: linear-gradient(90deg, #fff, #f9f9f9);
     margin: 0 0 1rem;
}
 blockquote:before {
     color: rgba(0, 0, 0, 0.3);
     content: "\f10d";
     font-family: "Font Awesome 5 Free";
     font-weight: 900;
     font-size: 50px;
     opacity: 0.15;
     position: absolute;
     right: 20px;
     top: -4px;
     transform: rotate(-180deg);
}
 blockquote:before {
     color: var(--mainColor);
}
 .title-as.h2 {
     font-weight: bold;
}
 .lead__txt {
     font-size: 1.3rem;
     font-weight: 500;
}
 .img-about {
     position: relative;
}
 .img-about::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     transition: 0.5s;
}
 .img-about:hover::before {
     background-color: rgba(0, 0, 0, 0.5);
}
 .img-about::after {
     content: "";
     position: absolute;
     top: -10px;
     left: -10px;
     width: 100%;
     height: 100%;
     z-index: -1;
     background-color: var(--mainColor);
     transition: 0.5s;
}
 .img-about:hover::after {
     top: 0;
     left: 0;
}
 .img-about img {
     width: 100%;
}
 .btn-play-vid {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     display: inline-block;
     width: 100px;
     height: 100px;
     line-height: 100px;
     text-align: center;
     border-radius: 50%;
     background-color: rgba(233, 121, 30, 0.5);
     border: 1px solid var(--mainColor);
     color: #fff;
     font-size: 2rem;
     cursor: pointer;
     z-index: 1;
     animation: shadow-pulse 1s infinite;
     -webkit-animation: shadow-pulse 1s infinite;
}
 .btn-play-vid:hover {
     color: #fff;
}
 @keyframes shadow-pulse {
     0% {
         box-shadow: 0 0 0 0px rgba(233, 121, 30, 0.8);
    }
     100% {
         box-shadow: 0 0 0 35px rgba(233, 121, 30, 0);
    }
}
/* //END => About Us */
/* START => Publication */
 .page-publication {
}
 .page-publication iframe {
     width: 100% !important;
     height: 400px !important;
}
/* //END => Publication */
/* START => Board Of Trustess */
 .item-team {
     margin-bottom: 2rem;
     -webkit-transition: all .4s ease;
     transition: all .4s ease;
}
 .item-team:hover {
     -webkit-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
     box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
}
 .item-team:hover .team-one__image>img {
     -webkit-transform: scale(1.02);
     transform: scale(1.02);
}
 .team-one__image {
     text-align: center;
     margin: auto;
     margin-bottom: -103px;
     width: 300px;
     height: 300px;
}
 .team-one__image img {
     height: 100%;
     width: 100%;
     object-fit: cover;
     object-position: center;
     transform: scale(1);
     -webkit-transform: scale(1);
     -moz-transform: scale(1);
     -ms-transform: scale(1);
     -o-transform: scale(1);
     border-radius: 50%;
     -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
     -ms-border-radius: 50%;
     -o-border-radius: 50%;
     transition: all .4s ease-in-out;
     -webkit-transition: all .4s ease-in-out;
     -moz-transition: all .4s ease-in-out;
     -ms-transition: all .4s ease-in-out;
     -o-transition: all .4s ease-in-out;
}
 .team-content {
     text-align: center;
     border: 2px solid #f1f1f1;
     padding-bottom: 30px;
     padding-top: 135px;
     padding-left: 10px;
     padding-right: 10px;
}
 .team-name {
     font-size: 18px;
     font-weight: 600;
     color: #012237;
     margin: 0;
}
 .team-name a {
     color: inherit;
     -webkit-transition: all .4s ease;
     transition: all .4s ease;
}
 .team-name a:hover {
     color: #f16101;
}
 .team-text {
     margin: 0;
     font-size: 1rem;
     color: #81868a;
     font-weight: 500;
     line-height: 30px;
}
 .team-social {
     background-color: #f1f1f1;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-pack: center;
     -ms-flex-pack: center;
     justify-content: center;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     padding-top: 11.5px;
     padding-bottom: 11.5px;
}
 .team-social a {
     font-size: 14px;
     color: #81868a;
     -webkit-transition: all .4s ease;
     transition: all .4s ease;
}
 .team-social a:hover {
     color: #f16101;
}
 .team-social a+a {
     margin-left: 28px;
}
/* //END => Board Of Trustess */
/* START => Project */
 .item-project {
}
 .item-project .project-img {
     display: block;
     width: 100%;
     aspect-ratio: auto 672 / 448;
}
 .item-project .project-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center;
}
 .item-project .project-content {
     text-align: center;
     padding: 1rem;
}
 .item-project .project-content .title {
     display: block;
     margin-bottom: 1rem;
     color: #444;
     font-weight: bold;
     font-size: 1.2rem;
}
 .img-project-gallery .gallery-top2 .swiper-slide>a {
     height: 370px;
     display: block;
}
 .img-project-gallery .gallery-top2 .swiper-slide>a img {
     width: 100%;
     height: 100%;
     object-fit: contain;
     object-position: center;
}
 .img-project-gallery .gallery-thumbs2 .swiper-slide .thumb {
     height: 100px;
}
 .desc-long .txt-style p {
     font-size: 1.1rem !important;
     line-height: 1.8;
     font-weight: 400;
}
/* //END => Project */
/* START => */
 .img-achivems {
     display: block;
}
 .img-achivems img {
     transition: 0.3s;
     -webkit-transition: 0.3s;
     -moz-transition: 0.3s;
     -ms-transition: 0.3s;
     -o-transition: 0.3s;
}
 .img-achivems:hover img {
     filter: blur(3px);
     -webkit-filter: blur(3px);
}
/* //END => */
/* START => Be Volunteer */
 .volunteer-be {
     position: relative;
     background-position: center center;
     background-repeat: no-repeat;
     background-attachment: fixed;
     background-size: cover;
/*     background-image: url('../images/donate-1.jpg');
     background-image: url('../images/slides/02.jpg');*/
}
 .volunteer-be.no-bk {
     background-image: none !important;
}
 .title-bg {
     background-color: var(--secondColor);
     color: #fff;
     padding: 2.5rem 0;
}
 .volunteer-be form {
     box-shadow: 0 0 10px #ddd;
     background-color: #fff;
     border-radius: 30px;
     -webkit-border-radius: 30px;
     -moz-border-radius: 30px;
     -ms-border-radius: 30px;
     -o-border-radius: 30px;
     overflow: hidden;
}
 form .form-inputs {
     padding: 2rem;
}
 form .form-control {
     height: auto;
     line-height: 1.4;
     padding: .6rem;
     -webkit-appearance: none;
     -moz-appearance: none;
     font-size: .9rem;
}
 form ::placeholder {
     color: #bbb;
}
/* //END => Be Volunteer */
/* START => Page Careers */
 .item-career {
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     padding: 1rem;
     color: #444;
     border-radius: 4px;
     -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
     -ms-border-radius: 4px;
     -o-border-radius: 4px;
}
 .item-career:hover {
     color: #444;
     box-shadow: 0 1px 15px rgba(0, 0, 0, 0.2);
}
 .item-career .title-careers {
     color: #444;
     font-weight: 500;
     width: 100%;
     text-overflow: ellipsis;
     white-space: nowrap;
     overflow: hidden;
     cursor: pointer;
     transition: 0.3s;
     -webkit-transition: 0.3s;
     -moz-transition: 0.3s;
     -ms-transition: 0.3s;
     -o-transition: 0.3s;
}
 .item-career .title-careers:hover {
     color: var(--mainColor);
}
/* START => Page Careers */
/* START => Contact Us */
 .google-map iframe {
     width: 100% !important;
     height: 512px !important;
}
 .ct_title {
     color: #555555;
     font-weight: 500;
     margin-bottom: 15px;
}
 .ct_address p {
     color: #555555;
     line-height: 28px;
     margin-bottom: 35px;
     font-size: 1rem;
}
 .address_wrapper .address {
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     margin-bottom: 15px;
}
 .address_wrapper .address .icon {
     min-width: 35px;
}
 .address_wrapper .address .icon i {
     color: #555555;
     font-size: 22px;
}
 .address_wrapper .address .contact-info-text p {
     color: #555555;
     margin: 0;
     font-size: 1rem;
}
 .address_wrapper .address .contact-info-text p a {
     color: #222;
 }
 .address_wrapper .address .contact-info-text p a:hover {
     color: var(--mainColor);
 }
 .address_wrapper .address .contact-info-text p span {
     font-weight: 600;
}
 .contact_form .input_box input {
     background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
     border: 1px solid #dddddd;
     border-radius: 3px;
     color: #252525;
     height: 45px;
     margin-bottom: 20px;
     padding: 0 20px;
     text-transform: capitalize;
     width: 100%;
}
 .contact_form textarea {
     background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
     border-radius: 3px;
     height: 150px;
     margin-bottom: 20px;
     padding: 10px;
     width: 100%;
}
 .contact-form .form-control {
     background: transparent;
     font-size: 14px;
     color: #252525;
}
 .contact-info {
     text-align: center;
}
 .contact-info .icon {
     width: 88px;
     height: 88px;
     border: 1px solid #62ab00;
     color: #62ab00;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     margin: 0 auto;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     -webkit-box-pack: center;
     -ms-flex-pack: center;
     justify-content: center;
     margin-bottom: 20px;
     border-radius: 50%;
}
 .contact-info .icon i {
     font-size: 30px;
}
 .contact-info .content .title {
     font-weight: 600;
     color: #333;
     font-size: 18px;
}
/* //END => Contact Us */
/* START => Awards */
 .block-know .item-award {
     display: block;
     text-align: center;
    /* border: 1px solid #ddd;
     */
     padding: 4rem .5rem;
     border-radius: 50%;
     -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
     -ms-border-radius: 50%;
     -o-border-radius: 50%;
     overflow: hidden;
     font-size: 1.2rem;
     font-weight: bold;
     color: #6A42F2;
     background: rgba(106, 66, 242, 0.07);
}
 .block-know .item-award:hover {
     box-shadow: 0 2px 10px #ddd;
     transform: translateY(-5px);
     -webkit-transform: translateY(-5px);
     -moz-transform: translateY(-5px);
     -ms-transform: translateY(-5px);
     -o-transform: translateY(-5px);
     color: #fff;
     background: var(--secondColor);
}
 .block-know>div:nth-child(2) .item-award {
     color: #13314b;
    /* background: rgba(66,148,255,0.26);
     */
     background: rgba(19, 49, 75, 0.3);
}
 .block-know>div:nth-child(2) .item-award:hover {
     color: #fff;
     background: rgb(66, 148, 255);
}
 .block-know>div:nth-child(3) .item-award {
     color: #F27E42;
     background: rgba(242, 126, 66, 0.26);
}
 .block-know>div:nth-child(3) .item-award:hover {
     color: #fff;
     background: var(--mainColor);
}
 .share-block {
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     -webkit-box-pack: justify;
     -ms-flex-pack: justify;
     justify-content: space-between;
     padding-top: 40px;
     padding-bottom: 40px;
     padding-left: 50px;
     padding-right: 50px;
     border: 2px solid #f1f1f1;
}
 .share-block .left-block p {
     margin: 0;
     color: #012237;
     font-size: 16px;
     font-weight: 600;
}
 .share-block .left-block p a {
     color: var(--mainColor);
     font-size: 16px;
     font-weight: 500;
     -webkit-transition: all .4s ease;
     transition: all .4s ease;
     margin-left: 5px;
     letter-spacing: 0;
}
 .share-block .left-block p a:hover {
     color: var(--secondColor);
}
 .share-block .social-block {
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
}
 .share-block .social-block a {
     display: inline-block;
     vertical-align: middle;
     text-align: center;
     color: #81868a;
     font-size: 18px;
     -webkit-transition: all .4s ease;
     transition: all .4s ease;
     margin: auto 1rem;
}
 .share-block .social-block a:hover {
     color: var(--mainColor);
}
/* //END => Awards */
/* START => Branches */
 .item-branche {
     border: 1px solid #ddd;
     padding: 1rem;
     transition: 0.3s;
     -webkit-transition: 0.3s;
     -moz-transition: 0.3s;
     -ms-transition: 0.3s;
     -o-transition: 0.3s;
     box-shadow: 0 0 10px #ddd;
     display: block;
     height: 100%;
}
 .item-branche:hover {
     box-shadow: 0 3px 10px #ddd;
     transform: translateY(-5px);
     -webkit-transform: translateY(-5px);
     -moz-transform: translateY(-5px);
     -ms-transform: translateY(-5px);
     -o-transform: translateY(-5px);
}
 .item-branche .img-branche {
     display: flex;
     align-items: center;
     justify-content: center;
}
 .item-branche .img-branche img {
     max-height: 100px;
}
 .item-branche .txt-branche {
     text-align: center;
     padding-top: 1rem;
     color: #444;
}
 .item-branche .txt-branche .title_branche {
     display: block;
     font-size: 1.1rem;
     margin-bottom: .5rem;
}
 .item-branche:hover .txt-branche .title_branche {
     color: var(--mainColor);
}
 .item-branche .txt-branche .address_branche {
}
 .item-branche .txt-branche .phone_num {
     display: block;
     margin-bottom: .5rem;
}
 .item-branche .txt-branche .data_created {
     display: block;
}
/* //END => Branches */
/* START => Donation Means */
 .item-donation-means {
     display: block;
     background-color: #fff;
     border: 1px solid rgba(0, 0, 0, 0.1);
     text-align: center;
     padding: 2.5rem 0;
     border-radius: 10px;
     -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
     -ms-border-radius: 10px;
     -o-border-radius: 10px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     color: #444;
}
 .item-donation-means:hover {
     transform: translateY(-5px);
     -webkit-transform: translateY(-5px);
     -moz-transform: translateY(-5px);
     -ms-transform: translateY(-5px);
     -o-transform: translateY(-5px);
     background-color: var(--mainColor);
     color: #fff;
}
 .item-donation-means img {
     max-height: 100px;
     display: block;
     margin: auto;
}
 .item-donation-means strong {
     display: block;
     font-weight: bold;
     font-size: 1.3rem;
     margin-top: 1.2rem;
}
/* //END => Donation Means */
/* START => */
/* //END => */
/********************************************************/
/********************************************************/
/********************************************************/
/* Sup Websites */
/********************************************************/
/********************************************************/
/********************************************************/
 :root {
     --supMainColor: #125872;
     --supMainColorAlt: #20d0ce;
     --supRedColor: #9e2a2a;
     --supRedColorAlt: #fe5955;
}
 .header-sup {
     position: static;
     background-color: #fff;
     border-bottom: 1px solid #ddd;
}
 .header-sup .top-header {
     background-color: var(--secondColor);
}
 .header-sup .btn-show-search, .header-sup nav>ul>li>a {
     color: #444;
}
 .header-sup nav>ul>li>a:hover, .header-sup .btn-show-search:hover {
     color: var(--mainColor);
}
/* .header-sup .img-events {
     display: none !important;
     opacity: 0 !important;
     user-select: none;
}
 .header-sup .dropdown-menu, .header-sup .top-header {
     background-color: var(--supRedColor);
}
 .header-sup .top-header a:hover {
     color: var(--supMainColorAlt);
}
 .header-sup .dropdown-menu>li:hover>a {
     background: var(--supRedColorAlt);
}
 .header-sup .btn-show-search {
     color: #444;
}
 .header-sup nav>ul>li>a:hover::before, .header-sup nav>ul>li>a.active::before {
     color: var(--supRedColor);
}
 */
 .logo-sup {
     margin: auto;
     text-align: center;
     padding: 1rem 0;
}
 .logo-sup img {
     max-height: 165px;
}
/* START => Link Sup Website */
 .link-supwebsite {
     background-color: transparent;
     line-height: 0;
}
 .link-supwebsite {
     display: flex;
     align-items: center;
     justify-content: center;
     flex-wrap: wrap;
}
 .link-supwebsite > div {
     width: 25%;
     padding: 0 .5rem;
}
 .link-supwebsite > div:first-child {
     padding-left: 0;
}
 .link-supwebsite > div:last-child {
     padding-right: 0;
}
 .link-supwebsite > div a {
     color: #fff;
     border-radius: 10px;
     -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
     -ms-border-radius: 10px;
     -o-border-radius: 10px;
     text-align: center;
     font-size: 1.2rem;
     font-weight: bold;
     background-color: var(--supMainColorAlt);
     display: inline-block;
     padding: 1.5rem .5rem;
     width: 100%;
}
 .link-supwebsite a:hover {
     background-color: var(--supRedColorAlt);
}
/* //END => link-supwebsite */
/* START => Sup Services */
 .sec-sup-services {
     background-color: var(--supRedColor);
}
 .sec-sup-services .item {
     color: #fff;
     text-align: center;
     padding: 1rem;
}
 .sec-sup-services .row > div:nth-child(odd) .item {
     background-color: var(--supRedColor);
}
 .sec-sup-services .row > div:nth-child(even) .item {
     background-color: var(--supRedColorAlt);
}
 .sec-sup-services .item img {
     max-width: 100%;
     max-height: 60px;
}
 .sec-sup-services .item strong.h1 {
     font-size: 3.5rem;
     font-weight: bold;
     margin: 1rem auto;
}
 .sec-sup-services .item strong.h2 {
     font-size: 2rem;
     font-weight: bold;
}
/* ===================================*/
 .text-sup-ser {
     background-color: var(--supMainColor);
     padding: 1rem;
     color: #fff;
     font-size: 1.6rem;
}
/* //END => Sup Services */
/* START => */
 .sub-video {
     line-height: 0;
}
 .sub-video iframe {
     width: 100% !important;
     height: 100vh !important;
}
/* //END => */
/* */
 .sec-3things {
     background-color: #f5f5f5;
}
 .sec-3things .info {
}
 .sec-3things .info strong.title {
     display: block;
     font-size: 1.5rem;
     font-weight: bold;
     color: var(--supRedColor);
     margin-bottom: 2rem;
}
 .sec-3things .info img {
     max-height: 150px;
}
 .sec-3things .info .txt-info {
     font-size: 1.1rem;
     line-height: 1.8;
}
 .sec-3things .info.info-awareness .txt-info {
    height: 248px;
}
 .sec-3things .info.success-stories .txt-info {
}
 .sec-3things .info.importance-session .txt-info {
    height: 248px;
}
 .sec-3things .info .txt-info p {
     margin: 0;
}
 .sec-3things .info .btn-styled {
     margin-top: 1rem;
     padding: .5rem;
     border-radius: 5px;
     -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
     -ms-border-radius: 5px;
     -o-border-radius: 5px;
}
/* */
/* */
 .slides-clinics, .slides-clinics .owl-stage-outer, .slides-clinics .owl-stage, .slides-clinics .owl-item, .slides-clinics .item {
     height: calc(100vh / 1.3);
}
 .slides-clinics .item {
     background-position: center center;
     background-size: cover;
     background-repeat: no-repeat;
     width: 100%;
     height: 100%;
     position: relative;
     overflow: hidden;
     display: flex;
     align-items: center;
     justify-content: end;
    /* z-index: 1;
     */
}
 .slides-clinics .item .img-slide {
     width: 100%;
     height: 100%;
}
 .slides-clinics .item .img-slide img {
     width: 100%;
     height: 100%;
     object-fit: cover;
}
 .slides-clinics.owl-theme .owl-nav {
     position: absolute;
     left: 50%;
     bottom: 19px;
     font-size: 20px;
     color: var(--mainColor);
     transform: translateX(-50%);
     -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
     -ms-transform: translateX(-50%);
     -o-transform: translateX(-50%);
}
 .slides-clinics.owl-theme .owl-nav>button {
     background-color: transparent;
     border: 2px solid var(--mainColor);
     color: var(--mainColor);
     padding: .3rem 0.8rem !important;
     transition: 0.4s;
     -webkit-transition: 0.4s;
     -moz-transition: 0.4s;
     -ms-transition: 0.4s;
     -o-transition: 0.4s;
     font-size: 12px;
}
 .slides-clinics.owl-theme .owl-nav>button:focus, .slides-clinics.owl-theme .owl-nav>button:hover {
     outline: 0;
     border-color: var(--secondColor);
     background-color: var(--secondColor);
     color: #fff;
}
/* */
/* START => */
 footer.supwebsite-footer .title-footer {
     margin-bottom: 0;
}
 footer.supwebsite-footer .social-links .fa-whatsapp {
     background-color: #4dc247;
}
 footer.supwebsite-footer .social-links .fa-map-marker-alt {
     background-color: var(--mainColor);
}
 footer.supwebsite-footer .links_footer a {
     padding: .5rem;
}
 footer.supwebsite-footer .img-app a {
     margin-bottom: 1rem;
}
 footer.supwebsite-footer .img-app a img {
     max-height: 60px;
}
/* //END => */
 .item-clinic {
     padding: 1rem;
     box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
     border-radius: 10px;
     -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
     -ms-border-radius: 10px;
     -o-border-radius: 10px;
     color: #444;
     transition: 0.5s;
     -webkit-transition: 0.5s;
     -moz-transition: 0.5s;
     -ms-transition: 0.5s;
     -o-transition: 0.5s;
}
 .item-clinic:hover {
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
     transform: translateY(-5px);
     -webkit-transform: translateY(-5px);
     -moz-transform: translateY(-5px);
     -ms-transform: translateY(-5px);
     -o-transform: translateY(-5px);
     color: #444;
}
 .item-clinic .title-clinic, .item-clinic .title-schedules {
     font-size: 1.1rem;
     display: block;
     margin-bottom: .5rem;
}
 .item-clinic .clinic-schedules p {
     font-size: 13px;
}
 .item-clinic:hover strong.title-clinic {
     color: var(--mainColor);
}
 .request-session-form {
}
 .request-session-form .title-bg {
     background-color: var(--supRedColor);
     padding: 2rem 0;
}
 .btn-styled.btn-styled-sup {
     background-color: var(--supRedColor);
}
 .btn-styled.btn-styled-sup:focus, .btn-styled.btn-styled-sup:hover {
     background-color: var(--supRedColorAlt);
}
 .sec-sup-centers {
     background-color: #f5f5f5;
}
 .sec-sup-centers strong {
     color: #444;
}
 .item-center {
     background-color: var(--supRedColor);
     color: #fff;
     width: 100px;
     height: 100px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
     -ms-border-radius: 50%;
     -o-border-radius: 50%;
     font-weight: bold;
}
 .item-center:hover {
     background-color: var(--supRedColorAlt);
     color: #fff;
}
 @media (max-width: 991.98px) {
     .header-sup .btn-toggle-menu {
         color: #444;
    }
     .header-sup nav>ul {
         background-color: var(--supMainColor);
    }
     .header-sup nav>ul>li>a {
         color: #fff;
    }
     .link-supwebsite > div {
         width: 50%;
         padding: 0 0.5rem;
    }
     .link-supwebsite a {
         width: 100%;
         margin-bottom: .5rem;
    }
}
 @media (max-width: 767.98px) {
     .link-supwebsite {
         flex-wrap: wrap;
    }
     .link-supwebsite > div {
         width: 50%;
         padding: 0 0.5rem;
    }
     .link-supwebsite a {
         width: 100%;
         margin-bottom: .5rem;
    }
     .text-sup-ser {
         padding: .5rem;
         font-size: 14px;
    }
     .box-centers {
         text-align: center;
    }
     .sub-video iframe {
         width: 100% !important;
         height: auto !important;
    }
     .inner-banner__title {
         font-size: 1.5rem;
    }
     form .form-inputs {
         padding: .5rem;
    }
}
 @media (max-width: 580.98px) {
     .link-supwebsite {
         flex-direction: column;
    }
     .link-supwebsite > div {
         width: 100%;
    }
}
 .error{
     color: #f00;
}
 .error.form-control{
     border: 1px solid #f00
}
/****************************************************************/
/****************************************************************/
/****************************************************************/
/****************************************************************/
/****************************************************************/
/****************************************************************/
/****************************************************************/
/* Website Tow */
 :root {
     --mainColorTwo: #8fbb1e;
     --blueColorTwo: #0e395d;
     --brownColorTwo: #693c11;
}
/* .website_sup_two .top-header {
     background-color: var(--mainColorTwo);
}
 .website_sup_two .top-header .social-icon a:hover {
     color: var(--brownColorTwo);
}
 */
 .website_sup_two .link-supwebsite > div a {
     background-color: var(--blueColorTwo);
}
 .website_sup_two .link-supwebsite > div a:hover {
     background-color: var(--mainColorTwo);
}
 .website_sup_two .sec-sup-services .row > div:nth-child(odd) .item {
     background-color: var(--brownColorTwo);
}
 .website_sup_two .sec-sup-services .row > div:nth-child(even) .item {
     background-color: #43291a;
}
 .website_sup_two .text-sup-ser {
     background-color: var(--blueColorTwo);
}
 .website_sup_two .item-center {
     background-color: var(--mainColorTwo);
}
 .website_sup_two .item-center:hover {
     background-color: var(--blueColorTwo);
}
 .website_sup_two .sec-sup-centers strong {
     color: var(--brownColorTwo);
}
 .website_sup_two .sec-3things .info strong.title {
     color: var(--mainColorTwo);
}
 .website_sup_two .btn-styled.btn-styled-sup {
     background-color: var(--blueColorTwo);
}
 .website_sup_two .btn-styled.btn-styled-sup:hover {
     background-color: var(--mainColorTwo);
}
 .website_sup_two .sec-title strong {
     color: var(--brownColorTwo);
}
 .website_sup_two .item-news .inf__news a.title__news:hover, .website_sup_two .item-news .inf__news .link__more:hover {
     color: var(--mainColorTwo);
}
 .website_sup_two .slides-clinics.owl-theme .owl-nav>button {
     background-color: transparent;
     border: 2px solid var(--mainColorTwo);
     color: var(--mainColorTwo);
}
 .website_sup_two .slides-clinics.owl-theme .owl-nav>button:hover {
     background-color: var(--blueColorTwo);
     border: 2px solid var(--blueColorTwo);
     color: #fff;
}
 .website_sup_two footer {
     background-color: var(--blueColorTwo);
}
 .website_sup_two .footer-links a:hover {
     color: var(--mainColorTwo);
}
 .website_sup_two .item-clinic:hover strong.title-clinic {
     color: var(--mainColorTwo);
}
 .website_sup_two .request-session-form .title-bg {
     background-color: var(--blueColorTwo);
}
 .website_sup_two .btn-styled {
     background-color: var(--blueColorTwo);
}
 .website_sup_two .btn-styled:hover {
     background-color: var(--mainColorTwo);
}
/* .website_sup_two .header-sup .dropdown-menu, .website_sup_two .header-sup .top-header {
     background-color: var(--mainColorTwo);
}
 .website_sup_two .header-sup nav>ul>li>a {
     color: #444;
}
 .website_sup_two .header-sup .dropdown-menu>li:hover>a {
     background: var(--brownColorTwo);
}
 .website_sup_two .header-sup .btn-show-search {
     color: #444;
}
 .website_sup_two .header-sup nav>ul>li>a:hover, .website_sup_two .header-sup .btn-show-search:hover {
     color: var(--mainColorTwo);
}
 .website_sup_two nav>ul>li>a:hover::before, .website_sup_two nav>ul>li>a.active::before {
     color: var(--mainColorTwo);
}
 */



/******************************************************************************************/
/******************************************************************************************/
/******************************************************************************************/
/******************************************************************************************/
/******************************************************************************************/
/******************************************************************************************/
/******************************************************************************************/
/******************************************************************************************/
/******************************************************************************************/
/******************************************************************************************/
/******************************************************************************************/

.item-gall-catgss.item-branche {
    padding: 0rem;
}
.item-gall-catgss.item-branche .img-branche img {
    max-height: 100%;
}





































