@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap');
@import url('https://fonts.googleapis.com/css?family=Montserrat:100,200,400,600,700');
@import url('https://fonts.googleapis.com/css2?family=Francois+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Baloo+2&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sriracha&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Architects+Daughter&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arima+Madurai:wght@400;700;900&display=swap');

:root {
  --color-1: #ecf0f1;
  --color-2: #08a27c;
  --color-3: #e1b12c;
}

.vert {
  color: var(--color-2) !important;
}

.tab-hover {
    background-color: var(--color-2);
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
    border-bottom: 4px solid var(--color-3);
    text-decoration: none;
    color: #fff;
}

.tab-hover .icon {
    height: 40px !important;
}

.tab-hover img {
    margin-top: 10px !important;
    opacity: 1 !important;
    filter: none !important;
}

/* MENU DE NAVIGATION */

.logoNav {
    position: absolute;
    width: 100px;
    z-index: 1000;
    margin-left: -10%; 
    margin-top: 20px;
    border-radius: 50%;
    border: 2px solid #078A6A;
}

.navbar-outer {
  height: 84px; 
}

.navbar {
  background-color: #212529;
  width: 100%;
  height: 84px;
  padding: 0;
  box-shadow: 0 3px 9px rgba(0,0,0,0.26);
  border-bottom: 2px solid var(--color-2);
  z-index: 999;
  transition: all 0.15s;
  position: fixed;
}

.navbar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 82px;
    width: 100%;
    height: 2px;
    background-color: rgba(0,0,0,.15);
    z-index: 1;
}

.navbar.fix {
  box-shadow: 0 3px 9px rgba(0,0,0,0.16);
}

.navbar>.container, .navbar>.container-fluid {
  flex-wrap: nowrap;
}

.navbar .logo {
  padding: 20px;
}

.navbar ul {
  height: 84px;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 28%;
}

.navbar ul li {
  padding: 0 36px;
/*  border-left: 1px solid rgba(64, 115, 158,0.56);*/
  font-size: 13px;
  color: var(--color-1);
  font-weight: 700;
  text-align: center;
  white-space: nowrap;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  transition: all 0.3s;
  cursor: pointer;
}

.navbar ul li:hover {
    background-color: var(--color-2);
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
    border-bottom: 4px solid var(--color-3);
}

.navbar ul li a {
    color: #6D6C6C;
}

.navbar ul li a:hover, .navbar ul li:hover {
    text-decoration: none;
    color: #fff;
}

.navbar ul li a div:hover {
    color: #fff;
}

.navbar ul li .icon {
  margin-bottom: 4px;
  height: 0;
  transition: all 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
    transition: all 0.2s;
}

.navbar ul li:hover .icon {
  height: 40px;
}

.navbar ul li>div>img {
  margin-top: 20px;
  width: 40px;
  transform: scale(1);
  transition: all 0.2s;
    filter: drop-shadow(1px 0px 0 #ecf0f1) drop-shadow(-1px 0px 0 #ecf0f1) drop-shadow(1px -1px 0 #ecf0f1) drop-shadow(-1px -1px 0 #ecf0f1);
    z-index: 1;
    opacity: 0;
}

.navbar ul li:hover>div>img {
    margin-top: 10px;
  opacity: 1;
    transition: all 0.2s;
    filter: none;
}

.navbar ul li .mega-menu {
  background: #dcdde1;
  box-shadow: inset 0 1px rgba(0,0,0,0.1), inset 0 3px rgba(0,0,0,0.05);
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  text-align: left;
  padding: 10px 0;

  visibility: hidden;
  opacity: 0;

  transition: all 0.2s ease-out;
    
    box-shadow: inset var(--color-2) 0 -3px 0;
}

.navbar ul li:hover .mega-menu {
  padding: 30px 0;
  visibility: visible;
  opacity: 1;
  text-shadow: none;
}

.navbar ul li .mega-menu ul {
  height: auto;
  border: 0;
  flex-direction: column;
}

.navbar ul li .mega-menu ul li {
  font-weight: 400;
  padding: 7px 0;
  text-align: left;
  display: block;
  border: 0;
}

.navbar ul li .mega-menu ul li svg {
  font-size: 25px;
  color: var(--color-2);
}

.navbar ul li .mega-menu ul li:hover {
  background-color: inherit;
  color: var(--color-2);
  text-shadow: none;
    box-shadow: unset;
    padding-left: 15px;
}

.navbar ul li .mega-menu ul li a {
  font-weight: 400;
  padding: 7px 0;
  text-align: left;
  display: block;
  border: 0;
    color: #6D6C6C;
}

.navbar ul li .mega-menu ul li a:hover {
  background-color: inherit;
  color: var(--color-2);
  text-shadow: none;
    text-decoration: none;
}

.navbar ul h3 {
  font-size: 12px;
  color: #3D3D44;
  text-transform: uppercase;
}

.navbar ul h4 {
  font-size: 14px;
  color: #3D3D44;
}

.navbar ul li .mega-menu .mt {
  margin-top: 30px;
}

.navbar ul li .mega-menu li.d-flex {
  flex-direction: row;
  justify-content: flex-start;
}

.navbar ul li .mega-menu li .side-icon {
  font-size: 24px;
  margin-right: 20px;
  color: var(--color-2);
  margin-top: -24px;
}

.navbar ul li .mega-menu li:hover > span > a > .description, .navbar ul li .mega-menu li:hover > span > a > svg {
    color: var(--color-3);
    transition: .4s;
}

.navbar ul li .mega-menu li > span > a > i {
    font-size: 30px;
}

.navbar ul li .mega-menu li> span >a>.text {
    float: right;
    font-family: 'Montserrat';
    width: calc(100% - 60px);
    font-size: 15px;
    color: #292f37;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition-duration: .4s;
    transition-property: color;
}

.navbar ul li .mega-menu li> span >a>.description {
    float: right;
    width: calc(100% - 60px);
    font-size: 13px;
    color: var(--color-2);
    font-family: 'Montserrat';
    font-weight: 500;
}

/*.navbar ul li .mega-menu li>span::before {
    left: 85%;
    top: 0;
    content: '';
    width: 1px;
    position: absolute;
    height: 100%;
    background-color: rgba(0,0,0,.05);
}*/

.contentA {
    margin-left: 350px;
}

.over-nav .avatar {
  box-shadow: 0 0 0 2px #88CDF0;
  border: 2px solid #fff;
  background-color: #DFE1E4;
    background-position: center;
    background-position-y: 90px;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  position: relative;
}

.over-nav .avatar .status {
    background-color: #D4D7DB;
    border: 3px solid #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.22);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    position: absolute;
    right: 4px;
    top: -5px;
}

.over-nav .avatar .status.online {
    background-color: #7ABA8C;
}

.ffmenu {
    font-family: 'Raleway';
    font-weight: 800;
    font-size: 18px;
    text-transform: uppercase;
}

.navbar .input-btn {
  background-color: #fff;
/*  border-radius: 5px;*/
/*  box-shadow: 0 1px 7px rgba(0,0,0,0.1);*/
  color: #BBBDC4;
  line-height: 45px;
  height: 45px;
  display: flex;
    margin-right: 10px;
    border: 1px solid #e9ecef;
    font-family: 'Dancing Script', cursive;
    font-weight: 400;
    font-size: 20px;
}

.navbar .input-btn:hover, .navbar .btn-spec:hover {
  color: var(--color-2);
  box-shadow: 0 0 9px rgba(var(--color), 0.5);
}

.navbar .title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}

.navbar .desc {
  font-size: 11px;
  color: var(--color-2);
  font-weight: 600;
}

.navbar .btn-spec {
  background-color: #fff;
  border-radius: 5px;
  color: #6D6C6C;
  line-height: 45px;
    padding: 9px;
  height: 45px;
  margin-left: 0;
  position: relative;
    margin-right: 20px;
  display: flex;
    font-family: 'Dancing Script', cursive;
    font-weight: 400;
    font-size: 23px;
    border: 1px solid #ecf0f1;
}

.navbar .input-prec {
  line-height: 45px;
  height: 45px;
  position: relative;
    border: 0;
  display: flex;
}

.navbar .avatar span {
    width: 46px;
    height: 46px;
    position: relative;
}

.navbar .avatar {
    padding: 0;
}

.navbar .player {
  display: flex;
  justify-content: space-between;
  align-items: center;

  height: 84px;
}

.navbar .player .avatar {
    box-shadow: 0 0 0 2px #10ac84;
    border: 2px solid #fff;
    background-color: #DFE1E4;
    background-position: center;
    background-position-y: 96px;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    position: relative;
}

.navbar .player .avatar .status {
    background-color: #D4D7DB;
    border: 3px solid #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.22);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    position: absolute;
    right: 4px;
    top: -5px;
}

.navbar .player .avatar .status.online {
    background-color: #7ABA8C;
}

.navbar .player .content {
  width: auto;
    margin: 0 40px;
}

.navbar .player .content .title {
  margin-top: 7px;
  margin-bottom: 2px;
  font-size: 12px;
  font-weight: 700;
  color: #858585;
}

.navbar .player .play {
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 7px rgba(72, 126, 176,0.7);
  font-size: 18px;
  font-weight: 700;
  color: #40739e;
  width: 36px;
  height: 36px;
  line-height: 40px;
  margin-left: 10px;
  text-align: center;
  cursor: pointer;

  transition: all 0.15s;
}

.navbar .user-div {
  border-right: 1px solid rgba(221,219,219,0.56);
  height: 84px;
  padding: 0 15px;

  display: flex;
  align-items: center;
}

.user-div > .btn > span {
     background: url('uploads/roomHead.gif');
     width: 40px;
     height: 32px;
     margin-top: 5px;
     margin-right: 10px;
     background-repeat: no-repeat;
}

.navbar .user-div a {
  text-decoration: none;
    color: inherit;
}

.navbar .user-div a:hover {
  text-decoration: underline;
    color: inherit;
}

.navbar .btn-act {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 1px 7px rgba(0,0,0,0.1);
  font-size: 12px;
  font-weight: 700;
  color: #BBBDC4;
  line-height: 45px;
  height: 45px;
  padding: 0 20px;
  margin-left: 0;
  position: relative;

  display: flex;
}

.navbar .btn-act.notification {
  padding: 0 12px;
}

.navbar .btn-act .icon-user {
  font-size: 16px;
  margin-right: -4px;
}

/*
.navbar .btn-act:last-child {
  margin-left: 16px;
}
*/

.navbar .btn-act .num {
  background-color: var(--color-2);
  box-shadow: 0 1px 4px var(--color-2);
  padding: 0 6px;
  line-height: 14px;
  height: 14px;
  font-size: 9px;
  color: #fff;
  border-radius: 7px;

  position: absolute;
  right: -4px;
  top: -4px;
}

.navbar .btn-act .icon-bell {
  font-size: 18px;
}

.over-nav {
  background-color: #1b4665;
  position: relative;
  z-index: 98;
  box-shadow: 0 2px rgba(255,255,255,0.1);
  color: #fff;

  overflow: hidden;
}

.over-nav .container {
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  position: relative;
}

.over-nav .divider {
  border-right: 1px solid rgba(255,255,255,0.05);
  padding: 0 28px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.over-nav .divider:first-child {
  border-left: 1px solid rgba(255,255,255,0.05);
}

.over-nav .search label {
  border-radius: 50%;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  margin-top: 8px;
  cursor: pointer;
  font-size: 20px;

  transition: all 0.15s;
}

.over-nav .search label:hover {
  background-color: rgba(255,255,255,0.05);
}

.over-nav .search input {
  background-color: #1b4665;
  font-size: 12px;
  font-weight: 600;
  padding: 0;
  height: 44px;
  border: 0;
  width: 0;
  border-radius: 5px;
  color: #fff;
  position: absolute;
  right: 30px;
  top: 18px;

  transition: all 0.15s;
}

.over-nav .search input::placeholder {
  color: rgba(255,255,255,0.5);
  opacity: 1;
}

.over-nav .search input:-ms-input-placeholder {
  color: rgba(255,255,255,0.5);
}

.over-nav .search input::-ms-input-placeholder {
  color: rgba(255,255,255,0.5);
}

.over-nav .search input:focus {
  box-shadow: 0 2px 4px rgba(0,0,0,0.2), 0 0 0 30px #193a54;
  width: calc(100% - 60px);
  padding: 0 16px;

  z-index: 2;
}

.over-nav .search button {
  background-color: transparent;
  color: #fff;
  font-size: 15px;
  border: 0;
  width: 54px;
  height: 44px;
  position: absolute;
  right: 30px;
  top: 18px;
  z-index: 3;

  opacity: 0;
  visibility: hidden;

  transition: all 0.15s;
}

.over-nav .search input:focus + label + button {
  opacity: 1;
  visibility: visible;
}


.over-nav .title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}

.over-nav .desc {
  font-size: 11px;
  color: var(--color-2);
  font-weight: 600;
}

.over-nav .users {
  width: 45%;
  overflow: hidden;
  white-space: nowrap;

  display: flex;
  align-items: center;

  margin-right: -28px;
  position: relative;
}

.over-nav .users img {
  image-rendering: pixelated;
  margin-left: 2px;
  margin-top: -4px;
}

.over-nav .users :before {
  content: "";
  background-image: linear-gradient(to right, rgba(44,38,93,0), rgba(44,38,93,0.5) 80%, rgba(44,38,93,1));
  width: 50px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
}

.over-nav .users div {
  display: inline-block;
  background-color: #423986;
  border-radius: 5px;
  width: 34px;
  min-width: 34px;
  height: 34px;
  margin-left: 14px;
}

.over-nav .colors {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.over-nav .colors div {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin-left: 12px;

  transition: all 0.2s;
  cursor: pointer;
}

.over-nav .colors div.active {
  box-shadow: inset 0 0 0 2px #2C265D, 0 0 0 2px #fff, 0 3px 2px 2px rgba(0,0,0,0.3)
}

.over-nav .icon.search {
  padding-left: 10px;
  font-size: 22px;
}

.navbar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(0,0,0,.15);
    z-index: 1;
}

.navbar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 82px;
    width: 100%;
    height: 2px;
    background-color: rgba(0,0,0,.15);
    z-index: 1;
}

/* MENU DE NAVIGATION */

/* SERVICES  */

.imgService {
    width: 250px;
    height: 250px;
    border-radius: 50px;
    background-size: cover;
    box-shadow: rgba(0, 0, 0, 0.50) 0px 0px 7px;
    margin: 0 auto;
}

.textService {
    font-family: 'Montserrat';
    color: var(--color-2);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition-duration: .4s;
    transition-property: color;
}

.title {
  color: #2c3e50 !important;
}

.subTitle {
  font-family: 'Montserrat' !important; 
  color: #34495e !important;
}

#portfolio .portfolio-item .portfolio-link .portfolio-hover {
  background: var(--color-2) !important;
}

.singleImg {
    width: 600px !important;
    height: 400px !important;
    background-size: cover !important;
    background-position-y: -280px !important;
}

/* SERVICES  */

/* FOOTER  */

.page-section h3.section-subheading, .page-section .section-subheading.h3 {
  font-family: 'Montserrat' !important;
  color: rgba(22, 160, 133,0.7) !important;

}

section#contact .section-heading {
  color: var(--color-2) !important;
}

.lienFooter {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.lienFooter a:hover {
  color: var(--color-2) !important;
  transition: .3s all;
}

/* FOOTER  */

/* EXTRAITS  */

.clear {
  clear: both;
}

.owl-carousel img {
  max-width: 100%;
  border: 0px;
}

.item {
  margin: 0 15px 60px;
  width: 320px;
  height: 400px;
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
  background: #343434 no-repeat center center / cover;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.item.active {
  width: 500px;
  box-shadow: 12px 40px 40px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 12px 40px 40px rgba(0, 0, 0, 0.25);
}
.item:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}
.item-desc {
  padding: 0 24px 12px;
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transform: translateY(calc(100% - 54px));
  -webkit-transform: translateY(calc(100% - 54px));
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}
.item.active .item-desc {
  transform: none;
  -webkit-transform: none;
}
.item-desc p {
  opacity: 0;
  -webkit-transform: translateY(32px);
  transform: translateY(32px);
  transition: all 0.4s ease-in-out 0.2s;
  -webkit-transition: all 0.4s ease-in-out 0.2s;
}
.item.active .item-desc p {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.owl-theme.custom-carousel .owl-dots {
  margin-top: -20px;
  position: relative;
  z-index: 5;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .item {
    margin: 0 12px 60px;
    width: 260px;
    height: 360px;
  }
  .item.active {
    width: 400px;
  }
  .item-desc {
    transform: translateY(calc(100% - 46px));
    -webkit-transform: translateY(calc(100% - 46px));
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .item {
    margin: 0 12px 60px;
    width: 240px;
    height: 330px;
  }
  .item.active {
    width: 360px;
  }
  .item-desc {
    transform: translateY(calc(100% - 42px));
    -webkit-transform: translateY(calc(100% - 42px));
  }
}

@media (max-width: 767px) {
  .item {
    margin: 0 10px 40px;
    width: 200px;
    height: 280px;
  }
  .item.active {
    width: 270px;
    box-shadow: 6px 10px 10px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 6px 10px 10px rgba(0, 0, 0, 0.25);
  }
  .item-desc {
    padding: 0 14px 5px;
    transform: translateY(calc(100% - 42px));
    -webkit-transform: translateY(calc(100% - 42px));
  }
}

/* EXTRAITS  */