 /* -----------Layout section -----------------*/

body {
  background-color: #9c9f84;
  margin: 0px;
  font-family: verdana, Georgia, serif;
  font-size: 14px;
}
/*-------------------------------------------*/

/* -----------Header Section -----------------*/
#header {
  background-color: #5c755e;
  margin: 10px;
  height: 150px;
  border-radius: 5px;
  display: flex;
  box-sizing: content-box;
  padding-left: 30%;
}
#header > a img {
  height: 150px;
  text-align: center;
}
#header > #logotext {
  color: #fff;
  padding-top: 60px;
}
/*-------------------------------------------*/

/* -----------Navigation bar  Section -----------------*/
#navbar {
  background-color: #000;
  margin: 10px;
  height: 35px;
  border-radius: 5px;
  font-weight: bolder;
  font-size: larger;
}
/*----------------------------------------------------*/

/* -----------Main navigation bar section -----------------*/
.main {
  background-color: #e5e4d7;
  margin-left: 10px;
  margin-right: 320px;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  padding: 30px 100px;
  font-size: 110%;
}

.main > p {
  text-align: justify;
}
/*--------------------------------------------------------*/

/* -----------Heading section -----------------*/
h1 {
  font-size: 120%;
  color: #ce282c;
  text-align: center;
}
h2 {
  color: darkblue;
  font-size: 120%;
  text-align: center;
}
h3 {
  font-size: 250%;
  text-align: center;
  color: #e5e4d7;
  font-family: "Century Gothic", "Gill Sans", Arial, sans-serif;
  margin: 0px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translatey(-50%);
  transform: translateY(-50%);
  text-align: center;
}
/*--------------------------------------------*/

/* -----------Side bar navigation section -----------------*/
.sideright {
  background-color: #e5e4d7;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 0px;
  margin-bottom: 10px;
  border-radius: 5px;
  padding: 20px;
  font-size: 105%;
  float: right;
  width: 260px;
  clear: right;
}

/*----------------------------------------------------------*/

/* -----------Image Side section -----------------*/

.imagesidebar {
  width: 296px;
  float: right;
  border-radius: 5px;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 0;
  margin-bottom: 10px;
  clear: right;
  opacity: 1;
  transition: opacity 0.5s easy-in-out;
}

.imagesidebar:hover {
  opacity: 0.4;
}

/*--------------------------------------------------*/

/* -----------Footer section -----------------*/

#footer {
  background-color: #5c755e;
  margin: 10px;
  height: 100px;
  clear: both;
  border-radius: 5px;
  color: #efe5d0;
  padding: 15px;
  font-size: 90%;
  text-align: center;
  font-size: large;
}

#footer ul {
  padding: 5px;
  list-style-type: none;
  text-align: center;
  margin: 10px;
  border-radius: 5px;
}

#footer ul li {
  display: inline;
  font-size: 120%;
}

#footer ul li a {
  text-decoration: none;
  font-family: Arial;
  padding: 0.2em 1em;
  color: #fff;
  font-size: large;
}

#footer ul li a:hover {
  color: #000;
  background-color: #fff;
  border-radius: 5px;
}

/* -----------Navigation section -----------------*/
#navbar div {
  padding: 5px;
  list-style-type: none;
  text-align: center;
  background-color: #000;
}

#navbar div p {
  display: inline;
}
#navbar div p a {
  text-decoration: none;
  font-family: arial;
  padding: 0.2em 1em;
  color: #fff;
  background-color: #000;
}
#navbar div p a:current {
  background-color: chartreuse;
}
#navbar div p a:hover,
.dropdown:hover .dropdown-content {
  color: #000;
  background-color: #fff;
  border-radius: 5px;
}
/*------------------------------------------*/
.about {
  background-color: #e5e4d7;
  margin-left: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  padding: 30px 100px;
  font-size: 110%;
}

#iframe {
  text-align: center;
}
.partners img {
  padding: 8px;
}
/**************** PICTURES ANIMATION**************/
.image {
  height: 200px;
  width: 300px;
  transition-property: height, width;
  transition-duration: 2s, 2s;
}
.image img {
  height: inherit;
  width: inherit;
}
.image:hover {
  height: 300px;
  width: 400px;
}
#logotext {
  background: linear-gradient(
    120deg,
    #f4c117 20.69%,
    #e64a8d 50.19%,
    #3eacd8 79.69%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 200px) and (max-width: 600px) {
  body {
    display: grid;
  }
  #header,
  #navbar,
  .sideright,
  .main,
  .imagesidebar,
  #footer {
    display: grid;
    width: 100%;
    margin: 5px 0px;
    float: none;
    padding: 0px 5px;
  }
  #navbar {
    display: flex;
    height: auto;
  }
  #header {
    display: flex;
    padding-left: 0px;
  }
  #header a > img {
    margin-left: 30px;
  }
  #logotext {
    padding-top: 30px;
    display: grid;
    text-justify: auto;
  }
  .main {
    margin: 5px;
  }
}
