*,
*::after,
*::before {
  margin: 0px;
  padding: 0px;
  box-sizing: inherit; 
}

html {
  font-size: 62.5%; 
}

body {
  box-sizing: border-box;
  position: relative; 
}

body {
  font-weight: 400;
  font-family: "lato",sans-serif;
  line-height: 1.7;
  color: #777777;
  padding: 2rem 1rem 0; 
}

img {
    max-width: 100%;
}

.form_fill_margin-bottom {
  margin-bottom: .4rem;
}
.small_fonter-font {
  font-size: .6rem
}
button {
    cursor: pointer;
    transition: all .3s;
    border: none;
    background-color: transparent;

}

button:active {
    transform: translateY(.1rem);
    
}


table,th,td {
  border-collapse: collapse;
}

a {
  text-decoration: none;
}
/* mobile menu code */

.navigation {display: none}

.navigation__checkbox {
  display: none; }

.navigation__button {
  background-color: white;
  position: fixed;
  height: 3rem;
  width: 2.5rem;
  border-radius: 25%;
  right: 1rem;
  top: 1.5rem;
  z-index: 300;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  cursor: pointer; }

.navigation__background {
  width: 3rem;
  height: 3rem;
  visibility: hidden;
  background-image: radial-gradient(rgba(126, 213, 111,.9), rgba(40, 180, 133,.9));
  position: fixed;
  top: 0;
  left: 0;
  z-index: 210;
  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1); 
 overflow: scroll;}

.navigation__nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 0;
  opacity: 0;
  z-index: 225;
  transition: all .8s;
}

.navigation__list_acade {
  color: #777777;
  font-size: .9rem;
  padding: .2rem;
  display: none;
  font-family: Arial, Helvetica, sans-serif;
  overflow: scroll;
  font-weight: 700;
}

.navigation__list_about {
  color: #777777;
  font-size: .9rem;
  padding: .2rem;
  display: none;
  font-family: Arial, Helvetica, sans-serif;
  overflow: scroll;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-weight: 700;
}

.navigation__list {
  position: absolute;
  text-align: center;
  list-style-type: none;
top: 2rem }

.navigation__item {
  margin-bottom: .5rem;
  width: 100vw }

  .navigation__link {
    display: block;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 300;
    color: #ffffff;
    padding: .5rem .2rem;
    background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #ffffff 50%);
    background-size: 260%;
    transition: all .5s; 
    width: 100vw}

.navigation__link:link, .navigation__link:visited {
  display: block;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 300;
  color: #ffffff;
  padding: .5rem .2rem;
  background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #ffffff 50%);
  background-size: 260%;
  transition: all .5s; 
  width: 100vw}

.navigation__link:hover, .navigation__link:active {
  background-position: 100%;
  transform: translateX(.5rem);
  color: #55c57a; }

.navigation__checkbox:checked ~ .navigation__background {
  width: 100vw; 
  height: 200%;
  visibility: visible;
}

.navigation__checkbox:checked ~ .navigation__nav {
  width: 100%;
  opacity: 1; }

.navigation__icon {
  position: relative;
  margin: 1.5rem 0 0 .5rem; }
  .navigation__icon, .navigation__icon::before, .navigation__icon::after {
    display: inline-block;
    width: 1.5rem;
    height: 2px;
    background-color: #000000;
    position: absolute; }
  .navigation__icon::before, .navigation__icon::after {
    content: ""; }
  .navigation__icon::before {
    top: -0.9rem; }
  .navigation__icon::after {
    top: .8rem;
    left: -0.01rem; }

.navigation__button:hover .navigation__icon::after {
  top: 1rem; }

.navigation__button:hover .navigation__icon::before {
  top: -1rem; }

.navigation__checkbox:checked + .navigation__button .navigation__icon {
  background-color: transparent; }

.navigation__checkbox:checked + .navigation__button .navigation__icon::after {
  transform: rotate(45deg);
  top: 0; }

.navigation__checkbox:checked + .navigation__button .navigation__icon::before {
  transform: rotate(-45deg);
  top: 0; }

/*index page coding*/

.index_container {
    height: 100vh;
    background: url(../images/logo.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.welcome_sec {
  background-color: rgba(76, 175, 80, .9);
  text-align: center;
  padding: 1rem 1.5rem;
  font-weight: 300;
  color: #f7f7f7;
  font-family: algerian, courier;
  font-size: 1.3rem;
}

.welcome_sec:first-child {
  border-radius: 0 50% 50% 0;
  position: relative;
  top: 3.9rem
}

.welcome_sec:last-child {
  border-radius: 50% 0 0 50%;
  position: absolute;
  right: 0;
  top: 3.9rem;
}

.index_container .row:last-child {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  top: 35%;
  width: 100%;
  height: 60px;
  padding: 4rem;
}

.welcome_btn{
  padding: 1rem 2rem;
  border: rgba(76, 175, 80, .8) 2px solid;
  color: #131212;
  border-radius: 12px;
  font-weight: 600;
  transition: all .2s;
}

.welcome_btn:hover, .welcome_btn:active {
  background-color: rgba(76, 175, 80, .7);
  border: 2px solid #777777;
  color: white;
  transform: translateY(15px);
}
.row:last-child button:first-child {
  margin-left: 12rem
}

.row:last-child button:last-child {
  margin-left: 39rem
}


/*home page english and french codes.*/
#4caf50

.head_en {
  position: absolute;
    width: 100vw;
    height: 85vh;
    position: relative;
    margin-bottom: 5rem;
    
}
  .top_menu {
    background-image: linear-gradient(45deg, rgba(76, 175, 80,.8),rgba(40, 180, 133,.8));
    height: 3.5rem;
    width: 100vw;
    position: fixed;
    padding: 0;
    left: 0;
    top: 0;
    text-align: right;
    z-index: 150;
    transition: top .5s linear 0s;
    z-index: 200;
  }

  .top_menu-en {
    position: absolute;
    right: 0;
    top: 0;
    width: 75%;
    transition: all .5s linear 0s;
    backface-visibility: hidden;
    overflow: hidden;
    }
    .top_menu-en ul {
      list-style-type: none;
      margin: 0;
      padding: 0;
      overflow: hidden;
      background-color: #4caf50;
    }

    .top_menu-en ul li {
      float: left;
    }
    
    .top_menu-en ul li a {
      display: block;
      text-align: center;
      text-decoration: none;
      display: inline-block;
      font-weight: 300;
      color: #ffffff;
      padding: 1rem;
      background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #ffffff 50%);
      background-size: 260%;
      transition: all .4s;
    }
  
    .top_menu-en ul li a:hover, .top_menu-en ul li a:active {
      background-position: 100%;
      transform: translateX(1rem);
      color: #55c57a;

    }

    .top_menu-en ul li a:active {
      background-color: #4CAF50;
      outline: 0;
      transition: all .2s;
    }

    .logo_top_menue {
      width: 9%;
      position: absolute;
      left: 3rem;
      top: 0;
    }
  .logo {
      width: 20%;
      height: 20%;
      position: absolute;
      right: 2%;
      top: 3%;
  }
  .logo_contact {
    width: 60%;
    height: 60%;
    margin-left:auto;
    margin-right: auto;
    padding-top: 1rem;
    
  }
  #active {
    background-color: rgba(119, 119, 119,.8);
    outline-offset: 0;
    outline: none;
  }
  .academic {
    display: none;
    background-color: rgba(174, 194, 175, 0.9);
    color: rgb(91, 52, 165);
    padding: 1rem;
  }
  .holiday_training {
    display: block;
    background-color: rgba(174, 194, 175, 0.9);
  }
  .aboutus_sub {
    display: none;
    background-color: rgba(174, 194, 175, 0.9);
    color: rgb(91, 52, 165);
    padding: 1rem;
    width: 20rem;
    position: relative;
    left: 8.75%;

  }
  .english {
    font-size: 1rem;
    display: none;
    background-color: rgba(174, 194, 175, 0.9);
    color: rgb(91, 52, 165);
    padding: 1rem;
    width: 20rem;
    position: relative;
    left: 69%;
  }
  .french {
    font-size: 1rem;
    display: none;
    background-color: rgba(174, 194, 175, 0.9);
    color: rgb(91, 52, 165);
    padding: 1rem;
    width: 20rem;
    position: relative;
    left: 69%;
  }
  .table_row {
    font-size: .85rem;
    text-transform: uppercase;
  }
  .col_head {
    text-align: left;
    font-weight: bolder;
    background-color: #131212;
  }
  .col_cell {
    text-align: left;
    margin-right: 1rem;
    padding-left: .4rem;
  }
  .col_cell a {
    text-decoration: none;
    display: block;
  }
  .col_cell a:hover, .col_cell a:active {
    font-weight: bolder;
    background-color: #333333;
    color: white;
  }
  .col_cell a:visited {
    color: black;
  }
  .col_cell a span {
    font-size: .7rem;
  }
  
.main{
  background-color: #dbd7d7;
  padding: .5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.heading-secondary {
    font-family: algerian, courier;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 700;
    background-image: linear-gradient(to right, #7ed56f, #28b485);
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
    letter-spacing: .2rem;
    transition: all .2s; 
    }
    .heading-secondary:hover {
      transform: skewY(2deg) skewX(10deg) scale(0.8);
      text-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.2); 
    }
 

    .welcome_msg {
        position: relative;
    }

    .welcome_msg p span {
        float:left;
        width: 0.7em;
        font-size: 400%;
        font-family: algerian, courier;
        line-height: 80%;
    }

    .diretor_img {
        position: relative;
        
    }
    .director_img img {
        left: 1rem;
        box-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.2);
        margin: .5rem;
        width: 15rem;
        height: 15rem;
        float: left;
    }

    .main_cert {
      padding: .5rem;
      margin-top: 1rem;
      margin-bottom: 1rem;   
      background: -webkit-linear-gradient(rgba(76,175, 80, .9), rgb(247, 247, 247) 30%, rgba(76, 175, 80, .9));
      background: -o-linear-gradient(rgba(76,175, 80, .9), rgb(247, 247, 247) 30%, rgba(76, 175, 80, .9));
      background: -moz-linear-gradient(rgba(76,175, 80,.9), rgb(247, 247, 247) 30%, rgba(76, 175, 80, .9));
      background: linear-gradient(rgba(76,175, 80, .9), rgb(247, 247, 247) 30%, rgba(76, 175, 80, .9));
}

    }

    .sub_main {
        margin: 0 auto 1rem;
    }

    .sub_main_btn {
        background-color: #777777;
        color: white;
        border-top: 4px solid #4caf50;
        transition: all .5s;
        cursor: pointer;
        transition: all .5s ease;
    }

    .sub_main_btn:hover {
        background-color: #4caf50;
        transform: translateY(-.1rem);
        border-top: #777777;
        transform: translateY(-.1rem);
    }
    .sub_main_btn:active {
      transform: translateY(.12rem)
    }

    .sub_main_btn a {
        text-decoration: none;
    }

    .footer {
        background-color: #333;
        padding: 1rem;
        font-size: .8rem;
        color: #f7f7f7; }
        .footer__logo--box {
          display: inline-flex;
          align-content: justify;
          overflow: auto;
          margin-right: .2rem;
          margin-bottom: 1rem; }
        .footer__navigation {
          border-top: 2px solid #999;
          display: block;
        align-content: center }
        .footer__list {
          list-style-type: none;
          margin-top: 1.5rem; }
        .footer__item {
          display: inline-block; }
          .footer__item:not(:last-child) {
            margin-right: .8rem; }
        .footer__link:link, .footer__link:visited {
          text-decoration: none;
          text-transform: uppercase;
          display: inline-block;
          transition: all .2s; }
        .footer__link:hover, .footer__link:active {
          color: #55c57a;
          box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.5);
          transform: skewY(5deg) scaleX(1.2);
          backface-visibility: hidden; }
        .footer__copy-right {
          display: block;
          border-top: 2px solid #999;
          padding-top: .3rem;
          text-transform: capitalize; }

        .footer__copy-right h2 {
          font-size: 1.9rem;
        }
        .footer__copy-right h3 {
          font-size: 1.4rem;
        }

        #numba {
          font-weight: 400;
          font-size: .9rem;
        }

        .right-text {
          text-align: right;
          word-wrap: break-word;
        }
        .fb {
          position: relative;
          top: .4rem;
          width: 50px;
          height: 50px;
          border-radius: 10%;
          background-color: #000000;
          color: #ffffff;
          padding: 1.1rem;
          font-size: 2rem;
          font-weight: 400;
          text-transform: lowercase;
          font-family: Arial, Helvetica, sans-serif;
          transition: all .5s ease;
        }
        .fb:hover {
          background-color: #4caf50;
        }

    .heading-tertiary {
        font-size: 1.1rem;
        font-weight: 700;
        text-transform: uppercase; 
        } 

  .row {
    max-width: 114rem;
    margin: 0 auto;
    position: relative;
    }
    .row:not(:last-child) {
      margin-bottom: 5rem; }
    .row::after {
      content: "";
      display: table;
      clear: both; }
    .row [class^="col-"] {
      float: left; }
      .row [class^="col-"]:not(:last-child) {
        margin-right: 2rem; }
    .row .col-1-of-2 {
      width: calc((100% - 2rem) / 2);

    }
    .row .col-1-of-3 {
      width: calc((100% - 2*2rem) /3);
        }
    .row .col-2-of-3 {
      width: calc((2*(100% - 2*2rem) /3) + 6rem); }

    .col-1-of-4 {
      width: calc((100% - 3*3rem)/2); 
    }
    .row .col-2-of-4 {
      width: calc((2*(100% - 3*2rem) /4) + 6rem); }
    .row .col-3-of-4 {
      width: calc((3*(100% - 3*2rem) /4) + 2*(6rem)); }
.border_msg {
    border: #7ed56f solid 2.5px;
      padding: 0 .3rem;
      position: relative;
      border-radius: 10px 0 10px 0
    }
.director_msg_border {
    border: #7ed56f solid 1px;
    padding: 0 .3rem;
    position: relative;
}
.center-text {
    text-align: center;
    word-wrap: break-word; }
.left-text {
      text-align: left; 
    margin-bottom: .5rem;
    word-break: break-all;
  word-wrap: break-word}
      
.margin-bottom-small {
    margin-bottom: 1rem; }
      
.margin-bottom-medium {
    margin-bottom: 4rem; }
      
.margin-bottom-big {
    margin-bottom: 8rem; }
      
.margin-top-big {
    margin-top: 5rem; }
.margin-top-medium {
      margin-top: 3rem; }

/*Prospective students and other pages code*/

.head_pro {
    width: 100vw;
    position: relative;
    margin-bottom: 4.5rem;
    
    top: 5%;
    left: 51%;
    transform: translate(-50%, 8%)
}

.head_pro_text {
  font-family: Georgia, 'Times New Roman', Times, serif;
  position: absolute;
  top: 50%;
  left: 35%;
  font-size: 1.5rem;
  text-transform: uppercase;
  text-align: center;
  transform: translate(-50%, -50%);
}
.flex {
  background-color: rgba(219, 215, 215,.6);
  padding: .6rem;
  border-radius: 16px;
  width: 80vw;
}
.flex_item1 {
  font-weight: 700;
  background-image: linear-gradient(to right, purple, green);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0px 2px rgba(119, 119, 119,.2);
}
.flex_item2 {
  font-weight: 700;
  background-image: linear-gradient(to right, black, green );
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0px 2px rgba(119, 119, 119,.2);
}

.heading-secondary-1 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: 700;
  background-color: #4CAF50;
  color: white;
  display: block;
  letter-spacing: .2rem;
  transition: all .2s; 
  padding: .1rem;
  } 

.heading-secondary-1 span {
  color:yellow;
}

.heading-secondary-2 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: 700;
  color: white;
  display: block;
  letter-spacing: .2rem;
  transition: all .2s; 
  padding: .1rem;
}

.heading-secondary-2 span {
  color:yellow;
  font-size: 1rem;
}

.purple {
  color: purple;
  font-size: 1rem;
}

.holiday_training table {
  width: 100%;
  border: 1px solid white;
  overflow: hidden;
}
.holiday_training table tr td{
  padding-right: 1rem;
}

.download {
  font-size: .7rem;
  text-transform: lowercase;
  text-decoration: underline;
  transition: all .3s;
  margin-left: 1rem;
}
.download:hover {
  transform: translateY(-.1rem);
}
.download:active {
  transform: translateY(.13rem);
}

.order_list {
  padding: 1rem 1.2rem;
  color: #131212;
  font-weight: 900;
}

.order_list ol li span {
  color: #109ece;
}
.note_p {
  color: #109ece;
}
.left_margin {
  margin-left: 2rem;
}
.order_span_head {
  color: #109ece;
}
.order_span {
  color: green;
}
.copy {
  font-size: .5rem;
}
.copy1 {
  font-size: .7rem;
}

.form_borders {
  border: 1px solid rgb(76, 175, 80);
  border-radius: 5px;
  padding: 0 .5rem;
}

.fill_height {
  height: 2.8rem;
}
.submit_btn{
  padding: .2rem .6rem;
  background-color: rgba(76, 175, 80,.8);
  color: black;
  font-weight: 600;
  transition: all .2s;
  cursor: pointer;
  font-size: 1rem;
}
.submit_btn:hover {
  transform: translateY(-.1rem);
}
.submit_btn:active {
  transform: translateY(.13rem);
}
.label {
  color: green;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: bold;
}
.contact_form {
  background-image: linear-gradient(rgba(255, 255, 255, 0.5) 0%,
   rgba(255, 255, 255, 0.6) 50%), url(../images/intro12.jpg);
  background-size: cover;
 }
 br {
   margin: 0;
   padding: 0;
 }
 .small_font {
   font-size: .9rem
 }
 .bold{
   font-weight: bold;
 }
 .contact_destails {
   color: #131212;
 }
 .mail {
   padding-top: .5rem; 
 }
 option {
   width: 3.5rem;
   background-color: #4CAF50;
 }
 select {
   background-color: rgba(76, 175, 80,.6);
 }
 input[value*="SEND"] {
   font-size: 1rem;
 }
 .success {
   opacity: 0;
   display: none;
   position: fixed;
   padding: .8rem;
   right: 2rem;
   background-color: rgba(0, 128, 0, .6);
   color: white;
   top: 3rem;
   z-index: 200;
   -webkit-animation: success 5s ease 1;
  animation: success 5s ease 1;
 }
 .send_fail {
  opacity: 0;
  display: none;
  position: fixed;
  right: .8rem;
  padding: 2rem;
  background-color: rgba(240, 83, 83, .6);
  color: white;
  top: 3rem;
  z-index: 200;
  -webkit-animation: success 5s ease 1;
  animation: success 5s ease 1;
}

@-webkit-keyframes success {
  0% {
    right: 0;
    display: block;
    opacity: 0;
  }
  10% {
    right:1rem;
    display: block;
    opacity: .5;
  }
  20% {
    right: 2rem;
    display: block;
    opacity: 1;
  }
  90% {
    opacity: .5;
    display: block;
    right: 1rem;
  }

  100% {
    opacity: 0;
    display: none;
  }
}

@keyframes success {
  0% {
    right: 0;
    display: block;
    opacity: 0;
  }
  10% {
    right:1rem;
    display: block;
    opacity: .5;
  }
  20% {
    right: 2rem;
    display: block;
    opacity: 1;
  }
  90% {
    opacity: .5;
    display: block;
    right: 1rem;
  }

  100% {
    opacity: 0;
    display: none;
  }
}

 

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


  body {
    padding: 2rem 1rem 0; 
  }
  
  img {
      max-width: 100%;
  }
  
  /*index page coding*/
  .top_menu-en ul {
    right: 3rem
  }

.welcome_sec {
padding: 1rem 1.5rem;
}
.row:last-child button:first-child {
margin-left: 2rem;

}

.row:last-child button:last-child {
margin-left: calc(100% - 22rem);
}
#countrycode {
  margin-bottom: 1rem
}

}

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

 .index_container .row:last-child {
   top: 40%;
   left: 50%;
   transform: translate(-50%, -50%);
 }

  .row:last-child button:first-child {
    margin-left: 13rem;
    
    }
    
    .row:last-child button:last-child {
    margin-left: calc(100% - 45rem);
    }
  .head_pro {
    margin-bottom: 3rem
  }
  .form_borders {
    width: 100%;
  }

}

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


  body {
    padding: 2rem 1rem 0; 
  }
  
  img {
      max-width: 100%;
  }
  
  /*index page coding*/


.welcome_sec {
padding: .5rem;
}
.row:last-child button:first-child {
  margin-left: -2rem;
}

.row:last-child button:last-child {
margin-left: 45.6rem
}

.welcome_sec {
  padding: .4rem;
  font-size: 1rem;
}

.logo_top_menue {
  left: 2rem;
}

.logo {
  position: absolute;
  right: 0;
  top: 5.5%;
}
.navigation__button {
  top: .3rem; 
  }

.top_menu-en {
    display: none;
  }
.navigation {
    display: block;
  }
  .head_pro {
    top: 5%;
    left: 40%;
    transform: translate(-40%, 8%)
}

.col-2-of-3 {
  width: 100%;
  padding-left: 1rem;
}
.contact_form .margin-top-medium {
  margin-top: 0;
}
.mail {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
}

@media screen and (max-width: 900px) {
/*index page coding*/
  
  
  .welcome_sec {
    background-color: rgba(76, 175, 80,.9);
    height: 2rem;
  }
  
  .welcome_sec:first-child {
    border-radius: 0;
    top: 0;
    position: fixed;
  }
  
  .welcome_sec:last-child {
    border-radius: 0;
    position: fixed;
    right: 0;
    left:0;
    top: 2rem;
  }
  
  .index.index_container .row:last-child {
    position: relative;
    top: 40%;
    height: 100px;
    padding: 0;
    
  }
  
  .welcome_btn{
    border: rgba(76, 175, 80, .8) 2px solid;
    background-color: rgba(51, 51, 51, .9);
    color: #f3efef;
    border-radius: 7px;
    font-weight: 200;
    font-size: 1rem;
    padding: .5rem;
  }
  
  .welcome_btn:hover, .welcome_btn:active {
    background-color: rgba(76, 175, 80, .9);
    border: 2px solid #777777;
    color: white;
    transform: translateY(15px);
  }
  .row:last-child button:first-child { 
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    
  }
  .row:last-child button:last-child {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
  }

  .logo_contact {
    width: 30%;
    height: 30%;
    
  }

  .row .col-1-of-2 {
    width: 100%;
    margin-bottom: 1rem
      }
  
  .row .col-1-of-3 {
    width: 100%;
      }
  }

  @media screen and (max-width: 780px) {
    
    .row .col-1-of-4 {
      width: 100%;
        }
    .row .col-1-of-4:not(:last-child) {
      margin-bottom: 1rem;
    }
    .head_pro {
      margin-bottom: 2rem
    }
    .head_pro_text {
      font-size: 1.2rem;
    }
  }
  @media screen and (max-width: 650px){
    .logo {
      display: none;
    }
    .top_menu {
      height: 2rem;
    }
    .logo_top_menue {
      width: 13.5%;
    }
    .head_pro_text {
      font-size: .8rem;
      left:50%;
      top: 40%;
    }
    .logo_contact {
      width: 40%;
      height: 40%;
      
    }
  }
  @media screen and (max-width: 400px) {
    .logo_contact {
      width: 45%;
      height: 45%;
      
    }
    .director_img {
      width: 85%;
      height: 16rem;
    }
  }
  
  .result2020 h6{
      font-size: 2rem;
  }
  
  .result2020 {
      width: 100%;
      position: relative;
  }
  
  .result2020 img {
      width: 100%;
    }
