html,body{height:100%; zoom: 95%}
body{background: #e0e0e0; margin: 0;
padding: 0;
font-family: sans-serif;}

/*-----------------------------
General
-----------------------------*/

.image__pannel{
  width: 500px;
}

@media (max-width: 820px){
  .image__pannel{
    width: 200px;
  }
}

.link__download{
  color: black;
}

.link__download:hover{
  color: #e63222;
}

.image{
  border-radius: 50px;
  margin-top: 40px;
  width: 255px;
  height: 290px;
  box-shadow:  20px 20px 30px #949494;
}
.image img{
  width: 255px;
  height: 290px;
}

.table-container {
  width: 100%;
  overflow-x: auto
}

.bottom__bar{
  border-bottom: 7px solid #e63222;
  box-shadow:  20px 20px 60px #949494,
	             -20px -20px 60px #ffffff;
}

.container{
  margin: 10px auto;
  width: 600px;
  padding: 0px 10px;
}

.container h1{
  text-align: center;
  font-size: 40px;
  padding: 10px;
}

.container .top{
  width: 100%;
}

.container .top img{
  width: 100%;
  display: none;
  border-radius: 5%;
}

.container .bottom{
  display: flex;
  padding: 10px 0px;
  justify-content: space-between;
}

.container .bottom label{
  width: 15%;
  cursor: pointer;
}

.container .bottom label img{
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

#image-1:checked ~ .container .top .image-1{
  display: block;
}

#image-2:checked ~ .container .top .image-2{
  display: block;
}

#image-3:checked ~ .container .top .image-3{
  display: block;
}

#image-4:checked ~ .container .top .image-4{
  display: block;
}

input{
  visibility: hidden;
  position: absolute;
}

@media (max-width: 576px){
  .container{
    width: 90%;
  }
  .container h1{
    font-size: 7vw;
  }
}


/*-----------------------------
Popup
-----------------------------*/

.popup .overlay {
  position:fixed;
  top:0px;
  left:0px;
  width:100vw;
  height:100vh;
  background:rgba(0,0,0,0.7);
  z-index:1;
  display:none;
}

.popup .content {
  position:fixed;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%) scale(0);
  background:#fff;
  width:700px;
  height:300px;
  z-index:2;
  text-align:center;
  padding:20px;
  box-sizing:border-box;
  font-family:"Open Sans",sans-serif;
}

.popup .close-btn {
  cursor:pointer;
  position:absolute;
  right:20px;
  top:20px;
  width:30px;
  height:30px;
  background:#222;
  color:#fff;
  font-size:25px;
  font-weight:600;
  line-height:30px;
  text-align:center;
  border-radius:50%;
}

.popup.active .overlay {
  display:block;
}

.popup.active .content {
  transition:all 300ms ease-in-out;
  transform:translate(-50%,-50%) scale(1);
}

.popup2 .overlay {
  position:fixed;
  top:0px;
  left:0px;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.7);
  z-index:1;
  display:none;
}

.popup2 .content {
  position:fixed;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%) scale(0);
  background:#fff;
  width:1000px;
  height:375px;
  z-index:2;
  text-align:center;
  padding:20px;
  box-sizing:border-box;
  font-family:"Open Sans",sans-serif;
}

.popup2 .close-btn {
  cursor:pointer;
  position:absolute;
  right:20px;
  top:20px;
  width:30px;
  height:30px;
  background:#222;
  color:#fff;
  font-size:25px;
  font-weight:600;
  line-height:30px;
  text-align:center;
  border-radius:50%;
}

.popup2.active .overlay {
  display:block;
}

.popup2.active .content {
  transition:all 300ms ease-in-out;
  transform:translate(-50%,-50%) scale(1);
}

.Privacy__Policy{
	text-decoration: underline;
}
.Privacy__Policy:hover{
	cursor: pointer;
}

/*-----------------------------
Banner
-----------------------------*/

.banner{
  margin:0 1.5%;
	margin-top: 20px;
	background: #e0e0e0;
	box-shadow:  20px 20px 60px #949494,
	             -20px -20px 60px #ffffff;
  width: 1200px;
  height: 20vh;
  border-radius: 50px;
}
.banner__image{width:30%; float:left;height:100%;
	background-image: url("assets/img/1.jpg");
	background-size: cover;
	-o-background-size: cover;
	-moz-background-size: cover;
	background-position: center center;
}

.banner__copy{width:70%; height:100%;display: table;}
.banner__copy__text{display: table-cell; vertical-align: middle;padding:30px;}

.banner__copy__text h4{font-size: 20px;margin: 5px 0}
.banner__copy__text h3{font-size: 36px;margin-bottom:0;}

/*-----------------------------
Transition page
-----------------------------*/

.transition-fade {
  transition: 0.4s;
  opacity: 1;
  transform: translateY(0);
}

html.is-animating .transition-fade {
  opacity: 0;
  transform: translateY(50px);
}

/*-----------------------------
Slider image
-----------------------------*/

.slider{
  width: 800px;
  height: 500px;
  border-radius: 50px;
  margin-top: 40px;
  overflow: hidden;
  box-shadow:  20px 20px 30px #949494;
}

.slides{
  width: 500%;
  height: 500px;
  display: flex;
}

.slides input{
  display: none;
}

.slide{
  width: 20%;
  transition: 2s;
}

.slide img{
  width: 800px;
  height: 500px;
}

/*css for manual slide navigation*/

.navigation-manual{
  position: absolute;
  width: 800px;
  margin-top: -40px;
  display: flex;
  justify-content: center;
}

.manual-btn{
  border: 2px solid #e63222;
  padding: 5px;
  border-radius: 10px;
  cursor: pointer;
  transition: 1s;
}

.manual-btn:not(:last-child){
  margin-right: 40px;
}

.manual-btn:hover{
  background: #e63222;
}

#radio1:checked ~ .first{
  margin-left: 0;
}

#radio2:checked ~ .first{
  margin-left: -20%;
}

#radio3:checked ~ .first{
  margin-left: -40%;
}

#radio4:checked ~ .first{
  margin-left: -60%;
}

/*css for automatic navigation*/

.navigation-auto{
  position: absolute;
  display: flex;
  width: 800px;
  justify-content: center;
  margin-top: 460px;
}

.navigation-auto div{
  border: 2px solid #e63222;
  padding: 5px;
  border-radius: 10px;
  transition: 1s;
}

.navigation-auto div:not(:last-child){
  margin-right: 40px;
}

#radio1:checked ~ .navigation-auto .auto-btn1{
  background: #e63222;
}

#radio2:checked ~ .navigation-auto .auto-btn2{
  background: #e63222;
}

#radio3:checked ~ .navigation-auto .auto-btn3{
  background: #e63222;
}

#radio4:checked ~ .navigation-auto .auto-btn4{
  background: #e63222;
}

@media (max-width: 820px){
  .slider{
    width: 600px;
    height: 375px;
  }

  .slide img{
    width: 600px;
    height: 375px;
  }

  .navigation-manual{
    display: none;
  }

  .manual-btn{
    display: none;
  }

  .navigation-auto{
    display: none;
  }

  .navigation-auto div{
    display: none;
  }
}

@media (max-width: 620px){
  .slider{
    width: 400px;
    height: 250px;
  }

  .slide img{
    width: 400px;
    height: 250px;
  }
}

@media (max-width: 420px){
  .slider{
    width: 320px;
    height: 200px;
  }

  .slide img{
    width: 320px;
    height: 200px;
  }
}

/*-----------------------------
Slider image
-----------------------------*/

.img-slider{
  position: relative;
  width: 800px;
  height: 500px;
  margin: 10px;
  margin-top: 40px;
  background: #2d3436;
  border-radius: 50px;
  box-shadow:  20px 20px 30px #949494;
}

.img-slider .slide{
  position: absolute;
  width: 100%;
  clip-path: circle(0% at 0 50%);
}

.img-slider .slide.active{
  clip-path: circle(150% at 0 50%);
  transition: 2s;
  transition-property: clip-path;
}

.img-slider .slide img{
  z-index: 1;
  width: 100%;
  height: 500px;
  border-radius: 5px;
  border-radius: 50px;
}

.img-slider .slide .info{
  position: absolute;
  top: 0;
  padding: 15px 30px;
}

.img-slider .slide .info h2{
  color: #fff;
  font-size: 45px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2px;
}

.img-slider .slide .info p{
  color: #fff;
  background: rgba(0, 0, 0, 0.1);
  font-size: 16px;
  width: 60%;
  padding: 10px;
  border-radius: 4px;
}

.img-slider .navigation{
  z-index: 2;
  position: absolute;
  display: flex;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.img-slider .navigation .btn{
  background: rgba(255, 255, 255, 0.5);
  width: 12px;
  height: 12px;
  margin: 10px;
  border-radius: 50%;
  cursor: pointer;
}

.img-slider .navigation .btn.active{
  background: #e63222;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 820px){
  .img-slider{
    width: 600px;
    height: 375px;
  }

  .img-slider .slide img{
    width: 600px;
    height: 375px;
  }

  .img-slider .slide .info{
    padding: 10px 25px;
  }

  .img-slider .slide .info h2{
    font-size: 35px;
  }

  .img-slider .slide .info p{
    width: 70%;
    font-size: 15px;
  }

  .img-slider .navigation{
    bottom: 25px;
  }

  .img-slider .navigation .btn{
    width: 10px;
    height: 10px;
    margin: 8px;
  }
}

@media (max-width: 620px){
  .img-slider{
    width: 400px;
    height: 250px;
  }

  .img-slider .slide img{
    width: 400px;
    height: 250px;
  }

  .img-slider .slide .info{
    padding: 10px 20px;
  }

  .img-slider .slide .info h2{
    font-size: 30px;
  }

  .img-slider .slide .info p{
    width: 80%;
    font-size: 13px;
  }

  .img-slider .navigation{
    bottom: 15px;
  }

  .img-slider .navigation .btn{
    width: 8px;
    height: 8px;
    margin: 6px;
  }
}

@media (max-width: 420px){
  .img-slider{
    width: 320px;
    height: 200px;
  }

  .img-slider .slide img{
    width: 320px;
    height: 200px;
  }

  .img-slider .slide .info{
    padding: 5px 10px;
  }

  .img-slider .slide .info h2{
    font-size: 25px;
  }

  .img-slider .slide .info p{
    width: 90%;
    font-size: 11px;
  }

  .img-slider .navigation{
    bottom: 10px;
  }
}
/*-----------------------------
Conatct
-----------------------------*/
.section__contact{
  max-width: 1200px;
  margin: 40px auto;
  background: #fff;
  border-radius: 50px;
  background: #e0e0e0;
  box-shadow:  20px 20px 60px #bebebe,
               -20px -20px 60px #ffffff;
}

.contact{
  float: left;
  margin:5% 5%;
  width: 30%;
}

.maps{
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  border-radius: 50px;
  box-shadow:  20px 20px 60px #bebebe,
               -20px -20px 60px #ffffff;
}

.contact__h1{
  color: red;
  font-size: 25px
}

.contact__h2{
  color: green;
  font-size: 20px
}

.contact__txt a{
  color: #3498db;
  font-weight: bold;
}

.contact__txt{
  width: 450px
}

.contact__txt p{
  font-size: 18px
}

@media (max-width: 820px){
  .section__contact{
    margin-left: 3.5%;
    margin-right: 3.5%
  }
  .contact{
    width: 90%;
    margin: 0 5%;
    float:none;
    margin-top: 40px;
  }

  .maps{
    width: 100%;
  }

  .no__maps{
    width: 100%;
  }

  .contact__txt{
    width: 100%
  }

  .contact__txt img{
    margin-top: 20px;
  }
}

/*-----------------------------
Cards
-----------------------------*/

.cards{max-width: 1200px; margin: 40px auto;}
.card{
	border-radius: 50px;
	width: 30%;
	float: left;
	margin:0 1.5%;
	margin-top: 20px;
	background: #e0e0e0;
	box-shadow:  20px 20px 60px #949494,
	             -20px -20px 60px #ffffff;
}
.card2{
	border-radius: 50px;
	width: 30%;
	float: left;
	margin:0 1.5%;
	margin-top: 20px;
	background: #fff;
	box-shadow:  20px 20px 60px #949494,
	             -20px -20px 60px #ffffff;
}
.card__team{width: 30%; margin:0 1.5%; background: #fff;float:left; border-radius: 15px 50px 30px 5px; margin-top: 40px; margin-left: 425px}
.card__news{width: 30%; margin:0 1.5%; background: #fff;float:left; border-radius: 15px 50px 30px 5px; margin-top: 40px; margin-left: 225px}
.card__image{width:100%; height: auto; border-radius: 50px;}
.card__copy{padding: 5px 20px;}
.card__copy__team{padding: 5px 20px; text-align: center;}
.card__copy__team h3{padding-top: 10px; padding-bottom: 5px}
.card__copy__team p{padding-bottom: 20px}
.card__copy h4{padding-top: 20px; padding-bottom: 15px}
.card__copy h3{margin-bottom:0; font-size: 20px}
.card__copy h2{margin-top: 10px}
.card__link{display: block;}
.card__link-text__news{display: block;}
.card__link-text__news a{text-decoration: none; color: #3498db}
.card__link-text__news a:hover{text-decoration: underline;}
.card__link-text {display: block;}
.card__link-text a{text-decoration: none; color: #000}
.card__link-text a:hover{text-decoration: underline; color: #3498db}
.card__link_text {display: block;}
.card__link_text a{color: #3498db; font-size: 10px;}

@media (max-width: 820px){
  .card{width: 70%; margin: 0 15%; float:none; margin-top: 40px}
  .card2{width: 70%; margin: 0 15%; float:none; margin-top: 40px}
}

/*-----------------------------
Page build
-----------------------------*/
.panel{}
.panel__copy{max-width: 1000px; margin: 0px auto; margin-top: 40px; margin-bottom: 40px; background: #e0e0e0; padding:20px 40px;position: relative; z-index: 1; border-radius: 50px;box-shadow:  20px 20px 60px #949494,
             -20px -20px 60px #ffffff;}
.panel__copy__2{max-width: 1200px; margin: 0px auto; margin-top: 40px; margin-bottom: 40px; background: #fff; padding:20px 40px;position: relative; z-index: 1; border-radius: 50px;box-shadow:  20px 20px 60px #949494,
             -20px -20px 60px #ffffff;}
.panel__copy__meta{font-weight: bold;font-size: 16px;	}
.panel__copy__title{font-size: 32px;}
.panel__copy p1{padding: 15px 0px 15px; color: #e71837; display: flex; justify-content: center; align-items: center; font-weight: bold; font-style: oblique; font-size: 22px;}
.panel pt{padding: 15px 0px 15px; color: #000; display: flex; justify-content: center; align-items: center; font-weight: bold; font-style: oblique; font-size: 22px;}
.panel__copy pt{padding: 15px 0px 15px; color: #000; display: flex; justify-content: center; align-items: center; font-weight: bold; font-style: oblique; font-size: 22px;}
.panel__copy p{padding: 15px 0px 15px; color: #57606f; font-size: 18px}
.panel__copy i{color: #000; display: flex; justify-content: center; align-items: center; padding: 0px 0px 55px}
.panel__copy li{color: #FF4141; font-weight: bold; display: flex; justify-content: center; align-items: center; padding: 0px 0px 12px}
.panel__copy__2 p1{padding: 15px 0px 15px; color: #e71837; display: flex; justify-content: center; align-items: center; font-weight: bold; font-style: oblique; font-size: 22px;}
.panel__copy__2 pt{padding: 15px 0px 15px; color: #000; display: flex; justify-content: center; align-items: center; font-weight: bold; font-style: oblique; font-size: 22px;}
.panel__copy__2 p{padding: 15px 0px 15px; color: white; display: flex; justify-content: center; align-items: center; font-family: 'Montserrat', sans-serif;}
.panel__copy__2 i{color: #000; display: flex; justify-content: center; align-items: center; padding: 0px 0px 55px}
.panel__copy__2 li{color: #FF4141; font-weight: bold; display: flex; justify-content: center; align-items: center; padding: 0px 0px 12px}
.panel__link{display: block;}
.panel__link a{color: #FF4141; font-weight: bold;}

@media (max-width: 820px){
  .panel__copy{margin-left: 3.5%; margin-right: 3.5%}
  .panel__copy__2{margin-left: 3.5%; margin-right: 3.5%}
}

/*-----------------------------
Divider
-----------------------------*/
.divider_top {top: 5px; border-bottom: 5px solid #e63222; margin-left: 40%; margin-right: 40%; z-index: 1; position: relative; margin-bottom: 40px;}
.divider{font-size: 25px; color: #000; font-weight: bolder; margin-top: 40px; z-index: 1; position: relative;}

.text-center{margin-top: 80px}

/*-----------------------------
footer
-----------------------------*/
.footer {
display: flex;
flex-flow: row wrap;
padding: 50px;
color: #fff;
background-color: #2d3436;
}

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

.l-footer {
margin-right: 1.25em;
margin-bottom: 2em;
}

h2 {
font-weight: 400;
font-size: 15px;
}

.footer ul {
list-style: none;
padding-left: 0;
}

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

.footer a {
text-decoration: none;
}

.r-footer {
display: flex;
flex-flow: row wrap;
}

.r-footer > * {
flex: 1 50%;
margin-right: 1.25em;
}

.box a {
color: #999;
}

.h-box {
column-count: 2;
column-gap: 1.25em;
}

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

.l-footer p {
padding-right: 20%;
color: #999;
}

@media screen and (min-width: 600px) {
.r-footer > * {
flex: 1;
}

.features {
flex-grow: 2;
}

.l-footer {
flex: 1 0px;
}

.r-footer {
flex: 2 0px;
}
}

table {
  border-collapse:collapse;
  margin-top: 40px;
  margin-bottom: 40px;
}
td, th {
  border:2px solid #000;
  padding:8px;
}

.bold__title{
  color: #e63222;
  font-size: 20px
}

/* clearfix */

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
	}
* html .clearfix             { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}