@font-face {
  font-family: "iransans";
  src: url("../fonts/iransans/eot/IRANSansWeb.eot");
  src: url("../fonts/iransans/eot/IRANSansWeb.eot?#iefix") format("embedded-opentype"),
  url("../fonts/iransans/woff2/IRANSansWeb.woff2") format("woff2"),
  url("../fonts/iransans/woff/IRANSansWeb.woff") format("woff"),
  url("../fonts/iransans/ttf/IRANSansWeb.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.english-text{
  font-family: Tahoma, serif;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

.text-color {
  color: #373435;
}

html {
  overflow-x: hidden;
}

body {
  font-family: iransans , serif;
  direction: rtl;
}
.loading {
  position: fixed;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: visible;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* Transparent Overlay */
.loading:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .9));

}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
  /* hide "loading..." text */

  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.loading:not(:required):after {
  content: '';
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 150ms infinite linear;
  -moz-animation: spinner 150ms infinite linear;
  -ms-animation: spinner 150ms infinite linear;
  -o-animation: spinner 150ms infinite linear;
  animation: spinner 150ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(000, 000, 000, 0.75) 1.5em 0 0 0, rgba(000, 000, 000, 0.75) 1.1em 1.1em 0 0, rgba(000, 000, 000, 0.75) 0 1.5em 0 0, rgba(000, 000, 000, 0.75) -1.1em 1.1em 0 0, rgba(000, 000, 000, 0.75) -1.5em 0 0 0, rgba(000, 000, 000, 0.75) -1.1em -1.1em 0 0, rgba(000, 000, 000, 0.75) 0 -1.5em 0 0, rgba(000, 000, 000, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(000, 000, 000, 0.75) 1.5em 0 0 0, rgba(000, 000, 000, 0.75) 1.1em 1.1em 0 0, rgba(000, 000, 000, 0.75) 0 1.5em 0 0, rgba(000, 000, 000, 0.75) -1.1em 1.1em 0 0, rgba(000, 000, 000, 0.75) -1.5em 0 0 0, rgba(000, 000, 000, 0.75) -1.1em -1.1em 0 0, rgba(000, 000, 000, 0.75) 0 -1.5em 0 0, rgba(000, 000, 000, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.main-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
  max-height: 600px;
}
.main-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}
.main-banner:not(.pages) img{
  animation: zoom 35s forwards;
}
@keyframes zoom {
  0% {
    transform: scale(1); /
  }
  100% {
    transform: scale(1.2);
  }
}
.msg {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background: #00b1af;
  padding: 10px;
  border-radius: 10px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 1;

}



.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1;
  padding: 10px 4rem;
  transition: all ease .4s;
}
.header.fixed{
  position: fixed;
  animation: slide-down .7s;
  background-color: rgba(68, 68, 68, 0.89) !important;
  z-index: 3;
}
.header.re{
  animation: slide-up .7s;
  position: fixed;
}
.header.fixed ul li > a{
  color: #B3B3B4;
}
.header.fixed .search-top input{
  color: #e0e0e0;
  background: #484848;
}
.logo img{
  transition: all ease .4s;
}
.header.fixed .logo img{
  width: 100px;
}
@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slide-up {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

.header ul {
  padding: 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.header ul li {
  list-style: none;
  position: relative;
}
.header ul li > a {
  font-size: 17px;
  text-transform: capitalize;
  text-align: right;
  transition: all ease .4s;
}
.header ul li > a:hover{
  color: #00b1af;
}
.header ul li:not(.sub-dar):hover > .sub-menu {
  display: block;
}
.header ul .sub-menu {
  position: absolute;
  right: 0;
  top: 100%;
  background: #262626;
  align-items: center;
  flex-wrap: wrap;
  min-width: 250px;
  padding: 10px 15px;
  display: none;
}
.product-cat{
  text-align: right;
}
.header ul .sub-menu a {
  padding:7px 5px;
  display: block;
  width: 100%;
  color: #B3B3B4;
  font-size: 16px;
  transition: all ease 0.4s;
  text-align: right;
  text-transform: capitalize;
}
.header ul .sub-menu a:hover {
  color: #00b1af;
}
.header ul a {
  padding: 10px 20px;
  display: block;
  color: #000;
}
.header .search-top {
  display: flex;
  align-items: center;
  position: relative;
  width: 250px;
}
.header .search-top svg {
  left: 15px;
  position: absolute;
}
.header .search-top input {
  width: 100%;
  border-radius: 25px;
  background: #575757;
  border: none;
  padding: 6px 10px;
  color: #fff;
}
button:focus{
  outline: none !important;
}
.header .search-top input:focus{
  outline: none;
  background: #404040;
}
.header .language {
  display: flex;
  align-items: center;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  padding: 12px 0;
  width: 100px;
  direction: rtl;
}
.header .language a {
  display: flex;
  align-items: center;
  margin: 0 15px;
  cursor: pointer;
}
.header .language a:last-child {
  display: none;
}
.header .language:hover {
  border-top: 1px solid #D0D4DB;
  border-bottom: 1px solid #D0D4DB;
}
.header .language:hover a:last-child {
  display: flex;
}

.sec1 {
  color: #96989A;
  text-align: right;
}
.sec1 .text {
  margin: 0 auto;
  text-align: center;
  padding: 4rem 0;
  max-width: 730px;
}
.sec1 h2 {
  margin: 25px 0 15px 0;
  font-size: 35px;
}
.sec1 p {
  margin: 0;
  font-size: 25px;
  line-height: 1.8;
}

.products .box-p {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  border-radius: 15px;
  background: rgba(68, 68, 68, 0.89) ;
  margin: 0 10px;
  transition: all ease 0.4s;
  justify-content: center;
  position: relative;
}
.products .box-p span {
  position: absolute;
  bottom: -40px;
  font-size: 13px;
  color: #222;
}
.products .box-p img{
  max-width: 100%;
  max-height: 100%;
}
.products .box-p:hover {
  background: rgba(68, 68, 68, 0.95);
}

.sec2 {
  padding: 4rem 0;
  background: #303030;
  margin: 8rem 0 0;
}
.sec2 .left-text {
  width: 50%;
  text-align: right;
}
.sec2 .left-text h3 {
  color: #fff;
  font-size: 28px;
}
.sec2 .left-text p {
  color: #fff;
  font-size: 17px;
  max-width: 518px;
}
.sec2 .left-text a {
  display: inline-flex;
  align-items: center;
  color: #B3B3B4;
  font-size: 14px;
  border-radius: 8px;
  background: #637D7E;
  padding: 8px 20px;
  margin-top: 2rem;
}
.sec2 .right-img {
  width: 50%;
}
.sec2 .right-img img {
  width: 100%;
  object-fit: contain;
}
.sec2 .right-img span {
  text-align: center;
  display: block;
  color: #D2D3D5;
  padding: 10px;
  letter-spacing: 4px;
}

.title {
  padding: 10px;
  border-bottom: 1px solid #373435;
  text-align: center;
  width: calc(100% - 8rem);
  margin: 0 4rem 1.8rem;
}
.title h3 {
  color: #96989A;
  font-size: 29px;
}

.sec3 {
  background: #EDEDED;
  padding: 4rem 0;
}

.owl-carousel {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.owl-carousel .owl-stage {
  padding: 0;
}
.owl-carousel .item img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

.owl-nav button {
  width: 60px;
  height: 60px;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #D4D4D4;
  border: 1px solid #D4D4D4 !important;
  position: absolute;
  top: calc(50% - 60px);
  transition: all ease 0.4s;
}
.owl-nav button:hover {
  opacity: 0.7;
}
.owl-nav button:before {
  content: "\f104";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  color: #D4D4D4;
  font-size: 25px;
}
.owl-nav button span {
  font-size: 0;
}
.owl-nav button.owl-prev {
  right: -100px;
  transform: rotate(180deg);
}
.owl-nav button.owl-next {
  left: -100px;
}

.owl-dots .owl-dot span {
  background: #D4D4D4 !important;
}
.owl-dots .owl-dot.active span {
  background: #00b1af !important;
}

footer {
  background: #262626;
  padding: 2rem 0 0;
  text-align: right;
}
footer .left-footer {
  width: 50%;
  padding-left: 3rem;
  border-left: 1px solid #818181;
}
footer .left-footer h4 {
  font-size: 25px;
  color: #B3B3B4;
  border-bottom: 1px solid #B3B3B4;
  padding: 15px;
  margin-bottom: 1.5rem;
}
footer .left-footer ul {
  margin: 0;
  padding: 0 15px;
}
footer .left-footer ul a {
  display: block;
  padding: 5px 0;
  color: #B3B3B4;
  font-size: 15px;
  transition: all ease 0.4s;
}
footer .left-footer ul a:hover {
  color: #00b1af;
}
footer .right-footer {
  width: 50%;
  padding-right: 3rem;
}
footer .right-footer h4 {
  font-size: 25px;
  color: #B3B3B4;
  border-bottom: 1px solid #B3B3B4;
  padding: 15px;
  margin-bottom: 1.5rem;
}
footer .right-footer span {
  display: block;
  color: #B3B3B4;
  padding: 3px 15px;
}
footer .right-footer span a {
  color: #B3B3B4;
}
footer .right-footer .social {
  padding: 10px;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  width: 100%;
  border-top: 1px solid #727376;
}
footer .right-footer .social a {
  display: block;
  padding: 15px;
}
footer .copyright {
  background: #1B1B1B;
  margin-top: 15px;
  padding: 20px 0;
}
footer .copyright{
  display: flex;
  align-items: center;

}
footer .copyright > div{
  color: #818181;
  font-family: iransans , serif;
  font-size: 13px;
}
footer .copyright > div a{
  color: #818181;
  font-size: 13px;
}
footer .copyright span {
  display: block;
  text-align: center;
  color: #818181;
  font-size: 13px;
  margin-left: auto;
}

.hamburger-menu {
  display: none;
}

.products {
  display: flex;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.products .text{
  padding-top: 0;
}
.products .text h2{
  color: #96989A;
  margin-bottom: 1rem !important;
}
.products .box {
  padding: 10px 15px;
  width: 25%;
  margin-bottom: 1rem;
}
@media (max-width: 576px) {
  .products .box {
    width: 100%;
  }
  .products .box img{
    object-fit: contain !important;
  }
  .products .box h5{
    text-align: center !important;
  }
}
.products .box img {
  object-fit: contain;
  max-width: 100%;
  height: 260px;
  width: 100%;
}
.products .box h5 {
  font-size: 16px;
  padding: 10px;
  color: #373435;
}

.product-intro {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 3rem 0;
}
.product-intro .left-img {
  width: 50%;
  text-align: center;
}
.product-intro .left-img img {
  max-width: 100%;
}
.product-intro .right-des {
  width: 50%;
  padding: 2rem;
  color: #373435;
}
.product-intro .right-des h1 {
  margin-bottom: 10px;
  font-size: 30px;
}
.product-intro .right-des h4 {
  font-size: 20px;
}
@media (max-width: 576px) {
  .product-intro .right-des h1 {
    font-size: 22px;
  }
  .product-intro .right-des h4 {
    font-size: 16px;
  }
}

.section-about:not(#sec2) {
  padding: 2rem 0 17rem;
  background: #D7D7D7;
}
.section-about:not(#sec2) h2 {
  font-size: 2.5rem;
  width: 100%;
  text-align: center;
  color: #373435;
  margin-top: 15px;
}
.section-about:not(#sec2) img {
  margin: 10rem auto 3rem;
  max-width: 100%;
}
.section-about:not(#sec2) .txt {
  max-width: 690px;
  margin: 0 auto;
  font-size: 25px;
}
.section-about:not(#sec2) .txt p {
  line-height: 1.8;
  font-size: 22px;
  color: #96989A;
  margin-bottom: 5px;
  text-align: center;
}
.section-about:not(#sec2) .insta {
  margin: 0 auto;
  color: #201E1E;
}

.section-about#sec2 {
  padding:0 0 4rem;
}
.section-about#sec2 .txt-box {
  width: 100%;
  max-width: 964px;
  background: #201E1E;
  color: #fff;
  padding: 2rem 0;
  text-align: center;
  font-size: 2rem;
margin: 0 auto;
  transform: translateY(-130px);
}
.section-about#sec2 img {
  margin: 15px auto 25px;

}
.section-about#sec2 .img-ab{
  max-width: 964px;
  margin: 0 auto;
  transform: translateY(-130px);
  width: 100%;
}

.section-about#sec2 p {
  width: 100%;
  text-align: center;
  color: #c1c3c5;
  font-size: 2.5rem;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.2;
}

.technical {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 4rem;
}
.technical h5 {
  width: 100%;
  margin-bottom: 2rem;
  color: #373435;
}
.technical .box {
  width: calc(50% - 10px);
  border: 1px solid #D2D3D5;
  padding: 25px 10px;
  margin: 0 5px;
  text-align: center;
}
.technical .box img {
  max-width: 100%;
  object-fit: contain;
}

.sec-contact {
  background: #D7D7D7;
  padding: 2rem 0 10rem;
}
.sec-contact .left-sec {
  width: 40%;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
}
.sec-contact .left-sec h2 {
  font-size: 2.5rem;
}
.sec-contact .right-sec {
  width: 60%;
  text-align: right;
}
.sec-contact .right-sec h2 {
  font-size: 2rem;
  color: #373435;
  margin-bottom: 2.5rem;
}
.sec-contact .right-sec span {
  display: block;
  width: 100%;
  color: #000;
  font-size: 25px;
  margin-bottom: 15px;
}
.sec-contact .right-sec a {
  color: #000;
  display: block;
  line-height: 1.9;
}
.sec-contact .right-sec hr {
  margin: 2rem 0;
}
.sec-contact .right-sec .social {
  display: flex;
  align-items: center;
}
.sec-contact .right-sec .social ul {
  display: flex;
  padding: 0 3rem 0 0;
  align-items: center;
  margin: 0 auto 0 30px;
}
.sec-contact .right-sec .social ul li {
  list-style: none;
}
.sec-contact .right-sec .social ul li a {
  padding: 0 10px;
  color: #707070;
  font-size: 25px;
}

.text {
  padding: 2rem 0;
  width: 100%;
  text-align: center;
}
.text h2 {
  font-size: 2rem;
  color: #96989A;
}

.sec-news .box-news {
  width: calc(50% - 20px);
  margin: 10px;
  padding: 10px;
  background: #F7F7F7;
  text-align: right;
  color: #333;
}
@media (max-width: 576px) {
  .section-about#sec2 .img-ab,
  .section-about#sec2 .txt-box{
    transform: translateY(0);
    object-fit: contain;
  }

  .sec-news .box-news {
    width: 100%;
    margin: 10px 0;
  }
}
.sec-news .box-news img {
  width: 100%;
}
.sec-news .box-news h2 {
  color: #333333;
  width: 100%;
  font-size: 22px;
  margin: 15px 0;
  padding: 0 10px;
}
.sec-news .box-news span {
  color: #ADADAD;
  display: block;
  max-width: 377px;
  font-size: 14px;
  padding: 0 10px;
}
.sec-news .box-news .more {
  margin: 10px 0;
  padding: 0 10px;
  display: flex;
  align-items: center;
}
.sec-news .box-news .more i{
  display: flex;
  align-items: center;
  margin-right: 5px;
}
.sec-news .box-news .time {
  padding: 0 10px;
}
.image-slide{
  text-align: right;
}
#news{
  text-align: right;
}
.sec-network .box-network {
  width: 100%;
  direction: rtl;
  text-align: right;
  font-family: iransans, serif;
  margin-bottom: 3.5rem;
}
.sec-network .text, #gallery .text , .sec-news .text {
  padding: 2rem 0;

}
.sec-network .text h2 , #gallery .text h2,
.sec-news .text h2{
  color: #96989A;
  margin: 0;

}
.sec-network .box-network img {
  width: 100%;
}
.sec-network .box-network h3 {
  margin: 10px 0;
  color: #727376;
  font-size: 18px;
}
.sec-network .box-network a {
  display: block;
  width: 100%;
  color: #727376;
  font-size: 12px;
  padding: 2px 0;
}

.sec-project {
  direction: rtl;
  padding: 0 0 2rem;
}
.sec-project .div-box{
  display: flex;
  flex-wrap: wrap;
  position: relative;
  width: 100%;

}

.sec-project .box-p {
  position: relative;
  padding: 5px;
  cursor: pointer;
}
.sec-project .box-p:first-child {
  width: 50%;
  height: 400px;
}
.sec-project .box-p:not(:nth-child(5n+1)) {
  width: 25%;
  height: 200px;
}
.sec-project .box-p:nth-child(3) {
  position: absolute;
  left: 0;
  top: 200px;
}
.sec-project .box-p:nth-child(4) {
  position: absolute;
  left: 25%;
  top:200px;
}

.sec-project .div-box:nth-child(even) .box-p:first-child{
  width: 25%;
  height: 200px;
}
.sec-project .div-box:nth-child(even) .box-p:last-child{
  width: 50%;
  height: 400px;
}

.sec-project .div-box:nth-child(even) .box-p:nth-child(3){
  right: 0;
  top: 200px;
}
.sec-project .div-box:nth-child(even) .box-p:nth-child(4){
  right:25%;
  top: 200px;
}
.sec-project .box-p .txt-hover {
  position: absolute;
  left: 5px;
  right: 5px;
  bottom: 5px;
  top: 5px;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B3B3B4;
  flex-wrap: wrap;
  flex-direction: column;
  transition: all ease 0.4s;
  opacity: 0;
}
.sec-project .box-p .txt-hover h4 {
  display: block;
  text-align: center;
  margin-bottom: 5px;
}
.sec-project .box-p .txt-hover span {
  font-size: 13px;
}
.sec-project .box-p:hover .txt-hover {
  opacity: 1;
}
.sec-project .box-p img {
  width: 100%;
  height: 100%;
}
@media (max-width: 576px) {
  .section-about{
    padding: 10px 15px !important;
  }
  .sec-project .box-p {
    width: 100% !important;
    height: 180px !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right:auto !important;
  }
  .sec-project .box-p img{
    object-fit: cover;
  }
  .sec-project .box-p .txt-hover {
    opacity: 1;
  }
}

@media (max-width: 576px) {
  .text h2 , .title h3,footer .left-footer h4{
    font-size: 22px;
  }
  .sec1 p{
    font-size: 16px;
  }
  a:not([href]):not([tabindex]){
    color: #B3B3B4;
  }
  .sec-contact .left-sec{
    width: 100%;
    display: none;
  }
  .sec-contact .right-sec{
    width: 100%;
    padding: 0 15px;
  }
  .products .box img{
    height: 200px;
  }
  .main-banner {
    height: 300px;
  }
  .main-banner img {
    height: 100%;
    object-fit: cover;
  }

  .hamburger-menu {
    width: 30px;
    height: 30px;
    display: flex;
    position: absolute;
    right: 10px;
    top: 15px;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAZ0lEQVR4nO3WwQmAQAwF0SlPt/+zC4t9RGxAZRH84DzIPTkEBiRJek8DOlDh04H16pARsGQ9nP0Xh6zAFrBk3cy54zL7P5IkSR9pZjxZ9TsCyrbMeEmSpGzNjCerfkdAnpcZL0kScw7zFAKxsVXx1wAAAABJRU5ErkJggg==");
    border: none;
    background-size: 100%;
  }
  .header{
    padding: 10px 1.5rem;
  }

  .header .language {
    width: 100px;
    margin-left: 15px;
  }
  .header .search-top {
    width: 150px;
    padding-left: 10px;
    display: none;
  }
  .header .logo {
    width: 60px;
    margin-right:auto;
  }
  .header .logo img {
    width: 100% !important;
  }
  .header ul {
    position: fixed;
    background: rgba(51, 51, 51, 0.84);
    z-index: 2;
   left:0;
    width:100%;
    display: none;
    top: 61px;
    padding: 15px 0;
  }
  .header ul a{
    color: #B3B3B4;
  }
  .header ul.open {

  }
  .header ul li {
    width: 100%;
  }
  .header ul li.sub-dar{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
  }
  .header ul li.sub-dar:after{
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    left: 15px;
    position: absolute;
    font-weight: 900;
    top: 8px;
    color: #B3B3B4;
  }
  .header ul li .sub-menu {
    position: relative;
    display: none;
    background: #00b0ae;
    width: 100%;

  }
  .header ul .sub-menu a{
    color: #e8e8e8;
  }
  .header ul .sub-menu a:hover{
    color: #fff !important;
  }
  .sec1 {
    padding: 10px;
  }

  .sec2 .left-text, .sec2 .right-img {
    width: 100%;
    padding: 10px 15px;
  }

  .products .row {
    justify-content: center;
  }
  .products .row .box-p {
    margin: 10px 10px 40px;
  }

  footer .left-footer, footer .right-footer {
    padding: 15px;
    width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */
