* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Titillium Web", sans-serif;
  transition: all 0.3s ease;
  overflow: auto !important;
  top: unset;
  width: 100%;
  height: 100%;
}

ul {
  list-style: none;
  padding: 0;
}

a {
  text-decoration: none;
}

p,
ul {
  margin: 0;
}

a {
  transition: all 0.3s ease-in;
}

.body_overlay {
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  z-index: 100;
  position: fixed;
  top: 0;
}

.body_transform {
  transform: translateX(-210px);
}

.body_fixed {
  position: fixed !important;
}

.hidden {
  display: none;
}

.sticky {
  position: fixed;
  width: 100%;
  z-index: 9;
  top: -100px;
  transition: transform 0.5s;
  transform: translateY(100px);
  box-shadow: 0 0 20px -6px #000000;
}

.btn {
  text-transform: capitalize;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  max-width: 245px;
  width: 100%;
  height: 43px;
  line-height: 43px;
  padding: 0;
  border-radius: 0;
}

.btn-primary {
  background: #f8a132;
  border-color: #f8a132;
}
.btn-primary:hover {
  background: #35363a;
  border-color: #35363a;
  color: #ffffff;
}
.btn-primary:focus {
  background: #35363a;
  border-color: #35363a;
  color: #ffffff;
  -ms-box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.5);
  -o-box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.5);
}

.btn-secondary {
  background: #35363a;
  color: #ffffff;
  text-transform: capitalize;
  border-color: #35363a;
  font-family: "Titillium Web", sans-serif;
}
.btn-secondary:hover {
  background: #f8a132;
  color: #ffffff;
  border-color: #f8a132;
}
.btn-secondary:focus {
  background: #f8a132;
  color: #ffffff;
  border-color: #f8a132;
  -ms-box-shadow: 0 0 0 0.25rem rgba(248, 161, 50, 0.5);
  -o-box-shadow: 0 0 0 0.25rem rgba(248, 161, 50, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(248, 161, 50, 0.5);
}

.page-main-heading {
  color: #000000;
  font-size: 45px;
  font-size: 2.8125rem;
  font-weight: 400;
  text-transform: capitalize;
  text-align: center;
  margin-bottom: 28px;
  letter-spacing: 1px;
}
.page-main-heading strong {
  font-weight: 600;
}

.page-section {
  margin: 80px 0;
}

header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 11;
  background: rgba(9, 33, 67, 0.3);
  border-bottom: 1px solid rgba(250, 250, 250, 0.3);
}

.middle-bar {
  padding: 10px 0;
}
.middle-bar .main-logo {
  width: 66%;
}
.middle-bar .main-logo img {
  width: 100%;
}
.middle-bar .main-nav {
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  position: relative;
}
.middle-bar .main-nav li {
  display: inline-block;
  position: relative;
  margin: 0 10px;
}
.middle-bar .main-nav li .sub-menu {
  position: absolute;
  z-index: 1;
  background: #ffffff;
  min-width: 160px;
  -ms-box-shadow: 0 0 5px 1px #092143;
  -o-box-shadow: 0 0 5px 1px #092143;
  box-shadow: 0 0 5px 1px #092143;
  padding: 5px 0;
  left: 0;
  transform-origin: top;
  transform: rotateX(-90deg);
  transition: transform 0.3s linear;
}
.middle-bar .main-nav li .sub-menu li {
  display: block;
  padding: 5px 10px;
}
.middle-bar .main-nav li .sub-menu a {
  display: block;
  color: #f8a132;
}
.middle-bar .main-nav li:hover .sub-menu {
  transform: rotateX(0deg);
}
.middle-bar .main-nav li:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  border-radius: 4px;
  background: #f8a132;
  bottom: 0;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}
.middle-bar .main-nav li:hover:before {
  transform-origin: left;
  transform: scaleX(1);
}
.middle-bar .main-nav li.drop-caret {
  padding-right: 12px;
}
.middle-bar .main-nav li.drop-caret:after {
  content: "\f107";
  font-family: "FontAwesome";
  color: #ffffff;
  font-size: 10px;
  font-size: 0.625rem;
  position: absolute;
  right: 0;
  top: 6px;
}
.middle-bar .main-nav a {
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
  text-decoration: none;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.middle-bar .main-nav .cart-btn a {
  margin: 0;
  color: #ffffff;
  background: #000000;
  padding: 16px 10px;
  height: 48px;
  width: 48px;
  display: block;
  border-radius: 10px;
}
.middle-bar .main-nav .cart-btn a:hover {
  background: #f8a132;
}
.middle-bar .main-nav .cart-btn .cart-count {
  position: absolute;
  top: 4px;
  background: rgba(255, 255, 255, 0.5);
  display: block;
  right: 4px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  text-align: center;
}
.middle-bar .main-nav .cart-btn:before {
  display: none;
}
.middle-bar .main-nav .search-btn .search-field {
  margin: 0;
  color: #ffffff;
  text-align: center;
  display: block;
  transform: rotate(90deg);
}
.middle-bar .main-nav .search-btn .search-field:hover {
  color: #f8a132;
}
.middle-bar .main-nav .search-btn:before {
  display: none;
}
.middle-bar .search-box-desktop {
  right: 0px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 111;
  max-width: 250px;
  width: 100%;
}
.middle-bar .search-box-desktop .search-input {
  background: #f8a132;
  outline: none;
  border: 0;
  height: 50px;
  line-height: 50px;
  padding: 0 10px;
  color: #ffffff;
  width: 100%;
  border-radius: 5px;
}
.middle-bar .search-box-desktop .search-input::-moz-placeholder {
  color: #ffffff;
}
.middle-bar .search-box-desktop .search-input:-ms-input-placeholder {
  color: #ffffff;
}
.middle-bar .search-box-desktop .search-input::placeholder {
  color: #ffffff;
}
.middle-bar .search-box-desktop button {
  border: none;
  outline: none;
  position: absolute;
  right: 9px;
  top: 13px;
  background: transparent;
}
.middle-bar .search-box-desktop button i {
  color: #ffffff;
}
.middle-bar .mobile-nav {
  display: none;
}

.middle-bar.sticky {
  background: #092143;
}
.middle-bar.sticky .main-logo {
  width: 55%;
}

.mobile-menu {
  background: #ffffff;
  width: 210px;
  height: 100%;
  position: fixed;
  z-index: 111111;
  top: 0;
  right: 0;
  transition: transform 0.3s;
  transform: translateX(210px);
  overflow: scroll;
}
.mobile-menu .mobile-header {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  align-items: center;
  border-bottom: 1px solid #f8a132;
}
.mobile-menu .mobile-header p {
  text-transform: uppercase;
  color: #f8a132;
  font-weight: 600;
}
.mobile-menu .mobile-header i {
  color: #f8a132;
  font-size: 18px;
  font-size: 1.125rem;
}
.mobile-menu .m_ul-menu {
  padding: 5px 10px;
}
.mobile-menu .m_ul-menu li {
  position: relative;
}
.mobile-menu .m_ul-menu li a {
  color: #000000;
  text-transform: capitalize;
  display: block;
  padding: 5px 0;
}
.mobile-menu .m_ul-menu li.drop-caret:after {
  content: "\f107";
  font-family: "FontAwesome";
  color: #000000;
  font-size: 10px;
  font-size: 0.625rem;
  position: absolute;
  right: 0;
  top: 11px;
}
.mobile-menu .sub-menu {
  display: none;
  background: #f8a132;
  padding: 5px;
}
.mobile-menu .sub-menu li a {
  color: #ffffff;
}

.abt-sec .about-para {
  text-align: center;
  color: #2d2d2d;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  width: 80%;
  margin: auto;
}
.abt-sec .about-banner {
  margin: 60px auto 45px;
  text-align: center;
}
.abt-sec .abt-features ul {
  display: flex;
  justify-content: center;
}
.abt-sec .abt-features li {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
.abt-sec .abt-features li img {
  margin-right: 10px;
}
.abt-sec .abt-features li p {
  color: #092143;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 600;
}

.main-cat {
  background: #f3f3f3;
  padding: 85px 0;
}
.main-cat .cat-box {
  margin: 20px 0 15px;
  text-align: center;
}
.main-cat .cat-box .cat-img {
  text-align: center;
}
.main-cat .cat-box .cat-head {
  color: #000000;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 35px 0 15px;
}
.main-cat .cat-box .cat-para {
  color: #2d2d2d;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  width: 83%;
  margin: 0 auto 30px;
}

.head-after-para {
  color: #2d2d2d;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}

.feature_prod {
  /*.owl-carousel{
        .owl-nav{
            &.disabled{
                display: block;
            }
            button{
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                width: 50px;
                height: 50px;
                color: #333333;
                background-color: #e1e1e1;
                &.owl-prev{
                    left: -25px;
                }
                &.owl-next{
                    right: -25px;
                }
            }
        }
    }*/
}
.feature_prod .fea-main {
  position: relative;
  border: 1px solid #EBEBEB;
  transition: 0.4s;
  margin-bottom: 20px;
}
.feature_prod .fea-main .fea-img {
  text-align: center;
  overflow: hidden;
}
.feature_prod .fea-main .fea-text {
  padding-top: 20px;
}
.feature_prod .fea-main .fea-text h6 {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  text-transform: uppercase;
}
.feature_prod .fea-main .fea-text P {
  color: #7f7f7f;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
}
.feature_prod .fea-main .fea-text-2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  display: none;
}
.feature_prod .fea-main .fea-text-2 a {
  display: block;
  width: 150px;
  height: 50px;
  line-height: 50px;
  background: #f8a132;
  color: #ffffff;
  margin: 0 auto;
  font-size: 14px;
  text-transform: uppercase;
  margin-top: 8px;
  text-decoration: none;
  transition: 0.4s;
  text-align: center;
}
.feature_prod .fea-main:hover {
  border: 1px solid #f8a132;
  transition: 0.4s;
}
.feature_prod .fea-main:hover .fea-text-2 {
  display: block;
}

.newsletter-sec {
  background: #092143;
  padding: 0 0 80px;
  margin-top: 300px;
}
.newsletter-sec .news-banner {
  margin-top: -200px;
  text-align: center;
}
.newsletter-sec .news-text {
  text-align: center;
  margin-top: 60px;
}
.newsletter-sec .news-first-head {
  color: #f8a132;
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: 400;
  margin-bottom: 30px;
}
.newsletter-sec .news-sec-head {
  color: #ffffff;
  font-size: 35px;
  font-size: 2.1875rem;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 24px;
}
.newsletter-sec .news-sec-head strong {
  font-weight: 600;
}
.newsletter-sec .news-para {
  color: #ffffff;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 400;
  margin-bottom: 30px;
}
.newsletter-sec form {
  position: relative;
  width: 56%;
  margin: 0 auto 55px;
}
.newsletter-sec form .news-input {
  height: 47px;
  line-height: 47px;
  width: 100%;
  padding-left: 27px;
  outline: none;
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  border-radius: 25px;
  transition: all 0.3s ease-in;
}
.newsletter-sec form .news-input::-moz-placeholder {
  color: #ffffff;
}
.newsletter-sec form .news-input:-ms-input-placeholder {
  color: #ffffff;
}
.newsletter-sec form .news-input::placeholder {
  color: #ffffff;
}
.newsletter-sec form .news-input:focus {
  -ms-box-shadow: 0 0 0 3px #f8a132;
  -o-box-shadow: 0 0 0 3px #f8a132;
  box-shadow: 0 0 0 3px #f8a132;
}
.newsletter-sec form .btn {
  position: absolute;
  right: 0;
  border-radius: 25px;
  height: 47px;
  line-height: 47px;
  max-width: 134px;
  width: 100%;
  font-size: 17px;
  font-size: 1.0625rem;
  text-transform: uppercase;
  color: #092143;
}
.newsletter-sec form .btn:hover {
  background: #f8a132;
}
.newsletter-sec .news-social-head {
  color: #ffffff;
  font-size: 22px;
  font-size: 1.375rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 45px;
}
.newsletter-sec .news-social-head strong {
  font-weight: 600;
  padding: 0 30px;
}
.newsletter-sec .news-social-head:after, .newsletter-sec .news-social-head:before {
  content: "";
  display: inline-block;
  background: #ffffff;
  width: 200px;
  height: 2px;
  top: 12px;
  left: 0;
}
.newsletter-sec .news-social-head:after {
  right: 0;
}
.newsletter-sec .social-icons-list ul {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.newsletter-sec .social-icons-list li:not(:last-child) {
  margin-right: 24px;
}
.newsletter-sec .social-icons-list a {
  color: #ffffff;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  background: transparent;
  border: 1px solid #ffffff;
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  border-radius: 50%;
  transition: all 0.3s ease-in;
}
.newsletter-sec .social-icons-list a:hover {
  background: #f8a132;
  border-color: #f8a132;
  color: #092143;
}

footer {
  background: #ffffff;
}
footer .footer-top {
  padding: 80px 0;
}
footer .footer-logo,
footer .footer-material {
  padding-top: 40px;
}
footer .footer-logo {
  padding-right: 7px;
}
footer .footer-logo img {
  margin-bottom: 30px;
}
footer .footer-logo p {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #2d2d2d;
  text-align: justify;
  line-height: 28px;
}
footer .footer-material {
  padding-left: 7px;
}
footer .footer-material h3 {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 400;
  color: #000000;
  padding-bottom: 10px;
  position: relative;
  margin-bottom: 30px;
}
footer .footer-material h3::after {
  content: "";
  width: 70px;
  height: 2px;
  background: #f8a132;
  position: absolute;
  left: 0;
  bottom: 0;
}
footer .footer-material .footer-links ul li {
  display: flex;
  align-items: center;
}
footer .footer-material .footer-links ul li i {
  color: #f8a132;
  font-size: 11px;
  padding-right: 12px;
}
footer .footer-material .footer-links ul li a {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #2d2d2d;
  display: inline-block;
  padding: 10px 0;
}
footer .footer-material .footer-links ul li a:hover {
  color: #f8a132;
  padding-left: 7px;
}
footer .footer-material .footer-links ul li:not(:last-child) {
  border-bottom: 1px solid #e8e8e8;
}
footer .footer-material .footer-details ul li {
  padding: 10px 0;
}
footer .footer-material .footer-details ul li p {
  font-size: 15px;
  font-size: 0.9375rem;
  color: #2d2d2d;
}
footer .footer-material .footer-details ul li strong {
  font-weight: 600;
}
footer .footer-material .footer-details ul li:not(:last-child) {
  border-bottom: 1px solid #e8e8e8;
}
footer .footer-material .footer-details ul li a {
  color: #2d2d2d;
}
footer .footer-material .footer-details ul li a:hover {
  color: #f8a132;
}
footer .copy-r {
  text-align: center;
  background: #f3f3f3;
  padding: 20px 0;
}
footer .copy-r p {
  font-size: 15px;
  font-weight: 400;
  color: #373737;
}
footer .copy-r strong {
  color: #f8a132;
  font-weight: 600;
}
footer .copy-r a {
  color: #2d2d2d;
}
footer .copy-r a:hover {
  color: #f8a132;
}

@media (max-width: 1199.98px) {
  .middle-bar.sticky .main-logo {
    width: 80%;
  }
  .main-cat .cat-head {
    font-size: 23px;
    font-size: 1.4375rem;
  }
  .abt-sec .abt-features li {
    flex-direction: column;
  }
  .abt-sec .abt-features li img {
    margin-right: 0;
  }
  .abt-sec .abt-features li p {
    text-align: center;
  }
  .feat-cat .feat-cat-head {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
@media (max-width: 991.98px) {
  .top-bar {
    font-size: 12px;
    font-size: 0.75rem;
  }
  .top-bar li:not(:last-child) {
    padding-right: 12px;
    margin-right: 12px;
  }
  .top-bar .top-language select {
    width: 62px;
  }
  .middle-bar .main-nav li {
    margin: 0 5px;
  }
  .middle-bar .main-nav a {
    font-size: 12px;
    font-size: 0.75rem;
    letter-spacing: normal;
  }
  .middle-bar .main-nav .cart-btn a {
    padding: 10px 6px;
    height: 35px;
    width: 35px;
  }
  .middle-bar .main-nav .search-btn .search-field {
    font-size: 13px;
    font-size: 0.8125rem;
  }
  .middle-bar.sticky .main-logo {
    width: 79%;
  }
  .feat-cat .feat-cat-head {
    font-size: 17px;
    font-size: 1.0625rem;
  }
  .feature_prod .fea-main .fea-text h6 {
    font-size: 16px;
  }
  .page-section {
    margin: 50px 0;
  }
  .abt-sec .about-para {
    width: 100%;
  }
  .main-cat {
    padding: 50px 0;
  }
  .newsletter-sec {
    margin-top: 165px;
  }
  .newsletter-sec .news-banner {
    margin-top: -125px;
  }
  .top-footer {
    padding: 40px 0;
  }
  .top-footer .inner-link h2 {
    margin-top: 20px;
  }
  footer .footer-top {
    padding: 20px 0;
  }
}
@media (max-width: 767.98px) {
  .top-bar .top-left, .top-bar .top-right {
    padding: 10px 0 5px;
    text-align: center;
  }
  .top-bar .top-info {
    justify-content: center;
  }
  .middle-bar .main-logo {
    width: 50%;
  }
  .middle-bar .main-nav {
    display: none;
  }
  .middle-bar .mobile-nav {
    display: flex;
    flex-direction: row-reverse;
    position: relative;
  }
  .middle-bar .mobile-nav li {
    display: inline-block;
  }
  .middle-bar .mobile-nav a {
    display: block;
    background: #f8a132;
    font-size: 15px;
    font-size: 0.9375rem;
    position: relative;
    height: 35px;
    width: 35px;
    color: #ffffff;
    border-radius: 10px;
    text-align: center;
    padding-top: 6px;
  }
  .middle-bar .mobile-nav a .cart-count {
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    display: block;
    top: 2px;
    right: 3px;
    color: #ffffff;
    height: 17px;
    width: 17px;
    border-radius: 50%;
    font-size: 12px;
    font-size: 0.75rem;
  }
  .middle-bar.sticky .main-logo {
    width: 50%;
  }
  .main-cat .cat-head {
    font-size: 17px;
    font-size: 1.0625rem;
  }
  .main-cat .cat-sub-head {
    font-size: 12px;
    font-size: 0.75rem;
  }
  .page-main-heading {
    font-size: 35px;
    font-size: 2.1875rem;
  }
  .abt-sec .abt-features ul {
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
  .abt-sec .abt-features li {
    margin: 10px 0;
  }
  .feat-cat .feat-cat-head {
    font-size: 22px;
    font-size: 1.375rem;
  }
  .why-choose .why-main-img {
    margin: 30px auto 0;
    width: 70%;
  }
  .newsletter-sec {
    margin-top: 110px;
  }
  .newsletter-sec .news-banner {
    margin-top: -96px;
  }
  .newsletter-sec form {
    width: 100%;
  }
  .newsletter-sec .news-social-head:after, .newsletter-sec .news-social-head:before {
    width: 120px;
  }
  .top-footer {
    padding: 20px 0;
  }
  .bottom-footer {
    padding: 10px 0px;
  }
}
@media (max-width: 575.98px) {
  .top-bar .top-email p, .top-bar .top-phone p {
    display: none;
  }
  .top-bar .top-email i, .top-bar .top-phone i {
    padding-right: 0;
  }
  .top-bar .top-language select {
    width: 100%;
  }
  .middle-bar .main-logo {
    width: 84%;
  }
  .middle-bar .mobile-nav {
    justify-content: end;
    margin: 5px 0;
  }
  .middle-bar.sticky .main-logo {
    width: 84%;
  }
  .page-main-heading {
    font-size: 25px;
    font-size: 1.5625rem;
    margin-bottom: 15px;
  }
  .head-after-para {
    font-size: 15px;
    font-size: 0.9375rem;
  }
  .page-section {
    margin: 30px 0;
  }
  .abt-sec .about-para {
    font-size: 15px;
    font-size: 0.9375rem;
  }
  .abt-sec .about-banner {
    margin: 25px auto;
  }
  .abt-sec .abt-features ul {
    justify-content: space-between;
  }
  .abt-sec .abt-features li {
    width: 50%;
  }
  .main-cat {
    padding: 30px 0;
  }
  .main-cat .cat-box {
    width: 75%;
    margin: 15px auto;
  }
  .feature_prod {
    padding: 15px 0;
  }
  .feat-cat .feat-cat-head {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .welcome {
    padding: 15px 0;
  }
  .welcome .wel-padd {
    padding: 15px 0;
  }
  .welcome .wel-img {
    text-align: center;
  }
  .newsletter-sec {
    margin-top: 65px;
    padding: 0 0 45px;
  }
  .newsletter-sec .news-banner {
    margin-top: -64px;
  }
  .newsletter-sec .news-text {
    margin-top: 30px;
  }
  .newsletter-sec .news-first-head {
    margin-bottom: 20px;
  }
  .newsletter-sec .news-sec-head {
    font-size: 24px;
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  .newsletter-sec .news-para {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .newsletter-sec form {
    margin: 0 auto 25px;
  }
  .newsletter-sec .news-social-head {
    font-size: 20px;
    font-size: 1.25rem;
    margin-bottom: 25px;
  }
  .newsletter-sec .news-social-head:after, .newsletter-sec .news-social-head:before {
    width: 60px;
  }
  .newsletter-sec .social-icons-list li:not(:last-child) {
    margin-right: 11px;
  }
  footer .footer-top {
    padding: 10px 0;
  }
  .top-footer .inner-link h2 {
    margin-top: 10px;
  }
  .bottom-footer {
    text-align: center;
  }
  .bottom-footer .copy_right {
    margin-bottom: 5px;
  }
  .bottom-footer .last-design {
    text-align: center;
  }
}/*# sourceMappingURL=layout.css.map */