@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Pacifico&display=swap");
@import url(https://fonts.googleapis.com/css?family=Montserrat:700);

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.red {background-color: #ff0000;}
body {
  font-family: Arial, Helvetica, sans-serif;
}
a {
  text-decoration: none;
  transition: 0.5s;
}

/*header*/
header {
  background: #212121;
  color: white;
  height: 90px;
}
header h2 {
  margin-top: 20px;
  font-family: "Arial";
  margin-left: 40px;
  font-size: 50px;
}

header .navbar {
  display: flex;
  align-items: center;
  height: 10vh;
  
}

header a {
  color: rgb(232, 233, 240);
  font-size: 15px;
  
}

header nav {
  flex: 1;
  text-align: right;
  margin-right: 40px;
}

header nav ul {
  display: inline-block;
  list-style: none;
}

header nav ul li {
  display: inline-block;
  margin: 15px;
  transition: 0.5s;
 
}
 /* header nav ul li.active{
  
  padding: 1px 10px;
  border-radius: 5px;
  background: #f5cb22;
}  */


header nav li {
  padding: 1px 10px;
  border-radius: 5px;
  transition: 0.5s;
  cursor: pointer;
  background: green;

}

header nav li:hover {
  /* background: #0e6c66; */
  background: #f5cb22;
  padding: 1px 10px;
  border-radius: 5px;
  outline-color: transparent;
  
}




header .navbar span {
  text-align: center;
  margin-left: 20px;
  color: white;
  font-size: 25px;
  display: none;
}

@media only screen and (max-width: 768px) {
  header nav ul {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.253);
    overflow: hidden;
    transition: max-height 0.5s;
    text-align: center;
  }

  header nav ul li {
    display: block;
    margin: 50px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  header .navbar span {
    color: white;
    display: block;
    cursor: pointer;
  }
}

/*header*/
/*section title*/

.principale {
  margin-top: 50px;
}
.tit_le {
  width: 100%;
  height: 500px;
  /* background-color: #f5cb22;; */
  padding: 50px 50px 50px 50px;
  text-align: center;
}
.tit_le #tit {
  margin-top: 100px;
}

#back {
  margin-top: 150px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: calc(0.1em + 3vw);
  text-transform: uppercase;
  background-image: linear-gradient(
    #cedbe9 0%,
    #aabbde 17%,
    #6170c7 50%,
    #3a76c4 51%,
    #4169d6 59%,
    #2266ff 100%
  );
  background-clip: border-box;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /****************************animation title********************/
  text-transform: uppercase;
  background-image: linear-gradient(
    -225deg,
    #231557 0%,
    #44107a 29%,
    #ff1361 67%,
    #fff800 100%
  );
  background-size: auto auto;
  
  background-size: 200% auto;
  color: #fff;
  
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
  animation: textclip 2s linear infinite;
  display: inline-block;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}

/* @media only screen and (max-width:768px) {
    #back{
        justify-content: center;
    }
} */
/*section title*/

/*presentation*/
.presentation {
  min-height: 550px;
  /* background-color: #aaddff; */
  background: rgb(9, 79, 121);
  background: linear-gradient(
    0deg,
    rgba(9, 79, 121, 0.927608543417367) 0%,
    rgba(178, 216, 222, 1) 74%,
    rgba(255, 255, 255, 1) 100%
  );
  margin-top: 20px;
}
.container {
  max-width: 80%;
  margin: auto;
  margin-top: 0;
  position: relative;
  width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.container .box {
  position: relative;
  width: 280px;
  height: 400px;
  margin: 20px 0;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 10%;
}

.container .box .imgBx {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  clip-path: circle(400px at center 100px);
  transition: 0.4s;
  transition-delay: 0.1s;
}

.container .box:hover .imgBx {
  clip-path: circle(80px at center 100px);
  transition-delay: tranform 0s;
}

.container .box .imgBx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* transition: transform 0.5s ease-in-out; */
}

.container .box .content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 55%;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}

.container .box .content h2 {
  margin: 0;
  padding: 0;
}

.container .box .content a {
  text-decoration: none;
  background: #000;
  color: #fff;
  padding: 5px;
  display: inline-block;
}

.container .box .content h2,
.container .box .content p,
.container .box .content a {
  opacity: 0;
  transition: 0.5s;
  transform: translateY(20px);
}

.container .box:hover .content h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.container .box:hover .content p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

.container .box:hover .content a {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.9s;
}

/*presentation*/

/*info*/
.info {
  display: grid;
  grid-template-columns: 50% 50%;
  margin-top: 150px;
  height: 460px;
}
.info_ {
  margin-top: 180px;
}
.cont {
  height: 250px;
  text-align: center;
  margin-left: 50px;
  margin-right: 50px;
  padding: 0;
  margin-top: 0;
}
.cont #tit1 {
  font-size: 60px;
  margin-top: 100px;
  font-family: "Titillium Web", sans-serif;
  font-weight: bold;
}
.cont_ {
  text-align: center;
  margin-top: 80px;
  font-family: "Titillium Web", sans-serif;
  font-weight: bold;
  font-size: 30px;
  margin-left: 50px;
  align-items: center;
}

.cont1 {
  padding: 16px;
  height: 550px;
  text-align: center;
  margin-left: 70px;
  margin-right: 50px;
}
.cont1 #tit2 {
  font-size: 50px;
  margin-top: 80px;
  font-family: "Titillium Web", sans-serif;
  font-weight: bold;
  margin-left: 50px;
}
.cont2 {
  text-align: center;
  margin-top: 50px;
  font-family: "Titillium Web", sans-serif;
  font-weight: bold;
  font-size: 30px;
  margin-left: 50px;
}

.cont3 img {
  width: 50%;
  height: 50%;
  padding: 0;
}

@media only screen and (max-width: 768px) {
  .cont #tit1 {
    font-size: 10px;
    align-items: center;
  }

  .cont_ {
    font-size: 10px;
    align-items: center;
    display: inline-block;
  }
  .cont1 #tit2 {
    font-size: 10px;
    align-items: center;
  }

  .cont2 {
    font-size: 10px;
    align-items: center;
    display: inline-block;
  }
  .cont3 img {
    margin: 0;
    margin-top: 90px;
  }
}
/*info*/
/*footer*/
#footer {
  display: flex;
  background-color: rgb(3, 3, 3);
  margin-top: 260px;
  justify-content: space-around;
  height: 180px;
}

#footer > div {
  background-color: #030303;
  margin: 10px;
  font-size: 30px;
}
#footer .right {
  margin-top: 32px;
}

footer .left {
  font-family: "Oswald", sans-serif;
  color: #ffffff;
  font-size: 25px;
}

footer .right {
  font-family: "Oswald", sans-serif;
  color: #ffffff;
  font-size: 25px;
}
.center_cms {
  width: 50%;
  height: 25px;
}

#img_footer {
  margin-top: 50px;
}

@media only screen and (max-width: 768px) {
}
/***********************************************************************footer*/
/*legal; section*/
.legal {
  padding: 25px;
  text-align: center;
}
/*legal; section*/
/*other section*/
.more-info {
  width: 100%;
}
.threeholder {
  position: relative;
  margin-top: 0px;
  width: 1200px;
  height: 480px;
  margin-left: auto;
  margin-right: auto;
}
.threeone {
  display: inline-block;
  width: 33.33333333333%;
  min-height: 110%;
  background: #2b5ac0;
  border-bottom: 15px solid #000000;
  text-align: center;
  transition: all 0.25s;
}
.threetwo {
  display: inline-block;
  width: 33.333333333%;
  min-height: 110%;
  background: #2b5ac0;
  border-bottom: 15px solid #000000;
  transition: all 0.25s;
}
.threethree {
  display: inline-block;
  width: 33.333333333%;
  min-height: 110%;
  background: #2b5ac0;
  border-bottom: 15px solid #000000;
  transition: all 0.25s;
}
.threeone:hover {
  background: #f5cb22;
}
.threeone:hover .circlepic {
  background: #5c5c5c;
}
.threeone:hover .circleborder {
  background: #333333;
}
.threeone:hover svg {
  fill: #f5cb22;
}
.threeholder h4 {
  width: 200px;
  text-align: center;
  font-size: 23px;
  margin-left: -55px;
  font-weight: bold;
  margin-top: 75px;
  text-align: center;
  color: white;
}
.threeholder p {
  display: inline-block;
  width: 200px;
  text-align: center;
  margin-left: -55px;
  margin-top: 20px;
  font-size: 15px;
  color: #fffafa;
  letter-spacing: 1px;
}
.threeone:hover h4 {
  color: black;
}
.threetwo:hover h4 {
  color: black;
}
.threethree:hover h4 {
  color: black;
}
.threeone:hover p {
  color: black;
}
.threetwo:hover p {
  color: black;
}
.threethree:hover p {
  color: black;
}
.threeone:hover svg,
.threetwo:hover svg,
.threethree:hover svg {
  transition: all 0.65s;
  transform: rotateY(360deg);
}
.threetwo:hover {
  background: #f5cb22;
}
.threetwo:hover .circleborder {
  background: #333333;
}
.threetwo:hover svg {
  fill: #f5cb22;
}
.threethree:hover {
  background: #f5cb22;
}
.threethree:hover .circleborder {
  background: #333333;
}
.threethree:hover svg {
  fill: #f5cb22;
}
.circleborder {
  position: absolute;
  top: 80px;
  width: 90px;
  height: 90px;
  background: #2b5ac0;
  margin-left: 160.33333px;
  border-radius: 50%;
}
.circlepic {
  position: absolute;
  top: 40px;
  margin-top: 30px;
  width: 110px;
  height: 110px;
  background: #ffffff;
  margin-left: 150.33333px;
  border-radius: 50%;
}
@media only screen and (min-device-width: 768px) {
  .threeholder {
    margin-top: 300px;
  }
}
/*other section*/
/* responsive********************************** */
@media only screen and (min-device-width: 768px) and (max-device-width: 1824px) {
  header nav ul {
    position: absolute;
    top: 140px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.253);
    overflow: hidden;
    transition: max-height 0.5s;
    text-align: center;
  }

  header nav ul li {
    display: block;
    margin: 50px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  header .navbar span {
    color: white;
    display: block;
    cursor: pointer;
  }
  header {
    height: auto;
  }
  .grid {
    grid-template-columns: repeat(1, 1fr);
  }
  #back {
    /* font-size: calc(1em + 2vw); */
    justify-content: center;
    font-size: 85px;
  }
  .presentation {
    display: flex;
    width: 100%;
    height: 1000px;
    margin-top: 150px;
  }
  .cont {
    width: 80%;
    height: 300px;
    align-items: center;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
  }

  .threeholder {
    display: none;
  }
  .info {
    width: 200%;
    height: 15px;
    margin: 0;
    margin-top: 100px;
  }
  .cont #tit1 {
    margin: 0;
  }
  .cont_ {
    margin: 0;
  }
  .cont1 #tit2 {
    margin: 0;
  }
  .cont2 {
    margin: 0;
  }
  .info img {
    display: none;
  }

  #footer {
    margin-top: 760px;
  }
  #footer span {
    font-size: 15px;
  }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  #back {
    justify-content: center;
  }
  header nav ul {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.253);
    overflow: hidden;
    transition: max-height 0.5s;
    text-align: center;
  }

  header nav ul li {
    display: block;
    margin: 50px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  header .navbar span {
    color: white;
    display: block;
    cursor: pointer;
  }
  header {
    height: auto;
  }
  header a {
    color: rgb(79, 79, 202);
  }
  .tit_le {
    padding: 0;
  }
  .grid {
    grid-template-columns: repeat(1, 1fr);
  }
  #back {
    font-size: 45px;
  }

  .presentation {
    width: 100%;
    height: 1800px;
  }

  .cont {
    width: 100%;
    height: 800px;
    margin-left: 0;
    margin-top: 50px;
    text-align: center;
  }
  .threeholder {
    display: none;
  }
  .info {
    width: 200%;
    height: 15px;
    margin: 0;
  }
  .info img {
    display: none;
  }
  .cont #tit1 {
    margin-left: 0;
  }
  .cont1 {
    width: 100%;
    height: 1000px;
    margin-left: 0;
    margin-top: 50px;
    text-align: center;
  }
  .cont1 #tit2 {
    margin-left: 0;
  }

  .cont2 {
    margin-left: 0;
  }
  .cont2 p {
    font-size: 25px;
  }
  .hide {
    display: none;
  }
  .cont_ {
    margin-left: 0;
  }

  .threeholder {
    display: none;
  }

  #footer {
    width: 100%;
    height: 250px;
    margin-top: 960px;
  }

  #footer > div {
    font-size: 18px;
  }
  #footer img {
    display: none;
  }
  
  
}
