* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}



/* navbar */


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000000;
    color: white;
}

.brand-title {
    font-size: 1.5rem;
    margin: .5rem;
}

.brand-title img{
    width: 40%;
    margin-left: 15%;
    margin-right: auto;
    align-items: center;
}

.navbar-links{
    font-size: 16.5px;
    margin-right: 14%;
    display: flex;
}

.navbar-links ul{
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar-links li{
    list-style: none;
}


.navbar-links-color{
    text-decoration: none;
    color: #2c8fff;
    margin: 0 20px;
    transition: all 0.4s ease-in-out;
    border-bottom: 3.1px solid transparent;
}

.navbar-links-color:hover{

    color: rgb(255, 255, 255);
    padding-bottom: 2.5px;
    border-color: rgb(255, 251, 251);
}

.navbar-links-color i{
    margin-right: 1.5px;
}


/* Responsive Navbar */


.toggle-button{
    position: absolute;
    top: 2.4rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.toggle-button .bar{
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
}

@media screen and (max-width: 1400px) {

    .toggle-button {
        display: flex;
    }

    .navbar-links{
        display: none; 
        width: 100%;
    }

    .navbar{
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-links ul{
        width: 100%;
        flex-direction: column;
    }

    .navbar-links li{
        
        text-align: center;
    }
    

    .navbar-links li a{
        padding: .8rem;
        display: inline-block;
    }

    .navbar-links.active {
        display: flex;
    }
}

/* Index content */

.content{
    padding-top: 0.5%;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    background-color: #000000;
    padding-bottom: 4%;
}

.content .textBox{
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.content .textBox_title h1{
    color: #f1f1f1;
    font-family: Palatino, 'Palatino Linotype', serif;
    font-size: 3.5em;
    margin-bottom: 10px;
    line-height: 1.4em;
    letter-spacing: 2px;
}

.content .textBox_subtitle h1{
    color: #f1f1f1;
    font-size: 2.5em;
    font-family: Palatino, 'Palatino Linotype', serif;
    font-style: italic;
    margin-bottom: 5px;
    line-height: 1.4em;
    letter-spacing: 1px;
}


.content .textBox a{
    display: inline-block;
    margin-top: 20px;
    padding: 8px 20px;
    background: none;
    color: #fff;
    border-radius: 40px;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
}

/* Index content responsive */

@media (min-width: 300px) and (max-width: 350px) {

    .brand-title img {
        width: 84%;
        margin-left: 3%;
    }

    .content .textBox {
        width: 100%;
    }

    .content .textBox_title h1 {
        font-size: 2em;
        margin-bottom: 12px;
    }

    .content .textBox_subtitle h1{
        font-size: 1.2em;
    }

    .content .textBox button {
        width: 270px;
        height: 107px;
        font-size: 27px;
    }

    .content .textBox .sci{
        width: 90%;
        padding-bottom: 10px;
    }

    .content .textBox .sci li a{
        width: 100%;
        font-size: 19px;
    }

    .content .textBox .sci li a i{
        font-size: 1em;
    }

    .a_propos_contenu_color .a_propos_contenu {
        width: 90%;
        padding: 20px 30px;
    }

    .a_propos .a_propos_contenu {
        width: 90%;
        padding: 20px 30px;
    }

}

@media (min-width: 350px) and (max-width: 400px) {

    .brand-title img {
        width: 75%;
        margin-left: 7.5%;
    }

    .content .textBox {
        width: 100%;
    }

    .content .textBox_title h1 {
        font-size: 2.25em;
        margin-bottom: 12px;
    }

    .content .textBox_subtitle h1{
        font-size: 1.4em;
    }

    .content .textBox button {
        width: 270px;
        height: 107px;
        font-size: 27px;
    }

    .content .textBox .sci{
        width: 90%;
        padding-bottom: 10px;
    }

    .content .textBox .sci li a{
        width: 100%;
        font-size: 19px;
    }

    .content .textBox .sci li a i{
        font-size: 1em;
    }

    .a_propos_contenu_color .a_propos_contenu {
        width: 88%;
        padding: 20px 30px;
    }

    .a_propos .a_propos_contenu {
        width: 90%;
        padding: 20px 30px;
    }

}


@media (min-width: 400px) and (max-width: 451px) {

    .brand-title img {
        width: 70%;
        margin-left: 11.5%;
    }

    .content .textBox {
        width: 100%;
    }

    .content .textBox_title h1 {
        font-size: 2.25em;
        margin-bottom: 12px;
    }

    .content .textBox_subtitle h1{
        font-size: 1.4em;
    }

    .content .textBox button {
        width: 270px;
        height: 107px;
        font-size: 27px;
    }

    .content .textBox .sci{
        width: 90%;
        padding-bottom: 10px;
    }

    .content .textBox .sci li a{
        width: 100%;
        font-size: 19px;
    }

    .content .textBox .sci li a i{
        font-size: 1em;
    }

    .a_propos_contenu_color .a_propos_contenu {
        width: 90%;
        padding: 20px 30px;
    }

    .a_propos .a_propos_contenu {
        width: 90%;
        padding: 20px 30px;
    }

}


@media (min-width: 451px) and (max-width: 501px) {

    .brand-title img {
        width: 70%;
        margin-left: 13%;
    }

    .content .textBox {
        width: 100%;
    }

    .content .textBox_title h1 {
        font-size: 2.5em;
        margin-bottom: 12px;
    }

    .content .textBox_subtitle h1{
        font-size: 1.6em;
    }

    .content .textBox button {
        width: 270px;
        height: 107px;
        font-size: 27px;
    }

    .content .textBox .sci{
        width: 90%;
        padding-bottom: 10px;
    }

    .content .textBox .sci li a{
        width: 80%;
        font-size: 19px;
    }

    .content .textBox .sci li a i{
        font-size: 1em;
    }

    .a_propos_contenu_color .a_propos_contenu {
        width: 86%;
        padding: 20px 30px;
    }

    .a_propos .a_propos_contenu {
        width: 90%;
        padding: 20px 30px;
    }

}


@media (min-width: 501px) and (max-width: 601px){

    .brand-title img {
        width: 57%;
        margin-left: 18.5%;
    }

    .content .textBox {
        width: 100%;
    }

    .content .textBox_title h1 {
        font-size: 2.6em;
        margin-bottom: 12px;
    }

    .content .textBox_subtitle h1{
        font-size: 1.9em;
        
    }

    .content .textBox button {
        width: 270px;
        height: 107px;
        font-size: 27px;
    }

    .content .textBox .sci{
        width: 90%;
        padding-bottom: 10px;
    }

    .content .textBox .sci li a{
        width: 75%;
        font-size: 19px;
    }

    .content .textBox .sci li a i{
        font-size: 1em;
    }

    .a_propos_contenu_color .a_propos_contenu {
        width: 82%;
        padding: 20px 30px;
    }

    .a_propos .a_propos_contenu {
        width: 90%;
        padding: 20px 30px;
    }

}


@media (min-width: 601px) and (max-width: 701px){

    .brand-title img {
        width: 55%;
        margin-left: 19.5%;
    }

    .content .textBox {
        width: 100%;
    }

    .content .textBox_title h1 {
        font-size: 2.9em;
        margin-bottom: 12px;
    }

    .content .textBox_subtitle h1{
        font-size: 2.1em;
        
    }

    .content .textBox button {
        width: 270px;
        height: 107px;
        font-size: 27px;
    }

    .content .textBox .sci{
        width: 95%;
        padding-bottom: 10px;
    }

    .content .textBox .sci li a{
        width: 75%;
        font-size: 19px;
    }

    .content .textBox .sci li a i{
        font-size: 1em;
    }

    .a_propos_contenu_color .a_propos_contenu {
        width: 69%;
        padding: 20px 30px;
    }

    .a_propos .a_propos_contenu {
        width: 90%;
        padding: 20px 30px;
    }

}

@media (min-width: 701px) and (max-width: 751px){

    .brand-title img {
        width: 47%;
        margin-left: 24%;
    }

    .content .textBox {
        width: 100%;
    }

    .content .textBox_title h1 {
        font-size: 2.9em;
        margin-bottom: 12px;
    }

    .content .textBox_subtitle h1{
        font-size: 2.3em;
        
    }

    .content .textBox button {
        width: 270px;
        height: 107px;
        font-size: 27px;
    }

    .content .textBox .sci{
        width: 100%;
        padding-bottom: 10px;
    }

    .content .textBox .sci li a{
        width: 49%;
        font-size: 19px;
    }

    .content .textBox .sci li a i{
        font-size: 1em;
    }

    .a_propos_contenu_color .a_propos_contenu {
        width: 59%;
        padding: 20px 30px;
    }

    .a_propos .a_propos_contenu {
        width: 90%;
        padding: 20px 30px;
    }

}

@media (min-width: 751px) and (max-width: 801px){

    .brand-title img {
        width: 47%;
        margin-left: 27%;
    }

    .content .textBox {
        width: 100%;
    }

    .content .textBox_title h1 {
        font-size: 3em;
        margin-bottom: 12px;
    }

    .content .textBox_subtitle h1{
        font-size: 2.4em;
        
    }

    .content .textBox button {
        width: 270px;
        height: 107px;
        font-size: 27px;
    }

    .content .textBox .sci{
        width: 100%;
        padding-bottom: 10px;
    }

    .content .textBox .sci li a{
        width: 46%;
        font-size: 19px;
    }

    .content .textBox .sci li a i{
        font-size: 1em;
    }

    .a_propos_contenu_color .a_propos_contenu {
        width: 56%;
        padding: 20px 30px;
    }

    .a_propos .a_propos_contenu {
        width: 90%;
        padding: 20px 30px;
    }

}

@media (min-width: 801px) and (max-width: 851px){

    .brand-title img {
        width: 47%;
        margin-left: 31%;
    }

    .content .textBox {
        width: 100%;
    }

    .content .textBox_title h1 {
        font-size: 3.2em;
        margin-bottom: 12px;
    }

    .content .textBox_subtitle h1{
        font-size: 2.6em;
        
    }

    .content .textBox button {
        width: 270px;
        height: 107px;
        font-size: 27px;
    }

    .content .textBox .sci{
        width: 100%;
        padding-bottom: 10px;
    }

    .content .textBox .sci li a{
        width: 43%;
        font-size: 19px;
    }

    .content .textBox .sci li a i{
        font-size: 1em;
    }

    .a_propos_contenu_color .a_propos_contenu {
        width: 53%;
        padding: 20px 30px;
    }

    .a_propos .a_propos_contenu {
        width: 90%;
        padding: 20px 30px;
    }

}

@media (min-width: 851px) and (max-width: 901px){

    .brand-title img {
        width: 47%;
        margin-left: 33%;
    }

    .content .textBox {
        width: 100%;
    }

    .content .textBox_title h1 {
        font-size: 3.4em;
        margin-bottom: 12px;
    }

    .content .textBox_subtitle h1{
        font-size: 2.1em;
        
    }

    .content .textBox button {
        width: 270px;
        height: 107px;
        font-size: 27px;
    }

    .content .textBox .sci{
        width: 100%;
        padding-bottom: 10px;
    }

    .content .textBox .sci li a{
        width: 39%;
        font-size: 19px;
    }

    .content .textBox .sci li a i{
        font-size: 1em;
    }

    .a_propos_contenu_color .a_propos_contenu {
        width: 49%;
        padding: 20px 30px;
    }

    .a_propos .a_propos_contenu {
        width: 90%;
        padding: 20px 30px;
    }

}


@media (min-width: 901px) and (max-width: 1001px){

    .brand-title img {
        width: 47%;
        margin-left: 40%;
    }

    .content .textBox {
        width: 100%;
    }

    .content .textBox_title h1 {
        font-size: 3.4em;
        margin-bottom: 12px;
    }

    .content .textBox_subtitle h1{
        font-size: 2.1em;
        
    }

    .content .textBox button {
        width: 270px;
        height: 107px;
        font-size: 27px;
    }

    .content .textBox .sci{
        width: 100%;
        padding-bottom: 10px;
    }

    .content .textBox .sci li a{
        width: 35%;
        font-size: 19px;
    }

    .content .textBox .sci li a i{
        font-size: 1em;
    }

    .a_propos_contenu_color .a_propos_contenu {
        width: 46%;
        padding: 20px 30px;
    }

    .a_propos .a_propos_contenu {
        width: 90%;
        padding: 20px 30px;
    }

}


@media (min-width: 1001px) and (max-width: 1100px){

    .brand-title img {
        width: 40%;
        margin-left: 12%;
    }

    .content .textBox {
        width: 100%;
    }

    .content .textBox_title h1 {
        font-size: 3.4em;
        margin-bottom: 12px;
    }

    .content .textBox_subtitle h1{
        font-size: 2.1em;
        
    }

    .content .textBox button {
        width: 270px;
        height: 107px;
        font-size: 27px;
    }

    .content .textBox .sci{
        width: 100%;
        padding-bottom: 10px;
    }

    .content .textBox .sci li a{
        width: 33%;
        font-size: 19px;
    }

    .content .textBox .sci li a i{
        font-size: 1em;
    }

    .a_propos_contenu_color .a_propos_contenu {
        width: 41%;
        padding: 20px 30px;
    }

    .a_propos .a_propos_contenu {
        width: 90%;
        padding: 20px 30px;
    }

}

@media (min-width: 1100px) and (max-width: 1200px){

    .brand-title img {
        width: 40%;
        margin-left: 12%;
    }

    .content .textBox {
        width: 100%;
    }

    .content .textBox_title h1 {
        font-size: 3.6em;
        margin-bottom: 12px;
    }

    .content .textBox_subtitle h1{
        font-size: 2.2em;
        
    }

    .content .textBox button {
        width: 270px;
        height: 107px;
        font-size: 27px;
    }

    .content .textBox .sci{
        width: 100%;
        padding-bottom: 10px;
    }

    .content .textBox .sci li a{
        width: 29%;
        font-size: 19px;
    }

    .content .textBox .sci li a i{
        font-size: 1em;
    }

    .a_propos_contenu_color .a_propos_contenu {
        width: 37%;
        padding: 20px 30px;
    }

    .a_propos .a_propos_contenu {
        width: 90%;
        padding: 20px 30px;
    }

}

@media (min-width: 1200px) and (max-width: 1400px){

    .brand-title img {
        width: 40%;
        margin-left: 10%;
    }

    .content .textBox {
        width: 100%;
    }

    .content .textBox_title h1 {
        font-size: 3.6em;
        margin-bottom: 12px;
    }

    .content .textBox_subtitle h1{
        font-size: 2.2em;
        
    }

    .content .textBox button {
        width: 270px;
        height: 107px;
        font-size: 27px;
    }

    .content .textBox .sci{
        width: 100%;
        padding-bottom: 10px;
    }

    .content .textBox .sci li a{
        width: 26%;
        font-size: 19px;
    }

    .content .textBox .sci li a i{
        font-size: 1em;
    }

    .a_propos_contenu_color .a_propos_contenu {
        width: 34%;
        padding: 20px 30px;
    }

    .a_propos .a_propos_contenu {
        width: 90%;
        padding: 20px 30px;
    }

}

@media (min-width: 1400px) and (max-width: 1492px) {

    .a_propos_contenu_color .a_propos_contenu {
        width: 33%;
        padding: 20px 30px;
    }

}



/* Button */


button{
    background: none;
    color: #f1f1f1;
    width: 370px;
    height: 125px;
    border: 2px solid #3498db;
    font-size: 33px;
    font-weight: bolder;
    font-family: 'Lato';
    border-radius: 50px;
    transition: .6s;
    overflow: hidden; 
    background: #3498db;
    cursor: pointer;
}

button:focus {
    outline: none;
}

button:before {
    content: '';
    display: block;
    position: absolute;
    float: left;
    width: 60px;
    height: 100%;
    left: 0;
    top: 0;
    opacity: .5s;
    filter: blur(70px);
    transform: translateX(-130px) skewX(-15deg);
}

button:after {
    content: '';
    display: block;
    position: absolute;
    background: rgba(255,255,255,.2);
    width: 40px;
    height: 100%;
    left: 40px;
    top: 0;
    opacity: 0;
    filter: blur(30px);
    transform: translate(-100px) scaleX(-15deg);
}

button:hover {
    color: #ffffff;
    border: 2px solid rgb(44, 80, 201);
    background: rgb(44, 80, 201);
    cursor: pointer;
}

button:hover:before {
    transform: translateX(300px) skewX(-15deg);
    opacity: .6;
    transition: .7s;
}



/* Infos Accueil */

.sci{
    padding-top: 4px;
}

.sci li{
    list-style: none;
    display: flex;
}

.sci li a{
    position: relative;
    margin: 0 auto;
    background: rgb(20, 20, 20);
    width: 40%;
    height: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
    font-size: 20px;
}

.sci li a i{
    color: #fff;
    font-size: 1.7em;
}


.sci li a:hover{
    background: #00749e;
    transform: translateY(-10px);
}


.sci li a img{
    filter: invert(1);
    transform: scale(0.5);
}

.sci li i p{
    font-size: 1em;
    font-family: Palatino, 'Palatino Linotype', serif;
}


/* Table */

.color-domaine h2{
    background-color:#000000;
    color: #000000;
}

.pricing-table{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background-color: #000000;
    width: 100%;
    margin: auto;
    padding-bottom: 5em;
}

.pricing-card{
    flex: 1;
    max-width: 360px;
    background-color: #fff;
    margin: 20px 20px;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    color: #2d2d2d;
    transition: .3s linear;
}

.pricing-card-header{
    background-color: #0fbcf9;
    display: inline-block;
    color: #fff;
    padding: 12px 30px;
    border-radius: 0 0 20px 20px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    transition: .4s linear;
}

.pricing-card:hover .pricing-card-header{
    box-shadow: 0 0 0 26em #0fbcf9;
}

.price{
    font-size: 70px;
    color: #0fbcf9;
    margin: 40px 0;
    transition: .2s linear;
}

.price sup, .price span{
    font-size: 22px;
    font-weight: 700;
}

.price-card:hover ,.pricing-card:hover .price{
    color: #fff;
}

.pricing-card li{
    font-size: 16px;
    padding: 10px 0;
    text-transform: uppercase;
    list-style: none;
}

.order-btn{
    display: inline-block;
    margin-bottom: 40px;
    margin-top: 50px;
    border: 2px solid #0fbcf9;
    color: #0fbcf9;
    padding: 18px 40px;
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: 500;
    transition: .3s linear;
}

.order-btn:hover{
    background-color: #0fbcf9;
    color: #fff;
}

/* Responsive Table */

@media screen and (max-width: 1400px){
    .pricing-card{
        flex: 50%;
    }
}


img{
    width: 305px;
    height: auto;
    margin: 0 auto;
    border-radius: 50px;
    
}



.USP {
    background-color: #000000;
    margin: 0 auto;
}



.description_contenu{
    position: relative;
    width: 30%;
    height: 40%;
    border-radius: 10px;
    background: border-box;
    background-color: #1b1a1a;
    padding: 24px 60px;
    transition: .5s;
    overflow: hidden;
    display: inline-block;
    text-align: justify;
}

.description_contenu p{
    color:#f4f4f4;
    font-size: 21px;
    text-align: justify;
    background-color: #1b1a1a;
   
}

.description_contenu h2{
    font-size: 26px;
    letter-spacing: 1px;
    color:#f4f4f4;
    background-color: #1b1a1a;
    text-align: center;
}

.description_contenu i{
    background-color: none;
    color: #0fbcf9;
    box-shadow: 0 0 5px #0fbcf9,
    0 0 15px #0fbcf9,
    0 0 30px #0fbcf9;
  
    transform: translateX(-5%); 
}

.description_contenu:before{
    content: '';
    position: absolute;
    width: 0%;
    height: 0%;
    top: 0;
    left: 0;
    border-top: 3.5px solid #f4f4f4;
    border-left: 3.5px solid #f4f4f4;
    opacity: 0;
    transition: .5s;
    box-sizing: border-box;
}

.description_contenu:after{
    content: '';
    position: absolute;
    width: 0%;
    height: 0%;
    bottom: 0;
    right: 0;
    border-bottom: 3.5px solid #f4f4f4;
    border-right: 3.5px solid #f4f4f4;
    opacity: 0;
    transition: .6s;
    box-sizing: border-box;
}

.description_contenu:hover:before{
    width: 100%;
    height: 100%;
    opacity: 1;
    transition-delay: .3s;
}

.description_contenu:hover:after{
    width: 100%;
    height: 100%;
    opacity: 1;
    transition-delay: .3s;
}

/* A propos */

.a_propos{
    background-color: #000000;
    padding-top: 5%;
    padding-bottom: 5%;
    display: inline-block;
    width: 100%;
}

.container_a_propos{
    width: 100%;
    margin: 0 auto;
}


.a_propos_contenu_image img{
    display: block;
    margin: 0 auto;
}

.a_propos_contenu_color{
    background-color: #000000;
    padding-bottom: 7%;
}

.a_propos_contenu{
    position: relative;
    width: 30%;
    height: 30%;
    border-radius: 10px;
    background: border-box;
    background-color: #f3f1f1;
    padding: 30px 50px;
    transition: .5s;
    overflow: hidden;
    display: block;
    margin: 0 auto;
    text-align: justify;
    font-family: Palatino, 'Palatino Linotype', serif;
}

.a_propos_contenu p{
    color:#000000;
    font-size: 21px;
    text-align: justify;
    background-color: #f3f1f1;
   
}

.a_propos_contenu h2{
    font-size: 26px;
    letter-spacing: 1px;
    color:#000000;
    background-color: #f3f1f1;
    text-align: center;
}

.a_propos_contenu:before{
    content: '';
    position: absolute;
    width: 0%;
    height: 0%;
    top: 0;
    left: 0;
    border-top: 5.5px solid #2c8fff;
    border-left: 5.5px solid #2c8fff;
    opacity: 0;
    transition: .8s;
    box-sizing: border-box;
}

.a_propos_contenu:after{
    content: '';
    position: absolute;
    width: 0%;
    height: 0%;
    bottom: 0;
    right: 0;
    border-bottom: 5.5px solid #2c8fff;
    border-right: 5.5px solid #2c8fff;
    opacity: 0;
    transition: .9s;
    box-sizing: border-box;
}

.a_propos_contenu:hover:before{
    width: 100%;
    height: 100%;
    opacity: 1;
    transition-delay: .3s;
}

.a_propos_contenu:hover:after{
    width: 100%;
    height: 100%;
    opacity: 1;
    transition-delay: .3s;
}


@media (min-width: 400px) and (max-width: 500px) {

    .container_a_propos{
        width: 89%;
        margin: 0 auto;
    }

}


@media (min-width: 500px) and (max-width: 600px) {

    .container_a_propos{
        width: 77%;
        margin: 0 auto;
    }

}


@media (min-width: 600px) and (max-width: 700px) {

    .container_a_propos{
        width: 65%;
        margin: 0 auto;
    }

}


@media (min-width: 700px) and (max-width: 800px) {

    .container_a_propos{
        width: 59%;
        margin: 0 auto;
    }

}


@media (min-width: 800px) and (max-width: 900px) {

    .container_a_propos{
        width: 55%;
        margin: 0 auto;
    }

}


@media (min-width: 900px) and (max-width: 1000px) {

    .container_a_propos{
        width: 51%;
        margin: 0 auto;
    }

}


@media (min-width: 1000px) and (max-width: 1100px) {

    .container_a_propos{
        width: 47%;
        margin: 0 auto;
    }

}


@media (min-width: 1100px) and (max-width: 1200px) {

    .container_a_propos{
        width: 43%;
        margin: 0 auto;
    }

}


@media (min-width: 1200px) and (max-width: 1300px) {

    .container_a_propos{
        width: 39%;
        margin: 0 auto;
    }

}


@media (min-width: 1300px) and (max-width: 1400px) {

    .container_a_propos{
        width: 35%;
        margin: 0 auto;
    }

}




/* Article Page */

.article_page{
    background-color: #000000;
}


.article-image {
    width: 45%;
    margin: 0 auto;
    padding-top: 0.1%;
    padding-bottom: 20px;
    background-color: #000000;
}

.article-image h1{
    font-size: 3em;
    letter-spacing: 2px;
    text-align: center;
    color: #f1f1f1;
    font-family: Palatino, 'Palatino Linotype', serif;
    padding-bottom: 5px;
}

.article-image img{
    display: block;
    margin: 0 auto;
}

.article-table{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background-color: #000000;
    width: 100%;
    margin: auto;
}


.article-card{
    flex: 1;
    max-width: 360px;
    background-color: #fff;
    margin: 20px 20px;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    color: #2d2d2d;
    transition: .3s linear;
}

.article-card-header{
    background-color: #0fbcf9;
    display: inline-block;
    color: #fff;
    padding: 12px 30px;
    border-radius: 0 0 20px 20px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    transition: .4s linear;
}

.article-card:hover .article-card-header{
    box-shadow: 0 0 0 31.5em #0fbcf9;
}

.article{
    font-size: 70px;
    color: #0fbcf9;
    margin: 40px 0;
    transition: .2s linear;
}

.article sup, .article span{
    font-size: 22px;
    font-weight: 700;
}

.article-card:hover ,.article-card:hover .article{
    color: #fff;
}

.article-card li{
    font-size: 16px;
    padding: 10px 0;
    text-transform: uppercase;
    list-style: none;
}

/* Responsive Article Page */

@media screen and (max-width: 1200px){
    
    .article-image {
        width: 90%;
    }

    .article-image h1 {
        font-size: 37px;
    }
    
    .article-card{
        flex: 50%;
    }
}

/* footer */

footer{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-flow: row wrap;
    padding: 50px;
    color: #fff;
    background-color: #111;
}

.footer > *{
    flex: 1 100%;
}

.footer-left{
    margin-right: 1.25em;
    margin-bottom: 2em;
    flex: 1 0px;
}

.footer-left img{
    width: 75%;
    padding-bottom: 10px;
}

h2{
    font-weight: 600;
    font-size: 17px;
}

.footer ul{
    padding-top: 0px;
    list-style: none;
    padding-left: 0;
    text-align: center;
}

.footer li{
    line-height: 2em;
}

.footer a:hover{
    color: #f1f1f1;
}

.footer a{
    text-decoration: none;
}

.footer-right{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-flow: row wrap;
    margin-right: 12.25em;
    flex: 2 0px;
}

.footer-right > *{
    flex: 1;
}

.box a{
    color: #999;
}

.footer-bottom{
    text-align: center;
    color: #999;
    padding-top: 52px;
}

.footer-left p{
    padding-right: 20%;
    color: #fff;
}

.footer-right h2{
    position: relative;
    color: #fff;
    font-weight: 500;
    margin-bottom: 18px;
    display: inline-block;
}

.footer-right h2:before{
    content: '';
    position: absolute;
    bottom: -4.5px;
    left: 0;
    width: 43px;
    height: 2.1px;
    background: #00749e;
}

.socials a{
    background: #222222;
    width: 60px;
    height: 60px;
    display: inline-block;
    margin-right: 18px;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
}

.socials a:hover{
    background: #00749e;
    transform: translateY(-10px);
}

.socials a i{
    color: #e7f2f4;
    padding: 14.80px 17.85px;
    font-size: 30px;
}


@media (max-width: 1303px) {

    
    .footer-left img{
        width: 85%;
        padding-bottom: 7px;
    }

    footer{
        
        flex-flow: row wrap;
        padding: 60px;
    }

    .footer-right{
        
        flex-flow: row wrap;
        margin-right: 2.25em;

    }
    
    .socials a{
        margin-right: 12px;
        
    }

}



@media (min-width: 300px) and (max-width: 349px){

   
    .footer-left{
        margin-right: 20px;
        margin-bottom: 25px;
        
    }
    
    .footer-left img{
        width: 70%;
        padding-bottom: 7px;
    }
    
    footer{
        
        flex-flow: column wrap;
        
        
    }

    .footer-right{
        
        flex-flow: column wrap;
        margin-right: 9.4em;

    }
    
    .socials a{
        margin-right: 0.5px;
    }

    .footer-bottom{
        padding-right: 90px;
        padding-top: 22px;
        flex-flow: column wrap;
    }

}


@media (min-width: 319px) and (max-width: 337px){

   
    .footer-left{
        margin-right: 55px;
        margin-bottom: 5px;
        
    }
    
    .footer-left img{
        width: 65%;
        padding-bottom: 7px;
    }
    
    footer{
        
        flex-flow: column wrap;
        
        
    }

    .footer-right{
        
        flex-flow: column wrap;
        margin-right: 12.4em;

    }
    
    .socials a{
        margin-right: 0.1px;
    }

    .footer-bottom{
        padding-right: 90px;
        padding-top: 22px;
        flex-flow: column wrap;
    }

}


@media (min-width: 338px) and (max-width: 361px){

   
    .footer-left{
        margin-right: 21px;
        margin-bottom: 25px;
        
    }
    
    .footer-left img{
        width: 62%;
        padding-bottom: 7px;
    }
    
    footer{
        
        flex-flow: column wrap;
        
        
    }

    .footer-right{
        
        flex-flow: column wrap;
        margin-right: 10.5em;

    }
    
    .socials a{
        margin-right: 0.2px;
    }

    .footer-bottom{
        padding-right: 90px;
        padding-top: 22px;
        flex-flow: column wrap;
    }

}


@media (min-width: 362px) and (max-width: 371px){

   
    .footer-left{
        margin-right: 55px;
        margin-bottom: 25px;
        
    }
    
    .footer-left img{
        width: 70%;
        padding-bottom: 7px;
    }
    
    footer{
        
        flex-flow: column wrap;
        
        
    }

    .footer-right{
        
        flex-flow: column wrap;
        margin-right: 10.4em;

    }
    
    .socials a{
        margin-right: 0.2px;
    }

    .footer-bottom{
        padding-right: 70px;
        padding-top: 22px;
        flex-flow: column wrap;
    }

}


@media (min-width: 372px) and (max-width: 387px){

   
    .footer-left{
        margin-right: 20px;
        margin-bottom: 25px;
        
    }
    
    .footer-left img{
        width: 70%;
        padding-bottom: 7px;
    }
    
    footer{
        
        flex-flow: column wrap;
        
        
    }

    .footer-right{
        
        flex-flow: column wrap;
        margin-right: 9.4em;

    }
    
    .socials a{
        margin-right: 0.5px;
    }

    .footer-bottom{
       
        padding-top: 22px;
        padding-right: 70px;
        flex-flow: column wrap;
    }

}


@media (min-width: 388px) and (max-width: 397px){

   
    .footer-left{
        margin-right: 20px;
        margin-bottom: 25px;
        
    }
    
    .footer-left img{
        width: 70%;
        padding-bottom: 7px;
    }
    
    footer{
        
        flex-flow: column wrap;
        
        
    }

    .footer-right{
        
        flex-flow: column wrap;
        margin-right: 9.4em;

    }
    
    .socials a{
        margin-right: 0.5px;
    }

    .footer-bottom{
        padding-right: 70px;
        padding-top: 22px;
        flex-flow: column wrap;
    }

}


@media (min-width: 398px) and (max-width: 413px){

   
    .footer-left{
        margin-left: 5px;
        margin-bottom: 25px;
        
    }
    
    .footer-left img{
        width: 75%;
        padding-bottom: 7px;
    }
    
    footer{
        
        flex-flow: column wrap;
        
    }

    .footer-right{
        
        flex-flow: column wrap;
        margin-right: 8.4em;

    }
    
    .socials a{
        margin-right: 1px;
    }

    .footer-bottom{
        padding-right: 90px;
        padding-top: 22px;
        flex-flow: column wrap;
    }

}


@media (min-width: 414px) and (max-width: 475px){

   
    .footer-left{
        margin-left: 10px;
        margin-bottom: 25px;
        
    }
    
    .footer-left img{
        width: 75%;
        padding-bottom: 7px;
    }
    
    footer{
        
        flex-flow: column wrap;
        
    }

    .footer-right{
        
        flex-flow: column wrap;
        margin-right: 8.4em;

    }
    
    .socials a{
        margin-right: 1px;
    }

    .footer-bottom{
        padding-right: 90px;
        padding-top: 22px;
        flex-flow: column wrap;
    }

}


@media (min-width: 476px) and (max-width: 523px){

   
    .footer-left{
        margin-left: 40px;
        margin-bottom: 25px;
        
    }
    
    .footer-left img{
        width: 85%;
        padding-bottom: 7px;
    }
    
    footer{
        
        flex-flow: column wrap;
        
    }

    .footer-bottom{
        flex-flow: column wrap;
    }

    .footer-right{
        
        flex-flow: column wrap;
        margin-right: 4.4em;

    }
    
    .socials a{
        margin-right: 1px;
    }

    .footer-bottom{
       
        padding-top: 22px;
    }

}


@media (min-width: 524px) and (max-width: 657px){

   
    .footer-left{
        margin-left: 90px;
        margin-bottom: 25px;
        
    }
    
    .footer-left img{
        width: 82%;
        padding-bottom: 7px;
    }
    
    footer{
        
        flex-flow: column wrap;
        
    }

    .footer-right{
        
        flex-flow: row wrap;
        margin-right: 0.4em;

    }
    
    .socials a{
        margin-right: 1px;
    }

    .footer-bottom{
       
        padding-top: 22px;
    }

}



@media (min-width: 658px) and (max-width: 663px){

   
    .footer-left{
        margin-left: 130px;
        margin-bottom: 25px;
        
    }
    
    .footer-left img{
        width: 70%;
        padding-bottom: 7px;
    }
    
    footer{
        
        flex-flow: column wrap;
        
    }

    .footer-right{
        
        flex-flow: row wrap;
        margin-right: 0.4em;

    }
    
    .socials a{
        margin-right: 8px;
    }

    .footer-bottom{
       
        padding-top: 22px;
    }

}


@media (min-width: 664px) and (max-width: 767px){

   
    .footer-left{
        margin-left: 130px;
        margin-bottom: 25px;
        
    }
    
    .footer-left img{
        width: 70%;
        padding-bottom: 7px;
    }
    
    footer{
        
        flex-flow: column wrap;
        
    }

    .footer-right{
        
        flex-flow: row wrap;
        margin-right: 0.4em;

    }
    
    .socials a{
        margin-right: 8px;
    }

    .footer-bottom{
       
        padding-top: 22px;
    }

}


@media (min-width: 768px) and (max-width: 853px){

   
    .footer-left{
        margin-left: 175px;
        margin-bottom: 25px;
        
    }
    
    .footer-left img{
        width: 60%;
        padding-bottom: 7px;
    }
    
    footer{
        
        flex-flow: column wrap;
        
    }

    .footer-right{
        
        flex-flow: row wrap;
        margin-right: 0.4em;

    }
    
    .socials a{
        margin-right: 8px;
    }

    .footer-bottom{
       
        padding-top: 22px;
    }

}


@media (min-width: 854px) and (max-width: 921px){

   
    .footer-left{
        margin-left: 215px;
        margin-bottom: 25px;
        
    }
    
    .footer-left img{
        width: 60%;
        padding-bottom: 7px;
    }
    
    footer{
        
        flex-flow: column wrap;
        
    }

    .footer-right{
        
        flex-flow: row wrap;
        margin-right: 0.4em;

    }
    
    .socials a{
        margin-right: 8px;
    }

    .footer-bottom{
       
        padding-top: 22px;
    }

}


@media (min-width: 922px) and (max-width: 945px){

   
    .footer-left img{
        width: 110%;
        padding-bottom: 5px;
    }
    
    footer{
        
        flex-flow: row wrap;
        padding: 70px;
    }

    .footer-right{
        
        flex-flow: row wrap;
        margin-right: 0.25em;

    }
    
    .socials a{
        margin-right: 0.1px;
    }

}


@media (min-width: 946px) and (max-width: 1001px){

   
    .footer-left img{
        width: 110%;
        padding-bottom: 5px;
    }
    
    footer{
        
        flex-flow: row wrap;
        padding: 70px;
    }

    .footer-right{
        
        flex-flow: row wrap;
        margin-right: 0.25em;

    }
    
    .socials a{
        margin-right: 2px;
    }

}


@media (min-width: 1002px) and (max-width: 1023px){

   
    .footer-left img{
        width: 100%;
        padding-bottom: 7px;
    }
    
    footer{
        
        flex-flow: row wrap;
        padding: 70px;
    }

    .footer-right{
        
        flex-flow: row wrap;

    }
    
    .socials a{
        margin-right: 4px;
    }

}

@media (min-width: 1024px) and (max-width: 1230px) {

    
    footer{
        
        flex-flow: row wrap;
        padding: 50px;
    }

    .footer-right{
        
        flex-flow: row wrap;

    }
    
    .socials a{
        margin-right: 6px;
    }

}







/* Domaine d'activité */

.activities_page{
    background-color: #fff;
}

.activities_page_image{
    padding-top: 4%;
}

.activities_page_image img{
    display: block;
    margin: 0 auto;
}

.list_competences{
    width: 64%;
    padding-top: 3em;
    background-color: #fff;
    margin: 0 auto;
    font-family: Palatino, 'Palatino Linotype', serif;
    padding-bottom: 2em;
}

.list_competences_title h1{
    text-align: center;
    font-size: 3em;
    color: rgb(0, 0, 61);
}

.list_competences_subtitle h1{
    text-align: center;
    font-size: 2.5em;
    text-decoration-line: underline;
}

.list_competences_content h1{
    text-align: center;
    font-size: 1.5em;
    padding-top: 7px
}

/* Responsive Domaine d'activité */

@media (max-width: 600px) {

    .list_competences{
        width: 95%;
    }

    .list_competences_title h1{
        font-size: 35px;
    }

    .list_competences_subtitle h1{
        padding-top: 12px;
        font-size: 30px;
    }

    .list_competences_content p {
        font-size: 21px;
    }  
}

@media (max-width: 767px) {

    .list_competences{
        width: 95%;
    }

    .list_competences_title h1{
        font-size: 35px;
    }

    .list_competences_subtitle h1{
        padding-top: 12px;
        font-size: 30px;
    }

    .list_competences_content p {
        font-size: 21px;
    }  
}

@media (max-width: 991px) {

    .list_competences{
        width: 95%;
    }

    .list_competences_title h1{
        font-size: 35px;
    }

    .list_competences_subtitle h1{
        padding-top: 12px;
        font-size: 30px;
    }

    .list_competences_content p {
        font-size: 21px;
    }  
}

/* Honoraires */

.honoraires_page_color{
    background-color: #fff;
}

.honoraires_contenu{
    width: 50%;
    margin: 0 auto;
    padding-top: 3em;
    background-color: #fff;
    font-family: Palatino, 'Palatino Linotype', serif;
    padding-bottom: 2em;
}

.honoraires_contenu_title h1{
    text-align: center;
    font-size: 3em;
    color: rgb(0, 0, 61);
}

.honoraires_contenu_subtitle h2{
    text-align: center;
    font-size: 2.25em;
    text-decoration-line: underline;
}

.honoraires_contenu_content p{
    text-align: justify;
    font-size: 1.5em;
    padding-top: 12px;
}

/* Responsive Honoraires */

@media (max-width: 600px) {

    .honoraires_contenu{
        width: 95%;
    }

    .honoraires_contenu_title h1{
        font-size: 35px;
    }

    .honoraires_contenu_subtitle h2{
        padding-top: 12px;
        font-size: 30px;
    }

    .honoraires_contenu_content p {
        font-size: 21px;
    }  
}

@media (max-width: 767px) {

    .honoraires_contenu{
        width: 95%;
    }

    .honoraires_contenu_title h1{
        font-size: 35px;
    }

    .honoraires_contenu_subtitle h2{
        padding-top: 12px;
        font-size: 30px;
    }

    .honoraires_contenu_content p {
        font-size: 21px;
    }  
}

@media (max-width: 991px) {

    .honoraires_contenu{
        width: 95%;
    }

    .honoraires_contenu_title h1{
        font-size: 35px;
    }

    .honoraires_contenu_subtitle h2{
        padding-top: 12px;
        font-size: 30px;
    }

    .honoraires_contenu_content p {
        font-size: 21px;
    }  
}

/* Article TAV */

.article_page_TAV_color{
    background-color: #fff;
}

.article_page_TAV_image{
    padding-top: 3%;
}

.article_page_TAV_image img{
    display: block;
    margin: 0 auto;
}

.article_page_TAV{
    width: 50%;
    padding-top: 2em;
    background-color: #fff;
    margin: 0 auto;
    font-family: Palatino, 'Palatino Linotype', serif;
    padding-bottom: 2em;
}

.article_page_TAV_title h1{
    text-align: center;
    font-size: 3em;
    color: rgb(0, 0, 61);
}

.article_page_TAV_subtitle h1{
    text-align: center;
    font-size: 2.5em;
    text-decoration-line: underline;
    color: rgb(199, 34, 34);
}

.article_page_TAV_content p{
    text-align: justify;
    font-size: 1.5em;
    padding-top: 12px;
}

/* Responsive Article TAV */

@media (max-width: 600px) {
    
    .article_page_TAV_image{
        padding-top: 10%;
    }
    
    .article_page_TAV{
        width: 95%;
    }

    .article_page_TAV_title h1{
        font-size: 30px;
    }

    .article_page_TAV_subtitle h1{
        padding-top: 12px;
        font-size: 29px;
    }

    .article_page_TAV_content p {
        font-size: 21px;
    }  
}

@media (max-width: 767px) {
    
    .article_page_TAV_image{
        padding-top: 10%;
    }
    
    .article_page_TAV{
        width: 95%;
    }

    .article_page_TAV_title h1{
        font-size: 30px;
    }

    .article_page_TAV_subtitle h1{
        padding-top: 12px;
        font-size: 29px;
    }

    .article_page_TAV_content p {
        font-size: 21px;
    }  
}

@media (max-width: 991px) {
    
    .article_page_TAV_image{
        padding-top: 10%;
    }
    
    .article_page_TAV{
        width: 95%;
    }

    .article_page_TAV_title h1{
        font-size: 30px;
    }

    .article_page_TAV_subtitle h1{
        padding-top: 12px;
        font-size: 29px;
    }

    .article_page_TAV_content p {
        font-size: 21px;
    }  
}

/* Article_Permis */


.article_page_permis_color{
    background-color: #fff;
}

.article_page_permis_image{
    padding-top: 3%;
}

.article_page_permis_image img{
    margin: 0 auto;
    display: block;
}

.article_page_permis{
    width: 50%;
    margin: 0 auto;
    padding-top: 2em;
    background-color: #fff;
    font-family: Palatino, 'Palatino Linotype', serif;
    padding-bottom: 2em;
}

.article_page_permis img{
    display: block;
    margin: 0 auto;
}

.article_page_permis_title h1{
    text-align: center;
    font-size: 3em;
    color: rgb(0, 0, 61);
}

.article_page_permis_subtitle h1{
    text-align: center;
    font-size: 2.1em;
    text-decoration-line: underline;
}

.article_page_permis_content p{
    text-align: justify;
    font-size: 1.5em;
    padding-top: 12px;
}

/*Responsive Article_Permis */

@media (max-width: 250px) {
    
    .article_page_permis_image{
        padding-top: 50%;
    }
    
    .article_page_permis{
        width: 90%;
    }

    .article_page_permis_title h1{
        font-size: 30px;
    }

    .article_page_permis_subtitle h1{
        padding-top: 12px;
        font-size: 12px;
    }

    .article_page_permis_content p {
        font-size: 21px;
    }  
}


@media (max-width: 600px) {
    
    .article_page_permis_image{
        padding-top: 10%;
    }
    
    .article_page_permis{
        width: 95%;
    }

    .article_page_permis_title h1{
        font-size: 30px;
    }

    .article_page_permis_subtitle h1{
        padding-top: 12px;
        font-size: 12px;
    }

    .article_page_permis_content p {
        font-size: 21px;
    }  
}

@media (max-width: 767px) {
    
    .article_page_permis_image{
        padding-top: 10%;
    }
    
    .article_page_permis{
        width: 95%;
    }

    .article_page_permis_title h1{
        font-size: 30px;
    }

    .article_page_permis_subtitle h1{
        padding-top: 12px;
        font-size: 29px;
    }

    .article_page_permis_content p {
        font-size: 21px;
    }  
}

@media (max-width: 991px) {
    
    .article_page_permis_image{
        padding-top: 7%;
    }
    
    .article_page_permis{
        width: 95%;
    }

    .article_page_permis_title h1{
        font-size: 30px;
    }

    .article_page_permis_subtitle h1{
        padding-top: 12px;
        font-size: 29px;
    }

    .article_page_permis_content p {
        font-size: 21px;
    }  
}


/* Contact Form */

.container {
    width: 80%;
    padding: 20px;
}

.container h2{
    width: 100%;
    color: #00749e;
    font-size: 36px;
    text-align: center;
    margin-bottom: 10px;
}

.container .row100 {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
}

.container .row100 .col { 
    position: relative;
    width: 100%;
    padding: 0 10px;
    margin: 30px 0 10px;
    transition: 0.5s;

}

.container .row100 .inputBox { 
    position: relative;
    width: 100%;
    height: 40px;
    color: #00749e;
}

.container .row100 .inputBox input,
.container .row100 .inputBox.textarea textarea{
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    box-shadow: none;
    border: none;
    outline: none;
    font-size: 18px;
    padding: 0 10px;
    z-index: 1;
    color: #000000;
}

.container .row100 .inputBox .text{
    position: absolute;
    top: 0;
    left: 0;
    line-height: 40px;
    font-size: 18px;
    padding: 0 10px;
    display: block;
    transition: 0.5s;
    pointer-events: none;
}

.container .row100 .inputBox input:focus + .text,
.container .row100 .inputBox input:valid + .text{
    top: -35px;
    left: -10px;
}

.container .row100 .inputBox .line{
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: #00749e;
    transition: 0.5s;
    border-radius: 2px;
    pointer-events: none;
}

.container .row100 .inputBox input:focus ~ .line,
.container .row100 .inputBox input:valid ~ .line{
    height: 100%;
}

.container .row100 .inputBox.textarea{
    position: relative;
    width: 100%;
    height: 100px;
    padding: 10px 0;
}

.container .row100 .inputBox.textarea textarea{
    height: 100%;
    resize: none;
}

.container .row100 .inputBox textarea:focus + .text,
.container .row100 .inputBox textarea:valid + .text{
    top: -35px;
    left: -10px;
}

.container .row100 .inputBox textarea:focus ~ .line,
.container .row100 .inputBox textarea:valid ~ .line{
    height: 100%;
}

input[type="submit"]{
    border: none;
    padding: 7px 35px;
    cursor: pointer;
    outline: none;
    background: #00749e;
    color: #000000;
    font-size: 18px;
    border-radius: 2px;
}

.contact-page-color{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #000000;
}





  




  

  .table-of-contents {
    margin-bottom: 40px;
  }
  
  .table-of-contents .toc-heading {
    font-size: 24px;
    font-weight: bold;
    color: #003049;
  }
  
  .table-of-contents a {
    text-decoration: none;
    color: #18445f;
  }
  
  .table-of-contents ul {
    list-style: none;
    padding-left: 0;
  }
  
  .table-of-contents .heading {
    font-size: 14px;
    font-weight: bold;
    color: #003049;
    text-transform: uppercase;
    position: relative;
  }
  
  .table-of-contents .heading::before {
    content: "";
    position: absolute;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background: #219ebc;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .table-of-contents .sub-heading {
    font-size: 16px;
    padding-left: 4px;
    position: relative;
  }
  
  .table-of-contents .sub-heading::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 8px;
    background: #219ebc;
    left: -17px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .table-of-contents ul li {
    margin: 16px 0;
  }
  
  .table-of-contents .headings-container {
    padding-left: 16px;
    border-left: 1px solid #49c1e5;
  }



  /*-----------------------------------*\
 * #GO TOP
\*-----------------------------------*/

.go-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #3498db;
    color: #fff;
    font-size: 25px;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease-in-out;;
    z-index: 2;
  }
  
  .go-top-btn.active {
    opacity: 1;
    visibility: visible;
  }
  
  .go-top-btn:is(:hover, :focus) { --silver-chalice: hsl(211, 100%, 41%); }
  
  


  @media (min-width: 768px) {

    .CTA__footer{
        display: none;
      }
      
    .footer-bottom2{
        display: none;
      }
    
    .CTA{
        display: none;
    }

  }



