/*

theme name: TRASAS

*/
ol {
	list-style-position: inside;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
}

a {
  text-decoration: none;
}

p {
  margin-bottom: 0;
}

.bg-header {
	background-color: white;
	position: relative;
	z-index: 5;
}

.sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 5;
}

.menu {
  position: relative;
}

.menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #006cb7;
  clip-path: polygon(5% 0, 100% 0%, 100% 100%, 0% 100%);
}

.logo {
    width: calc(20% - 100px);
    
    display: flex;
    justify-content: center;
}

.logo a {
  display: flex;
/*   justify-content: center; */
  align-items: center;
}

.logo img {
/*   width: 30%; */
}

.menu-pc {
  list-style: none;
  display: flex;
  padding: 25px 50px;
  position: relative;
  justify-content: flex-end;
  z-index: 2;
}

.menu-pc > li {
  padding: 3px 20px 3px 10px;
  margin-right: 5px;
  position: relative;
}

.menu-pc li a {
  color: #fff;
  font-weight: 500;
  font-size: 15px;
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.m-wrap {
  position: relative;
  width: 75%;
}
.m2 {
  height: 100%;
  opacity: 0.7;
  position: absolute;
  top: 0;
  width: 100%;
  bottom: 0;
  left: -50px;
  z-index: -1;
}

.m3 {
  height: 100%;
  opacity: 0.6;
  position: absolute;
  top: 0;
  width: 100%;
  bottom: 0;
  left: -100px;
  z-index: -1;
}
.m4 {
  height: 100%;
  opacity: 0.4;
  position: absolute;
  top: 0;
  width: 100%;
  bottom: 0;
  left: -150px;
  z-index: -1;
}
.m5 {
  height: 100%;
  opacity: 0.2;
  position: absolute;
  top: 0;
  width: 100%;
  bottom: 0;
  left: -200px;
  z-index: -1;
}

.current-menu-item {
  /* position: relative; */
}
.menu-services .current-menu-item::before {
  clip-path: unset;
  background-color: unset;
  left: unset;
}

.current-menu-item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  clip-path: polygon(0% 0%, 85% 0, 100% 50%, 85% 99%, 0% 100%);
  z-index: -1;
  color: #006cb7;
}
.menu-pc > .current-menu-item > a {
  color: #006cb7;
}

.footer {
  padding-top: 20px;
  padding-bottom: 20px;
  color: #3e3e59;
}

.f-group {
  margin-bottom: 10px;
}
.menu-mobile {
  position: fixed;
  top: 0;
  bottom: 0;
  padding: 32px 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  backdrop-filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  transition: 0.5s ease;
}
.menu-mobile.show {
  opacity: 1;
  pointer-events: auto;
}

.menu-mobile.show #menu-menu-mobile {
  transform: translateX(0);
}

.menu-mobile .current-menu-item {
  width: fit-content;
}

ul#menu-menu-mobile > li {
  padding: 10px 15px;
/*   margin-bottom: 15px; */
}

ul#menu-menu-mobile li a {
  color: #fff;
}
ul#menu-menu-mobile .current-menu-item > a {
  color: #006cb7;
  background-color: #fff;
  padding: 2px 10px;
  clip-path: polygon(0% 0%, 85% 0, 100% 50%, 85% 99%, 0% 100%);
  display: inline-block;
}

ul#menu-menu-mobile {
  width: 70%;
  transform: translateX(-100%);
  transition: 0.5s ease;
}

/*footer*/

.logo-footer {
  width: 55%;
}

.list-footer {
  list-style: none;
  display: flex;
  color: #3e3e59;
  font-weight: 400;
  font-size: 15px;
  padding-right: 35px;
}

.list-footer a {
  color: #3e3e59;
}

.list-footer li {
  margin-bottom: 10px;
}

.list-footer i {
  color: #006cb7;
  font-size: 18px;
  font-weight: 500;
  margin-right: 15px;
}

.social {
  list-style: none;
  display: flex;
}

.social li {
  padding-right: 20px;
}

.social a {
  font-size: 18px;
}

.social .fa-facebook {
  color: #1877f2;
}

.social .fa-youtube {
  color: #ff0000;
}

.license {
  background-color: #006cb7;
  color: white;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  padding: 10px 20px;
}

.back-top {
  position: fixed;
  bottom: 5px;
  right: 10px;
  z-index: 10;
  color: #05285b;
  font-size: 25px;
}

.about-us,
.servic {
  position: relative;
  z-index: 2;
}

.menu-pc > li:hover > .sub-menu {
  height: auto;
  opacity: 1;
  pointer-events: auto;
  background-color: #006cb7;
}

.menu-pc > li > .sub-menu {
  transition: 0.3s ease;
  position: absolute;
  bottom: 0;
  transform: translateY(100%);
  z-index: 2;
  list-style: none;
  width: 300px;
  left: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
  padding: 5px 0;
}

.menu-pc > li > .sub-menu li {
  padding: 8px 20px;
  transition: 0.3s ease;
  cursor: pointer;
  position: relative;
}
.menu-pc > li > .sub-menu > li:hover {
  background-color: #fff;
}
.menu-pc > li > .sub-menu > li:hover a {
  color: #006cb7;
}
.menu-pc > li > .sub-menu > li a {
  transition: 0.3s ease;
}
.menu-pc > li > .sub-menu > li.current-menu-item a {
  color: #006cb7;
}
.m-mobile > li > .sub-menu {
  list-style: none;
  padding-left: 20px;
  height: 0;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}

.m-mobile > li > .sub-menu.active {
  height: auto;
  opacity: 1;
  pointer-events: auto;
}

.m-mobile > li {
  position: relative;
}

.m-mobile > .us-mobile::before,
.m-mobile > .service-mobile::before,
.m-mobile > .stakeholders-mobile::before,
.m-mobile > #menu-item-1942::before {
  position: absolute;
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  left: 150px;
  top: 10px;
  z-index: 2;
  color: #fff;
}
.m-mobile > li > .sub-menu > li {
  padding: 5px 0;
}

.m-mobile .current-menu-item::before {
  display: none;
}

.m-mobile > .current-menu-item > a {
  color: #006cb7;
}

.address {
	font-size: 15px;
}

@media (max-width: 1400px) {
  .menu-pc li a {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
}
	
.menu-pc {
  
  padding: 25px 35px;
 
}
}

@media (min-width:1500px){
	.logo {
    
    margin-left: 12px;
    
}
}
@media (max-width: 1200px) {
  .menu-pc li {
    font-size: 13px;
  }
  
  .list-footer {
      padding-right: 0;
  }
}

@media (max-width: 1060px) {
	.m2 {
		left: -30px;
	}
	.m3 {
		left: -60px;
	}
	.m4 {
		left: -90px;
	}
	.m5 {
		left: -120px;
	}
	.menu-pc > li {
  
    padding: 0;
		padding-left: 6px;}
	.menu-pc li a {
    
    font-size: 13px;
}
	.bars {
		display:none;
	}
	.logo {
    width: calc(20% - 70px);
   
}

}

@media (min-width: 1000px) {
  .bars {
    display: none;
  }
}
@media (max-width: 1000px) {
  .menu {
    display: none;
  }
  .bars {
	  display:block;
    margin-right: 20px;
    font-size: 25px;
  }
  .header-wrap {
    padding: 20px 0;
  }
  .logo img {
    width: 100%;
  }

  .logo-footer {
    width: 20%;
  }

  .list-footer,
  .logo-footer,
  .social {
    margin-bottom: 10px;
  }
	.logo {
		width: fit-content;
		margin-left: 10px
	}
}

@media (max-width: 450px) {
  .logo-footer {
    width: 20%;
  }
  
  .list-footer {
      padding-right: 20px;
  }

  .license {
    margin-top: 0;
  }

  .back-top {
    display: none;
  }
}
