* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  list-style: none;
  font-family: 'Roboto', sans-serif;  
}
img {
  width: 100%;
  height: 100%;
  vertical-align: middle;
  border: 0;
}
a {
  display: block;
  text-decoration: none;
  color: #000;
}
.crt_container_fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.crt_container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px){
  .crt_container {
    max-width: 540px;
  }
}
@media (min-width: 768px){
  .crt_container {
    max-width: 720px;
  }
}
@media (min-width: 992px){
  .crt_container {
    max-width: 960px;
  }
}
@media (min-width: 1200px){
  .crt_container {
      max-width: 1140px;
  }
}
h1 { font-size: 35px }
@media screen and (min-width: 768px) {
  h1 { font-size: 40px }
}
.p_60 {
  padding-top: 60px;
  padding-bottom: 60px;
}
/*-------------------------------------------------------------------------------------------------------------------
# slideshow 
--------------------------------------------------------------------------------------------------------------------*/
.mySlides {display: none;}

.mySlides img {
	height: 400px;
}
@media screen and (min-width: 768px) {
 .mySlides img {
  height: 600px;
} 
}

/* Slideshow container */
.slideshow-container {
  width: 100%;
  position: relative;
  margin: auto;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
 /* background-color: #717171;*/
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 2s;
  animation-name: fade;
  animation-duration: 2s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}
/*-------------------------------------------------------------------------------------------------------------------
# Footer
--------------------------------------------------------------------------------------------------------------------*/
footer {
  padding: 20px 0;
  text-align: center;
  background: #524499;
    color: #fff;
}
.foo_shadow {
  -webkit-box-shadow: 0px -1px 5px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px -1px 5px 0px rgba(0,0,0,0.75);
  box-shadow: 0px -1px 5px 0px rgba(0,0,0,0.75);}
footer a {
  display: inline;
  color: #fff;
}
/*-------------------------------------------------------------------------------------------------------------------
# Home 
--------------------------------------------------------------------------------------------------------------------*/
header {
  width: 100%;
  height: 120px;
}
.nav_barand a {
  width: 240px;
}
.nav_barand {
  float: left;
  height: 120px;
  line-height: 120px;
}
.nav_toggle {
  display: none;
  float: right;
  height: 120px;
  line-height: 120px;
}
nav::before {
  content: "";
  display: block;
  clear: both;
}

nav > ul {
  display: flex;
  position: relative;
}

.header_des {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav > ul li a {
  padding: 10px 0px;
  margin: 0px 10px;
  font-family: 'Roboto', sans-serif;
  position: relative;
}
nav > ul li a:hover::after {
  transform: scale(1);
  visibility: visible;
}
nav > ul li a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background: #534597;
  bottom: 0;
  left: 0;
 visibility: hidden;
 -webkit-transform: scaleX(0);
 -ms-transform: scaleX(0);
 transform: scaleX(0);
 transition: all ease-in-out 0.3s;
 -moz-transition: all ease-in-out 0.3s;
 -webkit-transition: all ease-in-out 0.3s;
 -o-transition: all ease-in-out 0.3s;
 -ms-transition: all ease-in-out 0.3s;
 -khtml-transition: all ease-in-out 0.3s;
}
nav > ul li a.active::after {
  transform: scale(1);
  visibility: visible;
}

.drop:hover .down{
  display: block;

}
ul ul {
  display: none;
  position: absolute;
  margin-left: 5px;
  z-index: 1000;
  background: #fff;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
}
ul ul li a {
  margin: 0;
}
.drop a span {
  padding-left: 5px;
}
.down {
  margin: 0 10px;
}
.down li a {

}
.down li {
  padding: 0 40px 0 20px;
}
@media screen and (max-width: 992px) {
  .header_des {
    display: block;
    padding: 0;
  }
  nav {
    line-height: 20px;
  }
  .nav_barand {
    margin-left: 15px;
  }
  .nav_toggle {
    display: block;
    margin-right: 15px;
  }
  nav > ul {
    display: none;
    position: relative;
    z-index: 999;
    background: #534597;
  }
  nav > ul li {
    border-bottom: 1px solid #000;
  }
  nav > ul li:last-child {
    border-bottom: none;
  }
  nav > ul li a {
    display: block;
    color: #fff;
    padding: 12px 15px;
    margin: 0;
  }
  nav > ul li a:hover {
    background: #000;
  }
  nav > ul li a::after {
    content: "";
    display: none;
  }  
  ul ul {
    display: none;
    position: relative;
    margin: 0;
    background: #fff;
  }
  .down {
    display: none;
    margin: 0;
    background: #534597;
  }
  .down li {
    padding: 0;
  }
  .down li:first-child {
    border-top: 1px solid #000;
  }
  .drop:hover .down{
    display: block;
    background: #534597;
  }
  .down li a {
    padding: 10px 30px;
  }
  .drop a span {
    padding-left: 5px;
    float: right;
  }
  nav > ul li a.active {
  border-bottom: none;
  background: #000;
}
}
@media screen and (min-width: 768px){
  .nav_barand {
    margin-left: 90px;
  }
  .nav_toggle {
    margin-right: 90px;
  } 
}
@media (min-width: 993px){
  .header_des {
    max-width: 960px;
    margin: auto;
  }
  .nav_barand {
    margin-left: 0px;
  }
  .nav_toggle {
    margin-right: 0px;
  }

}
@media (min-width: 1200px){
  .crt_container {
      max-width: 1140px;
  }
}
/*-------------------------------------------------------------------------------------------------------------------
# Home About
--------------------------------------------------------------------------------------------------------------------*/
#home_about {
  padding: 60px 0;
}
.h_about > h1 {
  font-size: 35px;
  text-align: center;
  padding: 20px 0;
  background: #534597;
  color: #fff;  
}
.h_about_img {
  text-align: center;
  margin: 50px 0 30px;
}
.h_about_img img {
  max-width: 300px;
}
.h_about_text p {
  text-align: justify;
  padding: 5px 0;
}
.h_about_text a {
  border: 1px solid #534597;
  width: 120px;
  text-align: center;
  padding: 8px 0;
  color: #fff;
  background: #534597;
  font-size: 16px;
  border-radius: 5px;
  margin: 30px auto 0;
}
@media screen and (min-width: 768px) {
  .h_about > h1 {
    font-size: 40px;
  }
  .h_about_img img {
    max-width: 400px;
  } 
  .h_about_text {
    width: 70%;
    margin: auto;
  }
}
/*-------------------------------------------------------------------------------------------------------------------
# Home Capabilities
--------------------------------------------------------------------------------------------------------------------*/
#home_capa {
  background: #534597;
  padding: 60px 0;
}
.h_capabilite > h1 {
  font-size: 35px;
  color: #fff;
  text-align: center;
}
.h_capabi {
  padding: 30px 0;
}
.h_capabi li {

  margin: 30px auto ;
}
@media screen and (min-width: 540px) {
  .h_capabi li {
    width: 65%;
    margin: 30px auto ;
  }
}
.h_cap_shadow {
  position: relative;
  width: 120px;
  height: 120px;
  margin: auto;  
}
.h_cap_header {
  -webkit-clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  width: 120px;
  height: 120px;
  background: #fff;
  text-align: center;
  line-height: 120px;
  position: relative;
  z-index: 2;
  margin: auto;
}
.h_cap_header img {
  width: 50px;
  height: 50px;
}

.shadow {
 -webkit-clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);  
  width: 128px;
  height: 128px;
  background: rgba(0, 0, 0, .1);
  position: absolute;
  top: -4px;
  left: -4px;
}
.h_cap_text {
  color: #fff;
  text-align: center;
}
.h_cap_text h3 {
  padding: 20px 0;
}
@media screen and (min-width: 768px) {
  .h_capabilite > h1 {
    font-size: 40px;
  }
  .h_capabi {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .h_capabi li {
    width: 31%;
    margin: 30px 0;
  }
}
/*-------------------------------------------------------------------------------------------------------------------
# Home Service
--------------------------------------------------------------------------------------------------------------------*/
#home_service {
  padding: 60px 0;
}
.h_service {
  text-align: center;
}
.h_service p {
  padding: 20px 0;
  line-height: 1.5;
}
.h_product li {
  margin: 3px 0;
}
.h_pro {
  height: 450px;
}
.h_pro_img {
  height: 450px;
  position: relative;
  overflow: hidden;
}
.h_pro_text {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: #fff;
  transition: all .5s ease-in-out;
}
.h_pro_img:hover .h_pro_text {
  top: 50%;
  transition: all .5s ease-in-out;
}
.h_pro_text h3 a {
  color: #fff;
  padding: 30px 40px;
  background: rgba(0, 0, 0, .5);
}
.h_prod {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 450px;
}
.h_prod_header {
  height: 222px;
  position: relative;
  overflow: hidden;
}
.h_prod_header img {
  height: 222px;
}
.h_rod_text {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: #fff;
  transition: all .5s ease-in-out;  
}
.h_prod_header:hover .h_rod_text {
  top: 50%;
  transition: all .5s ease-in-out;
}
.h_rod_text h3 a {
  color: #fff;
  padding: 30px 40px;
  background: rgba(0, 0, 0, .5);
}
.home_product {
  text-align: center;
}
.home_product a {
  width: 200px;
  text-align: center;
  padding: 10px;
  color: #fff;
  font-weight: bold;
  background: #534597;
  border-radius: 8px;
  margin: 20px auto;
}
@media screen and (min-width: 768px) {
  .h_service {
    width: 70%;
    margin: auto;
  }
  .h_product {
    display: flex;
    justify-content: space-between;
  }
  .h_pro_1 {
    width: 45%;
  }
  .h_pro_2 {
    width: 54.5%;
  }
}
/*-------------------------------------------------------------------------------------------------------------------
# Home Contact
--------------------------------------------------------------------------------------------------------------------*/
#home_c_footer {
  background: #534597;
}
.h_address {
  padding: 20px 0;
  color: #fff;
}
.h_address li {
  padding: 20px 0;
}
.h_foo_address p {
  font-weight: bold;
  padding: 3px 0;
}
.h_foo_address p a {
  display: inline;
  font-weight: normal;
  color: #fff;
}
.h_foo_address p a:hover {
  color: #000;
}
.h_foo_no p {
  padding: 3px 0;
}
.h_foo_no p::after {
  content: "";
  display: block;
  clear: both;
}
.h_foo_no p:first-child i{
  height: 40px;
}
.h_foo_no p i {
  float: left;
  padding-right: 10px;
  height: 20px;
}
.h_foo_img img {
  width: 150px;
}
@media screen and (min-width: 768px) {
.h_address {
  display: flex;
  justify-content: space-between;
}
.h_address li {
  width: 27%;
}
.h_address .h_c_f {
  width: 40%;
}
.h_foo_img {
  text-align: right;
}
}
@media screen and (min-width: 992px) {
  .h_address li {
    width: 30%;
  }
  .h_address .h_c_f {
    width: 30%;
  }
}
/*-------------------------------------------------------------------------------------------------------------------
# About
--------------------------------------------------------------------------------------------------------------------*/
#about {
  padding: 60px 0;
}
.about_header h1 {
  padding: 15px;
  color: #fff;
  background: #534597;

  -webkit-box-shadow: 0px 4px 7px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 4px 7px 0px rgba(0,0,0,0.75);
  box-shadow: 0px 4px 7px 0px rgba(0,0,0,0.75);
  position: relative;
}
.about_text {
  padding: 10px;
  color: #fff;
  background: #534597;
}
.about_text h3 {
  padding: 20px 0;
}
.about_text p {
  padding: 5px 0;
  line-height: 1.5;
  text-align: justify;
}
.about_ul {
  padding: 0 20px;
}
.about_ul li {
  list-style-type: disc;
}
.about_team h1{
  background: #ebebeb;
  padding: 15px 20px;
  color: #000;

  -webkit-box-shadow: 0px 4px 7px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 4px 7px 0px rgba(0,0,0,0.75);
  box-shadow: 0px 4px 7px 0px rgba(0,0,0,0.75);
  position: relative;  
}
.about_team_header {
  padding: 30px 0 20px;
}
.about_team_img img {
  width: 200px;
  height: 200px;
  border-radius: 50%;

  -webkit-box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.75);
}
.about_team_img {
  text-align: center;
}
.about_team_text {
  padding: 30px;
}
.about_team_text h3 {
  text-align: center;
  padding: 5px 0;
}
.about_team_text p {
  padding: 5px 0;
}
.about_line {
  border: 2px solid #e2e2e2
}
@media screen and (min-width: 768px) {
  .about_text {
    padding: 20px;
  }
  .about_team_header {
    display: flex;
  }
  .about_team_img {
    width: 30%;
  }
  .about_team_text {
    width: 80%;
  }
  .about_team_width {
    max-width: 450px;
    padding-left: 40px;
  }
  .about_team_text h3 {
    text-align: left;
    padding: 5px 0;
  }
}
/*-------------------------------------------------------------------------------------------------------------------
# Contact 
--------------------------------------------------------------------------------------------------------------------*/
#contact {
  padding: 60px 0;
}
.map-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}
.map-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}
.contact_ul {
  background: #534597;
  padding: 30px 0;
}
.contact_foo {
  width: 80%;
  margin: auto;
  padding: 20px;
  color: #fff;
  background: #3d2f84;
  -webkit-box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.75);
box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.75);
}
.contact_foo p {
  padding: 5px 0;
}
.contact_form {
  padding: 20px 0;
}
.f_input {
  margin: 20px 0;
  text-align: center;
}
.f_input input,
.f_input textarea {
  width: 80%;
  padding: 5px 0px;
  border: none;
  color: #fff;
  font-size: 17px;
  border-bottom: 3px solid #f2e9f2;
  background: transparent;
}
.f_input textarea {
  height: 30px;
}
.f_input textarea:focus, 
.f_input input:focus {
  outline: none;
}
.f_input input[type=submit] {
  width: 130px;
  border: 1px solid #fff;
  height: 40px;
  font-weight: 700;
  color: #fff;
  background: #524499;
  border-radius: 8px;
  display: block;
  font-size: 18px;
  margin: auto;
  -webkit-box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.75);
box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.75);  
}
@media screen and (max-width: 500px) {
  .g-recaptcha {
    transform:scale(0.77);
    -webkit-transform:scale(0.77);
    transform-origin:0 0;
    -webkit-transform-origin:0 0;
  }
}
@media screen and (min-width: 768px) {
  .contact_ul {
    display: flex;
  }
  .con_add {
    width: 50%;
    margin-top: 30px;
    order: 2;
  }
  .con_form {
    width: 50%;
    order: 1;
  }
  .contact_form {
    padding: 0px;
  }
}
@media screen and (min-width: 992px) {
  .con_add {
    width: 40%;
  }
  .con_form {
    width: 60%;
  }
}
/*-------------------------------------------------------------------------------------------------------------------
# Product & Service 
--------------------------------------------------------------------------------------------------------------------*/
#service {
  padding: 60px 0;
}
.p_ul li {
  background: #6547ff;
  border-bottom: 2px solid #c4c4c4;
  text-transform: uppercase;
}
.p_ul li a {
  color: #fff;
  padding: 15px 10px;
}
.p_slid_act {
  background: #534597 !important;
}
.p_ul li:last-child {
  border: none;
}
.p_product h2 {
  padding: 20px 0;
  color: #fff;
  background: #534597;
  text-align: center;
  text-transform: uppercase;
}
.p_product {
  margin-top: 20px;
}

/*-------------------------------------------------------------------------------------------------------------------
# Product & Service slide 
--------------------------------------------------------------------------------------------------------------------*/

#wrapper {
/*  width: 1024px;
  margin: 0 auto;
  min-height: 500px;*/
}
#portfolio li {
  text-align: center;
  max-width: 330px;
  height: 350px;
  margin: 30px auto 0px;
}
#portfolio li p {
  background: #8393ca;
  padding: 15px 0;
  color: #fff;
  font-weight: bold;
  font-size: 17px;
}
#portfolio .p_25 {
  padding: 25px 0;
}
#portfolio li img {
  max-width: 330px;
  height: 300px;
}
#portfolio li img:hover {
  cursor: pointer;
}
#overlay:hover {
  cursor: pointer;
}
#frame img:hover {
  cursor: pointer;
}
#frame {
  position: fixed;
  display: none;
  top: 5%;
  left: 0;
  background-color: #fff;
  width: 95.6%;
  height: 400px;
  padding: 20px 0;
  margin: 10px;
  text-align: center;
}
#main {
  width: 93.6%;
  margin: auto;
}
#overlay {
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: #000;
  opacity: 0.7;
}
#frame_table {
  position: absolute;
  width: 93.6%;
  margin-left: 10px;
}
#right {
  float: right;
}

#right, #left {
  position: relative;
  top: 130px;
  opacity: 0.5;
  text-align: left;  
}
#right img, #left img {
  width: 50px;
  height: 50px;
}
@media screen and (min-width: 768px) {
  .p_s {

  }
  #right, #left {
    position: relative;
    top: 200px;
    opacity: 0.5; 
  }  
  #portfolio {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #frame {
    position: fixed;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: #fff;
    width: 700px;
    height: 500px;
    padding: 20px 0;
    margin: 15px;
  }
  #main {
    width: 660px;
  }
  #overlay {
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: #000;
    opacity: 0.7;
  }
  #frame_table {
    position: absolute;
    width: 660px;
    margin-left: 20px;
  } 
  #main {
    width: 660px;
  }
  #right img, #left img {
    width: 60px;
    height: 60px;
  }
}
@media screen and (min-width: 992px) {
  .p_s {
    display: flex;
    justify-content: space-between;
  }
  .p_slide {
    width: 20%;
  }
  .p_product {
    width: 79%;
    margin-top: 0;
  }

}
@media screen and (min-width: 1200px) {

#portfolio li {
    text-align: center;
    max-width: 285px;
    height: 340px;
    margin: 30px auto 0px;
}
#portfolio li img {
    max-width: 330px;
    height: 270px;
}
}
/*-------------------------------------------------------------------------------------------------------------------
# Pagination 
--------------------------------------------------------------------------------------------------------------------*/
.pagination {
  display: flex;
  justify-content: center;
}
.pagination a {
  border: 1px solid #524499;
  margin: 30px 10px 0px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
}
.pagination a:hover {
  background: #524499;
  color: #fff;
}
.pact {
  background: #524499;
  color: #fff;
}
.zzamfooter {
display: grid;
grid-template-columns: repeat(2, 30px calc(100% - 30px));
grid-gap: 1em;
align-items: center;
padding: 10px 0;
}


