<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">header {
  width: 100%;

  background: rgb(219, 218, 218);

  padding: 3px 0;
}

header a:hover {
  color: #d41a27;
}

/* nav part start ----------------------------- */

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.logo {
  width: 100px;
  padding: 10px 0 10px 0;
  margin-right: 20px;
}

.nav-right ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.nav-right ul li {
  padding: 25px 15px;
  transition: 1s;
}
.nav-right ul li a {
  font-size: 17px;
  font-weight: 500;
  color: rgb(1 2 59);
  padding-bottom: 5px;
  position: relative;
}
.nav-right ul li a::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: rgb(1 2 59);
  transition: .5s ease-in-out;
}
.nav-right ul li a:hover::after{
  width: 100%;
}
.main-ul li{
  position: relative;
}
.drop {
 
  position: absolute;
  border-bottom: none;
  width: 300px;
  top: 100%;
  left: 0;
  background: #dbdada;
  overflow: hidden;
  z-index: -1;
  height: 0;
  transition: all 0.3s ease-out;
  z-index: 10;

}
.drop ul{
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.drop ul li{
  padding: 8px 10px;
  
}
.bar {
  display: none;
}

.bar svg {
  font-size: 20px;
  margin: 0 20px;
  color: rgb(0, 0, 0);
}
@media (min-width: 951px) {
  .main-ul li:hover &gt; .drop {
    z-index: 100;
    height: 340px;
  }

  .main-page-link-wrapper li:hover &gt; .sub-drop-item {
    display: block;
  }
}

@media (max-width: 950px) {
  .logo {
    width: 80px;
  }

  nav {
    padding: 0 20px;
  }

  .menu {
    width: 350px;
    position: absolute;
    top: 66px;
    left: -130%;
    margin-left: 0 !important;
    transition: 0.5s ease-in-out;
    background: rgb(255, 255, 255);
    max-height: 100vh;
    overflow: hidden;
    overflow-y: scroll;
    z-index: 10000;
  }

  .menu.active {
    left: -15px;
  }

  .nav-right ul {
    padding: 10px 30px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: right;
  }
  .nav-right ul li {
    padding: 10px 10px;
    transition: 1s;
    width: 100%;
    position: relative;
  }
  .nav-right ul li a {
    display: block;
  }
  .nav-right ul li .down-icon{
   position: absolute;
   top: 10px;
   right: 20px;
   font-size: 20px;
  }
  .drop.open{
    position: relative;
    height: auto;
    width: auto;
    background: white;
    left: -30px;
  }
  .drop ul li{
    padding: 5px 10px;
  }
  .drop ul{
    padding: 0 0 0 30px;
  }

  .bar {
    display: inline-block;
  }
}

@media (max-width: 500px) {
  .menu {
    width: 100%;
  }
}
footer{
  background: #000004;
}
.footer-nav .footer-nav-title{
  font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    line-height: 1.3;
    color: #dddddd;
}

.footer-nav .footer-nav-title::after{
  background-color: #fff;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    width: 50px;
    height: 3px;
    border-radius: 4px;
}
.footer-nav li{
  margin-bottom: 20px;
}
.footer-nav li a, footer p ,.copyright-text{
  color: #b5b5b5;
}
.footer-nav li i{
  color: #f06d30;
}
.footer-nav li a:hover, .footer-bottom-area .footer-bottom-inner .footer-social li a:hover{
  color: #f06d30;
}

.footer-bottom-area .footer-bottom-inner .footer-social li a {
 
  color: #cccccc;
  font-size: 20px;
  line-height: 1;
}
.copyright {
  color: white;
  padding: 5px 0;
  background-color: #272727;
  padding: 10px 50px;
}

@media (max-width: 550px) {
  .footer-container {
    padding: 15px 15px;
  }
  .footer-bottom-inner{
    flex-direction: column;
    gap: 20px;
  }
}
</pre></body></html>