/*Scrollbar*/
body::-webkit-scrollbar-track
{
    border-radius: 10px;
    background-color: transparent;
}

body::-webkit-scrollbar
{
    width: 5px;
    background-color: transparent;
}

body::-webkit-scrollbar-thumb
{
    border-radius: 10px;
    background-color: #e6b95b;
}
.common-mt {
    padding-top: 170px;
    position: relative;
}
.common-mt:before {
    content: '';
    position: absolute;
    height: 170px;
    width: 100%;
    top: 0;
    left: 0;
    background: #023282;
}
#scrollTopBtn {
    position:fixed;
    z-index: 999999;
    right: 20px;
    bottom: 100px;
    cursor:pointer;
    width: 30px;
    height: 30px;
    background-color: #000000;
    opacity: .2;
    display:none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    transition: all .3s ease;
}
#scrollTopBtn span {
    position:absolute;
    z-index: 9999;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
}
#scrollTopBtn:hover {
    background-color: #00ab4b;
    opacity:1;
    filter:"alpha(opacity=100)";
    -ms-filter:"alpha(opacity=100)";
}
.swal-overlay--show-modal{
    z-index: 99999;
}
.body-overflow{
    overflow: hidden;
}
.padding-top-170{
   padding-top: 130px;
}
.fixed-header .margin-top-170 {
    margin-top: 160px;
}
body a,
body a:hover{
    text-decoration: none;
}
a,button {
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.agreement-error-msg {
    margin-bottom: 0;
    margin-top: 5px;
    color: red;
    font-weight: 400;
    font-size: 14px;
    position: absolute;
    bottom: -25px;
}
#toast-container {
    position: fixed;
    z-index: 99999999;
    top: unset;
    bottom: 10px;
}
#toast-container > div{
    opacity: 1;
}
.custom-toastr-msg-box {
    width: 300px;
    padding: 0.6rem;
    border-radius: 0.25rem;
    box-shadow: 0 0.46875rem 2.1875rem rgba(4, 9, 20, 0.03),
            0 0.9375rem 1.40625rem rgba(4, 9, 20, 0.03),
            0 0.25rem 0.53125rem rgba(4, 9, 20, 0.05),
            0 0.125rem 0.1875rem rgba(4, 9, 20, 0.03);
    position: fixed;
    bottom: 20px;
    right: 20px;
    user-select: none;
}
.custom-toastr-msg-box h2 {
    color: #ffffff;
    font-size: 18px;
    margin: 0;
}
.custom-toastr-msg-box.success {
    background: #00ab4b;
    text-align: center;
}
.custom-toastr-msg-box.error {
    background: #f7b924;;
    text-align: center;
}
.ajax-loader-img{
    text-align: center;
}
.ajax-loader-img img{
    /* position: absolute; */
    width: 30px;
    margin: 6px 0 0px;
}
.lg-backdrop{
    z-index: 9999999999;
}
.lg-outer.lg-visible{
    z-index: 9999999999;
    background: #000000ad;
}
/*Common css End*/

/*Breadcrumb Css start*/
.dgd-breadcrumb {
    display: flex;
    padding: 1% 4%;
}
.dgd-breadcrumb .item {
    margin-right: 7px;
    list-style: none;
    color: #000000;
    font-size: 15px;
}
.dgd-breadcrumb .item a:after {
    content: '\f054';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
    margin-left: 7px;
}
.dgd-breadcrumb .item a {
    color: #000000;
    display: inline-flex;
    align-items: center;
    font-size: 15px;
}
.dgd-breadcrumb .item a:hover {
    color: #00ab4b;
}
.dgd-breadcrumb .item:last-child {
    margin-right: 0;
}
.dgd-breadcrumb .item:last-child a:after {
    display: none;
}
/*Breadcrumb Css End*/

/*Animate Label css start*/
.animate-label label {
    left: 23px;
}
.animate-label.not-required label {
    animation: none!important;
    color: #999!important;
}

.animate-label.not-required input {
    border-color: #ced4da!important;
}
.animate-label label {
    position: absolute;
    z-index: -1;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    top: 9px;
    font-size: 15px;
    padding: 0 5px;
    -webkit-transition: all .3s;
    transition: all .3s;
    display: inline-block;
    height: 20px;
    line-height: 20px;
    left: 8px;
    margin-bottom: 0;
    color: #999;
}
.animate-label .filled + label {
    transition: none;
}
.animate-label.focus-out select,
.animate-label.focus-out textarea,
.animate-label.focus-out input {
    border-color: red;
    font-size: 17px;
}
.animate-label.fixed-label label {
    top: -11px!important;
    /* color: #00ab4b!important; */
    z-index: 11111!important;
    background: #ffffff!important;
    user-select: none;
    font-size: 13px;
}
.animate-label.focus-out label{
    -webkit-animation: v-shake .6s cubic-bezier(.25,.8,.5,1);
    animation: v-shake .6s cubic-bezier(.25,.8,.5,1);
    color: red;
}
.animate-label.label-fixed label {
    top: -11px!important;
    z-index: 11111!important;
    background: #ffffff!important;
    font-size: 13px!important;
}
@-webkit-keyframes v-shake {
  59% {
    margin-left: 0;
  }
  60%,80% {
    margin-left: 2px;
  }
  70%,90% {
    margin-left: -2px;
  }
}

@keyframes v-shake {
  59% {
    margin-left: 0;
  }
  60%,80% {
    margin-left: 2px;
  }
  70%,90% {
    margin-left: -2px;
  }
}
.animate-label .filled {
    background: #ffffff!important;
    border-color: #ced4da!important;
}
.animate-label {
    position: relative;
}
.animate-label textarea,
.animate-label input {
    background: transparent;
}
.animate-label .filled + label,
.animate-label select:focus + label,
.animate-label textarea:focus + label,
.animate-label input:focus + label{
    color: #00ab4b;
    top: -11px;
    z-index: 111;
    background: #ffffff;
    animation: none;
    font-size: 14px;
}
.animate-label[class*="col-"] label, 
.animate-label[class*="col-"] .filled + label, 
.animate-label[class*="col-"] select:focus + label,
.animate-label[class*="col-"] textarea:focus + label, 
.animate-label[class*="col-"] input:focus + label{
    left: 23px;
}
/*Animate Label css end*/

/*Header css start*/
header a,
header a:hover{
    text-decoration: none!important;
}
.fixed-header .navbar-main {
    position: fixed;
    left: 0;
    top: 0;
    box-shadow: 0px 0px 20px #bbbbbbc2;
}
.navbar-main .top-header {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #011536;
    padding: 10px 4%;
}
.navbar-main .top-header .contact-signup {
    display: flex;
    align-items: center;
}
.navbar-main .top-header .contact-signup .call-us,
.navbar-main .top-header .contact-signup .call-us a {
    color: #000000;
    display: inline-block;
    font-size: 16px;
    position: relative;
    padding: 0 17px 0 10px;
    line-height: 20px;
    font-weight: 400;
    text-align: left;
    margin-bottom: 0;
}
.navbar-main .top-header .login-btn {
    margin-right: 30px;
}
.navbar-main .top-header a, 
.navbar-main .top-header a span, 
.navbar-main .top-header h2, 
.navbar-main .top-header h2 span{
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.navbar-main .top-header a:hover, 
.navbar-main .top-header a:hover span, 
.navbar-main .top-header .call-us:hover a,
.navbar-main .top-header .call-us:hover {
    color: #ffffff!important;
}
.navbar-main .icon {
    margin-right: 5px;
}
.navbar-main .top-header .contact-signup .call-us a {
    padding: 0;
}

.navbar-main .top-header .contact-signup .request-quote {   
  margin-bottom: 0;   
  display: flex;  
  align-items: center;
}
.navbar-main .top-header .login-signup-btn-wrapper {
    margin-right: 20px;
}
.navbar-main .top-header .login-signup-btn-wrapper a {
    color: #000000;
    font-size: 16px;
}
.navbar-main .top-header .login-signup-btn-wrapper a:last-child {
    border-right: 0px;
    padding-right: 5px;
}
.navbar-main .top-header .my-cart{
    display: none!important;
}
.header-inner-wrapper {
    position: relative;
}
.navbar-main {
    transition: all .5s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: absolute;
    z-index: 999999999;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: #023282;
}
.navbar-main .logo-section {
    display: flex;
    align-items: center;
    height: 100%;
}
.navbar-main .brand-logo{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* width: 150px; */
}
.fixed-header .brand-logo {
}
.brand-logo img{
    width: 250px;
    /* height: 38px; */
    background: transparent;
}
.brand-logo img.mobile-tab {
    display: none;
}
.navbar-menu-toggle-btn {
    border: none;
    background: #ffffff;
    padding: 5px;
    display: flex;
    align-items: center;
    height: 30px;
    border-radius: 3px;
    display: none;
    position: absolute;
    right: 3%;
    z-index: 999;
}
.navbar-menu-toggle-btn:focus{
    outline: 0;
}
.navbar-menu-toggle-btn .toggler-icon-bar {
    width: 27px;
    height: 1.6px;
    background: #000;
    position: relative;
    display: inline-block;
    transition: .3s ease;
}

.navbar-menu-toggle-btn .toggler-icon-bar:before {
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -ms-transition: all 0.4s;
    position: absolute;
    content: '';
    background: #000;
    width: 27px;
    height: 1.6px;
    top: -7px;
    left: 0;
}

.navbar-menu-toggle-btn .toggler-icon-bar:after {
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -ms-transition: all 0.4s;
    position: absolute;
    content: '';
    background: #000;
    width: 27px;
    height: 1.6px;
    bottom: -7px;
    left: 0;
}
.navbar-main.menu-visible .toggler-icon-bar{
    background: transparent;
}
.navbar-main.menu-visible .toggler-icon-bar:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    bottom: auto;
}

.navbar-main.menu-visible .toggler-icon-bar:after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    bottom: auto;
}
.nav-items-wrapper {
    width: 100%;
    padding: 0% 4%;
    background: #023282;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 10px 10px #00000014;
}

.nav-item-inner-wrapper {
    display: inline-flex;
    height: 50px;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
}

.nav-item-inner-wrapper .nav-item-main {
    list-style: none;
    display: inline-flex;
    height: 100%;
    align-items: center;
    transition: all .3s ease;
    justify-content: center;
    /* margin: 0 20px; */
    margin-bottom: 0;
}
.nav-item-inner-wrapper .nav-item-main:last-child,
.nav-item-inner-wrapper .nav-item-main:nth-last-child(2) {
    border-right: 0;
}
.nav-item-inner-wrapper .nav-item-main:first-child {
    margin-left: 0;
}
.nav-item-inner-wrapper .nav-item-main:first-child .nav-item-link {
    /* padding-left: 0; */
}
.nav-item-main .nav-item-link.active {
    color: #ffffff;
    background: #e6b95b;
}
.nav-item-inner-wrapper .nav-item-main:hover {
}

.nav-item-inner-wrapper .nav-item-main:hover .nav-item-link {
    color: #ffffff;
    background: #e6b95b;
}
.nav-item-inner-wrapper .nav-item-link {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    transition: all .3s ease;
    letter-spacing: .5px;
    padding: 10px 15px;
    height: 100%;
    display: flex;
    align-items: center;
}
.navbar-main .top-header .my-cart,
.nav-items-wrapper .nav-item-link.my-cart .main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    min-width: 120px;
    color: #fff;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    position: relative;
    text-transform: capitalize;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    text-shadow: none;
    background: #00ab4b;
    border:0;
}
.navbar-main .top-header .my-cart i, 
.nav-items-wrapper .nav-item-link.my-cart .main-btn i {
    margin: 0px 5px 0px 0px;
}
.navbar-main .my-cart {
    position: relative;
}
.nav-items-wrapper .nav-item-link.my-cart .main-btn:hover, 
.navbar-main .top-header .my-cart .main-btn:hover {
  color: #ffffff;
  box-shadow: 0px 0px 20px #dddddd;
}
.app-container .product-gallery img {
    width: 60px!important;
}
.nav-items-wrapper .nav-item-link.my-cart:hover{
    color: #000000;
}
.navbar-main .my-cart .cart-items-wrapper .heading {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
    margin-right: 12px;
}
.navbar-main .my-cart .cart-items-wrapper {
    width: 300px;
    right: 0;
    position: absolute;
    top: 42px;
    background: #ffffff;
    box-shadow: 0px 0px 10px #999999;
    padding: 20px 25px 25px;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.navbar-main .my-cart.visible .cart-items-wrapper {opacity: 1;visibility: visible;}
.navbar-main .my-cart .cart-items-wrapper .input-group {
    display: flex;
    align-items: center;
    justify-content: right;
    margin-bottom: 10px;
}
.navbar-main .my-cart .cart-items-wrapper .input-group h2 {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    /* margin-right: 12px; */
    max-width: 90%;
    min-width: 60%;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 5px;
}
.navbar-main .my-cart .cart-items-wrapper .input-group h2:last-of-type {
    text-align: right;
    min-width: 35%;
    padding-right: 13%;
}
.navbar-main .my-cart .cart-items-wrapper .input-group a {
    font-size: 15px;
    color: red;
    position: absolute;
    right: 0;
    top: 42%;
    transform: translateY(-50%) scale(1);
}
.navbar-main .my-cart .cart-items-wrapper .input-group a:hover {
    transform: translateY(-50%) scale(1.2);
}
.navbar-main .my-cart .cart-items-wrapper .cart-to-checkout-btn {
    margin-top: 20px;
}
.navbar-main .my-cart .cart-items-wrapper .cart-to-checkout-btn button {
    width: 100%;
    display: block;
    width: 100%;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    border: 0;
    background: #00ab4b;
    color: #ffffff;
    padding: 5px;
    text-align: center;
}
.cart-items-wrapper .cart-empty-message{
    margin-bottom: 0px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    user-select: none;
}





.nav-item-inner-wrapper .item-has-mega-menu{
    position: relative;
}
.nav-item-inner-wrapper .item-has-mega-menu .nav-item-link:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f078";
    font-size: 10px;
    margin-left: 4px;
    color: #000000;
    top: -50%;
    right: -14px;
    transform: translateY(-50%);
}
.nav-item-mega-menu{
    border-top: 3px solid #000000;
    position: absolute;
    left: 0;
    min-width: 205px;
    max-width: 300px;
    margin: 0 auto;
    background: #ffffff;
    z-index: 2;
    max-height: 80vh;
    overflow-y: auto;
    -moz-transition: all 300ms ease-out 0s;
    -webkit-transition: all 300ms ease-out 0s;
    -ms-transition: all 300ms ease-out 0s;
    -o-transition: all 300ms ease-out 0s;
    transition: all 300ms ease-out 0s;
    opacity: 0;
    visibility: hidden;
    transform-origin: top;
    top: 100%;
    padding: 8px 0 11px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    -webkit-transform: translateX(0) scaleY(0);
    -moz-transform: translateX(0) scaleY(0);
    -ms-transform: translateX(0) scaleY(0);
    -o-transform: translateX(0) scaleY(0);
    transform: translateX(0) scaleY(0);
}
.fixed-header .nav-item-mega-menu{
    max-height: 94vh;
    box-shadow: 0px 6px 14px #48484847;
}
/*Scrollbar*/
.nav-item-mega-menu::-webkit-scrollbar-track
{
  border-radius: 10px;
  background-color: transparent;
}

.nav-item-mega-menu::-webkit-scrollbar
{
  width: 5px;
  background-color: transparent;
}

.nav-item-mega-menu::-webkit-scrollbar-thumb
{
  border-radius: 10px;
  background-color: #e6b95b;
}
.nav-item-mega-menu.mail .mega-menu-has-submenu-item {
    width: 100%;
}
.nav-item-mega-menu.other-service .nav-item-mega-menu-item {
    width: calc(100%/4);
}
.nav-item-mega-menu.other-service .nav-item-mega-menu-item h1 {
    height: auto;
    text-align: center;
    background: #5d759b;
    color: #fff;
    margin: 10px;
    font-size: 18px;
    line-height: 40px;
    border-radius: 2px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.nav-item-mega-menu.other-service .nav-item-mega-menu-item .service-image {
    border: #dedede solid 1px;
    margin: 10px;
    padding: 7px;
    height: 205px;
    overflow: hidden;
}
.nav-item-mega-menu.other-service .nav-item-mega-menu-item .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.nav-item-mega-menu.other-service .nav-item-mega-menu-item .link {
    text-align: center;
    margin: 16px 73px;
    float: none;
    background: #3a3a3a;
    cursor: pointer;
    border-radius: 4px;
    color: #fff;
    padding: 13px 13px;
    border-left: none;
    display: block;
}
.nav-item-mega-menu.other-service .nav-item-mega-menu-item a {
    display: block;
}

.nav-item-mega-menu.other-service .nav-item-mega-menu-item a:hover h1 {
    color: #ffaf28;
}

.nav-item-mega-menu.other-service .nav-item-mega-menu-item a:hover img {
    transform: scale(1.2);
}
.nav-item-mega-menu .nav-item-mega-menu-item {
    width: 100%;
}
.nav-item-mega-menu .nav-item-mega-menu-item .title {
    position: relative;
    color: #000000;
    margin: 0 20px 7px 20px;
    font-size: 15px;
    display: block;
    padding-bottom: 12px;
    line-height: 15px;
}

.nav-item-mega-menu .nav-item-mega-menu-item .title:after {
  content: '';
  width: 60px;
  height: 1px;
  display: block;
  background: #dddddd;
  left: 0;
  bottom: 0;
  position: absolute;
}

.nav-item-mega-menu .link,
.mega-menu-has-submenu-item .link {
    margin: 0;
    width: 100%;
    font-size: 15px;
    font-weight: 400;
    line-height: 13px;
    padding: 8px 9px;
    text-transform: capitalize;
    border: none;
    color: #000000;
    transition: padding 0.4s ease 0s;
    display: inline-flex;
}
.nav-item-mega-menu .link:hover,
.mega-menu-has-submenu-item .link:hover {
    background: none;
    color: #00ab4b;
    /* padding: 5px 20px 5px 12px; */
}
.item-has-mega-menu.right-view .nav-item-mega-menu {
    right: 0!important;
    left: unset;
}
.item-has-mega-menu:hover .nav-item-mega-menu{
    opacity: 1;
    visibility: visible;
    top: 100%;
    -webkit-transform: translateX(-0%) scaleY(1);
    -moz-transform: translateX(-0%) scaleY(1);
    -ms-transform: translateX(-0%) scaleY(1);
    -o-transform: translateX(-0%) scaleY(1);
    transform: translateX(-0%) scaleY(1);
}

.nav-item-mega-menu .nav-item-mega-menu-item-link {
    display: flex;
    color: #000000;
    padding: 10px 14px;
    transition: all .3s ease;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: .5px;
    border-bottom: solid 1px #eee;
}
.nav-item-mega-menu-item:last-child .nav-item-mega-menu-item-link {
    border-bottom: none;
}
.nav-item-mega-menu .nav-item-mega-menu-item-link:hover{
}
.nav-item-mega-menu .nav-item-mega-menu-item-link:hover {
    background: #ecf0f1;
    color: #ffaf28;
}
.nav-item-main.quote-btn .nav-item-link {
    background: #ffaf28;
    padding: 5px 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/*Header css end*/

/*Client Opinion css start*/
.home-client-opinion-section {
    padding: 70px 0px;
    background: #f2f2f2;
}

.home-client-opinion-section .heading {
    text-align: center;
}

.home-client-opinion-section .heading .title {
    /* font-size: 1.33333rem; */
    font-weight: 400;
    color: #023282;
    position: relative;
    margin-bottom: 40px;
}

.home-client-opinion-section .heading .title:after {
    content: '';
    height: 4px;
    width: 40px;
    background: #00004e;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}
.home-client-opinion-outer .home-client-opinion-inner {
    box-shadow: 0px 0px 20px #dddddd;
}

.home-client-opinion-outer {
    margin-bottom: 30px;
}
.home-client-opinion-inner.slider-item {
    padding: 20px;
    transition: all .3s ease;
}
.home-client-opinion-inner.slider-item:hover {
    box-shadow: 0 0px 15px #2727278c;
}

.home-client-opinion-slider-wrapper .slider-item {
    margin: 20px;
}
.home-client-opinion-inner .name-city {
    color: #00004e;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.home-client-opinion-inner {
    text-align: center;
}
.home-client-opinion-inner .client-qoute {
    position: relative;
}

.home-client-opinion-inner .client-qoute:before {
    content: '\f10d';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: -40px;
    font-size: 30px;
    opacity: .1;
}
.home-client-opinion-inner .client-qoute p {
    font-size: 14px;
    color: #000000;
    font-weight: 500;
    padding: 0 2%;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}
.home-client-opinion-inner .client-qoute p:last-child{
    margin-bottom: 0;
}
.home-client-opinion-inner .image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.home-client-opinion-inner .image img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    object-fit: cover;
    overflow: hi];
}

.home-client-opinion-inner .image .inner {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    border: 1px solid #000000;
    padding: 5px;
}
.home-client-opinion-inner .client-rating-and-date {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.home-client-opinion-inner .client-rating-and-date .date {
    font-size: 12px;
    margin-left: 10px;
    font-weight: 500;
    color: #00004e;
}
.home-client-opinion-inner .client-rating .rating-icon {
    font-size: 14px;
    color: #fd7e14;
}
.home-client-opinion-section .owl-dots {
    display: flex!important;
    align-items: center;
    justify-content: center;
}
.home-client-opinion-section .owl-dots .owl-dot.active {
    background: #00004e!important;
}

.home-client-opinion-section .owl-dots .owl-dot {
    height: 12px;
    width: 12px;
    background: #dddddd!important;
    margin: 0 3px;
    border-radius: 100%;
    transition: all .3s ease;
}
/*Client Opinion css end*/

/*Recognized By Css start*/
.home-recognized-by-section {
    padding: 50px 0px;
}

.home-recognized-by-section .image-list {
    display: flex;
    justify-content: center;
    align-items: center;
}
.home-recognized-by-section .image-list .image-item {
    margin: 0 14px;
}
.home-recognized-by-section .heading .title {
    font-size: 14px;
    text-align: center;
    color: #8e8e8e;
    font-weight: 500;
    margin-bottom: 30px;
}

.home-recognized-by-section .image-list .image-item img {
    max-width: 100%;
    height: 100%;
}
.home-recognized-by-section .image-list .image-item {
    width: 125px;
}
/*Recognized By Css End*/

/*Review Section Css start*/
.contact-us-main-section.review-section .common-title {
    color: #000000;
}
.review-section .contact-us-left-box-inner {
    padding: 10px;
    border: 4px solid #203d6b;
    background: #ffffff;
}
.contact-us-review-box-item {
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 1px 1px 20px -7px rgba(0, 0, 0, 0.7) !important;
    margin-bottom: 30px;
    padding: 15px;
    text-align: left;
}

.contact-us-review-box-item .top-box .title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 0;
    text-transform: capitalize;
}

.contact-us-review-box-item .top-box {
    border-bottom: 1px dashed #ccc;
    color: #000;
    margin-bottom: 5px;
    padding-bottom: 10px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-us-review-box-item .top-box .rating-star span {
    font-size: 20px;
    font-weight: 600;
    color: #fc9500;
}

.contact-us-review-box-item .top-box .rating-star {
    margin-bottom: 0;
    display: flex;
}
.contact-us-review-box-item .content p {
    font-weight: 300;
    font-size: 16px;
}

.contact-us-review-box-item .content p:last-child {
    margin-bottom: 0;
}

.user-rating-star-input fieldset,
.user-rating-star-input label {
  margin: 0;
  padding: 0;
}

.user-rating-star-input .rating {
  border: none;
  float: left;
  margin-bottom: 15px;
}

.user-rating-star-input .rating>input {
  display: none;
}

.user-rating-star-input .rating>label:before {
    margin: 2px;
    font-size: 40px;
    font-family: 'Font Awesome 5 Free';
    display: inline-block;
    content: "\2605";
}
/*"\2605"*/
.user-rating-star-input .rating>.half:before {
    content: ""\2605"";
    position: absolute;
    width: 17px;
    overflow: hidden;
}

.user-rating-star-input .rating>label {
  color: #acacac;
  float: right;
  font-size: 24px;
  cursor: pointer;
}

.user-rating-star-input .rating>input:checked~label,
.user-rating-star-input .rating:not(:checked)>label:hover,
.user-rating-star-input .rating:not(:checked)>label:hover~label {
  color: #fc9500;
}

.user-rating-star-input .rating>input:checked+label:hover,
.user-rating-star-input .rating>input:checked~label:hover,
.user-rating-star-input .rating>label:hover~input:checked~label,
.user-rating-star-input .rating>input:checked~label:hover~label {
  color: #fc9500;
}
.contact-us-left-box-outer legend,
.contact-us-left-box-outer label {
    font-size: 1rem;
    font-weight: 400;
}
.contact-us-left-box-inner .btn-box button {
    width: 100%;
    height: 50px;
    border: 0;
    padding: 5px 10px;
    margin: 0;
    background-color: #203d6b;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 16px;
    border-radius: 0;
    color: #fff;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}
.contact-us-left-box-inner .btn-box button:hover {
    background-color: #000000;
    color: #ffffff;
    /* box-shadow: inset 0 0 0 2px; */
}
/*Review Section Css End*/

/*Contact Us CSS Start*/
.contact-us-left-box-inner .btn-box button:hover {
    background-color: #6d4b19;
    color: #ffffff;
    /* box-shadow: inset 0 0 0 2px; */
}
.review-section .contact-us-main-outer {
    background: #ffffffb8;
}

.contact-us-main-outer {
    background: #ffffff;
    /* padding: 20px 40px!important; */
    margin-top: 40px;
}

.contact-us-main-outer .common-heading-box {
    margin: 0;
    margin-bottom: 30px;
}
.contact-us-main-inner {
    justify-content: center;
}
.contact-us-main-section {padding: 0;padding-bottom: 50px;}
.contact-us-left-box-inner .form-group input {
    height: 40px;
}
.contact-us-left-box-inner .heading .title {
    color: #000000;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.4;
}
.contact-us-left-box-inner .form-group {
    padding-bottom: 6px;
}
.contact-us-left-box-inner .form-group input,
.contact-us-left-box-inner .form-group textarea {
    /* width: 100%; */
    /* border: solid 1px #5a5a5a; */
    /* color: #000; */
    /* padding: 5px 10px; */
    /* margin: 0; */
    /* font-size: 16px; */
    /* border-radius: 0px; */
    /* background: transparent!important; */
}
.contact-us-left-box-inner .form-group input::placeholder, 
.contact-us-left-box-inner .form-group textarea::placeholder{
    color: #6e6e6e;
}
.contact-us-left-box-inner .form-group input:focus,
.contact-us-left-box-inner .form-group textarea:focus {
    outline: 0;
}
.contact-us-left-box-inner .form-group input[type="number"]::-webkit-outer-spin-button,
.contact-us-left-box-inner .form-group input[type="number"]::-webkit-inner-spin-button,
.contact-us-left-box-inner .form-group input[type=number] {
    -webkit-appearance: none;
    margin: 0;
    -moz-appearance: textfield;
}
.contact-us-left-box-inner .message-box {
    display: block;
    margin-bottom: 5px;
}
.contact-us-left-box-inner .message-box span {
    font-size: 14px;
    font-style: italic;
    padding-bottom: 5px;
    width: 100%;
    font-family: raleway,sans-serif;
    color: #4c4c4c;
}
.contact-us-left-box-inner .btn-box {
    margin-bottom: 5px;
    margin-top: 15px;
}
.contact-us-left-box-inner .btn-box button {
    width: 100%;
    height: 50px;
    border: 0;
    padding: 5px 10px;
    margin: 0;
    background-color: #e6b95b;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 20px;
    border-radius: 0;
    color: #fff;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}
.contact-us-right-box-outer {
}
.contact-us-right-box-item {
    margin-bottom: 30px;
}
.contact-us-right-box-item .top-box .title {
    color: #000000;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 20px;
    line-height: 34px;
}
.contact-us-right-box-item .content .item {
    margin-bottom: 25px;
}
.contact-us-right-box-item .content .text {
    margin-bottom: 12px;
    list-style: none;
    font-size: 16px;
    line-height: 1.4;
    color: #000000;
    font-weight: 400;
}
.contact-us-right-box-item .content .text span,.contact-us-right-box-item .content .text p {
    display: block;
    margin-bottom: 12px;
    list-style: none;
    font-size: 16px;
    line-height: 1.4;
    color: #000000;
    font-weight: 400;
    margin-bottom: 0;
    text-transform: capitalize;
}
.contact-us-right-box-item .content .text.tel {
    margin-bottom: 4px;
}
.contact-us-right-box-item .content .text a{
    font-size: 16px;
    line-height: 1.4;
    color: #000000;
    margin-bottom: 2px;
    display: inline-block;
    font-weight: 400;
    text-transform: lowercase;
}
.contact-us-right-box-item .content .text a:hover {
    color: #000000;
    text-decoration: underline;
}
.contact-us-right-box-item .content .text .icon {
    font-size: 14px;
    padding-right: 14px;
    color: #ffffff;
    margin-top: 1px;
}
.contact-us-right-box-item .content .text.opening-time p {
    border-bottom: 1px solid #000000;
    margin-bottom: 2px;
    padding-bottom: 3px;
}

.contact-us-right-box-item .content .text.opening-time {
    width: auto;
    display: inline-block;
}
.contact-us-right-box-item form {
    display: flex;
    align-items: center;
}

.contact-us-right-box-item form input {
    height: 40px;
    min-width: 70%;
    max-width: 100%;
    border: 0;
    padding: 0px 5px;
    font-size: 15px;
    text-transform: lowercase;
}

.contact-us-right-box-item form button {
    height: 40px;
    border: 0;
    padding: 0px 15px;
    background: #ff542b;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 400;
}

.contact-us-right-box-item form input:focus {
    outline: 0;
}
.contact-us-right-box-item form input:focus {
    outline: 0;
}
.contact-us-right-box-item form input::placeholder{ 
  text-transform: capitalize;
}
.contact-us-map {
    background: #000000;
}
.contact-us-map iframe {
    width: 100%;
}
.contact-us-map{
    padding: 0;
}
/*Contact Us CSS End*/

/*Common content css start*/
.common-content-detail-box img {
    float: right;
    margin-left: 15px;
    max-width: 100%;
}
.common-content-detail-box * {
    text-align: justify;
}
/*Common content css end*/


/*Home Main Slider Css Start*/
.home-main-slider-inner .owl-dots {
    display: flex!important;
    display: none!important;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
}
.home-main-slider-inner .owl-dots .owl-dot.active {
    background: #e6b95b!important;
}

.home-main-slider-inner .owl-dots .owl-dot {
    height: 12px;
    width: 12px;
    background: #dddddd!important;
    margin: 0 3px;
    border-radius: 100%;
    transition: all .3s ease;
}
/*Home Main Slider Css Start*/


/*Home Second Slider Css Start*/
.home-second-slider-outer {
    background: #023282;
}
.home-second-slider-inner .slider-item .content {
    display: block;
    font-size: .77778rem;
    text-align:center;
    color: #ffffff;
    line-height: 1.4;
    padding: 0.5em 0 0.6rem;
}
.home-second-slider-inner .slider-item .content:hover{
  text-decoration:none;
  background: #011536;
}

.home-second-slider-inner .slider-item .content:first-line{
    font-weight: bolder;
    font-size: .94444rem;
}
/*.home-second-slider-outer{
    padding-bottom: 40px;
}*/
.home-second-slider-inner .owl-dots {
    display: flex!important;
    display: none!important;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
}
.home-second-slider-inner .owl-dots .owl-dot.active {
    background: #e6b95b!important;
}

.home-second-slider-inner .owl-dots .owl-dot {
    height: 12px;
    width: 12px;
    background: #dddddd!important;
    margin: 0 3px;
    border-radius: 100%;
    transition: all .3s ease;
}
/*Home Second Slider Css End*/


/*Home Third Slider Css Start*/
.home-third-slider-outer {
    background: #ffffff;
    padding: 0.5em 0;
    border-bottom: 1px solid #dddddd;
}
.home-third-slider-inner .slider-item .content {
    font-size: .77778rem;
    text-align:center;
    color: #ffffff;
    line-height: 1.4;
}

.home-third-slider-inner .slider-item .content:first-line{
    font-weight: bolder;
    font-size: .94444rem;
}
/*.home-third-slider-outer{
    padding-bottom: 40px;
}*/
.home-third-slider-inner .owl-dots {
    display: flex!important;
    display: none!important;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
}
.home-third-slider-inner .owl-dots .owl-dot.active {
    background: #e6b95b!important;
}

.home-third-slider-inner .owl-dots .owl-dot {
    height: 12px;
    width: 12px;
    background: #dddddd!important;
    margin: 0 3px;
    border-radius: 100%;
    transition: all .3s ease;
}
.home-third-slider-outer .slider-item .image {
    width: 150px;
    height: 140px;
    display: flex;
    align-items: center;
    padding: 25px 0;
}

.home-third-slider-outer .slider-item .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.home-third-slider-inner .slider-item {
    display: flex;
    justify-content: center;
}
/*Home Third Slider Css End*/

.company-location-map-wrapper iframe {
    margin-bottom: 0;
}

.lg-thumb-open .lg-img-wrap {
    padding-bottom: 100px!important;
}
.lg-img-wrap {
    padding-top: 50px!important;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
























































































































/*Footer*/
.footer-main *:not(i) {
    /*font-family: Roboto, Arial, sans-serif;*/
}
.footer-main {
    background: #000000;
    padding-top: 50px;
}
.footer-main ul{
    margin: 0;
    padding: 0;
}

.footer-main .footer-top-box {
    padding-bottom: 30px;
}
.footer-logo-box {
    margin-bottom: 14px;
}

.footer-logo-box .link {
    display: inline-flex;
    width: 150px;
}

.footer-logo-box .link img {
    width: 100%;
}
.footer-logo-box .company {
    color: #ffffff;
}

.footer-logo-box .company .title {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0;
}

.footer-logo-box .company .subtitle {
    font-size: 12px;
    text-transform: capitalize;
    font-weight: 400;
    margin-bottom: 0px;
}
.footer-nav-item-inner .footer-nav-item .link,
.footer-nav-item-inner .footer-nav-item {
    font-size: 12px;
    font-weight: 300;
    color: #ffffff;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 4px;
}
.footer-nav-item-inner .footer-nav-item .link{
    margin-bottom: 0;
    transition: all .3s ease;
    width: 86%;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}
.footer-nav-item-inner .footer-nav-item .link:hover {
    text-decoration: underline;
}
.footer-nav-item-inner .footer-nav-item .title {
    font-size: 12px;
    font-weight: 300;
    color: #ffffff;
    line-height: 18px;
    margin-bottom: 0;
    /*padding-right: 25%;*/
    width: 86%;
}
.footer-nav-item-inner .footer-nav-item .title.address * {
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
    display: initial;
    text-transform: capitalize;
}

.footer-nav-item-inner .footer-nav-item .title.address strong,
.footer-nav-item-inner .footer-nav-item .title.address b {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
}
.footer-nav-item-inner .footer-nav-item .address b {
    font-size: 14px;
}
.footer-nav-item-inner .footer-nav-item .address span {
    display: block;
}
.footer-nav-item-inner .icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    width: 10%;
    margin-right: 3px;
}
.footer-nav-item-wrapper .heading {
    margin-bottom: 10px;
}
.footer-nav-item-wrapper .heading .title {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
    color: #ffffff;
}
.footer-nav-item-inner .footer-nav-item:last-child {
    margin-bottom: 0;
}
ul.footer-nav-item-inner.gt-working-hours-item-wrapper p,
ul.footer-nav-item-inner.gt-working-hours-item-wrapper h1,
ul.footer-nav-item-inner.gt-working-hours-item-wrapper h2,
ul.footer-nav-item-inner.gt-working-hours-item-wrapper h3,
ul.footer-nav-item-inner.gt-working-hours-item-wrapper h4,
ul.footer-nav-item-inner.gt-working-hours-item-wrapper h5 {
    display: block;
    width: 100%;
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #3b5567;
}
.footer-nav-item-inner .footer-nav-item.social {
    align-items: center;
    margin-top: 10px;
}

.footer-nav-item-inner .footer-nav-item.social .link {
    height: 20px;
    width: 20px;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #4c6ef5;
    border-radius: 100%;
    margin-right: 5px;
}
.footer-nav-item-inner .footer-nav-item.social .link:last-child {
    margin-right: 0;
}
.footer-nav-item-inner .footer-nav-item.social .link:hover {
    text-decoration: none;
}
.gt-working-hours-item {
    /* border-bottom: 1px solid #3b5567; */
    margin-bottom: 8px!important;
    padding-bottom: 2px;
    align-items: center;
    display: initial!important;
}
.gt-working-hours-item .time-wrapper {
    width: 65%;
}
.gt-working-hours-item .day {
    width: 30%;
    text-transform: uppercase;
    margin-right: 5%;
}

.gt-working-hours-item .from-time {
    margin-right: 5px;
}

.gt-working-hours-item .to-time {
    margin-left: 5px;
}

.gt-working-hours-item .close-msg {}


.footer-main .copyright {
    background: #000000;
    text-align: center;
    color: #ffffff;
    font-size: 12px;
    font-weight: 300;
    padding: 15px 0px;
}
.footer-main .copyright .link {
    color: #ffffff;
    text-decoration: underline;
}
.footer-main .copyright .link.dev {
    width: 100px;
    display: inline-block;
    margin-left: 3px;
    height: auto;
}
.footer-main .copyright .link.c {
    text-decoration: none;
}
.footer-main .copyright .link.dev img {
    width: 100%;
    display: inline-block;
}


/*Responsive*/

@media (max-width: 1372px){
    .nav-item-inner-wrapper .nav-item-link{
        font-size: 12px;
    }
}


@media (max-width: 1200px){
    .footer-nav-item-inner .footer-nav-item .address .inner span{
      display: unset!important;
    }
}

@media (max-width: 1167px){
    .nav-item-inner-wrapper .nav-item-link{
        font-size: 10px;
    }
}


@media (max-width: 1100PX){
    .footer-nav-item-inner .footer-nav-item .title{
        padding-right: 0;
    }
}


@media (max-width: 991px){
  .gt-working-hours-item .day{
    width: 100%;
  }
  .gt-working-hours-item .time-wrapper{
    width: 100%;
  }
  .contact-us-main-outer {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .contact-us-main-outer{
    /* padding: 20px!important; */
  }
}


@media (max-width: 799px){
    .peoplelist {
        text-align: center;
    }
    .peoplelist a {
        display: inline-block!important;
    }
}

@media (max-width: 767px){
    #breadcrumbs{
        display: none;
    }
    .attorney-resume-cv-details.widget{
        margin-top: 30px !important;
        padding-top: 20px!important;
    }
    .gt-working-hours-item .day{
      width: auto;
    }
    .gt-working-hours-item .time-wrapper{
      width: 65%;
    }
    .footer-nav-item-wrapper{
        margin-bottom: 30px;
    }
    .footer-nav-item-inner .footer-nav-item .link, .footer-nav-item-inner .footer-nav-item {
        /* justify-content: center; */
    }
    .footer-nav-item-inner .footer-nav-item .title{
        padding-right: 0;
        text-align: left;
    }
    .footer-nav-item-inner .footer-nav-item .title.address *{
      display:block;
    }
    .footer-nav-item-inner .icon{
        width: auto;
        margin-right: 5px;
    }
    .footer-nav-item-inner .footer-nav-item .title,
    .footer-nav-item-inner .footer-nav-item .link{
        width: auto;
    }
    .footer-nav-item-inner .footer-nav-item {
        flex-wrap: nowrap;
    }
    .footer-main .copyright{
        font-size: 12px;
    }
    .footer-nav-item-inner .footer-nav-item .address .inner span{
      display: block!important;
    }
    .footer-nav-item-inner.gt-working-hours-item-wrapper{
        display: inline-flex;
    }
}

@media (max-width: 600px){
    .home-third-slider-outer .slider-item .image {
        padding: 0px 0;
    }
    .common-content-detail-box img{
        float: unset;
        width: auto!important;
        height: auto!important;
        margin: 0 auto;
        margin-bottom: 15px;
    }
    .footer-nav-item-outer {
        width: 45%;
        margin-bottom: 15px;
    }

    .footer-nav-item-outer:nth-child(odd) {
        margin-right: 5%;
    }
}



/*Responsive*/
@media (min-width: 451px){
    .single-product-image-slider .slider-nav .slick-slide {
        height: 120px;
        width: 150px!important;
        padding: 6px 3px;
        margin: 10px 6px;
        box-shadow: 0px 0px 16px #3c383836;
    }
}
@media (min-width: 850px){
    .container {
        max-width: 820px;
    }
}
@media (min-width: 1050px){
    .container {
        max-width: 1020px;
    }
}
@media (min-width: 1201px){
    .container {
        max-width: 1270px;
    }
    .why-should-choose-us-item-outer{
        max-width: 20%;
        padding: 0px 5px;
    }
    .cart-billing-info-wrapper .form-group[class*="col-lg"]{
        -ms-flex: 0 0 25%!important;
        flex: 0 0 25%!important;
        max-width: 25%!important;
    }
    .footer-nav-item-inner .footer-nav-item:last-child .title span, 
    .footer-nav-item-inner .footer-nav-item:last-child .title p {
        display: inline-block;
    }
}
@media (min-width: 1600px){
    .container {
        max-width: 1450px!important;
    }
}
@media (min-width: 1800px){
    .container {
        max-width: 1600px!important;
    }
}
@media (min-width: 2000px){
    .container {
        max-width: 1800px!important;
    }
}


@media (max-width: 1200px){
    .navbar-main{
        max-height: 80px;
    }
    .nav-item-mega-menu .nav-item-mega-menu-item-link {
        font-size: 10px;
    }
    .nav-item-inner-wrapper .nav-item-link {
    }
    .why-should-choose-us-item-outer{
        max-width: 33.333%;
        -ms-flex: 0 0 33.333%;
        flex: 0 0 33.333%;

    }
    .upload-file-section-inner .form-group, 
    .upload-file-section-inner .submit-box{
        width: 80%;
    }
    .shipping-address-info-wrapper {
        padding-right: 2%;
    }
    .checkout-common-padding{
        padding: 0;
    }
    .form-checkbox-radio-wrapper{
        align-items: flex-start;
    }
    .form-checkbox-radio-wrapper label{
        line-height: 1.4
    }
    .customer-panel-info-item-inner .content .address {
        padding-right: 0;
    }
    .dgds-order-requirement-inner .shipping .file-item .address{
        width: 50%;
    }
    .dgds-order-requirement-inner .shipping .file-item .title{
        width: 27%;
    }
}


@media (max-width: 1100px){
    .select-file-section .heading p{
        width: 50%;
    }
    .sp-calculation-wrapper .item .title{
        width: 60%;
    }
    .sp-calculation-wrapper .item .price{
        width: 40%;
    }
}

@media (min-width: 1025px){
  .fixed-header .top-header {
      display: none!important;
  }
}


@media (max-width: 1024px){
    .top-numbers-v3 {
        display: -webkit-flex;
        display: flex;
    }
    .common-mt {
        padding-top: 0;
    }
    .common-mt:before{
      display:none;
    }
    .padding-top-170 {
        padding-top: 0!important;
    }
    .navbar-main .logo-section .brand-logo {
        min-height: unset;
        min-width: unset;
        width: 150px;
    }
    .brand-logo img.laptop {
        display: none;
    }
    .brand-logo img.mobile-tab {
        display: inline-block;
    }
    .navbar-main .logo-section .brand-logo{
    }
    .header-inner-wrapper{
        padding-bottom: 60px;
        display: flex;
    }
    .navbar-menu-toggle-btn {
        display: inline-flex;
    }
    .nav-item-inner-wrapper .nav-item-link{
        font-size: 14px;
        padding: 5px!important;
    }
    .nav-item-mega-menu .nav-item-mega-menu-item-link {
        display: flex;
        color: #000000;
        padding: 5px;
        transition: padding .3s;
        border-bottom: 0;
        font-size: 13px;
    }
    .nav-item-inner-wrapper .nav-item-main:hover .nav-item-mega-menu{
        -webkit-transform: unset;
        -moz-transform: unset;
        -ms-transform: unset;
        -o-transform: unset;
        transform: unset;
    }
    .nav-items-wrapper{
        position: fixed;
        z-index: 111;
        height: 100%;
        width: 40%;
        right: -100%;
        top: 0%;
        display: block!important;
        transition: .3s ease;
        padding: 0;
    }
    .menu-visible .nav-items-wrapper {
        right: 0%;
        box-shadow: 0px 0px 24px #0000007a;
    }
    .nav-item-link.my-cart {
        position: fixed;
        top: 14px;
        right: 80px;
    }
    .nav-item-inner-wrapper {
        flex-direction: column;
        height: 100vh;
        width: 100%;
        overflow: auto;
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 30%;
        padding-left: 10%;
    }
    /*Scrollbar*/
    .nav-item-inner-wrapper::-webkit-scrollbar-track{
        border-radius: 10px;
        background-color: transparent;
    }
    .nav-item-inner-wrapper::-webkit-scrollbar{
        width: 5px;
        background-color: transparent;
    }
    .nav-item-inner-wrapper::-webkit-scrollbar-thumb{
        border-radius: 10px;
        background-color: #e6b95b;
    }

    .nav-item-inner-wrapper .nav-item-main {
        margin: 2px 2px;
        height: auto;
        display: block;
    }
    .nav-item-inner-wrapper .nav-item-main:hover{
        background: transparent;
    }
    .nav-item-inner-wrapper .nav-item-main:hover a{
        /* background: transparent!important; */
        /* color: #00ab4b!important; */
    }
    .nav-menu-hide-button {
        position: relative;
        background: transparent;
        border: 0;
        font-size: 30px;
        color: #ffffff;
        float: right;
        margin-right: 30px;
        top: 20px;
        display: flex;
    }
    .nav-menu-hide-button:before {
        content: "\E909";
        font-family: icomoon;
        speak: none;
        font-style: normal;
        font-weight: 400;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        position: absolute;
        z-index: 999;
        top: 0;
        left: 0;
        color: #000000;
        font-size: 30px;
        display: none;
    }
    .navbar-main .top-header {
        display: flex!important;
        padding: 0% 3%;
        height: 60px;
        background: #011536;
        border: 0;
        box-shadow: 0px 10px 10px #00000014;
    }
    .navbar-main .logo-section {
        justify-content: space-between;
    }
    .navbar-contact-box {
        display: flex;
        padding-right: 8%;
    }
    .nav-item-inner-wrapper .item-has-mega-menu .nav-item-mega-menu{
        margin: 0;
        list-style: none;
        padding: 0px 0 0 10px;
        position: unset;
        top: unset;
        max-width: 100%;
        min-width: 200px;
        background-color: transparent;
        visibility: visible;
        opacity: 1;
        transition: all .3s ease;
        transform: unset;
        border: 0;
        box-shadow: none;
    }

    .nav-item-mega-menu-item-link{
        color: #ffffff!important;
    }
    .nav-item-mega-menu .nav-item-mega-menu-item {
        width: 100%;
        margin: 0;
    }

    .nav-item-mega-menu .nav-item-mega-menu-item a,
    .nav-item-mega-menu .nav-item-mega-menu-item .title {
        color: #000000;
        padding: 7px 9px;
    }

    .nav-item-mega-menu .nav-item-mega-menu-item .title {
        padding-bottom: 5px;
        font-size: 13px;
        margin-bottom: 0;
        position: relative;
        display: inline-block;
        cursor: pointer;
        font-weight: 400;
        user-select: none;
    }
    .nav-item-mega-menu .nav-item-mega-menu-item .title:after{
        display: none;
    }
    .nav-item-mega-menu .nav-item-mega-menu-item .title:before {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f078";
        color: #ffffff;
        position: absolute;
        font-size: 8px;
        top: 3%;
        right: -5px;
        transform: translateY(-50%);
        height: 0;
        width: 0;
        background: none;
    }
    .mega-menu-has-submenu-item:last-child .link {
        padding-bottom: 13px;
    }
    .nav-item-mega-menu .nav-item-mega-menu-item {
    }
    .mega-menu-has-submenu {
        padding-left: 10px;
    }
    .nav-item-mega-menu.other-service .mega-menu-has-submenu {
        display: none;
    }

    .nav-item-mega-menu.other-service .nav-item-mega-menu-item {
        display: block;
        width: 100%;
    }

    .nav-item-mega-menu.other-service .nav-item-mega-menu-item h1 {
        margin: 0;
        font-size: 13px;
        font-weight: 300;
        line-height: 13px;
        padding: 5px 20px;
        text-transform: capitalize;
        border: none;
        color: #ffffff;
        background: transparent;
        transition: padding 0.4s ease 0s;
        display: inline-flex;
    }

    .mega-menu-has-submenu-item .link {
        color: #ffffff;
    }
    .nav-item-inner-wrapper .nav-item-link.my-cart {
        display: none;
    }
    .navbar-main .my-cart .cart-items-wrapper {
        top: 45px;
    }
    .navbar-main .top-header .login-signup-btn-wrapper {
        margin-right: 56px;
    }
    .navbar-main .top-header .my-cart{
        display: inline-flex!important;
        font-size: 14px;
        min-width: 80px;
        height: 30px;
        margin-left: 10px;
    }
    .navbar-main .top-header .contact-signup .call-us ,
    .navbar-main .top-header .contact-signup .request-quote {
        display: none;
    }
    .navbar-main .top-header .contact-signup {
        margin-right: 12%;
        display: none;
    }
    .single-product-view-image-slider{
        /*touch-action:none;*/
    }
    .order-product-details-table td .upload-files input[type="file"]{
        margin-left: 0;
        margin-top: 5px;
        margin-bottom: 5px;
    }
    .home-main-slider-inner .slide{
        height: auto;
    }
}

@media (min-width: 992px){
    .cart-billing-info-wrapper .form-group[class*="col-lg"]{
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 991px){
    .navbar-main .top-header .login-signup-btn-wrapper {
        margin-right: 65px;
    }

    .navbar-main .top-header .login-signup-btn-wrapper a:first-child {
        margin-right: 12px;
    }
    .nav-item-link.my-cart {
        right: 75px;
    }
    .navbar-main .top-header .my-cart, .nav-items-wrapper .nav-item-link.my-cart .main-btn {
        font-size: 14px;
        min-width: 85px;
        height: 30px;
    }
    .navbar-main .my-cart .cart-items-wrapper .heading{
        font-size: 15px;
        margin-bottom: 15px;
    }
    .navbar-main .my-cart .cart-items-wrapper .input-group{
      margin-bottom: 5px;
    }
    .navbar-main .my-cart .cart-items-wrapper .cart-to-checkout-btn button {
        font-size: 14px;
    }
    .navbar-main .my-cart .cart-items-wrapper .cart-to-checkout-btn{
      margin-top: 15px;
    }
    .navbar-main .my-cart .cart-items-wrapper .input-group h2 b {
        font-weight: 500;
    }
    .navbar-contact-box{
        display: none;
    }
    .header-content .title, .header-content h2{
        font-size: 20px;
    }
    .dgd-product-item-outer:last-child {
        /* display: none; */
    }
    .step-item-wrapper{
        width: 100%;
    }
    .step-item-wrapper .step-item{
      font-size: 10px;
    }
    .shipping-address-info-item{
        margin-top: 30px;
    }
    .shipping-address-info-wrapper {
        padding-right: 15px;
    }
    .customer-panel-info-item {
        margin-bottom: 30px;
    }
    .profile-common-edit-btn-wrapper.profile{
        flex-direction: column;
        align-items: center;
    }
    .profile-common-edit-btn-wrapper.profile .dgd-btn:last-child {
        margin-bottom: 0;
    }
    .profile-common-edit-btn-wrapper.profile .dgd-btn {
        margin-bottom: 10px;
        margin-right: 0;
    }
    .customer-panel-info-item-inner .content .address{
        padding-right: 7%;
    }
    .customer-panel-right-content-wrapper .file-items-wrapper {
        margin-bottom: 20px;
    }  
    .dgds-request-for-revision .from-btn-wrapper{
        display: flex;
        justify-content: center;
        padding: 0;
        margin-top: 10px;
    } 
    .dgds-order-requirement-inner .shipping .file-item .address {
        width: 37%;
    }

}
@media (max-width: 992px){
    .navbar-contact-box {
        padding-left: 15%;
        justify-content: flex-start;
        width: 100%;
    }
    
}

@media (max-width: 849px){
    .why-should-choose-us-item-outer {
        max-width: 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }
    .order-product-details-table td,
    .order-product-details-table th{
        padding: 4px 8px;
        width: auto!important;
    }
    .order-product-details-table th:last-child, .order-product-details-table td:last-child{
      padding-right: 8px;
    }
    .checkout-calculation-wrapper .item{
        padding: 0px 8px;
    }
    .order-product-details-table td span{
        margin-bottom: 5px;
    }
    .dgds-order-requirement-inner .shipping .file-item .address {
        width: 50%;
    }
}

@media (max-width: 768px){
    .nav-items-wrapper {
        width: 50%;
    }
}

@media (max-width: 767px){
    .contact-us-main-outer {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .header-content .title, .header-content h2{
        font-size: 16px;
    }
    .navbar-main .top-header .my-cart, 
    .nav-items-wrapper .nav-item-link.my-cart .main-btn {
        font-size: 13px;
        min-width: 80px;
        height: 30px;
    }
    .nav-item-link.my-cart{
        right: 66px;
    }
    .dgd-breadcrumb {
        padding: 2% 4%;
    }
    .dgd-breadcrumb .item,
    .dgd-breadcrumb .item a {
        font-size: 14px;
    }
    .dgd-product-section{
        padding: 0px 15px 30px 15px
    }
    .request-quote-section .quote-contact-box.bottom-section .form-group{
        flex-direction: column;
        align-items: flex-start;
    }
    .request-quote-section .quote-contact-box.bottom-section .form-group label {
        margin-bottom: 10px;
        width: 100%;
        margin-right: 0;
    }
    .request-quote-section{
        padding: 0;
    }
    .modal-product-description .p-description{
        margin-bottom: 30px;
    }
    .right-box.order-info-top-right{
        justify-content: center;
    }
    .right-box.order-info-top-right table{
        width: 100%;
    }
    .customer-panel-section-inner .zelly-email-phone {
        /* max-width: 210px; */
        word-break: break-all;
        float: right;
    }
    .page-intro-section .content .title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .page-intro-section .content .text {
        font-size: 14px;
    }
    .page-intro-section .content .order-now-btn{
      margin-top:10px;
    }
    .how-it-works-item-outer {
        margin-bottom: 20px;
    }
    .upload-file-section-inner label {
        margin-bottom: 10px;
    }
    .alter-way-box .text:before, .alter-way-box .text:after {
        width: 500%;
    }
    .select-file-section .heading p {
        width: 80%;
    }
    .sp-calculation-wrapper .item .title {
        width: 35%;
    }
    .sp-calculation-wrapper .item .price {
        width: 20%;
    }
    .single-product-section .right-box-outer{
        margin-top: 40px;
    }
    .customer-panel-section-inner {
        flex-direction: column-reverse;
    }
    .customer-panel-info-edit {
        padding: 0px;
    }
    .customer-panel-left-sidebar {
        margin: 20px 0rem;
    }
    .customer-panel-right-content-wrapper .common-heading{
        padding: 0;
    }
    .customer-panel-info-edit-item .common-heading{
        padding: .5rem;
    }
    .customer-panel-info-item-inner.address .image-icon {
        height: 0;
    }

    .customer-panel-info-item-inner.address .content {
        margin: 0;
    }
    .customer-panel-info-item{
        margin-bottom: 15px;
    }
    .profile-common-edit-btn-wrapper.profile {
        margin-top: 10px;
    }
    .dgds-order-requirement-inner .shipping .file-item .address {
        width: 45%;
    }
    .divider-text:before {
        width: 500%;
        bottom: unset;
        right: 100%;
        height: 1px;
        top: 50%;
    }

    .divider-text:after {
        width: 500%;
        bottom: unset;
        top: 50%;
        left: 100%;
        height: 1px;
    }
    .upload-file-section-outer:last-child {
        margin-top: 40px;
    }

    .divider-text {
        top: 47%;
    }
    .contact-us-left-box-outer{
        margin-bottom: 40px;
    }
    .profile-main-section .top-info {
        width: 100%;
    }
}

@media (max-width: 600px){
    .nav-item-inner-wrapper .nav-item-link,
    .nav-item-mega-menu .nav-item-mega-menu-item-link {
        font-size: 12px;
    }
    .padding-top-190 {
        padding-top: 0;
    }
    .single-product-view-image-slider .slider-nav .slick-slide{
        height: 50px;
    }
    .why-should-choose-us-item-outer {
        max-width: 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
    .why-should-choose-us-item-inner .top-content{
        min-height: auto;
    }
    .navbar-main .top-header .login-signup-btn-wrapper .signup-btn {
        display: none;
    }
    .navbar-main .top-header .login-signup-btn-wrapper .login-btn {
        margin-right: 50px;
    }
    .brand-logo img {
        width: 100px;
        height: 25px;
    }

    .navbar-main .logo-section .brand-logo {
        width: auto;
        padding-left: 4px;
    }
    .top-header .login-signup-btn-wrapper a,
    .nav-items-wrapper .nav-item-link.my-cart .main-btn,
    .navbar-main .top-header .my-cart{
        font-size: 12px!important;
        min-width: 70px;
    }
    .nav-items-wrapper .my-cart * {
        font-size: 12px!important;
    }

    .navbar-main .my-cart .cart-items-wrapper .input-group {
        margin-bottom: 5px;
    }

    .navbar-main .my-cart .cart-items-wrapper .heading {
        margin-bottom: 15px;
        font-size: 14px!important;
    }

    .navbar-main .my-cart .cart-items-wrapper .cart-to-checkout-btn {
        margin-top: 10px;
    }
    .common-title {
        font-size: 20px;
        text-align: center;
    }
    .dgd-product-item-inner .content .title {
        font-size: 15px;
    }
    .page-intro-section .content .title {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .page-intro-section .content .text {
        font-size: 13px;
    }
    .page-intro-section .content .order-now-btn{
        font-size: 12px;
        padding: 3px 10px;
        margin-top: 6px;
    }
    .upload-file-section-inner .submit-box{
        justify-content: center;
    }
    .step-item-wrapper{
        width: 100%;
    }
    .profile-common-edit-btn-wrapper{
        flex-direction: column;
    }
    .profile-common-edit-btn-wrapper i{
        display: inline-block;
        margin: 5px 0px;
    }
    .dgds-order-requirement-inner .top-box{
        flex-direction: column;
    }
    .dgds-order-requirement-inner .top-box .date-time{
        margin-top: 7px;
    }
    .dgds-order-requirement-inner .shipping .file-item .address {
        width: 53%;
    }
    .upload-file-section-outer p{
        width: 95%;
    }
    .page-intro-slider-item .image-video {
        height: 200px;
    }
    .page-intro-slider-item .image-video img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: right;
    }
}
@media (max-width: 500px){
    .contact-us-right-box-item .top-box .title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .contact-us-right-box-item .content .text {
        font-weight: 400;
    }
    .contact-us-left-box-inner .heading .title {
        font-size: 20px;
    }
}
@media (max-width: 450px){
    .header-top .left-box-item {
        font-size: 8px;
        margin-right: 12px;
    }
    .header-top .right-box-item-wrapper .item-link {
        padding: 5px;
        font-size: 10px;
    }
    .nav-items-wrapper {
        width: 80%;
    }
    .header-content .title, .header-content h2{
        font-size: 10px;
    }
    .top-header .login-signup-btn-wrapper,
    .navbar-main .top-header .my-cart{
        padding-top: 2px;
        padding-bottom: 2px;
    }
    .navbar-main .my-cart .cart-items-wrapper {
      left: 50%;
        transform: translateX(-50%);
        position: fixed;
        top: 60px;
    }
    .top-header .login-signup-btn-wrapper {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .navbar-main .top-header .contact-signup {
        margin-right: 16%;
    }
    .nav-item-link.my-cart {
        right: 55px;
    }

    .navbar-main .top-header .contact-signup {
        margin-right: 13%;
    }

    .navbar-main .top-header .my-cart:before {
        height: 10px;
        width: 12px;
    }
    .g-recaptcha div {
        width: 100%!important;
    }

    .g-recaptcha textarea {
        border: 0!important;
    }

    .g-recaptcha {
        border-radius: 5px;
        overflow: hidden;
        border: solid 1px #b8b8b8;
        height: 75px;
    }
    .home-client-opinion-slider-wrapper .slider-item{
        padding: 0;
        margin: 0;
    }
}

@media (max-width: 320px){
    .nav-item-inner-wrapper {
        padding-top: 70%;
    }
}















