*, :after, :before {
    box-sizing: border-box;
}



.lif {
    text-decoration: underline;
    color: #1983b0;
}

.dtd {
    text-decoration: underline;
}



:after, :before {
    text-decoration: inherit;
    vertical-align: inherit
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    background: rgba(0,0,0,0.1);
}

::-webkit-scrollbar-thumb{
    border-radius: 10px;
    background: rgba(0,0,0,0.2);
}

::-webkit-scrollbar-thumb:hover{
  	background: rgba(0,0,0,0.4);
}

::-webkit-scrollbar-thumb:active{
  	background: rgba(0,0,0,.9);
}

* {
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    background: none;
    text-decoration: none;
    color: currentColor;
}

html, body {
    width: 100%;
    height: 100%;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 12px;
    word-break: normal;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: var(--font-default);
    color: #1d1d1b
}

.container {
    margin: 0 auto;
    width: 100%;
    max-width: var(--container);
}

@media(min-width: 768px) {
    .container {
        padding-left:var(--gutter);
        padding-right: var(--gutter);
        width: var(--container-width, 100%);
    }
}


.header {
    margin: 20px 170px 10px 20px;
    /*height: 55px;*/
    line-height: 55px; 
}

.h {
    font-size: 36px;
    color: #1983b0;
}

.p, ol {
    font-size: 26px;
    margin-bottom: 20px; 
}


  
.text {  
    padding: 0px 20px 0px 20px;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}


@media (max-width: 1024px) {

    .box-text {
        margin: 10px 0px 0px 20px;
    }
    .right-box {
        float: left;
        font-size: 20px;
        padding: 30px 30px 30px 30px;
        display: grid;
        justify-items: center;
        align-items: center;
        background-color: #1983b0;
        width: 100%;
        /*height: 100%;*/
        position: relative;
    }
      
     
    .left-box {
        float: left;
        width: 100%;
        background: url(/assets/images/background.jpg);
        background-size: cover;
        /*height: calc(100vh - 93px);*/
    }
}

@media (min-width: 1024px) and (max-width: 1200px) {
    .text {  
        overflow: auto;
        height: 100%;
    }

    .box-text {
        height: calc(100% - 85px);
        margin: 10px 70px 0px 20px;
    }
    .right-box {
        float: left;
        font-size: 20px;
        padding: 30px 30px 30px 30px;
        display: grid;
        justify-items: center;
        align-items: center;
        background-color: #1983b0;
        width: 50%;
        height: calc(100vh - 93px);
        position: relative;
    }
      
    .right-box:before{
        content: "";
        width: 0px;
        height: 0px;
        border-bottom: calc(100vh - 93px) solid #1983b0;
        border-left: 50px solid transparent;
        position: absolute;
        right: 100%;
        top: 0px;
    }
      
    .left-box {
        float: left;
        width: 50%;
        background: url(/assets/images/background.jpg);
        background-size: cover;
        height: calc(100vh - 93px);
    }

}

@media (min-width: 1200px) {
    .text {  
        overflow: auto;
        height: 100%;
    }
    
    .box-text {
        height: calc(100% - 85px);
        margin: 10px 170px 0px 20px;
    }

.right-box {
    float: left;
    font-size: 20px;
    padding: 30px 30px 30px 30px;
    display: grid;
    justify-items: center;
    align-items: center;
    background-color: #1983b0;
    width: 50%;
    height: calc(100vh - 93px);
    position: relative;
}
  
.right-box:before{
    content: "";
    width: 0px;
    height: 0px;
    border-bottom: calc(100vh - 93px) solid #1983b0;
    border-left: 150px solid transparent;
    position: absolute;
    right: 100%;
    top: 0px;
}
  
.left-box {
    float: left;
    width: 50%;
    background: url(/assets/images/background.jpg);
    background-size: cover;
    height: calc(100vh - 93px);
}
}




.box-content {
    float: left;
    background: rgb(255 255 255 / 70%);
}
 /* 
@media (max-width: 767px) {
    .right-box, .left-box {
        float: none;
        width: 100%;
    }
}*/
  
#blink {
    -webkit-animation: blink 2s linear infinite; 
    animation: blink 2s linear infinite; 
    font-weight: bold; 
    color: #F00; 
}
  
@-webkit-keyframes blink { 
    0% { color: #ff0000; }
    25% { color: #000000; }
    75% { color: #000000; }
    100% { color: #ff0000; }
}
  
@keyframes blink {
    0% { color: #ff0000; }
    25% { color: #000000; }
    75% { color: #000000; }
    100% { color: #ff0000; } 
}

.waviy {
    position: relative;
}

.waviy:hover span{
    color: #164194
}

.waviy span {
    position: relative;
    display: inline-block;
    margin: -2px;
    text-transform: uppercase;
    animation: waviy 1s infinite;
    animation-delay: calc(.1s * var(--i));  
}


@keyframes waviy {
    0%,40%,100% {
        transform: translateY(0)
    }
    20% {
        transform: translateY(-10px)
    }
}

.hero {
    position: relative;
    /*background: #1d1d1b;*/
    height: 100vh
}

.hero--wrapper {
    width: 100%;
    height: 100%
}

.hero--wrapper .discover-more {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 60px;
    text-align: center
}

.hero--wrapper .discover-more .link-discover-more {
    position: relative;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.4rem;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #fff;
    padding-bottom: 22px
}

.hero--wrapper .discover-more .link-discover-more:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(50% - 5px);
    width: 10px;
    height: 10px;
    transform-origin: center;
    -webkit-animation: yo-yo 1s infinite alternate;
    animation: yo-yo 1s infinite alternate;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='14' height='15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.999 7.91L7.073 13 1 8.089M6.991 12V1' stroke='%2300D425' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate3d(0,-50%,0);
    opacity: 0;
}


.hero-text span {
    display: inline-block;
    font-size: 2.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #fff
}







.hero-text .picto {
    position: relative;
    z-index: 2;
    display: block;
    /*width: 48px;*/
}
/*
@media(min-width: 640px) {
    .hero-text .picto {
        width:70px;
    }
}

@media(min-width: 768px) {
    .hero-text .picto {
        width:90px;
    }
}*/

.hero-text .text-left {
    overflow: hidden;
    padding-left: 30px;
    margin-right: -20px
}
/*
@media(min-width: 640px) {
    .hero-text .text-left {
        padding-left:40px;
        margin-right: -30px
    }
}

@media(min-width: 768px) {
    .hero-text .text-left {
        padding-left: 0px;
        margin-right: 10px;
    }
}*/

.hero-text .text-left span {
    color: #1983b0;
    transform: translate3d(100%,0,0);
    text-shadow: 1px 0 1px white, 
0 1px 1px white, 
-1px 0 1px white, 
0 -1px 1px white;
}


.hero-text .text-right {
    overflow: hidden;
    padding-right: 30px;
    margin-left: -20px
}
/*
@media(min-width: 640px) {
    .hero-text .text-right {
        padding-right:40px;
        margin-left: -30px
    }
}

@media(min-width: 768px) {
    .hero-text .text-right {
        padding-right: 0px;
        margin-left: 10px
    }
} */  

.hero-text .text-right span {
    color: #1983b0;
    transform: translate3d(-100%,0,0);
    text-shadow: 1px 0 1px white, 
0 1px 1px white, 
-1px 0 1px white, 
0 -1px 1px white;
}

@media(max-width: 519px) {
	.hero-text {
		flex-direction: column;
	}
	
    .hero-text span {
        font-size: 3rem;
    }
	
	.hero-text .text-left {
        padding-left: 0px;
        margin-right: 0px;
    }
	
	.hero-text .picto {
        width: 50px;
    }
	
	.hero-text .text-right {
        padding-right: 0px;
        margin-left: 0px
    }
}

@media(min-width: 520px) {
    .hero-text span {
        font-size: 3rem;
    }
	
	.hero-text .text-left {
        padding-left: 0px;
        margin-right: 10px;
    }
	
	.hero-text .picto {
        width: 50px;
    }
	
	.hero-text .text-right {
        padding-right: 0px;
        margin-left: 10px
    }
}

@media(min-width: 730px) {
    .hero-text span {
        font-size: 5rem;
    }
	
	.hero-text .text-left {
        padding-left: 0px;
        margin-right: 10px;
    }
	
	.hero-text .picto {
        width: 70px;
    }
	
	.hero-text .text-right {
        padding-right: 0px;
        margin-left: 10px
    }
}

@media(min-width: 980px) {
    .hero-text span {
        font-size: 7rem;
    }
	
	.hero-text .text-left {
        padding-left: 0px;
        margin-right: 10px;
    }
	
	.hero-text .picto {
        width: 90px;
    }
	
	.hero-text .text-right {
        padding-right: 0px;
        margin-left: 10px
    }
}

.hero-video {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    transform: translateZ(0)
}

.hero-video:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    /*background: rgba(29,29,27,.3)*/
}

.hero-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 0;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    transform: rotate(.001deg) translate3d(-50%,-50%,0);
    perspective: 1000px
}

.content {
    margin: 0;
    width: 100%;
    height: calc(100vh - 93px); 
    /*padding-bottom: 100px;*/
  }

.container1 {
    width:100%;
}

.container1 > div {
  width: 350px;
  margin: 0px 15px 0px 15px;
}

.center1 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
}

.row-block {
    width: 100%;
    display:inline-block;
  }

.col-block {
    display:block;
    width: 380px;
    float: left;
    
    margin-right: 30px;
}

.partner-content {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    grid-row-gap: 70px;
    grid-column-gap: 0
}

@media (max-width: 1438px) {
    .partner-content {
        grid-template-columns: repeat(4,1fr);
        gap: 50px 30px
    }
}

@media (max-width: 1080px) {
    .partner-content {
        grid-template-columns: repeat(3,1fr);
        gap: 30px 45px
    }

    .partner-item__img {
        -webkit-transition: all 0s ease;
        -o-transition: all 0s ease;
        transition: all 0s ease
    }
}

@media (max-width: 575px) {
    .partner-content {
        grid-template-columns: repeat(2,1fr);
        gap: 52px 15px
    }

    .partner-item__img-item {
        height: 50px;
        margin: 0 0 11px
    }
}

.partner-item {
    display: grid;
    grid-template-columns: repeat(1,1fr);
    grid-auto-rows: 1fr
}

.partner-item__img {
    padding: 10px;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.partner-item__img-text {
    text-align: center;
    font-family: Roboto,sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 8px;
    line-height: 9px;
    text-transform: uppercase;
    color: grey
}

.partner-item__img-item {
    width: 100%;
    height: 120px;
    margin: 0 0 14px;
    -o-object-fit: contain;
    object-fit: contain
}



















.con {
    list-style: block;
    
}



.con2 > li {
    display: list-item;
    margin-left: 40px;
    /*list-style-position: inside;*/
  }

  .con2 > li:before {
    content: "-    ";
  }