@font-face {
    font-family: 'Calibri';
    src: url('../fonts/Calibri.woff2') format('woff2'),
        url('../fonts/Calibri.woff') format('woff'),
        url('../fonts/Calibri.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    position: relative;
    background: #272727;
    color: #fff;
    overflow-x: hidden;
    font-family: 'Calibri';
}
::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 0;
	background-color: #F5F5F5;
}

::-webkit-scrollbar
{
	width: 12px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb
{
	border-radius: 0;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #4da446;
}
::-moz-selection { /* Code for Firefox */
  color: #fff;
  background: #4da446;
}

::selection {
  color: #fff;
  background: #4da446;
}
a{
    text-decoration: none;
}
img{
    max-width: 100%;
}
.clear{
    clear: both;
}
.row{
    margin: 0
}
.s-pad{
    padding: 0 5px;
    position: relative;
}
.nopadding{
    padding: 0
}
.btn-check:active+.btn-primary:focus, .btn-check:checked+.btn-primary:focus, .btn-primary.active:focus, .btn-primary:active:focus, .show>.btn-primary.dropdown-toggle:focus, .btn-check:focus+.btn-primary, .btn-primary:focus, .btn-check:focus+.btn, .btn:focus {
    box-shadow: 0 0 0 0.25rem rgb(78 164 70 / 35%);
}
.head-title h2{/*    text-align: center;*//*    letter-spacing: 8px;*//*    text-transform: uppercase;*//*    margin: 30px 0;*//*    font-family: 'Oswald', sans-serif;*//*    color: #fff;*//*    font-size: 35px;*/text-align: center;letter-spacing: 8px;text-transform: uppercase;margin: 20px 20px;color: #fff;font-size: 25px;}
.head-title h2 span{
    color: #4da446;
}
.head-title.side h2{
    text-align: initial;
}
.head-title h3{
    text-align: center;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin: 30px 0 10px;
    color: #fff;
    font-size: 28px;
}
.head-title h3 span{
    color: #4da446;
}
.form-check-input:checked {
    background-color: #4da446;
    border-color: #4da446;
}
input:focus {
    border-color: #4da446;
    outline: 0;
    box-shadow: 0 0 0 0.25rem #4da4463b !important;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
.main-btn{
    background: #4da446;
    color: #fff;
    font-weight: 600;
    border-radius: 0;
    padding: 5px 25px;
    border: 1px solid #4da446;
    margin: 5px;
}
.main-btn:hover{
    background: #fff;
    color: #4da446;
    transition: all 0.5s ease-in-out;
    border-color: #4da446;
}
.more-btn{
    padding: 14px 20px;
    background: #4da446;
    color: #fff;
    border-radius: 35px;
    margin: 25px auto;
    display: block;
    font-weight: 800;
    font-size: 16px;
    width: auto;
}
.more-btn:hover{
    color: #fff;
    background: #235b00;
    transition: all 0.5s ease-in-out;
}
.preloader {
  position: fixed;
  left: 0;
  width: 0;
  height: 100%;
  width: 100%;
  text-align: center;
  z-index: 999999999;
  -webkit-transition: .9s;
  transition: .9s;
}

.preloader .loader {
  position: absolute;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  display: inline-block;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 35%;
  -webkit-transform: translateY(-45%);
  transform: translateY(-45%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.preloader .loader .loader-outter {
  position: absolute;
  border: 4px solid #ffffff;
  border-left-color: transparent;
  border-bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
          animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}
.btn i{
    padding: 0 5px;
}
.preloader .loader .loader-inner {
  position: absolute;
  border: 4px solid #ffffff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  left: calc(40% - 21px);
  top: calc(40% - 21px);
  border-right: 0;
  border-top-color: transparent;
  -webkit-animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
          animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}

.preloader .loader .indicator {
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
}

.preloader .loader .indicator svg polyline {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.preloader .loader .indicator svg polyline#back {
  stroke: #ffffff;
}

.preloader .loader .indicator svg polyline#front {
  stroke: #19ce67;
  stroke-dasharray: 12, 36;
  stroke-dashoffset: 48;
  -webkit-animation: dash 1s linear infinite;
          animation: dash 1s linear infinite;
}

.preloader::before, .preloader::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 60%;
  z-index: -1;
  background: #272727;
  -webkit-transition: .9s;
  transition: .9s;
}

.preloader::after {
  left: auto;
  right: 0;
}

.preloader.preloader-deactivate {
  visibility: hidden;
}

.preloader.preloader-deactivate::after, .preloader.preloader-deactivate::before {
  width: 0;
}

.preloader.preloader-deactivate .loader {
  opacity: 0;
  visibility: hidden;
}

@-webkit-keyframes loader-outter {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loader-outter {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes loader-inner {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@keyframes loader-inner {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@-webkit-keyframes dash {
  62.5% {
    opacity: 0;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes dash {
  62.5% {
    opacity: 0;
  }
  to {
    stroke-dashoffset: 0;
  }
}


#loader {
    position: fixed;
    overflow: hidden;
    z-index: 99999999999999999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #272727;
    color: #fff;
    text-align: center;
}
.page-lines {
    display: none;
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.page-lines .line {
    position: absolute;
    left: 0;
    width: 1px;
    height: 50000px;
    background-color: rgba(255,255,255,.08);
}
.loader-brand {
    position: absolute;
    left: 0;
    width: 100%;
    top: 50%;
    -webkit-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    -o-transform: translate(0,-50%);
    transform: translate(0,-50%);
}
.sk-folding-cube {
    margin: 20px auto;
    width: 40px;
    height: 40px;
    position: relative;
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}
.sk-folding-cube .sk-cube {
    float: left;
    width: 50%;
    height: 50%;
    position: relative;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.sk-folding-cube .sk-cube:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #4da446;
    -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
    animation: sk-foldCubeAngle 2.4s infinite linear both;
    -webkit-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
}
.sk-folding-cube .sk-cube {
    float: left;
    width: 50%;
    height: 50%;
    position: relative;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.sk-folding-cube .sk-cube2 {
    -webkit-transform: scale(1.1) rotateZ(90deg);
    transform: scale(1.1) rotateZ(90deg);
}
.sk-folding-cube .sk-cube2:before {
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
}
.sk-folding-cube .sk-cube4 {
    -webkit-transform: scale(1.1) rotateZ(270deg);
    transform: scale(1.1) rotateZ(270deg);
}
.sk-folding-cube .sk-cube4:before {
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
}
.sk-folding-cube .sk-cube3 {
    -webkit-transform: scale(1.1) rotateZ(180deg);
    transform: scale(1.1) rotateZ(180deg);
}
.sk-folding-cube .sk-cube3:before {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}
@-webkit-keyframes sk-foldCubeAngle {
    0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    } 25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    } 90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}
@keyframes sk-foldCubeAngle {
    0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    } 25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    } 90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}
.overlay{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: block;
    background: #000000b0;
}
#introPage{
    height: 100vh;
    width: 100vw;
    background: #151515;
    padding:  0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}
#introPage video{
    border-radius: inherit;
    height: 100%;
    vertical-align: middle;
    width: 100%;
}
#introPage .content{
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    color: #fff;
    width: 75%;
}
#introPage .content .logo{
    position: relative;
    width: 280px;
    height: 130px;
}
#introPage .content .logo img{
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}
#introPage .content h1{
    margin-top: 0;
    font-size: 50px;
}
#introPage .content p{
    font-size: 80px;
    font-weight: 200;
    font-family: 'Raleway', sans-serif;
    line-height: 120%;
    margin: 15px 0;
    color: #fff;
    position: relative;
    top: 0px;
    -webkit-transition: top 0.5s ease-in;
    -moz-transition: top 0.5s ease-in;
    -o-transition: top 0.5s ease-in;
    -ms-transition: top 0.5s ease-in;
    transition: top 0.5s ease-in;
    opacity: 1;
}
/***** header *****/
#header{
    padding: 0px 40px;
    z-index: 9999999;
}
#header.home{
    position: absolute;
    width: 100%;
    right: 0;
    left: 0;
    z-index: 9999999;
}
#header.sticky{
    position: fixed !important;
    z-index: 999;
    width: 100% !important;
    top: 0 !important;
    min-height: 58px;
    box-shadow: 0 1px 7px rgb(0 0 0 / 6%);
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    background: #323232f2!important;
}
#header .logo{
    position: relative;
    width: 180px;
    height: 90px;
}
#header .logo img{
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}
#header nav ul{
    margin: auto;
    text-align: center;
}
#header nav .nav-item{}
#header nav .nav-link{
    color: #fff;
}
#header nav .nav-link:hover{
    color: #4da446;
    transition: all 0.5s ease-in-out;
}
#header nav .nav-link.active{
    color: #4da446;
    font-weight: 600;
}
.hvr-underline-from-center:before{
    background: #4da446;
}
#header .lang {
    align-self: baseline;
    margin-top: 5px;
}
#header .lang a{
    text-decoration: none;
    color: #fff;
}
#header .icons{
    display: flex;
}
#header .icons .dropdown{
    padding: 5px 10px;
    display: inline-block;
}
#header .icons .dropdown .btn{
    background: none;
    border: 0;
    padding: 0;
    box-shadow: none;
}
#header .icons .dropdown .btn img{
    max-width: 30px;
}
#header .icons .dropdown .btn span{
    background-color: #438f3d !important;
    position: absolute;
    right: 0px;
    top: 0px;
}
#header .icons .dropdown-toggle::after{display: none !important;}
#header .dropdown-menu{
    padding: 10px;
    border: 0;
    border-radius: 0;
    box-shadow: 0px 0px 20px -16px;
    min-width: 220px;
    background: #323232f2;
    right: -59px;
    margin: auto;
}
#header .dropdown-menu.noti{max-height: 400px;overflow-y: scroll;padding-bottom: 0;}
#header .dropdown-menu.noti li{border-bottom: 1px solid #438f3d;text-align: initial;}
#header .dropdown-menu.noti .unread{
    background: #488a3f4a;
}
#header .dropdown-menu.noti span{color: #777;font-size: 12px;display: block;text-align: right;}
#header .dropdown-menu.noti .more{border: 0;text-align: center;position: sticky;bottom: 0;background: #322f30;width: 100%;margin: auto;}
#header .dropdown-menu.noti .more a{
  color: #438f3d;
  font-weight: 600;
}
#header .dropdown-menu.noti .more a:hover{
  color: #fff;
  transition: all 0.5s ease-in-out;
}
#header .dropdown-menu a{
    padding: 5px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}
#header .dropdown-menu a:hover{
    background: none;
    color: #4da446;
    transition: all 0.5s ease-in-out;
}
/***** header *****/
/***** slider *****/
#slider{
}
#slider .carousel, #slider .carousel-item, #slider .carousel-inner{
}
#slider img{
    max-height: 100%;
}
#slider .carousel-caption{
    right: inherit;
    bottom: 0;
    left: 20px;
    text-align: initial;
}
#slider .carousel-caption ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
#slider .carousel-caption ul li{
    display: block;
    padding: 10px;
}
#slider .carousel-caption ul li .counterUp{
    background: none;
    width: 65px;
    border-radius: 50%;
    font-size: 28px;
    align-self: auto;
    padding: 13px 0 0;
    margin: 0px;
    font-weight: 600;
    line-height: 1.3;
}
#slider .carousel-caption ul li span{
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}
#slider .carousel-caption ul li.staff{
    position: relative;
}
#slider .carousel-caption ul li.staff .icon{
    position: absolute;
    top: 10px;
    left: 62px;
    font-size: 24px;
    font-weight: 600;
}
#slider .social-media{
    position: absolute;
    bottom: 0;
    right: 75px;
}
#slider .social-media ul{
  padding: 0;
}
#slider .social-media ul li{
    padding: 0 10px;
    display: inline-block;
}
#slider .social-media a{
    color: #4da446;
    font-size: 27px;
}
/***** slider *****/
/***** services *****/
#services{
    margin: 30px 0;
}
#services .card{
   background: none;
   border: 0;
   width: 100%;
}
#services .card .card-img{
    position: relative;
    border-radius: 0;
    border: 0;
    width: 100%;
    height: 200px;
    overflow: hidden;
}
#services .card img{
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 1;
}
#services .card p{
    margin: auto;
    align-self: center;
    font-weight: 500;
    color: #fff;
    font-size: 20px;
    text-align: center;
}
/***** services *****/
/***** album *****/
#album{
    margin: 60px 0 29px;
}
#album .item-img{
    position: relative;
    width: 100%;
    overflow: hidden;
}
#album .item-img img{
    margin: auto;
    z-index: 1;
    width: auto;
}

#album .overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    opacity: 0;
    background: #0000007a;
    z-index: 2;
}
#album .overlay:hover{
    transition: all 0.5s ease-in-out;
    opacity: 1;
}
#album .btn{
    float: right;
    margin: 25px 70px;
}
/***** album *****/
/***** contact *****/
#contact{
    margin: 30px 0;
}
#contact .find-us{
    height: 100%;
    width: 100%;
    min-height: 400px;
}
#contact .card{
    background-image: url(../images/contact/01.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 35px;
    border: 0;
    border-radius: 0;
}
#contact form{
  margin: 65px 0;
}
#contact .head-title.small h2{
    font-size: 22px;
}
#contact .card .overlay{
    background: #4da446e6;
}
#contact .card .data{
    z-index: 2;
}
#contact .card h5{
    margin: 0;
    font-weight: bolder;
    font-size: 22px;
    letter-spacing: 4px;
}
#contact .card ul{
    margin: 0;
    padding:  20px;
    list-style: none;
}
#contact .card ul li{
    font-weight: 600;
    font-size: 18px;
    padding: 5px 0;
}
#contact .card ul li a{
    color: #fff;
}
#contact .card ul li p{
    margin: 0;
    padding: 0 10px;
}
#contact .gettouch .btn{
    float: right;
}
#contact .gettouch p{
    margin: 10px 0 0;
    line-height: 2.1;
    color: #ffffff99;
}
.form-control{
    width: 100%;
    font-size: 1em;
    line-height: 1.42857143;
    padding: 6px 12px;
    height: 45px;
    border-radius: 15px;
    padding-left: 22px;
    color: #fff;
    background-color: #323232;
    border: 1px solid #323232;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -webkit-transition: all .15s;
    -o-transition: all .15s;
    transition: all .15s;
    margin-bottom: 10px;
}
textarea.form-control{
    min-height: 95px;
}
/***** contact *****/
/***** footer *****/
footer .logo{
    position: relative;
    width: 180px;
    height: 90px;
    margin: auto;
}
footer .col-sm-12{
    align-self: center;
}
footer .links{
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}
footer .links li{
    padding: 2px 0;
}
footer .links a{
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}
footer .links a:hover{
    color: #4da446;
    transition: all 0.5s ease-in-out;
}
footer .links li.active a{
    color: #4da446;
}
footer .social-media{
    padding: 0;
    margin: 0;
    list-style: none;
    margin-bottom: 0;
    text-align: left;
}
footer .social-media li{
    padding: 0 10px;
    display: inline-block;
}
footer .social-media a{
    color: #4da446;
    font-size: 27px;
}
footer .copy{
    text-align: center;
    margin: 20px 0;
}
footer .copy p{
    margin: 0;
    font-size: 12px;
}
footer .copy a{
    color: #4da446;
    font-weight: 600;
}
/***** footer *****/
.fixed-icon{
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 9999999999;
}
.fixed-icon img{
    
max-width: 45px;
}
/***** architectural *****/
#architectural{
    margin: 20px 0;
}
#architectural .dropdown{
    display: inline-block;
}
#architectural .dropdown:hover .dropdown-menu{
    display: block;
}
#architectural .dropdown .btn{
    margin: 5px;
    background: none;
    color: #cfcfcf;
    font-size: 14px;
    font-weight: 600;
}
#architectural .dropdown .dropdown-menu{
/*    padding: 10px;*/
/*    border: 0;*/
/*    border-radius: 0;*/
/*    box-shadow: 0px 0px 20px -16px;*/
/*    min-width: 190px;*/
/*    background: #323232f2;*/
    padding: 10px;
    border: 0;
    border-radius: 0;
    box-shadow: 0px 0px 20px -16px;
    min-width: 120px;
    background: #323232f2;
    z-index: 99999;
}
#architectural .dropdown .dropdown-menu a{
    color: #fff;
    font-weight: 400;
    font-size: 14px;
}
#architectural .dropdown .dropdown-menu a:hover{
    color: #4da446;
    background: none;
    transition: all 0.5s ease-in-out;   
}
#architectural .card{
    height: auto;
    background: none;
    border: 0;
    margin: 10px 0;
    position: relative;
}
#architectural .card img{
    width: auto;
    height: auto;
    z-index: 1;
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}
#architectural .typical_image img{
    -webkit-filter: initial; /* Safari 6.0 - 9.0 */
    filter: initial;
}
#architectural .card:hover img{
    -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
    filter: grayscale(0%);
    transition: all 0.5s ease-in-out;
}
#architectural .card .content{
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 2;
    opacity: 0;
    background: #00000038;
    padding: 5px 15px;
    border-radius: 5px;
}
#architectural .card:hover .content{
    opacity: 1;
    transition: all 0.5s ease-in-out;
}
#architectural .card .content .location{
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}
#architectural .card .content p{
    margin: 0;
    font-weight: 600;
    color: #fff;
    font-size: 13px;
}
#architectural .card .plus{
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 3;
    color: #fff;
    font-size: 18px;
    padding: 5px 15px;
    background: #00000038;
    border-radius: 5px;
    opacity: 0;
}

#architectural .card:hover .plus{
    opacity: 1;
    transition: all 0.5s ease-in-out;
}
#architectural .goto{
    width: 100%;
    height: 100%;
    z-index: 3;
    position: absolute;
}
#architectural.details .slider{
    height: auto;
    margin-bottom: 120px;
    position: relative;
}
#architectural.details .slider .carousel, #architectural.details .slider .carousel-item, #architectural.details .slider .carousel-inner{
    /* height: 100%; */
}
#architectural.details .slider .carousel-indicators{
    bottom: -100px;
    width: 90%;
    margin: 0 auto;
}
#architectural.details .slider .carousel-indicators button{
    width: 60px;
    height: 60px;
    background: none;
    position: relative;
}

#architectural.details .slider .carousel-indicators button:hover{
    opacity: 1;
}
#architectural.details .slider .carousel-indicators button img{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%;
}
#architectural.details .size, #architectural.details .desc{
    font-size: 15px;
}
#architectural.details .size span, #architectural.details .desc span{
    text-transform: uppercase;
    color: #4da446;
    font-size: 17px;
}
#architectural.details .desc span{
    display: block;
    color: #4da446;
}
#architectural.details .video{margin: 20px 0;}
#architectural.details .video iframe{width: 100%;height: 750px;margin: 20px 0 0;}
#architectural.details .head-title h2, #architectural.details .head-title h3{
    text-align: left;
}
/***** architectural *****/
/***** register Page *****/
#registerPage{
    margin: 30px 0;
}
#registerPage .card{
    background: none;
    border: 0;
    margin: 0 0;
}
#registerPage .card ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
#registerPage .card ul li{
    padding: 5px 40px 5px 0;
    background: #dbdbdb;
    margin: 0px 0 15px;
    border: 1px solid #45943f;
    border-left: 5px solid #45943f;
    overflow: hidden;
    position: relative;
}
#registerPage .card.text-center ul li{
    background: #45943f;
    padding: 5px 15px ;
    border-left: 1px solid #45943f;
    color: #fff;
}
#registerPage .card.text-center ul li a{
    color: #fff;
}
#registerPage .card ul li .number{
    top: 0;
    bottom: 0;
    background: #438f3d;
    margin: 0 0 0 10px;
    color: #fff;
    width: 30px;
    height: 100%;
    display: initial;
    position: absolute;
    right: 0;
    padding: 2% 10px 0 0;
}
#registerPage .card ul li p{
    margin: 0;
    display: inline-block;
    padding: 0 36px 0 0;
    vertical-align: middle;
}
#registerPage .card ul li:hover{
    background: none;
    transition: all 0.5s ease-in-out;
    border: 1px solid #638242;
}
#registerPage .card ul li a{
    font-weight: 600;
    width: 100%;
    height: 100%;
    font-size: 14px;
    color: #272727;
}
#registerPage .card ul li:hover a{
    color: #fff;
    transition: all 0.5s ease-in-out;
}
#registerPage .profile-img{
    position: relative;
    width: 128px;
    height: 128px;
    margin: 20px auto;
}
#registerPage .profile-pic {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: auto;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
}

#registerPage .file-upload {
    display: none;
}
#registerPage .circle {
    border-radius: 1000px !important;
    overflow: hidden;
    width: 128px;
    height: 128px;
    border: 8px solid #4da446;
    position: absolute;
    top: 0;
}
#registerPage img {
    max-width: 100%;
    height: auto;
}
#registerPage .p-image {
    position: absolute;
    bottom: -10px;
    right: 11px;
    color: #fff;
    cursor: pointer;
    transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
}
#registerPage .p-image:hover {
    transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
}
#registerPage .upload-button {
    font-size: 28px;
}

#registerPage .upload-button:hover {
    transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
    color: #999;
}
#registerPage .form-group{
    margin: 5px 0;
    position:relative;
}
#registerPage .form-group i{
  position: absolute;
  z-index: 1;
  top: 30%;
  margin: auto;
  right: 25px;
  color: #4ca144;
}
#registerPage .form-group .main-label{
    display: block;
    margin: 20px 0 10px;
    color: #888;
    font-weight: 600;
}
#registerPage .form-group .form-check-inline{
    padding: 0 20px;
    color: #499c42;
    display: inline-block;
}
#registerPage .form-group .form-control, #registerPage .form-group .select2{
    width: 100%;
    font-size: 1em;
    line-height: 1.42857143;
    padding: 6px 12px;
    height: 60px;
    border-radius: 15px;
    padding-left: 22px;
    color: #fff;
    background-color: #323232;
    border: 1px solid #323232;
    /* -webkit-box-shadow: none; */
    /* box-shadow: none; */
    /* -webkit-appearance: none; */
    /* -webkit-transition: all .15s; */
    -o-transition: all .15s;
    /* transition: all .15s; */
    margin-bottom: 10px;
}
.select2{
    width: 100% !important;
}
.select2-container{
    font-size: 1em;
    line-height: 1.42857143;
    padding: 6px 12px;
    height: 60px;
    border-radius: 15px;
    padding-left: 22px;
    color: #fff;
    background-color: #323232;
    border: 1px solid #323232;
    /* -webkit-box-shadow: none; */
    /* box-shadow: none; */
    /* -webkit-appearance: none; */
    /* -webkit-transition: all .15s; */
    -o-transition: all .15s;
    /* transition: all .15s; */
    margin-bottom: 10px;
}
.select2-container--default .select2-selection--single {
    background-color: unset;
    border: 0;
    border-radius: 4px;
    height: 100%;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #fff;
    line-height: 3;
    height: 100%;
    width: 100%;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 15px;
    right: 10px;
    width: 20px;
}
.select2-dropdown {
    background-color: #323232;
    border: 1px solid #323232;
    border-radius: 4px;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #648343;
    background: #323232;
    color: #fff;
}
.select2-container--default .select2-results__option--selected {
    background-color: #4da446;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #4da446;
    color: #fff;
}
:focus-visible {
    outline: -webkit-focus-ring-color auto 0;
}
#registerPage .end-text{
    color: #ffffff99;
    padding: 5px 15px;
}
#registerPage .end-text a{
    color: #4da446;
}
.select2-container--default .select2-selection--single .select2-selection__clear{
    display: none;
}
#registerPage.login .login-by{
    margin: 20px 0;
    text-align: center;
}
#registerPage.login .login-by p{
    color: #4da446;
    font-weight: 600;
    position: relative;
}
#registerPage.login .login-by p::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 25%;
    height: 2px;
    background: #4da446;
    margin: auto;
}
#registerPage.login .login-by p::before{
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 25%;
    height: 2px;
    background: #4da446;
    margin: auto;
}
#registerPage.login ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
#registerPage.login ul li{
    display: inline-block;
    padding: 0 10px;
}
#registerPage.login ul img{
    max-width: 35px;
}
#registerPage.login .forget{
    text-align: center;
    display: block;
    color: #4da446;
    font-weight: 600;
    margin: 85px 0 0;
    text-decoration: underline;
}
/***** register Page *****/
/***** order page *****/
#orders {
    margin: 30px 0;
}
#orders .modal-content{
    background: #131313;
    border: 1px solid #666;
    /*    overflow: scroll;*/
    /*overflow-x: hidden;*/
}
.orders-modal .modal-content{
        overflow: scroll;
    overflow-x: hidden;
}
#orders .modal-content .modal-header h5{
    margin: 0 auto;
    color: #4ea446;
    font-size: 22px;
    font-weight: 600;
}

#orders .modal-content .modal-header .btn-close{
    background: transparent url(../images/icons/close.png) center/1em auto no-repeat;
    position: absolute;
    left: 10px;
    margin: 0;
}
#orders .modal-content .modal-body{
}
#orders .modal-content .modal-body p{
    color: #b3b3b3;
    font-size: 14px;
}
 .form-control:disabled, .form-control[readonly] {
    background-color: #4a4a4a;
    color: #fff;
}
.form-control:focus{
    background-color: #363535;
    border-color:#4da446;
    color: #fff;
}
.upload-inputs label{
    color: #4ea446;
}
.file-upload-wrapper {
  color:  #4daf7c;
  height: 60px;
  position: relative;
  width: 100%;
}
.file-upload-wrapper:after {
    content: attr(data-text);
    font-size: 16px;
    position: absolute;
    top: 0;
    left: 0;
    background: #323232;
    padding: 10px 15px;
    display: block;
    width: 100%;
    pointer-events: none;
    z-index: 20;
    height: 40px;
    line-height: 20px;
    color: #999;
    border-radius: 5px 10px 10px 5px;
    font-weight: 300;
    text-align: initial;
  }
  
.file-upload-wrapper:before {
    content: 'ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â';
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    height: 40px;
    background: #4ea446;
    color: #fff;
    font-weight: 700;
    z-index: 25;
    font-size: 14px;
    line-height: 40px;
    padding: 0 15px;
    text-transform: uppercase;
    pointer-events: none;
    border-radius: 0 5px 5px 0;
  }
.file-upload-wrapper:hover .file-upload-wrapper:before {
  background: darken(#4daf7c, 10%);
}
  
.file-upload-field {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    height: 40px;
    margin: 0;
    padding: 0;
    display: block;
    cursor: pointer;
    width: 100%;
  }
#orders .head-title h2  {
    text-align: center
}
.small-title{
    position: relative;
    width: 100%;
    margin: 20px 0;
}
.small-title h5{
    text-align: center;
    color: #438f3d;
    font-size: 1rem;
}
.small-title h5::after{
    content: '';
    height: 2px;
    width: 22%;
    background: #438f3d;
    top: 0;
    bottom: 0;
    position: absolute;
    left: 0;
    margin: auto;
}
.small-title h5::before{
    content: '';
    height: 2px;
    width: 22%;
    background: #438f3d;
    top: 0;
    bottom: 0;
    position: absolute;
    right: 0;
    margin: auto;
}
#orders .current-requests{
    display: flex;
    display: -webkit-flex;
    display: -o-flex;
    display: -moz-flex;
    align-items: center;
    box-shadow: 0px 0px 16px -14px #646464fa;
    background: #323232;
    position: relative;
    height: 30px;
    margin: 10px;
}
#orders .current-requests .num{
    width: 30px;
    height: 30px;
    background: #438f3d;
    text-align: center;
    font-weight: 600;
}
#orders .current-requests .num span{
    vertical-align: middle;
}
#orders .current-requests .request-name{
    width: 100%;
    padding: 0 80px 0 5px;
}
#orders .current-requests .details{position: absolute;right: 0;top: 0;bottom: 0;height: 30px;}
#orders .current-requests .details .still{
    height: 30px;
    padding: 0 15px;
    border-radius: 0;
    background: #438f3d;
    border: 1px solid #438f3d;
    font-weight: 600;
    font-size:0.8rem;
}
#orders .current-requests .details .still:hover{
    background: #fff;
    transform: all 0.5s ease-in-out;
    color: #438f3d;
}
#orders .current-requests .details .done{
    height: 30px;
    padding: 0 15px;
    border-radius: 0;
    background: #bede9b;
    border: 1px solid #BEDE9B;
    font-weight: 600;
    font-size:0.8rem;
}
#orders .current-requests .details .done:hover{
    background: #fff;
    transform: all 0.5s ease-in-out;
    color: #BEDE9B;
}
/***** order page *****/
#soon img{   
    max-height: 500px;
    display: block;
    margin: 10px auto;
}
.main-btn a{ 
    color: #fff;
}
.main-btn:hover a{
    color: #4da446;
}
.modal-backdrop.show {
    opacity: .7;
}
/***** engineering-offices *****/
#engineering-offices{
    margin: 0 20px;
}
#engineering-offices .card{
    background: none;
    margin: 10px 0;
    min-height: 195px;
    box-shadow: 0px 0px 20px -15px #666;
    border-radius: 0;
}
#engineering-offices .card:hover{
    box-shadow: none;
    transition: all 0.5s ease-in-out;
}
#engineering-offices .card .card-header{
    background: #438f3d;
    border-radius: 0;
}
#engineering-offices .card .card-header p{
    margin: 0;
    color: #fff;
    font-weight: 600;
}
#engineering-offices .card ul{
    padding: 10px;
    margin: 0;
    list-style: none;
}
#engineering-offices .card ul li{
    color: #fff;
    font-size: 14px;
}
#engineering-offices .card ul li p{
    background: #438f3d;
    padding: 3px 15px;
    display: inline-block;
    min-width: 100px;
    text-align: center;
    margin-bottom: 6px;
}
.select2-container--default .select2-selection--multiple {
    background-color: white;
    border: 0;
    border-radius: 4px;
    cursor: text;
    background: none;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 0;
    outline: 0;
    background: none;
    min-height: 46px;
    margin: auto;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 5px;
    width: 100%;
    height: 100%;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    list-style: none;
    height: 100%;
    background: none;
    border: 0;
}
.select2-container--default .select2-search--inline .select2-search__field{
    height: 100%;
    margin: 0;
    background: none;
    text-align: right;
}
.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #438f3d;
}
input:required {
    background-color: #323232;
}
/***** engineering-offices *****/
/***** paymount *****/
#paymont{
    margin: 0 20px;
}
#paymont .card{
    box-shadow: 0px 0px 11px -4px #438f3d;
    background: none;
    margin: 15px 0;
    padding: 15px;
    border: 1px solid #438f3d;
    border-radius: 0;
}
#paymont .card:hover{
    box-shadow: none;
    transition: all 0.5s ease-in-out;
}
#paymont .card p{margin: 0;color: #fff;}
#paymont .card img{
    max-width: 125px;
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    max-height: 100%;
}
#paymont .card form{
    margin: 0;
}
#paymont .card button{
    background: none;
    border: 0;
    padding: 0;
    width: 100%;
    text-align: inherit;
}
/***** paymount *****/
/***** message *****/
#message{}
#message .card{
    background: none;
    border: 0;
    padding: 10px 15px;
    box-shadow: 0px 0px 20px -11px #479740;
}
#message .message-card{
    max-height: 500px;
    overflow-y: scroll;
    padding: 0;
}
#message .card .message{
    border-bottom: 1px solid #489d43;
    padding: 10px 0;
    padding: 15px;
}
#message .card .message h5{
    color: #489d43;
    font-weight: 600;
    font-size: 15px;
}
#message .card .message p{
    max-height: 40px;
    overflow: hidden;
    font-size: 13px;
    margin: 0;
    color: #fff;
}
#message .card .message .date{
    float: right;
    color: #777;
    font-size: 12px;
}
#message .card .message-content{padding: 15px;}
#message .card .message-content p{
    margin: 0;
    font-size: 15px;
}
#message .card .message-content a{
    color: #438f3d;
    font-weight: 600;
}
#message .card .message-content .date{
    text-align: center;
    font-size: 12px;
    color: #777;
}
#message .card .message.active{
    background: #4aa044;
}
#message .card .message.active h5{
    color: #fff;
}
#message .card .message.active p{
    color: #272727;
    font-weight: 600;
}

#message .card .message.active .date{
  color: #fff;
}
/***** message *****/
/***** wishlist *****/
#architectural.details .box {
    border-left: 3px solid #438f3d;
    border-right: blue;
    padding: 0 10px;
    margin: 15px 0;
}
#architectural.details .box p{
    margin: 0;
}
#architectural.details h5{
  color: #438f3d;
  margin-bottom: 1rem;
}
#architectural.details .checks img{
  width: 15px;
}
#architectural.details .main-btn{
    padding: 5px 10px;
    min-width: 155px;
}
#architectural.typical-designs .box{
    text-align: center;
    box-shadow: 0px 0px 15px -11px;
    min-height: 50px;
    padding: 7px 0;
    margin: 5px 0;
    font-size: 12px;
}
#architectural.typical-designs .box p{
    margin: 0;
}
#architectural.typical-designs .box span{}
#architectural.typical-designs .box.price{
    background: #45943f;
    padding: 15px 0;
}
#architectural.typical-designs .box.price p{}
.wishlist{
    position: absolute;
    left: 5px;
    top: 5px;
    z-index: 9999;
    font-size: 25px;
    cursor: pointer;
}
.wishlist i{
    color: #45943f;
}
/***** wishlist *****/
.jconfirm .jconfirm-cell {
    display: table-cell;
    vertical-align: middle;
    background: #0000007a !important;
}
.jconfirm.jconfirm-white .jconfirm-box, .jconfirm.jconfirm-light .jconfirm-box {
    -webkit-box-shadow: 0 2px 6px rgb(0 0 0 / 20%);
    box-shadow: 0 2px 6px rgb(0 0 0 / 20%);
    border-radius: 5px;
    background: #2c2c2c !important;
}
#header .icons .dropdown.user .dropdown-menu{
    min-width: 160px;
    }

.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #45943f;
}
.m-top{
    margin-top: 15px;
}
.design_message{
    margin: 15px 0;
    background: #323232;
    padding: 15px;
    border-radius: 24px;
    text-align: center;
    font-size:14px;
    color: #fff;
}

.region_message{
    margin: 15px 0;
    background: #323232;
    padding: 15px;
    border-radius: 10px;
    font-size:14px;
    color: #fff;
}
.payment-modal .modal-content{
    background: #131313;
    border: 1px solid #666;
    text-align: center;
}
.payment-modal{
    background: #000000a3;
    border-color: #666;
}
.payment-modal .modal-footer{
    text-align: center;
    border-color: #666;
    display: block;
}
.btn-danger{
    background: #bb2d3b;
    border-color: #bb2d3b;
}
.btn-danger:hover{
  color: #bb2d3b; 
}
#architectural.typical-designs .card .content, #architectural.typical-designs .card .plus{
    opacity: 1;
}
#architectural.typical-designs .card img {
    width: auto;
    height: auto;
    z-index: 1;
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}
#architectural.typical-designs .goto{
    position: initial;
}

#orders .done, #orders .still{
    min-width: 90px;
}
.jconfirm .jconfirm-box div.jconfirm-title-c {
    display: block;
    font-size: 20px;
}
.jconfirm .jconfirm-box div.jconfirm-content-pane .jconfirm-content {
    overflow: auto;
    font-size: 14;
}
#previewContractors{}
#previewContractors .card{
    margin: 10px 0;
    background: none;
    padding: 0;
    border: 0;
    border-radius: 0;
    border-right: 3px solid #438f3d;
    border-left: 3px solid #438f3d;
}
#previewContractors .card .contractor-name{
    font-weight: 500;
    color: #fff;
    background: #438f3d;
    padding: 7px;
    text-align: center;
    font-size: 15px;
}
#previewContractors .card .contractor-details{
    list-style: none;
    padding: 0;
    margin: 0;
}
#previewContractors .card .contractor-details li{
    display: flex;
    margin: 3px 0 0;
    min-height: 35px;
}
#previewContractors .card .contractor-details .main-data{
    min-width: 125px;
    background: #438f3d;
    color: #fff;
    padding: 3px 8px;
    font-size: 13px;
}
#previewContractors .card .contractor-details .data{
    padding: 3px 8px;
    color: #272727;
    font-size: 13px;
    width: 100%;
    background: #DBDBDB;
}


#registerPage .card ul li .servcie-price{
    top: 0;
    bottom: 0;
    background: #438f3d;
    color: #fff;
    width: 105px;
    height: 100%;
    position: absolute;
    left: 0;
    padding: 2% 10px;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #479941;
    color: white;
}
.covered_regions{
    height: 45px;
    overflow: hidden;
}
.last-li{
    padding: 5px !important;
}
.last-li:hover{
  background: #dbdbdb !important;
}
.last-li img{
    width: 35px;
}
.last-li:hover a{
  color: #000 !important;
}
.last-li .servcie-price{
    /* padding: 1% 5px !important; */
    width: 115px !important;
    font-size: 12px;
}
@font-face {
    font-family: 'GE SS Two light';
    src: url('../fonts/GESSTwoLight-Light.woff2') format('woff2'),
        url('../fonts/GESSTwoLight-Light.woff') format('woff'),
        url('../fonts/GESSTwoLight-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GE SS Two medium';
    src: url('../fonts/GESSTwoMedium-Medium.woff2') format('woff2'),
        url('../fonts/GESSTwoMedium-Medium.woff') format('woff'),
        url('../fonts/GESSTwoMedium-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
.ar-lang{
    direction: rtl;
}
.ar-lang .head-title h2, .ar-lang  .head-title h3{
    font-family: 'GE SS Two light';
    letter-spacing: 1px;
}
#orders.ar-lang .current-requests .details {
    position: absolute;
    right: initial;
    top: 0;
    left: 0;
    bottom: 0;
    height: 30px;
}
.ar-lang .wishlist {
    position: absolute;
    left: inherit;
    right: 5px;
    top: 5px;
    z-index: 9999;
    font-size: 25px;
    cursor: pointer;
}
#architectural.details.ar-lang .box {
    border-left: 0;
    border-right: 3px solid #438f3d;
}
#architectural.details.ar-lang .head-title h2, #architectural.details.ar-lang .head-title h3 {
    text-align: right;
}
.ar-lang .form-check {
    display: block;
    min-height: 1.5rem;
    padding-right: 1.5em;
    margin-bottom: 0.125rem;
}
.ar-lang .form-check-input[type=checkbox] {
    border-radius: 0.25em;
}
.ar-lang .form-check .form-check-input {
    float: right;
    margin-right: -1.5em;
}
#paymont.ar-lang .card img {
    max-width: 125px;
    position: absolute;
    right: inherit;
    left: 10px;
}
.ar-lang .select2-container--default .select2-selection--single .select2-selection__rendered {
    text-align: right;
}
.ar-lang .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 15px;
    right: initial;
    left: 10px;
    width: 20px;
}
.ar-lang .btn i {
    transform: rotate(180deg);
}
#request-details a{
    color: #4da446;
}
#orders.ar-lang .current-requests .request-name {
    width: 100%;
    padding: 0 5px 0 92px;
    font-size: 0.8rem;
}
.ar-lang .file-upload-wrapper::before {
    top: 0px;
    right: inherit;
    left: 0px;
    border-radius: 5px 0px 0px 5px;
}
.ar-lang .file-upload-wrapper:after {
    border-radius: 10px 5px 5px 10px;
}
.ar-lang .jconfirm.jconfirm-white .jconfirm-box, .ar-lang .jconfirm.jconfirm-light .jconfirm-box{
    text-align: right;
}
#registerPage.ar-lang .form-group i {
    right: inherit;
    left: 25px;
}
.requst-payment{
    display: flex; 
}
.login-modal .modal-title{
    color: #4ea446;
    font-size: 17px;
}
.login-modal .btn-close{
        background: transparent url('../images/close.png') center/1em auto no-repeat;
}
.login-modal form{
    margin: 0;
    text-align: initial;
}
.login-modal form label{
    color: #4ea446;
    cursor: pointer;
}
.apps-links{}
.apps-links li{}
.apps-links li img{
    max-width: 150px;
}
#architectural.details .slider .carousel-inner img{
    width: 100%;
}
/***** Responsive *****/
@media only screen and (max-width: 1200px) {
   #architectural.details .video iframe {
    max-height: 625px !important;
    } }
@media only screen and (max-width: 1100px) {
  #architectural.details .video iframe {
    max-height: 575px !important;
    } }
@media only screen and (max-width: 1000px) {
   #architectural.details .video iframe {
    max-height: 525px !important;
    } }
@media only screen and (max-width: 900px) {
   #architectural.details .video iframe {
    max-height: 475px !important;
    } }
@media only screen and (max-width: 800px) {
   #architectural.details .video iframe {
    max-height: 415px !important;
    } }
@media only screen and (max-width: 700px) {
   #architectural.details .video iframe {
    max-height: 350px !important;
    } }
@media only screen and (max-width: 600px) {
   #architectural.details .video iframe {
    max-height: 300px !important;
    } }
@media only screen and (max-width: 500px) {
   #architectural.details .video iframe {
    max-height: 250px !important;
    } }
@media only screen and (max-width: 400px) {
   #architectural.details .video iframe {
    max-height: 214px !important;
    } }
@media only screen and (max-width: 320px) {
   #architectural.details .video iframe {
    max-height: 200px !important;
    } }

@media only screen and (min-width: 991px) {
    #header nav .dropdown:hover .dropdown-menu{
        display: block;
        transition: all 0.5s ease-in-out;
    }
    #architectural .dropdown:hover .dropdown-menu {
        display: block;
    }
}
@media only screen and (max-width: 1200px) {
    #paymont .card p{
        width: 285px;
    }
}
@media only screen and (max-width: 991px) {
    #header.home{
        position: relative;
    }
    #header .lang{
        position: absolute;
        right: 15px;
        top: 15px;
    }
    .navbar-light .navbar-toggler-icon{
        background-image: url(../images/icons/menu.png)
    }
    .navbar-toggler{
        position: absolute;
        right: 15px;
        top: 60px;
        border: 0;
        padding: 0;
        z-index: 9999;
    }
    #introPage .content p {
        font-size: 64px;
    }
    #header {
        padding: 0px;
    }
    #header .icons{
        position: absolute;
        right: 90px;
    }
    #architectural .card .plus, #architectural .card .content{
        opacity: 1;
    }
}

@media only screen and (max-width: 767px) {
    #architectural.details .slider .carousel-indicators button {
        width: 45px;
        height: 45px;
    }
    #introPage .content {
        width: 95%;
    }
    #message .message-card {
        max-height: 310px;
        overflow-y: scroll;
        padding: 0;
    }
    #slider .social-media {
        right: 10px;
        text-align: center;
        left: 10px;
    }
}
@media only screen and (max-width: 576px) {
    #introPage .content p {
        font-size: 40px;
    }
    #slider .carousel-caption {
        right: 0;
        left: 0;
        bottom: 70px;
        padding: 0;
    }
    .apps-links li img {
        max-width: 100px;
    }
    #slider .social-media ul {
        padding: 0;
        margin-bottom: 5px;
    }
    #slider .carousel-caption ul li {
        padding: 0px;
        text-align: center;
        display: inline-block;
        margin: 0 auto;
        width: 24%;
    }
  #slider .carousel-caption ul li.dynamic-txt{
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  #slider .carousel-caption ul li.dynamic-txt h5,
  #slider .carousel-caption ul li.dynamic-txt span{
    font-size: 21px;
}
    #slider .carousel-caption ul li .counterUp {
        background: none;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        font-size: 25px;
        align-self: auto;
        padding: 7px 0;
        margin: 5px auto;
        font-weight: 600;
    }
    #slider .carousel-caption ul li span {
        font-size: 13px;
    }
	#slider .carousel-caption ul li.staff .icon {
    position: absolute;
    top: 10px;
    left: 76px;
    font-size: 24px;
    font-weight: 600;
}
    #slider .social-media ul li {
        padding: 0 5px;
    }
    #slider .social-media a {
        color: #4da446;
        font-size: 24px;
    }
    #paymont .card p{
        width: 100%;
        margin-bottom: 5px;
        font-size: 14px;
    }
    #paymont .card img{
        position: relative;
        right: 0;
        left: 0;
        margin: auto;
        display: block;
    }
    #paymont.ar-lang .card img{
        position: relative;
        right: 0;
        left: 0;
        margin: auto;
        display: block;
    }
}
@media only screen and (max-width: 450px) {
    #header .logo {
        position: relative;
        width: 140px;
        height: 70px;
        margin-bottom: 8px;
    }
    .dynamic-txt p{
        font-size: 20px !important;
    }
    #album .item-img{
        position: relative;
        width: 100%;
        overflow: hidden;
    }
    #album .item-img{
        position: relative;
        width: 100%;
        overflow: hidden;
    }
    #header .icons .dropdown {
        padding: 5px 10px;
        display: inline-block;
    }
    
    #header .icons {
        position: absolute;
        /* right: 0; */
        /* left: 0; */
        /* margin: auto; */
        top: 54px;
        /* text-align: center; */
        display: block;
    }
    #services .card .card-img {
        height: 120px;
    }
    #services .card p {
        font-size: 14px;
    }
}
.g-recaptcha div{
    margin: 20px auto;
}

.dynamic-txt{direction: ltr;}
.dynamic-txt p{
  white-space: nowrap;
  overflow: hidden;
  width: 30em;
  animation: type 8s steps(60) infinite;
  margin: 0;
  font-family: 'Architects Daughter', cursive;
  font-size: 30px;
  
  text-align: left;
}

.dynamic-txt p span{
    font-size: 30px !important;
    color: #4da446;
}

@keyframes type{ 
  from { width: 0; } 
} 
  .text-overflow {
      width:100%;
      height:85px;
      display:block; 
      overflow:hidden;
      word-break: break-word;
      word-wrap: break-word;
      transition: all 0.5s ease-in-out;
  }

  .text-overflow.show {
    height: auto;
  transition: all 0.5s ease-in-out;
  }
.arabic_in_english{
    letter-spacing: 1px !important;
    direction: rtl;
}