body { 
	background: #EEE; 
	overflow-x:hidden;
}
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}
.clearfix {
    *zoom: 1;
}

.container {
    position: relative;
    margin: 0px auto;
    padding: 50px 0;
    clear: both;
}
@media only screen and (min-width: 1200px) {
    .container {
        width: 1210px;
    }
}

@media only screen and (min-width: 960px) and (max-width: 1199px) {
    .container {
        width: 1030px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
    .container {
        width: 682px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .container {
        width: 428px;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 479px) {
    .container {
        width: 320px;
        margin: 0 auto;
    }
}



.mcd-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #FFF;
    /*height: 100px;*/
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    /* == */
    width: 220px;
    /* == */
}
.mcd-menu li {
  position: relative;
  /*float:left;*/
}
    .mcd-menu li a {
        display: block;
        text-decoration: none;
        padding: 12px 20px;
        color: #777;
        /*text-align: center;
  border-right: 1px solid #E7E7E7;*/
        /* == */
        text-align: left;
        height: 50px;/*36px;*/
        position: relative;
        border-bottom: 1px solid #EEE;
        /* == */
    }
.mcd-menu li a i {
  /*display: block;
  font-size: 30px;
  margin-bottom: 10px;*/
  
  /* == */
  float: left;
  font-size: 20px;
  margin: 0 10px 0 0;
  /* == */
  
}
/* == */
.mcd-menu li a p {
  float: left;
  margin: 0 ;
}
/* == */

.mcd-menu li a strong {
  display: block;
  text-transform: uppercase;
}
.mcd-menu li a small {
  display: block;
  font-size: 10px;
}

.mcd-menu li a i, .mcd-menu li a strong, .mcd-menu li a small {
  position: relative;
  
  transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -webkit-transition: all 300ms linear;
}
.mcd-menu li:hover > a i {
    opacity: 1;
    -webkit-animation: moveFromTop 300ms ease-in-out;
    -moz-animation: moveFromTop 300ms ease-in-out;
    -ms-animation: moveFromTop 300ms ease-in-out;
    -o-animation: moveFromTop 300ms ease-in-out;
    animation: moveFromTop 300ms ease-in-out;
}
.mcd-menu li:hover a strong {
    opacity: 1;
    -webkit-animation: moveFromLeft 300ms ease-in-out;
    -moz-animation: moveFromLeft 300ms ease-in-out;
    -ms-animation: moveFromLeft 300ms ease-in-out;
    -o-animation: moveFromLeft 300ms ease-in-out;
    animation: moveFromLeft 300ms ease-in-out;
}
.mcd-menu li:hover a small {
    opacity: 1;
    -webkit-animation: moveFromRight 300ms ease-in-out;
    -moz-animation: moveFromRight 300ms ease-in-out;
    -ms-animation: moveFromRight 300ms ease-in-out;
    -o-animation: moveFromRight 300ms ease-in-out;
    animation: moveFromRight 300ms ease-in-out;
}

    .mcd-menu li:hover > a {
        color: #33b5e5 ;
    }
    .mcd-menu li a.active {
        position: relative;
        color: #33b5e5; /*#ff3232;*/ /*#e67e22;*/
        border: 0;
        /*border-top: 4px solid #e67e22;
  border-bottom: 4px solid #e67e22;
  margin-top: -4px;*/
        box-shadow: 0 0 5px #DDD;
        -moz-box-shadow: 0 0 5px #DDD;
        -webkit-box-shadow: 0 0 5px #DDD;
        /* == */
        border-left: 4px solid #33b5e5 /*#ff3232*/; /*#e67e22;*/
        border-right: 4px solid #33b5e5 /*#ff3232*/; /*#e67e22;*/
        margin: 0 -4px;
        /* == */
    }
        .mcd-menu li a.active:before {
            content: "";
            position: absolute;
            /*top: 0;
  left: 45%;
  border-top: 5px solid #e67e22;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;*/
            /* == */
            top: 42%;
            left: 0;
            border-left: 5px solid #33b5e5 /*#ff3232*/; /*#e67e22;*/
            border-top: 5px solid transparent;
            border-bottom: 5px solid transparent;
            /* == */
        }

/* == */
        .mcd-menu li a.active:after {
            content: "";
            position: absolute;
            top: 42%;
            right: 0;
            border-right: 5px solid #33b5e5 /*#ff3232*/; /*#e67e22;*/
            border-top: 5px solid transparent;
            border-bottom: 5px solid transparent;
        }
/* == */

@-webkit-keyframes moveFromTop {
    from {
        opacity: 0;
        -webkit-transform: translateY(200%);
        -moz-transform: translateY(200%);
        -ms-transform: translateY(200%);
        -o-transform: translateY(200%);
        transform: translateY(200%);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0%);
        -moz-transform: translateY(0%);
        -ms-transform: translateY(0%);
        -o-transform: translateY(0%);
        transform: translateY(0%);
    }
}
@-webkit-keyframes moveFromLeft {
    from {
        opacity: 0;
        -webkit-transform: translateX(200%);
        -moz-transform: translateX(200%);
        -ms-transform: translateX(200%);
        -o-transform: translateX(200%);
        transform: translateX(200%);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%);
    }
}
@-webkit-keyframes moveFromRight {
    from {
        opacity: 0;
        -webkit-transform: translateX(-200%);
        -moz-transform: translateX(-200%);
        -ms-transform: translateX(-200%);
        -o-transform: translateX(-200%);
        transform: translateX(-200%);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%);
    }
}



.mcd-menu li ul,
.mcd-menu li ul li ul {
    position: absolute;
    height: auto;
    min-width: 200px;
    padding: 0;
    margin: 0;
    background: #FFF;
    /*border-top: 4px solid #e67e22;*/
    opacity: 0;
    visibility: hidden;
    transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -webkit-transition: all 300ms linear;
    /*top: 130px;*/
    z-index: 1000;
    /* == */
    /*left: 280px;*/
    left:12em;
    top: 0px;
    border-left: 4px solid #33b5e5/*#e67e22*/;
    /* == */
}
    .mcd-menu li ul:before {
        content: "";
        position: absolute;
        /*top: -8px;
  left: 23%;
  border-bottom: 5px solid #e67e22;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;*/
        /* == */
        top: 25px;
        left: -9px;
        border-right: 5px solid #33b5e5 /*#e67e22*/;
        border-bottom: 5px solid transparent;
        border-top: 5px solid transparent;
        /* == */
    }
    .mcd-menu li:hover > ul,
    .mcd-menu li ul li:hover > ul {
        display: block;
        opacity: 1;
        visibility: visible;
        /*top: 100px;*/
        /* == */
        /*left:250px;*/
        left: 14.2em;/* resp*/
        /* == */
    }
/*.mcd-menu li ul li {
  float: none;
}*/
.mcd-menu li ul li a {
  padding: 10px;
  text-align: left;
  border: 0;
  border-bottom: 1px solid #EEE;
  
  /* == */
  height: auto;
  /* == */
}
.mcd-menu li ul li a i {
  font-size: 16px;
  display: inline-block;
  margin: 0 10px 0 0;
}
    .mcd-menu li ul li ul {
        /*left: 230px;*/
        left:10em;
        top: 0;
        border: 0;
        border-left: 4px solid #33b5e5/*#e67e22*/;
    }
        .mcd-menu li ul li ul:before {
            content: "";
            position: absolute;
            top: 15px;
            /*left: -14px;*/
            /* == */
            left: -9px;
            /* == */
            border-right: 5px solid #33b5e5/*#e67e22*/;
            border-bottom: 5px solid transparent;
            border-top: 5px solid transparent;
        }
    .mcd-menu li ul li:hover > ul {
        top: 0px;
        /*left: 200px;*/
        left: 10em; /*resp*/
    }



/*.mcd-menu li.float {
  float: right;
}*/
.mcd-menu li a.search {
  /*padding: 29px 20px 30px 10px;*/
  padding: 10px 10px 15px 10px;
  clear: both;
}
.mcd-menu li a.search i {
  margin: 0;
  display: inline-block;
  font-size: 18px;
}
.mcd-menu li a.search input {
  border: 1px solid #EEE;
  padding: 10px;
  background: #FFF;
  outline: none;
  color: #777;
  
  /* == */
  width:170px;
  float:left;
  /* == */
}
    .mcd-menu li a.search button {
        border: 1px solid #33b5e5;
        /*padding: 10px;*/
        background: #33b5e5;
        outline: none;
        color: #FFF;
        margin-left: -4px;
        /* == */
        float: left;
        padding: 10px 10px 11px 10px;
        /* == */
    }
    .mcd-menu li a.search input:focus {
        border: 1px solid #33b5e5;
    }


.search-mobile {
    display: none !important;
    background: #33b5e5;
    border-left: 1px solid #33b5e5;
    border-radius: 0 3px 3px 0;
}
.search-mobile i { 
	color:#FFF; 
	margin:0 !important;
}


@media only screen and (min-width: 960px) and (max-width: 1199px) {
    .mcd-menu {
		margin-left:10px;
	}
    li:hover > ul {
        left: 12em;/*resp*/
    }
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
    .mcd-menu {
		width: 200px;
	}
	.mcd-menu li a {
		height:30px;
	}
	.mcd-menu li a i {
		font-size: 22px;
	}
	.mcd-menu li a strong {
		font-size: 12px;
	}
	.mcd-menu li a small {
		font-size: 10px;
	}	
	.mcd-menu li a.search input {
		width: 120px;
		font-size: 12px;
	}
	.mcd-menu li a.search buton{
		padding: 8px 10px 9px 10px;
	}
	.mcd-menu li > ul {
		min-width:180px;
	}
        .mcd-menu li:hover > ul {
            min-width: 180px;
            /*left:200px;*/
            left: 10em; /*resp*/
        }
	.mcd-menu li ul li > ul, .mcd-menu li ul li ul li > ul {
		min-width:150px;
	}
	.mcd-menu li ul li:hover > ul {
		/*left:180px;*/
        left:10em;
		min-width:150px;
	}
        .mcd-menu li ul li ul li:hover > ul {
            /*left:150px;*/
            left: 10em;
            min-width: 150px;
        }
	.mcd-menu li ul a {
		font-size:12px;
	}
	.mcd-menu li ul a i {
		font-size:14px;
	}
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
	
	.mcd-menu { 
		width: 50px;
	}
	.mcd-menu li a { 
		position: relative;
		padding: 12px 16px;
		height:20px;
	}
	.mcd-menu li a small { 
		display: none;
	}
	.mcd-menu li a strong { 
		display: none;
	}
        .mcd-menu li a:hover strong, .mcd-menu li a.active strong {
            display: block;
            font-size: 10px;
            padding: 3px 0;
            position: absolute;
            bottom: 0px;
            left: 0;
            background: #33b5e5;/*#e67e22;*/
            color: #FFF;
            min-width: 100%;
            text-transform: lowercase;
            font-weight: normal;
            text-align: center;
        }
	.mcd-menu li .search { 
		display: none;
	}
	
	.mcd-menu li > ul {
		min-width:180px;
		/*left:70px;*/
        left:10em;
	}
        .mcd-menu li:hover > ul {
            min-width: 180px;
            /*left:50px;*/
            left: 8em; /*resp*/
        }
	.mcd-menu li ul li > ul, .mcd-menu li ul li ul li > ul {
		min-width:150px;
	}
	.mcd-menu li ul li:hover > ul {
		/*left:180px;*/
        left:2em;
		min-width:150px;
	}
        .mcd-menu li ul li ul li > ul {
            left: 35px;
            top: 45px;
            border: 0;
            border-top: 4px solid #33b5e5 /*#e67e22*/;
        }
        .mcd-menu li ul li ul li > ul:before {
            /*left: 30px;*/
            left:12em;
            top: -9px;
            border: 0;
            border-bottom: 5px solid #33b5e5 /*#e67e22*/;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
        }
        .mcd-menu li ul li ul li:hover > ul {
            /*left:30px;*/
            left: 12em;
            min-width: 150px;
            top: 35px;
        }
	.mcd-menu li ul a {
		font-size:12px;
	}
	.mcd-menu li ul a i {
		font-size:14px;
	}
	
}

@media only screen and (max-width: 479px) {
    .mcd-menu { 
		width: 50px;
	}
	.mcd-menu li a { 
		position: relative;
		padding: 12px 16px;
		height:20px;
	}
	.mcd-menu li a small { 
		display: none;
	}
	.mcd-menu li a strong { 
		display: none;
	}
        .mcd-menu li a:hover strong, .mcd-menu li a.active strong {
            display: block;
            font-size: 10px;
            padding: 3px 0;
            position: absolute;
            bottom: 0px;
            left: 0;
            background: #33b5e5;/*#e67e22;*/
            color: #FFF;
            min-width: 100%;
            text-transform: lowercase;
            font-weight: normal;
            text-align: center;
        }
	.mcd-menu li .search { 
		display: none;
	}
	
	.mcd-menu li > ul {
		min-width:180px;
		/*left:70px;*/
        left:9em;
	}
        .mcd-menu li:hover > ul {
            min-width: 180px;
            /*left:50px;*/
            left: 5em; /*resp*/
        }
	.mcd-menu li ul li > ul, .mcd-menu li ul li ul li > ul {
		min-width:150px;
	}
        .mcd-menu li ul li:hover > ul {
            /*left:180px;*/
            left: 6em; /*resp*/
            min-width: 150px;
        }
        .mcd-menu li ul li ul li > ul {
            left: 35px;
            top: 45px;
            border: 0;
            border-top: 4px solid #33b5e5; /*#e67e22;*/
        }
            .mcd-menu li ul li ul li > ul:before {
                /*left: 30px;*/
                left:6em;
                top: -9px;
                border: 0;
                border-bottom: 5px solid #33b5e5;/*#e67e22;*/
                border-left: 5px solid transparent;
                border-right: 5px solid transparent;
            }
        .mcd-menu li ul li ul li:hover > ul {
            /*left:30px;*/
            left: 6em;
            min-width: 150px;
            top: 35px;
        }
	.mcd-menu li ul a {
		font-size:12px;
	}
	.mcd-menu li ul a i {
		font-size:14px;
	}
    
}
/***navbar***/
*:focus {
  outline: 0 !important;
}

body {
  background-color: #f5eee3;
}

.nav-bg {
  background-color: #34495e;
  
}

.nav-link {
  margin: 5px 0;
}

.navbar-inverse .navbar-toggler {
  border-color: transparent;
  cursor: pointer;
}

.dropdown-menu {
  background-color: #34495e;
  border: none;
}

.dropdown-item {
  color: rgba(255, 255, 255, 0.5);
}

.dropdown-item:hover {
  color: white;
  background-color: #3d566e;
}

.card2 {
  margin: 50px 20px;
  padding: 20px;
  background-color: #fcfbf8;
  border-radius: 5px;
}

/**footer css**/

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 150px;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 75px;
  background-color: #34495e;
  text-align: center;
}
.container2{
  margin-top: 50px;
  color: #fff;
  width: 100%;
}

.fa-twitter {
    color: #4099FF;
}

.fa-facebook {
    color: #3B5998;
}

.fa-youtube-play {
    color: #e52d27;
}

.fa-rss {
    color: #FF6600;
}

.fa-vine {
    color: #00a478;
}

.fa-flickr {
    color: #ff0084;
}

.fa-twitch {
    color: #6441A5;
}

.fa-linkedin {
    color: #007bb6;
}

.fa {
    opacity: 0.7;
    transition: 1s;
    -webkit-transition: 1s;
}

.fa:hover{
    opacity: 1;
    transition: 1s;
    -webkit-transition: 1s;
	}
	
	/**Container video***/
.video{
/*background-color:#34495e;*/
position:absolute;
top:80px;
left:270px;
width:1200px;
/*height:1900px;*/
}	
/****Gallery*****/
.demo{ background: #e5e5e5; }
/**.our-team{
    border: 2px solid #ff3232;
    border-radius: 10px;
    text-align: center;
    margin: 10px;
    z-index: 1;
    position: relative;
}
.our-team:before,
.our-team:after{
    content: "";
    width: 100%;
    height: 104%;
    background: #ff3232;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;
    transform: translateY(-50%) scaleX(0.3);
    transition: all 0.3s ease 0s;
}
.our-team:after{
    width: 106%;
    left: 50%;
    transform: translate(-50%, -50%) scaleY(0.25);
}
.our-team:hover:before{ transform: translateY(-50%) scaleX(0.7); }
.our-team:hover:after{ transform: translate(-50%, -50%) scaleY(0.7); }
.our-team img{
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: all 0.3s ease 0s;
}
.our-team .team-content{
    width: 93%;
    padding: 25px 0 10px;
    background: #ff4444;
    position: absolute;
    bottom: 50px;
    left: 50%;
    opacity: 0;
    -webkit-clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
    clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
    transform: translateX(-50%);
    transition: all 0.3s cubic-bezier(0.5, 0.2,0.1,0.9);
}
.our-team:hover .team-content{
    bottom: 10px;
    opacity: 1;
}
.our-team .title{
    font-size: 25px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    text-transform: capitalize;
    margin: 0;
}
.our-team .post{
    display: block;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.our-team .social{
    padding: 0;
    margin: 0;
    list-style: none;
}
.our-team .social li{
    display: inline-block;
    margin: 0 5px;
}
.our-team .social li a{
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    background: #fff;
    font-size: 20px;
    color: #ff3232;
    transition: all 0.3s ease 0s;
}
.our-team .social li a:hover{
    background: linear-gradient(to bottom,#ff3232, darkred);
    box-shadow: 0 0 0 5px rgba(255,255,255,0.3);
    color: #fff;
}
@media only screen and (max-width: 990px){
    .our-team{ margin-bottom: 30px; }
}***/

.demo-code {
    font-family: tahoma;
    height: 100vh;
    background-image: url(https://picsum.photos/g/3000/2000);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.our-team {
    padding: 30px 0 40px;
    margin-bottom: 15px;/*30px;*/
    background-color: #00000005; /*#f7f5ec;*/
    text-align: center;
    overflow: hidden;
    position: relative;
    border-top-right-radius: 20%;
    border-bottom-left-radius: 20%;
}

    .our-team .picture {
        display: inline-block;
        height: 130px;
        width: 130px;
        /*margin-bottom: 50px;*/
        z-index: 1;
        position: relative;
    }

        .our-team .picture::before {
            content: "";
            width: 100%;
            height: 0;
            border-radius: 50%;
            background-color: #1369ce;
            position: absolute;
            bottom: 135%;
            right: 0;
            left: 0;
            opacity: 0.9;
            transform: scale(3);
            transition: all 0.3s linear 0s;
        }
    .our-team:hover {
        border: solid;
        border-color: #1369ce; /*added*/
    }
    .our-team:hover .picture::before {
        height: 100%;
       
    }

    .our-team .picture::after {
        content: "";
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background-color: #1369ce;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }

    .our-team .picture img {
        width: 100%;
        height: auto;
        border-radius: 50%;
        transform: scale(1);
        transition: all 0.9s ease 0s;
    }

    .our-team:hover .picture img {
        box-shadow: 0 0 0 5px #f7f5ec;/*0 0 0 14px*/
        transform: scale(1.25);/*0.7*/
    }

    .our-team .title {
        display: block;
        font-size: 15px;
        color: #4e5052;
        text-transform: capitalize;
    }

    .our-team .social {
        width: 100%;
        padding: 0;
        margin: 0;
        background-color: #1369ce;
        position: absolute;
        bottom: -100px;
        left: 0;
        transition: all 0.5s ease 0s;
    }

    .our-team:hover .social {
        bottom: 0;
    }

    .our-team .social li {
        display: inline-block;
    }

        .our-team .social li a {
            display: block;
            padding: 10px;
            font-size: 17px;
            color: white;
            transition: all 0.3s ease 0s;
            text-decoration: none;
        }

            .our-team .social li a:hover {
                color: #1369ce;
                background-color: #f7f5ec;
            }
    /***style btn consulter*/
.btn-Custom {
    color: transparent;
    
    font-family: 'Chakra Petch', sans-serif;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 7px 15px;
    border: none;
    border-radius: 0;
    perspective: 500px;
    transform-style: preserve-3d;
    position: relative;
    z-index: 1;
    transition: all 0.5s;
}

    .btn-Custom:hover {
        color: transparent;
    }

    .btn-Custom:before,
    .btn-Custom:after {
        content: attr(data-hover);
      color: #27ae60;
      background-color: #fff;
        height: 100%;
        width: 100%;
        padding: 5px 15px;
        border: 2px solid #27ae60;
        border-bottom:none;
        border-right:none;
        transform: translateZ(0px);
        transform-origin: 50% 50% -25px;
        position: absolute;
        top: 0;
        left: 0;
        transition: all 0.2s ease;
    }

    .btn-Custom:after {
        color: #fff;
        background-color: #27ae60;
        transform: rotateX(90deg);
        transform-origin: 50% 50% -25px;
        visibility: hidden;
        transition: all 0.2s ease 0.05s;
    }

    .btn-Custom:hover:before {
        transform: translateZ(-200px);
    }

    .btn-Custom:hover:after {
        visibility: visible;
        box-shadow: 0 0 10px rgba(0,0,0,0.3);
        transform: rotateX(0deg);
    }

    .btn-Custom.blue:before {
        color: #3498db;
        border-color: #1369ce; /*#3498db;*/
    }

    .btn-Custom.blue:after {
        background-color: #1369ce; /*#3498db;*/
        border-color: #1369ce; /*#3498db;*/
    }

    .btn-Custom.purple:before {
        color: #8e44ad;
        border-color: #8e44ad;
    }

    .btn-Custom.purple:after {
        background-color: #8e44ad;
        border-color: #8e44ad;
    }

    .btn-Custom.red:before {
        color: #e74c3c;
        border-color: #e74c3c;
    }

.btn-Custom.red:after {
    background-color: #e74c3c;
    border-color: #e74c3c;
}

@media only screen and (max-width: 767px) {
    .btn-Custom {
        margin-bottom: 0;
    }
}