/* Variables
======================*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap");
.link {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  line-height: 55px;
  font-weight: 700;
  text-align: center;
  font-size: 12px;
  padding: 0 25px;
  background-color: #d51820;
  color: #fff;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -webkit-transition: 0.1s all linear;
  transition: 0.1s all linear;
}

.link span {
  position: relative;
  z-index: 99;
  color: #fff;
}

.link span i {
  margin-right: 5px;
  font-size: 18px;
}

.link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  background-color: #231f20;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 0, 100% 0);
          clip-path: polygon(100% 0, 100% 0, 100% 0, 100% 0);
  -webkit-transition: 0.4s all linear;
  transition: 0.4s all linear;
}

.link:hover span {
  color: #fff;
}

.link:hover::before {
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
          clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
}

@media all and (max-width: 575.98px) {
  .link {
    padding: 0 15px;
  }
}

.icon_link {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  line-height: 45px;
  width: 45px;
  height: 45px;
  text-align: center;
  font-size: 16px;
  padding: 0;
  background-color: #d51820;
  color: #fff;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 2px;
  -webkit-border-radius: 2px;
}

.icon_link i {
  line-height: 45px;
}

.icon_link:hover {
  background-color: #231f20;
  color: #fff;
}

/* Setting Style
======================*/
*,
:focus {
  outline: 0 !important;
}

::-moz-selection {
  background-color: #d51820 !important;
  color: #fff !important;
}

::selection {
  background-color: #d51820 !important;
  color: #fff !important;
}

body {
  position: relative;
  font-family: "Montserrat", sans-serif;
  overflow: hidden;
  width: 100%;
  background-color: #fff;
  font-weight: 400;
  scroll-behavior: smooth;
}

/* Scroll Bar
======================*/
/* width */
::-webkit-scrollbar {
    
  background-color: #231f20;
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    
  background-color: #231f20;
  border-radius: 25px;
  -webkit-border-radius: 25px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    
  background-color: #d51820;
  border-radius: 25px;
  -webkit-border-radius: 25px;
}

/* Lists  
======================*/
ul,
li {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Links 
======================*/
a,
a:hover,
a:focus {
  cursor: pointer;
  text-decoration: none;
}

/*Images
======================*/
img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

small {
  text-transform: uppercase;
}

/* Section Setting
=======================*/
.page_content {
  position: relative;
  margin-top: 75px;
  width: 100%;
}

section {
  padding: 70px 0;
  position: relative;
  background-color: #fff;
  z-index: 999;
}

@media all and (max-width: 767.98px) {
  section {
    padding: 35px 0;
  }
}

section .container {
  position: relative;
  z-index: 99;
}

.section_title {
  text-align: center;
  margin: 0 auto 50px;
}

.section_title h3 {
  margin: 5px auto;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 32px;
}

.section_title span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 20px;
}

.section_title p {
  margin: 0;
}

@media all and (max-width: 767.98px) {
  .section_title h3 {
    font-size: 26px;
    letter-spacing: 1px;
  }
  .section_title span {
    letter-spacing: 10px;
  }
}

@media all and (max-width: 575.98px) {
  .section_title h3 {
    font-size: 16px;
    letter-spacing: 0;
    margin: 10px 0;
  }
  .section_title span {
    letter-spacing: 2px;
  }
  .section_title p {
    font-size: 12px;
  }
}

.sec_id {
  width: 100%;
  -webkit-transform: translateY(-35px);
          transform: translateY(-35px);
}

/* Cursor
=========================*/
.cursor {
  z-index: 9999;
  position: fixed;
  width: 15px;
  height: 15px;
  background-color: #d51820;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  -webkit-transition: 0.3s none linear;
  transition: 0.3s none linear;
  -webkit-transition-property: width, height;
  transition-property: width, height;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

/* Main Sec
======================*/
.main_screen {
  padding: 0 !important;
  background-color: #f7f7f7;
  height: 100vh;
}

.main_screen .intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.main_screen .intro::after {
  content: "";
  position: absolute;
  margin: auto;
  width: 95px;
  height: 201px;
  background: url(../images/shap.png) center no-repeat;
  background-size: cover;
  background-size: cover;
  bottom: 200px;
  right: -30px;
}

.main_screen h1 {
  letter-spacing: 6px;
  font-size: 20px;
  text-transform: uppercase;
  margin: 0 0 25px;
}

.main_screen h3 {
    font-size: 50px;
    line-height: 65px;
    font-weight: 900;
    letter-spacing: 1px;
    margin: 5px 0 40px;
    text-transform: uppercase;
}

.main_screen h3 span {
 display: inline-block;
    vertical-align: top;
    font-weight: 400;
    font-size: 36px;
    text-transform: capitalize;

}

.main_screen .link {
  margin: 0 5px 0 0;
}

.main_screen .link:last-child {
  background-color: #fff;
}

.main_screen .link:last-child span {
  color: #231f20;
}

.main_screen .link:last-child:hover span {
  color: #fff;
}

.main_screen::after {
  content: "";
  position: absolute;
  top: 90px;
  bottom: 0;
  right: 0;
  width: 45%;
  height: calc(100% - 90px);
  background: url(../images/side.jpg) center no-repeat;
  background-size: cover;
  border: 20px solid #fff;
  border-right: 0;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(4, 10, 50, 0.05);
          box-shadow: 0px 0px 5px 0px rgba(4, 10, 50, 0.05);
  border-radius: 25% 0 0 0;
  -webkit-border-radius: 25% 0 0 0;
}

@media all and (max-width: 1199.98px) {
  .main_screen h1 {
    letter-spacing: 4px;
    font-size: 18px;
  }
  .main_screen h3 {
    letter-spacing: 0.5px;
    font-size: 42px;
  }
  .main_screen h3 span {
    font-size: 32px;
  }
}

@media all and (max-width: 991.98px) {
  .main_screen::after {
    width: 45%;
  }
  .main_screen h1 {
    letter-spacing: 3px;
    font-size: 16px;
  }
  .main_screen h3 {
    font-size: 32px;
}
  .main_screen h3 span {
    font-size: 24px;
  }
}

@media all and (max-width: 767.98px) {
  .main_screen {
    height: auto;
    padding: 70px 0 !important;
    margin-top: 80px;
  }
  .main_screen::after {
    display: none;
  }
  .main_screen .intro {
    height: auto;
    text-align: center;
  }
  .main_screen .intro h1 {
    margin: auto auto 15px;
  }
  .main_screen .intro h3 {
    margin: 0 auto 15px;
    font-size: 22px;
    line-height: 30px;
  }
  .main_screen .intro .link {
    padding: 0 15px;
  }
}

header {
  position: fixed;
  top: 15px;
  padding: 15px 0;
  left: 0;
  width: 100%;
  z-index: 9998;
  background-color: transparent;
  -webkit-transition: 0.3s linear all;
  transition: 0.3s linear all;
}

header.move {
  top: 0;
  background-color: #fff;
}

header .container .row .col-12 {
  height: 45px;
}

header .logo {
  margin: 0;
  height: 45px;
}

header .logo_link {
  display: inline-block;
  position: relative;
  height: 45px;
  z-index: 999;
}

header .logo_link img {
  height: 100%;
  margin: 0;
}

header .icon_link {
  position: absolute;
  display: none;
  background-color: #d51820;
  right: 15px;
  margin: auto;
  top: 0;
  bottom: auto;
  z-index: 999;
}

header .navbar {
  min-height: 45px;
  width: 100%;
  margin: -45px auto auto;
  padding: 0;
}

header .navbar ul {
  width: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

header .navbar ul li {
  display: inline-block;
}

header .navbar ul li a {
  position: relative;
  color: #231f20;
  font-weight: 600;
  font-size: 13px;
      margin: -2px 0 0 20px;
    letter-spacing: 0.5px;
    line-height: 45px;
  text-transform: uppercase;
  display: block;
  padding: 0;
  -webkit-transition: 0.3s linear all;
  transition: 0.3s linear all;
}
header .navbar ul li:last-child a {
    background-color: #d51820;
    color: #fff !important;
    padding: 0 15px;
    font-size: 11px;
}

header .navbar ul li a::before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(213, 24, 32, 0.25);
  -webkit-transition: 0.3s all linear;
  transition: 0.3s all linear;
}

header .navbar ul li a.active, header .navbar ul li a:hover {
  color: #d51820;
}

header .navbar ul li a.active::before, header .navbar ul li a:hover::before {
  height: 25%;
}
@media all and (min-width: 992px) and (max-width: 1199.98px){
    header .navbar ul li a {
    font-size: 12px;
    margin: -2px 0 0 10px;
    }
    header .navbar ul li:last-child a{
        padding: 0 5px;
        font-size: 10px;
    }
}
@media all and (max-width: 991.98px) {
  header {
    background-color: #fff;
    top: 0;
  }
  header .container {
    max-width: 100%;
  }
  header .icon_link {
    display: inline-block;
  }
  header .navbar {
    background-color: #231f20;
    margin: 0;
    z-index: 9999;
    min-height: auto;
    position: fixed;
    top: 75px;
    left: -290px;
    width: 270px;
    height: calc(100% - 75px);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 25px;
    -webkit-transition: 0.3s left linear;
    transition: 0.3s left linear;
  }
  header .navbar.move {
    left: 0;
  }
  header .navbar ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  header .navbar ul li a {
    color: #fff;
    margin: 10px 0;
  }
}

.about {
  padding: 0;
}

.about_content {
  padding: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-color: #231f20;
  color: #fff;
}

.about_content h1 {
  text-transform: uppercase;
  margin: 0 0 40px;
  font-size: 34px;
  letter-spacing: 1px;
  font-weight: 700;
  padding-left: 15px;
  border-left: 7px double #d51820;
}

.about_content p span {
 font-size: 22px;
  margin: 0 0 20px;
  line-height: 35px;
  letter-spacing: 0.3px;
  text-transform: capitalize;
}
.about_content p {
  font-size: 14px;
  letter-spacing: 0.2px;

  line-height: 25px;
}

.about_content .link {
  margin: 25px 0 0;
}

.about_content .link::before {
  background-color: #fff;
}

.about_content .link:hover span {
  color: #231f20;
}

.about_content.about_text {
  background-color: #fff;
  color: #231f20;
  padding: 50px 15px;
}

.about_content.about_text img {
  margin: 0 0 15px;
  width: 55px;
}
.about_text p {
    font-size: 16px;
    letter-spacing: 1px;
    margin: 25px 0;
    line-height: 30px;
}

@media all and (max-width: 991.98px) {
  .about_content {
    padding: 35px 15px;
  }

  .about_content h1 {
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }
  .about_content h3 {
    font-size: 18px;
    line-height: 25px;
  }
  .about_content p {
    font-size: 13px;
    letter-spacing: 0.1px;
  }
    .about_content.about_text{
      padding: 15px;
  }
.about_text p {
    font-size: 16px;
    letter-spacing: 0.5px;
    margin: 15px 0;
    line-height: 25px;
}
}

.about_features {
  background-color: #f1f1f1;
}

.feature_item {
  margin: 25px auto;
  text-align: center;
}

.feature_item img {
  margin: auto auto 15px;
}

.feature_item h3 {
  text-transform: capitalize;
  margin: 15px 0;
  font-size: 22px;
}
.owl-carousel.owl-loaded.project_mob_slider {
    display: none !important;
}
@media all and (max-width: 576px){
 
.owl-carousel.owl-loaded.project_mob_slider {
    display: block !important;
}
.hidden_mob{
    display: none !important;
}

.feature_item h3 {
    margin: 15px 0 0;
    font-size: 14px;
}   
}

.filter{
    background-color: #fff;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto 25px;
}
.filter h3{
margin: 0;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 3px;
}
.filter .form-group{
    margin: 0;
}
.filter .check{
        display: inline-block;
    margin-inline-start: 25px;
}
.filter .check label{
    margin: 0;
    display: inline-block;
    font-weight: 600;
    letter-spacing: 2px;
    margin-inline-start: 5px;
}
input[type="checkbox"],
input[type="radio"] {
  display: none;
}

input[type="checkbox"] + label,
input[type="radio"] + label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  margin: 0;
  text-transform: uppercase;
}

input[type="checkbox"] + label::before,
input[type="radio"] + label::before {
  content: "";
  display: block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  border: 0;
  background-color: #eee;
  line-height: 18px;
  font-size: 10px;
  z-index: 99;
}

input[type="checkbox"]:checked + label::before,
input[type="radio"]:checked + label::before {
  content: "\f00c";
  color: #ffffff;
  background-color: #d51820;
}

.projects {
  background-color: #f7f7f7;
}

.project_item {
  margin: 0 auto 25px;
  position: relative;
  text-align: center;
  display: block;
}

.project_item .cover {
  position: relative;
  overflow: hidden;
}

.project_item .cover::before {
  content: "";
  position: absolute;
  left: 100%;
  top: -100%;
  height: 100%;
  width: 100%;
  background-color: rgba(213, 24, 32, 0.6);
  z-index: 99;
  -webkit-transition: 0.3s none linear;
  transition: 0.3s none linear;
  -webkit-transition-property: left, top;
  transition-property: left, top;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.project_item .cover img {
  position: relative;
  width: 100%;
  -webkit-transition: 2s transform linear;
  -webkit-transition: 2s -webkit-transform linear;
  transition: 2s -webkit-transform linear;
  transition: 2s transform linear;
  transition: 2s transform linear, 2s -webkit-transform linear;
}

.project_item .cover i {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  color: #fff;
  width: 40px;
  height: 40px;
  font-size: 32px;
  opacity: 0;
  z-index: 999;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition: 0.3s opacity linear;
  transition: 0.3s opacity linear;
}

.project_item h3 {
  display: block;
  font-size: 16px;
  background-color: #fff;
  color: #231f20;
  padding: 25px 15px;
}

.project_item:hover .cover::before {
  left: 0;
  top: 0;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.project_item:hover .cover img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.project_item:hover .cover i {
  opacity: 1;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.more {
  margin: 10px auto 0;
}

.modal {
  z-index: 9999;
}

.modal .modal-dialog {
  position: fixed;
  margin: auto;
  max-width: 640px;
  width: 96%;
  height: 100%;
  z-index: 9999;
  -webkit-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}
@media all and (max-width: 1366px){
.modal .modal-dialog {
  max-width: 540px;
}    
}
.modal .modal-content {
  height: 100%;
  overflow-y: auto;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 25px;
}

.modal .slide {
  position: relative;
  margin-bottom: 15px;
}

.modal .slide .carousel-control-next,
.modal .slide .carousel-control-prev {
 position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 5px;
    left: auto;
    width: 40px;
    height: 40px;
    line-height: 46px;
    opacity: 1;
    color: #231f20;
    background-color: #fff;
    text-shadow: none;
    border-radius: 50%;
}

.modal .slide .carousel-control-next i,
.modal .slide .carousel-control-prev i {
  line-height: 40px;
  font-size: 18px;
}

.modal .slide .carousel-control-prev {
  left: 5px;
  right: auto;
}

.modal .close {
  position: absolute;
  left: 10px;
  top: 5px;
  opacity: 1;
  font-size: 36px;
  color: #d51820;
}

.modal h3 {
  margin: 15px auto;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 24px;
}

.modal ul li {
  padding-left: 15px;
  margin: 10px 0;
  font-size: 16px;
}

.modal ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  background-color: #d51820;
  width: 7px;
  height: 7px;
}

@media all and (max-width: 575.98px) {
  .modal ul li {
    font-size: 14px;
    line-height: 22px;
  }
}

.modal .modal-body {
  padding: 15px 15px 80px;
}

.modal.fade .modal-dialog {
  right: -576px;
  -webkit-transition: 0.3s none linear;
  transition: 0.3s none linear;
  -webkit-transition-property: opacity, right;
  transition-property: opacity, right;
}

.modal.fade.show .modal-dialog {
  right: 0;
}

.modal-open {
  padding: 0 !important;
  overflow: hidden !important;
}

.modal-backdrop.show {
  opacity: 70%;
  z-index: 9998;
}

.factory {
  background-color: #fff;
}

.clients {
  padding: 50px 0;
 
}

.clients .client_item {
  opacity: 0.8;
}

.clients .client_item:hover {
  opacity: 1;
}

.contact {
  padding: 0;
}
.nav-tabs {
    border-bottom: 0;
}
.nav-tabs li a {
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 12px;
    line-height: 40px;
    text-transform: uppercase;
    margin: 0;
    color: #020001;
    display: block;
    padding: 0 15px;
}
.nav-tabs li a.active {
   background-color: #d51820;
    color: #fff;
}
.contact_info {
     background-color: #f7f7f7;
  padding: 70px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.contact_info .section_title {
  margin: 0 0 50px;
}

.contact_info ul li {
  margin-bottom: 25px;
}

.contact_info ul li a {
  color: #231f20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.contact_info ul li i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: #fff;
  text-align: center;
  margin-right: 20px;
}

.contact_info ul li span b {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 13px;
  text-transform: uppercase;
}

.contact_form {
  padding: 70px 50px;
  background-color: #fafafa;
  color: #fff;
}

.contact_form form {
  max-width: 576px;
  margin: 0 auto;
}

.contact_form .link {
  margin: 15px 0 0;
}

@media all and (max-width: 991.98px) {
  .section_title {
    margin: 15px 0 30px;
  }
  .contact_form,
  .contact_info {
    padding: 35px 50px;
  }
  .contact_form form {
    max-width: 100%;
  }
}

@media all and (max-width: 575.98px) {
  .contact_form,
  .contact_info {
    padding: 25px 15px;
  }
  .contact_form form {
    max-width: 100%;
  }
}

.form-group {
  position: relative;
  margin: 10px 0;
  text-align: start;
}

label {
  display: block;
  font-weight: 400;
  font-size: 13px;
  line-height: 25px;
  margin: 0 0 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: start;
  color: #231f20;
}

.form-control {
  text-align: start;
  width: 100%;
  color: #231f20;
  border: 1px solid #ddd;
  background-color: transparent;
  margin: 0 0 15px;
  padding: 0 15px;
  line-height: 50px;
  height: 50px;
  font-size: 14px;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-weight: 400;
  border-radius: 0px;
  -webkit-border-radius: 0px;
}

.form-control:hover, .form-control:focus {
  outline: 0;
  background-color: transparent;
  border: 1px solid #ddd;
  -webkit-box-shadow: none;
          box-shadow: none;
}

textarea.form-control {
  resize: none;
  min-height: 120px !important;
  padding: 15px !important;
  line-height: 25px;
}

footer {
  background-color: #231f20;
  padding: 25px 0;
}

footer .col-12 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media all and (max-width: 575.98px) {
  footer .col-12 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-grid-column-align: center;
        justify-self: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  footer .col-12 .social {
    margin-bottom: 10px;
  }
}

footer p {
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.4px;
  margin: 0;
}

footer li {
  display: inline-block;
}

footer li a {
  color: #fff;
  display: block;
  font-size: 18px;
  margin-right: 15px;
}

footer li a:hover {
  color: #d51820;
}

/* Up Button
====================*/
.up_btn {
  width: 40px;
  height: 40px;
  opacity: 0;
  position: fixed;
  bottom: 90px;
  right: 10px;
  margin: auto;
  z-index: 9998;
  -webkit-transition: 0.5s linear all;
  transition: 0.5s linear all;
}

.up_btn i {
  line-height: 40px;
}

.up_btn.show {
  opacity: 1;
  bottom: 15px;
}
/*# sourceMappingURL=style.css.map */