@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&family=Prompt:wght@100&display=swap');

:root{
  --primarygold:rgb(209, 173, 115);
  --primary-background: black;
  --secondary-backround: #fff;
  --grey-background: rgb(224, 223, 223);
  

}
h1{
 font-size: larger;
 text-transform: uppercase;
 color: var(--primarygold);
 font-size: 5rem;
 margin-top: 2rem;
 margin-bottom: 2rem;
}
p{
  font-size: 1.2rem;
  color: var(--primary-background);
}

body {
  padding: 0;
  margin: 0 ;
  font-family: 'Open Sans', sans-serif; 
  font-family: 'Prompt', sans-serif;
}

.hero-img{
 margin-top: 5rem;
 
}

.hero-img img{
  text-align: center;
  margin-left: 35%;
  margin-right: 35%;
}

nav{
  background-color: var(--primary-background);
  display: flex;
  justify-content: space-between;
  padding: 1rem 3rem;
  transition: width 0.5s ease, background-color 0.5s ease;
 
}

.nav-item ul{
  display: flex;
}

.nav-item ul li a{
  color: var(--secondary-backround);
  font-size: 1.2rem;
  padding-right: 1.3rem;
  text-decoration: none;
  padding-bottom: 14px;
  color: var(--primarygold);
}

.nav-item ul li a:hover{
  color: var(--primarygold);
  text-decoration:  overline var(--primarygold) 2px;
  text-decoration-line: calc(100% - 60px);
}

.section{
  margin-top: 8rem;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
  padding-bottom: 15rem;
}

.container{
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.title{
  text-align: center;
}

.section_cols{
  display: flex;
  justify-content: space-around;
}

.section_col1{
  /* margin-top: 8rem; */
  width: 40%;
  padding-right: 1rem;
}

.section_col2{
  margin-top: 5rem;
  padding-left: 5rem;
  padding-right: 5rem;
}

.section_col2 img{
  width: 20rem;
}

.call-content{
  text-align: center;
  margin-top: 6rem;
}

.call-button{
  background-color: var(--primarygold);
  border-radius: 5px;
  border: none;
}

.call-button h1{
  color: var(--secondary-backround);
  padding-left: 2rem;
  padding-right: 2rem;
  font-size: 3rem;
  
}

.black_section{
    display: inline-block;
    width: 100%;
}

.diagonal-black-section{
  width: 100%;
  height: 75rem; 
  z-index: -1;
  clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 90%);
  background-color: var(--primary-background);
}

.black_section .title{
  margin-top: 10rem; 
}

/* Service */
.serv-card{
  width: 25rem;
  height: 25rem;
 
}

.serv-card .icon i {
  font-size: 20rem;
  margin-top: 2rem;
}

i .svg-inline--fa {
 margin-left: auto;
 margin-right: auto;
}

.svg-inline--fa {
  padding-top: 2rem;
  font-size: 5rem;
  text-align: center;
  padding-left: 40%;
  color: var(--primarygold);
}

.serv-text h3{
  color: var(--primarygold);
  padding: 2rem;
  text-align: center;

}

/* ------- Processessuce --------- */

.cols-processes{
display: flex;
padding: 3rem 10rem 3rem 10rem;
}

.col-logo .icon{
  border: 3px solid var(--primarygold) ;
  padding: 2rem 1rem 2rem 4rem; 
  /* border-radius: 50%; */
}

.col-pros-text{
  padding: 1rem;
  margin-left: 5rem;
  background-color: var(--grey-background);
}

h4.cours_title{
 color: var(--primarygold);
}

.cours_section{
  display: inline-block;
  width: 100%;
}
.cours_section{
    width: 100%;
    height: 105rem; 
    z-index: -1;
    clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 90%);
    background-color: var(--primary-background);
  }

  .cours_section .title{
    margin-top: 10rem; 
  }
  
  .diagonal-cours-section{
    width: 100%;
  height: 105rem;
  z-index: -1;
  clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 90%);
  background-color: var(--primary-background);
}

.demi-cols{
  display: flex;
  margin: 3rem;
}
.demi-col1 img{
  width: 30rem;
  margin-right: 5rem;
}

footer{
  background-color: var(--primary-background);
  height: 2rem;
  bottom: 0px;
}

/* -----------Portable------------- */
@media only screen and (max-width: 600px) {
  .section_cols {
    display:block;
    padding-left: 1.5rem;
    }
    .call-content {
    text-align: center;
    margin-top: 6rem;
    }
    .call-button {
    border-radius: 5px;
    }
    .black_section {
    display: block;
    width: 100%;
    }
    .diagonal-black-section {
    height: 75rem;
    clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 90%);
    height: 130rem;
    }
    .cols-processes {
    display: block;
    padding: 3rem 10rem 3rem 10rem;
    }
    .container {
    width: 98%;
    }
    .nav-item ul {
    display: block;
    }

    .col-pros-text {
      padding: 0.2rem;
      margin-left:0;
      background-color: var(--grey-background);
      }

    .cols-processes {
        padding: 0.5px;
      }

      p {
        font-size: 1rem;
        }
    .section_col1 {
        width: 80%;
        }
    .nav-item ul li a {
        padding-right: 0.2rem;
        padding-bottom: 1rem;
        } 
    .demi-cols {
        display: block;
        }
    .demi-col1 img {
          width: 15rem;
          margin-right: 5rem;
        }
    .section_col2 {
          margin-top: .5rem;
          padding-left: .5rem;
          padding-right: .5rem;
          }
    .section_col2 img {
      width: 13rem;
    }

    .section_col2 img {
      width: 13rem;
      }
    
    h1 {
        font-size: 3rem;
        }

    .serv-text h3 {
        padding: 0rem;
        text-align: left;
        padding-right: 2rem;
        }

    .serv-card {
          width: 25rem;
          height: 25rem;
        }

    .section {
          clip-path: polygon(0);
          }

    .black_section .title {
          margin-top: 16rem;
          }
}




 