@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none !important;
}

*:not(i) {
  font-family: "Gilroy", Arial, sans-serif !important;
}

a {
  text-decoration: none !important;
}

button {
  cursor: pointer;
}

header .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 0;
}

header .top .brand-title{
    display: flex;
    flex-direction: column;
}
header .top .brand-title span:first-child{
        font-size: 18px;
    font-weight: 700;

}
header .top .brand-title span:nth-child(2){
    font-size: 12px;
    position: relative;
    color: #b0b2b1;
}

header .top .brand-title span:nth-child(2)::after{
    position: absolute;
    content: "";
    width: 63px;
    height: 1px;
    left: 88px;
    bottom: 9px;
    background-color: #b0b2b1;
    transform: scaleX(1);
    transform-origin: left;
    transition: .4s;
}
header .top .topLeftSide:hover .brand-title span:nth-child(2)::after{
    transform: scaleX(.7);
}
header .top img {
  max-height: 80px;
}
header .top .topRightSide img {
  margin-right: -78px;
  display: block;
}

header .top .topRightSide .master-order{
    display: inline-block;
    background: #47ff000d no-repeat left center;
    background-size: 30px;
    color: #85c46c;
    padding: 13px 51px;
    border-radius: 8px;
    transition: .3s;
    font-weight: 700;
    text-transform: uppercase;
}
header .top .topRightSide .master-order:hover{
    background-color:#45ff002e;
}
header .top .topRightSide .master-order i{
    margin-right:8px;
}
header .top .topLeftSide{
    color:black;
}
header .top .topRightSide,
header .top .topLeftSide {
  display: flex;
  justify-content: center;
  align-items: center;
}

header .top .topLeftSide {

  font-size: 2.5rem;
  margin-bottom: 0;
}
header .top .topRightSide .quote,
header .top .topLeftSide .quote {
  text-align: right;
  font-style: italic;
}
header .top .topRightSide .quote h2,
header .top .topRightSide .quote h3,
header .top .topLeftSide .quote h2,
header .top .topLeftSide .quote h3 {
  font-size: 13px;
  line-height: 1.42;
}

nav {
  background: #3e3e3e;
  padding: 4px 0;
}
nav .menuButton {
  display: none;
}
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav .container .call {
  display: flex;
  align-items: center;
  color: white;
}
nav .container .call img {
  margin-right: 14px;
  max-height: 40px;
}
nav .container .call h6 {
  font-weight: 400;
  font-size: 12px;
  margin-bottom: 0;
  color: #ffffff5e;
}
nav .container .call h3 {
        margin-left: -2px;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 15px;
}
nav .navLinks {
  display: flex;
}
nav .navLinks .servicesLink {
  position: relative;
}
nav .navLinks .servicesLink:hover .dropDown {
  display: block;
}
nav .navLinks .servicesLink .dropDown {
  background-color: white;
  position: absolute;
  box-shadow: 0 5px 20px #00000026;
  border-radius: 5px;
  top: 100%;
  left: 0;
  padding: 15px 0;
  z-index: 50;
  min-width: 280px;
  display: none;
}
nav .navLinks .servicesLink .dropDown::before {
  content: "";
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  border-left: 10px solid transparent;
  top: -9px;
  left: 25px;
  position: absolute;
  width: 0;
  height: 0;
}
nav .navLinks .servicesLink .dropDown a {
  display: block;
  padding: 0 15px;
  color: #000000 !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 36px;
}
nav .navLinks .servicesLink .dropDown a:hover {
  background: #e6e6e6;
}
nav .navLinks .navLink {
    padding: 15px 16px;
    color: white !important;
    border-right: 1px solid #2b2b2b;
    font-size: 14px;
    transition: 0.3s ease;
    display: block;
    cursor: pointer;
}
nav .navLinks .navLink:hover {
  background: #2b2b2b;
}

.search {
    background-image: linear-gradient(90deg, #6b6b6b, #000);
    position: relative;
}
.search .texture {
  background-repeat: repeat;
  background-image: url("../img/texture.png");
  filter: grayscale(100%) opacity(0.05) brightness(100);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  content: "";
  background-size: 210px;
  background-position: center;
  pointer-events: none;
}
.search .container {
  display: flex;
  justify-content: center;
  height: 300px;
  flex-direction: column;
}
.search .voenTabs {
  color: white;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  display: flex;
  overflow: hidden;
}
.search .voenTabs .tab {
  color: #ffffff82;
  z-index: 1;
  background-color: #5346a38f;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
  padding: 15px 15px 0 15px;
}
.search .voenTabs .tab.active {
    background-color: #3e3e3e80;
    color: white;
}
.search .voenTabs .tab.active:hover {
  opacity: 1;
}
.search .voenTabs .tab:hover {
  opacity: 0.7;
}
.search .searchInput {
    background-color: #3e3e3e80;
    padding: 15px;
    display: flex;
    width: 100%;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    z-index: 1;
}
.search .searchInput input {
  font-size: 1.4em;
  width: 100%;
  height: 80px;
  padding-left: 30px;
 
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-right-radius: 0;
 border-bottom-right-radius: 0;
   -webkit-border-top-left-radius: 4px;
   -webkit-border-bottom-left-radius: 4px;
   -webkit-border-top-right-radius: 0;
   -webkit-border-bottom-right-radius: 0;
  border: none;
  box-shadow: 0 5px 5px #4a4a731a;
}
.search .searchInput input::-moz-placeholder {
  color: gray;
}
.search .searchInput input:-ms-input-placeholder {
  color: gray;
}
.search .searchInput input::placeholder {
  color: gray;
}
.search .searchInput .searchBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  background-color: white;
  padding: 7px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.search .searchInput .searchBtn a {
    display: block;
    background-color: #67b24a;
    color: white;
    padding: 18px 41px;
    font-size: 1.2rem;
    border-radius: 4px;
    font-weight: 700;
    border: none;
    transition: 0.3s ease;
    white-space: nowrap;
}
.search .searchInput .searchBtn a:hover {
  background-color: #40991f;
}

.title {
  font-size: 26px;
  text-align: center;
  color: #191919;
  margin-bottom: 50px;
}
.title p {
    font-size: 32px;
    font-weight: 500;
}

section {
  padding: 50px 0;
}

.services {
  background-color: #f5f5f5;
}
.services .service {
  padding: 20px 30px;
  background-color: white;
  border-radius: 5px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 15px 0px #0000001c;
  transition: all 0.1s ease-in-out;
  display: flex;
  align-items: center;
  transition: 0.3s ease;
  min-height: 97px;
}
.services .service:hover {
  box-shadow: none;
}
.services .service img {
  margin-right: 20px;
}
.services .service h3, .services .service h5 {
  font-weight: bold;
  font-size: 16px;
  color: #272727;
  margin-bottom: 0;
}

.usefulInfo .row {
  margin-right: -5px;
  margin-left: -5px;
}
.usefulInfo .row > div {
  padding-right: 5px;
  padding-left: 5px;
}
.usefulInfo .info {
    transition: .3s ease;
  position: relative;
  height: 260px;
  border-radius: 6px;
  overflow: hidden;
}
.usefulInfo .info .bgImg {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  
}

.usefulInfo .info:hover{
    transform:translateY(-10px);
}
.usefulInfo .info .caption {
  background: linear-gradient(#7663690a 0%, #76636936 27%, #3e3e3ecc 64.33%, #000000 100%);
  padding: 16px;
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  color: white;
  justify-content: space-between;
}



.usefulInfo .info .caption .captionTop {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1rem;
  padding: 4px 8px;
  text-transform: uppercase;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.usefulInfo .info .caption .captionBottom {
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 20px;
  line-height: 24px;
}
.usefulInfo .info .caption .captionBottom h4 {
  font-weight: 700;
  font-size: 18px;
}
.usefulInfo .info .caption .captionBottom .icons {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.usefulInfo .info .caption .captionBottom .icons .likeDisLike {
  display: flex;
  align-items: center;
}
.usefulInfo .info .caption .captionBottom .icons .likeDisLike .like.active {
  background: rgba(255, 255, 255, 0.3);
}
.usefulInfo .info .caption .captionBottom .icons .likeDisLike .like.active svg {
  fill: #31e140;
}
.usefulInfo .info .caption .captionBottom .icons .likeDisLike .dislike.active {
  background: rgba(255, 255, 255, 0.3);
}
.usefulInfo .info .caption .captionBottom .icons .likeDisLike .dislike.active svg {
  fill: #fc3a3a;
}
.usefulInfo .info .caption .captionBottom .icons .likeDisLike .like,
.usefulInfo .info .caption .captionBottom .icons .likeDisLike .dislike {
  padding: 6px 8px;
  background: transparent;
  transition: 0.3s ease;
  border-radius: 12px;
  cursor: pointer;
}
.usefulInfo .info .caption .captionBottom .icons .likeDisLike .like:hover,
.usefulInfo .info .caption .captionBottom .icons .likeDisLike .dislike:hover {
  background: rgba(255, 255, 255, 0.3);
}
.usefulInfo .info .caption .captionBottom .icons .likeDisLike .like svg,
.usefulInfo .info .caption .captionBottom .icons .likeDisLike .dislike svg {
  fill: white;
}
.usefulInfo .info .caption .captionBottom .icons .view {
  font-size: 14px;
  font-weight: 700;
}

.usefulLinks {
  background-color: #f5f5f5;
}
.usefulLinks .title h4{
    font-size: 2rem;
}
.usefulLinks .link {
  background-color: white;
  color: black;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 13px;
  line-height: 1.5;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  box-shadow: 0 2px 20px 0 #00000014;
  width: 100%;
  margin-bottom: 30px;
}
.usefulLinks .link:hover {
  background-color: #3e3e3e;
  color: white;
}

/*.callToActionContainer {*/
/*  background-image: url("../img/callToAction.jpeg");*/
/*  background-position: center;*/
/*  background-size: cover;*/
/*  padding: 55px 80px 55px;*/
/*  color: white;*/
/*  border-radius: 4px;*/
/*}*/
/*.callToActionContainer h2 {*/
/*  font-size: 1.6875rem;*/
/*  font-weight: 700;*/
/*  line-height: 1.25;*/
/*  max-width: 720px;*/
/*  margin-bottom: 1rem;*/
/*}*/
/*.callToActionContainer p {*/
/*  font-size: 1rem;*/
/*  line-height: 1.5;*/
/*  max-width: 720px;*/
/*  margin-bottom: 1rem;*/
/*}*/
/*.callToActionContainer a {*/
/*  display: block;*/
/*  font-size: 1rem;*/
/*  font-weight: 400;*/
/*  padding: 12px 25px;*/
/*  color: #3e3e3e;*/
/*  border-radius: 2px;*/
/*  background: white;*/
/*  transition: 0.3s ease;*/
/*  width: -webkit-fit-content;*/
/*  width: -moz-fit-content;*/
/*  width: fit-content;*/
/*}*/
/*.callToActionContainer a:hover {*/
/*  opacity: 0.8;*/
/*}*/
/*.callToActionContainer a svg {*/
/*  margin-left: 0.75rem;*/
/*}*/

.call-to-action .resp-svg{
    display: none;
    width: 25px;
    margin: auto;
}

.call-to-action{
  padding: 3rem 0 2rem;
  
}

.call-to-action .icon{
  width: 45px;
  margin-left: -82px;
  margin-right: 30px;
}

.call-to-action h2{
  font-size: 40px;
}
.call-to-action h2 span{
    font-weight:700;
}
.call-to-action p{
  font-size: 18px;
}

.call-to-action a{
     padding: 22px 60px;
    background: #8fcb77;
    font-size: 16px;
    color: white;
    border-radius: 100px;
    transition: 0.3s ease;
    display: inline-block;
    font-weight: 600;
    width: max-content;
    margin: auto;
    margin-top: 10px;
    box-shadow: 0 19px 40px 0 rgb(143 203 119 / 76%);
    transition:.3s;
}

.call-to-action .row{
  text-align: center;
}

.call-to-action .btn_wrapper{
  margin-top: 30px;
}

.call-to-action a:hover{
  background: #007548;
  box-shadow:none;
  color:#fff;
}

.inside_page_call{
    background: #b8ff9a3b;
    color: #00992f;
}

.departments_content .departments_box{
    background: #3a3a3a;
    padding: 20px;
    border-radius: 5px;
    color: white;
    text-align: center;
    box-shadow: 0 1px 4px rgb(0 0 0 / 30%), 0 0 20px rgb(0 0 0 / 10%) inset;
    position: relative;
    /*background-color: #9EEBA1;*/
    transition: 0.3s linear;
    height: 100%;
}

.departments_content .departments_box:before, 
.departments_content .departments_box:after {
    position: absolute;
    content: "";
    top: 100px;
    bottom: 5px;
    left: 30px;
    right: 30px;
    z-index: -1;
    box-shadow: 0 0 40px 13px #3a3a3a;
    border-radius: 100px/20px;
    transition: 0.3s linear;
}

.departments_content .departments_box:hover{
    box-shadow: none;
}

.departments_content .departments_box:hover::before,
.departments_content .departments_box:hover::after{
    box-shadow: none;
}



footer .footerTop {
  padding-top: 48px;
}
footer .footerTop h5 {
  font-weight: 700;
  margin-bottom: 14px;
  font-size: 16px;
  letter-spacing: 1.5px;
  margin-top: 20px;
  text-transform: uppercase;
}
footer .footerTop a {
  display: block;
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  transition: 0.3s ease-out;
  line-height: 1.25;
  padding: 6px 0;
}
footer .footerTop a:hover {
  color: black;
}
footer .socials {
  padding: 0 15px;
  margin-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .socials a {
  margin: 0 25px;
}
footer .socials a:first-child i{
    font-size:23px;
}
footer .socials i {
  font-size: 25px;
  color: #b2b2b2;
  transition: 0.3s ease-out;
}
footer .socials i:hover {
  color: #000;
}
footer .rightSide {
  margin-bottom: 10px;
  text-align: right;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
footer .rightSide .icon {
  margin-right: 5px;
}
footer .rightSide .icon::before {
  content: "";
  font-family: "honorIconFont" !important;
}
footer .rightSide h6 {
  line-height: 1;
  font-size: 14px;
  margin-bottom: 0;
}
footer .footerBottom {
  border-top: 1px solid #ededed;
  padding: 16px 0;
}
footer .footerBottom .menuLinks {
  display: flex;
  margin-bottom: 12px;
}
footer .footerBottom .menuLinks a {
  margin-right: 20px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  transition: 0.3s ease-out;
}
footer .footerBottom .menuLinks a:hover {
  color: black;
}
footer .footerBottom .copy {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: normal;
  margin-bottom: 0;
}

@media only screen and (max-width: 1200px) {
    .services .service img{
        display: none;
    }
  nav .container .call{
             display: none;
    }}
@media only screen and (max-width: 992px) {
      nav .container .call{
             display: flex;
    }
    .services .service img{
        display: inline-block;
    }
    body{
        padding-top:124px;
    }
     header{
         background:white;
         z-index:20;
          position:fixed;
         top:0;
         width:100%;
        
     }
     nav{
             z-index:20;
         position:fixed !important;
         top:76px;
         width:100%;
     }
  header .top .topLeftSide {
    flex-direction: column;
  }
  header .top .topLeftSide h1 {
    margin-left: 0;
    font-size: 20px;
  }
  header .top .topRightSide .quote h2 {
    max-width: 200px;
  }
  nav {
    position: relative;
  }
  nav .menuButton {
    display: block;
  }
  nav .menuButton i {
    color: white;
    font-size: 25px;
    cursor: pointer;
  }
  nav .menuButton i.deactive {
    display: none;
  }
  nav .navLinks {
    position: fixed;
    top: 124px;
    width: 100%;
    height: calc(100vh - 124px);
    background-color: #3e3e3e;
    padding: 50px;
    flex-direction: column;
    z-index: 10;
    left: -100%;
    transition: 0.3s ease;
    overflow-y:auto;
  }
  nav .navLinks .navLink {
    border: none;
    font-size: 18px;
  }
  nav .navLinks.open {
    left: 0;
  }
  nav .navLinks .servicesLink:hover .dropDown {
    display: none;
  }
  nav .navLinks .servicesLink .dropDown {
    position: relative;
    min-width: 100%;
    top: 0;
  }
  nav .navLinks .servicesLink .dropDown.active {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
    .order-master .tab-content .tab-inputs .col-input{
        width:100%;
    }
    .order-master .tab-content .tab-inputs{
        flex-wrap:wrap;
    }
header .top .topRightSide h2,
header .top .topLeftSide h3 {
    margin-left: 0px !important;
    font-size: 20px !important;
    margin-bottom: 0 !important;
    margin-top: 5px !important;
}
     .staticDescription,.fullDescription {
         padding: 30px 20px !important;
     }
  .search .searchInput input::-moz-placeholder {
    font-size: 18px;
  }
  .search .searchInput input:-ms-input-placeholder {
    font-size: 18px;
  }
  .search .searchInput input::placeholder {
    font-size: 18px;
  }
  .search .searchInput .searchBtn a {
    font-size: 14px;
  }

  .callToActionContainer {
    padding: 40px;
  }

  footer .footerBottom .menuLinks {
    display: block;
  }

}
@media only screen and (max-width: 576px) {
    .call-to-action .resp-svg{
        display:block;
    }
    .call-to-action .icon{
        display:none;
    }
    header{
         padding:11px 0;
    }
    header .top .topRightSide img{
        margin-right:0px;
        position:relative;
        z-index:-1;
    }
    header .top .topRightSide{
        height:54px;
        width:54px;
        background:#47ff000d no-repeat left center;
        border-radius:8px;
    }
    header .top .topRightSide .master-order{
        display:none;
    }
    
  .callToActionContainer {
    padding: 30px;
  }

  .search .container {
    height: 250px;
  }
  .search .voenTabs .tab {
    font-size: 14px;
  }
  .search .searchInput input {
    height: 50px;
  }
  .search .searchInput input::-moz-placeholder {
    font-size: 16px;
  }
  .search .searchInput input:-ms-input-placeholder {
    font-size: 16px;
  }
  .search .searchInput input::placeholder {
    font-size: 16px;
  }
  .search .searchInput .searchBtn a {
    padding: 8px 41px;
    font-size: 12px;
  }

  .services .service {
    min-height: 71px;
  }

  footer .rightSide {
    justify-content: center;
    margin-top: 15px;
  }
}
@media only screen and (max-width: 500px) {
  .search .searchInput input::-moz-placeholder {
    font-size: 14px;
  }
  .search .searchInput input:-ms-input-placeholder {
    font-size: 14px;
  }
  .search .searchInput input::placeholder {
    font-size: 14px;
  }
  .search .searchInput .searchBtn a {
    font-size: 12px;
  }
}

@media (max-width:400px){
    .search .searchInput{
        flex-direction:column;
    }
    .search .searchInput .searchBtn a{
        width:100%;
        text-align:center;
    }
    .search .searchInput input{
        border-top-right-radius:4px;
        border-bottom-left-radius:0px;
    }
    .search .searchInput .searchBtn{
        border-bottom-left-radius:4px;
        border-top-right-radius:0;
    }
    
    
}
.usefulInfo #dle-content{
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.shortStory{
    background: #f5f5f5;
}

    .static .title , .fullStory .title {
        text-align:left;
        margin-bottom: 20px;
    }
     .staticDescription,.fullDescription {
  padding: 50px 30px;
  background-color: white;
  border-radius: 2px;
}

.allInfo a{
    width:fit-content;
    display:block;
   color: white !important;
        padding: 10px 20px;
    font-size: 15px;
    border-radius: 4px;
    border: none;
    transition: 0.3s ease;
       background-color: #3e3e3e;
       margin:0 auto;
}

.allInfo a:hover{
    opacity:.8;
}

.allInfo{
    text-align:center;
}

/*Usta cagir*/
.order-master .nav-pills{
    justify-content:space-evenly;
    position:relative;
}
.order-master .nav-pills li:not(:first-child){
    position:relative;
    z-index:1;
}
.order-master .nav-pills li:first-child{
    width: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.order-master .nav-pills .prog{
    height: 2px;
    width: 100%;
    background-color: #f5f5f5;
}

.order-master .nav-pills .prog .prog-loading{
    height:2px;
    background:#8fcb77;
    width:0%;
    transition:.5s;
}
.order-master .nav-pills .nav-link{
    background:#f5f5f5;
    color:#9a8a8a;
    width:30px;
    padding:3px 0;
    text-align:center;
}
.order-master .nav-pills .nav-link:hover{
    color:#9a8a8a;
}
.order-master .nav-pills .nav-link.active{
    background:#8fcb77;
    color:#fff;
}
.order-master .tab-content .tab-inputs{
    display:flex;
    justify-content:space-between;
    padding:58px 0;
}
.order-master .tab-content #pills-three .tab-inputs{
    padding-bottom:20px;
}
.order-master .tab-content .tab-inputs input{
    padding: 12px 20px;
    border: 1px solid #e9e9e9;
    border-radius: 3px;
    font-size: 14px;
    display: block;
    width: 100%;
   
}
.order-master .tab-content .tab-inputs input.required{
    border-color:red !important;
}
.order-master .tab-content .tab-inputs select.required{
    border-color:red !important;
}

.order-master .tab-content .tab-inputs textarea.required{
    border-color:red !important;
}
.order-master .tab-content .tab-inputs input:focus{
    border-color:#8fcb77;
}
.order-master .tab-content .tab-inputs select{
    height:47px;
   color:#757575;
    border: 1px solid #e9e9e9;
    border-radius: 3px;
    font-size: 14px;
    display: block;
    width: 100%;
}
.order-master .tab-content .tab-inputs textarea{
    padding: 12px 20px;
    border: 1px solid #e9e9e9;
    border-radius: 3px;
    font-size: 14px;
    display: block;
    width: 100%;
}
.order-master .tab-content .tab-inputs textarea:focus{
    border-color:#8fcb77;
}
.order-master .tab-content .tab-inputs select:focus{
    box-shadow:none;
    border-color:#8fcb77;
}
.order-master .tab-content .tab-inputs .col-input{
    width:49%;
}


.order-master .tab-content .tab-btns{
    display:flex;
    justify-content:space-between;
}

.order-master .tab-content .tab-btns button{
    border-radius: 3px;
    border: none;
    padding: 16px 90px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.4s ease;
    cursor: pointer;
    color: #fff;
    
}

.order-master .tab-content .tab-btns button.disabled{
    background:#eaebeb !important;
}
.order-master .tab-content .tab-btns button.back{
    background:#c4c6c6;
}
.order-master .tab-content .tab-btns button.contunie{
    background:#8fcb77;
}
button.disabled{
    /*pointer-events:none !important;*/
}



@media (max-width:768px){
    .order-master .tab-content .tab-inputs .col-input{
        width:100%;
    }
    .order-master .tab-content .tab-btns button{
        padding:10px 20px;
    }
}