@charset "utf-8";
/* CSS Document */
@import url('themify-icons.css');
@import url('font-face.css');
@import url('https://fonts.googleapis.com/css2?family=Quattrocento:wght@400;700&display=swap');
ul,
ol {
    margin: 0px;
    padding: 0;
    list-style: none;
}

*,c
*:before,
*:after {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
}

a,
img {
    border: 0px;
    outline: 0px;
    color: #e02228;
    text-decoration: none;
    vertical-align: top;
}

body {
    font-size: 16px;
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden;
    font-weight: 400;
    position: relative;
    font-family: 'Quattrocento', serif;
    background: #fff;
    color: #222;
}

input,
select,
textarea,
button {
    font-family: 'Quattrocento', serif;
    font-size: 15px;
}

input[type=file]:focus,
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6,
label {
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.fullbody {
    width: 100%;
    float: left;
    position: relative;
}

.fullpage {
    position: relative;
    max-width: 1300px;
    min-width: 240px;
    margin-left: auto;
    margin-right: auto;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background: #312d2d;
	border-bottom:1px solid #312d2d;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
}
.home_page .header {
    top: 20px;
	border-bottom:0px solid #ddd;
    background: transparent;
    box-shadow: 0px 0px 0 0 rgba(0, 0, 0, 0);
}

.logo {
    padding: 5px 0;
    float: left;
    position: relative;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
}
.home_page .logo  {
    padding: 0
}
.home_page .logo img,.logo img {
    height: 125px;
    float: left;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
}
.logo img {
    height: 80px;
}
.menu, .menu_bread h1 {
    float: right;
    position: relative;
}
.menu_bread h1 {
	margin-top:25px;
	line-height:40px;
	margin-right:15px;
	font-size:16px;
	text-transform: uppercase;
	color: white;
}
.menu_bread h1:after {
	content:'/';
	margin: 0 5px;
}
.menu .menuicon {
    width: 40px;
    height: 40px;
    margin-top: 25px;
    background: #fff;
    line-height: 40px;
    color: #111;
    border-radius: 3px;
    text-align: center;
    font-size: 24px;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
}
.homebanner h1{
    display:none;
}
.home_page .menuicon {
    margin-top: 15px;
}
.ssss a{
    float: right;
    margin-right: 50px;
    margin-top: -110px;
    z-index: 5;
    position: inherit;
    color: #fff;
    font-weight: 400;
    padding: 10px 25px;
    border-radius: 25px;
    background: #000;
}
.fixedmenu {
    position: absolute;
    top: 100%;
    right: -100%;
    z-index: 99;
    background: #555;
    padding: 5px 10px;
    border-radius: 3px;
    width: 325px;
    opacity: 0;
    visibility: hidden;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
}
@media screen and (min-width : 768px) {
    .menu:hover .fixedmenu {
        right: 0;
        opacity: 1;
        visibility: visible;
    }
}
.fixedmenu.open {
    right: 0;
    opacity: 1;
    visibility: visible;
}
.fixedmenu li {
    width: 100%;
    float: left;
    text-align: right;
}
.fixedmenu li a {
    display: block;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 5px;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
}
.fixedmenu li a:hover {
    color: #ccc;
}
.fixedmenu li:last-child a {
    border-bottom: 0px
}
/* ---- banner ---- */

.homebanner {
    background-color: #eee;
    height: 100vh;
}
.homebanner .item {
    width: 100%;
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.homebanner .item img {
    width: 100%;
    height: 100vh;
    object-position: center;
    object-fit: cover;
}
.bannerTxt {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 1121px;
    text-align: center;
    transform: translate(-50%,-50%);
    font-size: 68px;
    line-height: 1.2;
    font-weight: 500;
    color: #fff;
    /*text-shadow: 0px 0px 1px #333;*/
/*    padding: 50px;
    background: rgba(0,0,0,0.5);
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
}
.homebanner .item .bannerTxt {
    opacity: 0;
    visibility: hidden;
    top: 70%;
}
.homebanner .item.active .bannerTxt {
    opacity: 1;
    visibility: visible;
    top: 50%;
}
.bannerTxt:before {
    position: absolute;
    top: 15px;
    left: 15px;
    bottom: 15px;
    right: 15px;
    border: 3px solid #111;
    content: '';
}
.bannerTxt h3 {
    font-size: 55px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #fff;*/
}
.tw-cursor {
  border-right: 2px solid #fff;
  display: initial;
  animation: blinkCursor 500ms steps(11) infinite normal;
}

@keyframes blinkCursor{
from{border-right-color: #fff;}
to{border-right-color: #000;}
}

/*about_block*/
.about_block {
    text-align: center;
    background-color: #ffd13f;
    padding: 50px 0;
    background-image: url(../img/blueprints.svg);
    background-repeat: repeat;
}
.about_block h1:after {
    display: block;
    width: 100px;
    height: 2px;
    margin-top: 10px;
    content: '';
    margin-left: calc(50% - 50px);
    background-color: #333
}
.about_block h1 {
    font-size: 50px;
    font-weight: 500;
    color: #111;
    text-shadow: 0px 0px 1px #333, 1px 0px 1px #333, 0px 1px 1px #333;
    margin-bottom: 30px;
}
.about_block .p {
    font-size: 20px;
    padding: 0 15%;
}
/*services_block*/
.services_block {
    text-align: center;
    background-color: #fff;
    padding: 50px 0;
    background-image: url(../img/blueprints.svg);
    background-repeat: repeat;
}
.services_block h2:after {
    display: block;
    width: 100px;
    height: 2px;
    margin-top: 10px;
    content: '';
    margin-left: calc(50% - 50px);
    background-color: #333
}
.services_block h2 {
    font-size: 50px;
    font-weight: 500;
    color: #111;
    text-shadow: 0px 0px 1px #333, 1px 0px 1px #333, 0px 1px 1px #333;
}
.services_block li {
    float: left;
    width: 33.33%;
    margin-top: 40px;
    padding: 15px;
}
.services_block li:nth-child(even) {
    float: right;
}
.services_block li a{
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.25);
    transition: all .5s;
    -webkit-transition: all .5s;
}
.services_block li a:hover{
    box-shadow: 0px 0px 45px 0px rgba(0,0,0,0.40);
    transform: translateY(-20px);
}
.services_block li img{
    width: 100%;
    height: 400px;
    object-position: center;
    object-fit: cover;
}
.services_block li span{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    background-color: rgba(0,0,0,0.4);
    padding: 15px;
    transition: all .5s;
    -webkit-transition: all .5s;
    font-size: 20px;
    font-weight: 600;
}
.services_block li a:hover span{
    background-color: rgba(0,0,0,0.7)
}
/*adv_block*/
.adv_block {
    background-color: #111;
    color: #fff;
    background-image: url(../img/blueprints1.svg);
    background-repeat: repeat;
}
.adv_block .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: 1
}
.adv_block .img img {
    width: 100%;
    height: 100%;
    object-fit:cover;
    object-position: center;
}
.adv_list {
    float: right;
    width: 47%;
    padding: 50px 0;
}
.adv_list h2 {
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: 500;
    border-left: 3px solid #fff;
    padding-left: 15px;
}
.adv_list li {
    position: relative;
    padding: 5px;
    padding-left: 45px;
}
.adv_list li:before {
    position: absolute;
    top: 5px;
    left: 0;
    background-image: url(../img/icon-tick.png);
    background-repeat: no-repeat;
    content: '';
    width: 25px;
    height: 25px;
    background-size: cover;
}
/*stats_block*/
.stats_block {
    text-align: center;
    background-color: #ffd13f;
    padding: 50px 0;
    background-image: url(../img/blueprints.svg);
    background-repeat: repeat;
}
.stats_block li {
    width: 16.6%;
    float: left;
    padding: 15px;
    font-size: 20px;
    color: #111;
}
.stats_block li .icon {
    display: inline-block;
    width: 150px;
    height: 150px;
    line-height: 146px;
    font-size: 40px;
    font-weight: 600;
    border-radius: 100%;
    border: 2px solid #333;
}
.stats_block li span {
    margin-top: 15px
}
/*blog_block*/
.blog_block {
    text-align: center;
    background-color: #fff;
    padding: 50px 0;
    background-image: url(../img/blueprints.svg);
    background-repeat: repeat;
}
.blog_block h2:after {
    display: block;
    width: 100px;
    height: 2px;
    margin-top: 10px;
    content: '';
    margin-left: calc(50% - 50px);
    background-color: #333
}
.blog_block h2 {
    font-size: 50px;
    font-weight: 500;
    color: #111;
    margin-bottom: 30px;
    text-shadow: 0px 0px 1px #333, 1px 0px 1px #333, 0px 1px 1px #333;
}
.blog_block .blog_list li {
    background-color: #fff;
}
/*contact_block*/
.contact_block {
    text-align: center;
    background-color: #f4f4f4;
    padding: 50px 0;
    background-image: url(../img/blueprints.svg);
    background-repeat: repeat;
}
.contact_block h2:after {
    display: block;
    width: 100px;
    height: 2px;
    margin-top: 10px;
    content: '';
    margin-left: calc(50% - 50px);
    background-color: #333
}
.contact_block h2 {
    font-size: 50px;
    font-weight: 500;
    color: #111;
    text-shadow: 0px 0px 1px #333, 1px 0px 1px #333, 0px 1px 1px #333;
    margin-bottom: 30px;
}
.contact_block li {
    width: calc( (100% - 60px) / 5);
    float: left;
    margin-right: 15px;
    margin-top: 10px
}
.contact_block li:nth-child(5n+5) {
    margin-right: 0px;
}
.contact_block li a {
    line-height:100px;
    color: #333;
    border-radius: 3px; 
    border:1px solid #999;
    background-color: #fff;
    font-size: 22px; 
    transition: all .5s;
    -webkit-transition: all .5s;
}
.contact_block li a:hover {
    box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.15);
}

.enquireNowPop,.teamPopup {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgba(0,0,0,0.75);
    overflow-y: auto;
    display: none;
}
.enquireNowPopBx,.teamPopBx {
    display: table;
    position: relative;
    margin: 100px auto;
    background: #fff;
    border-radius: 5px;
    padding: 30px;
    width: 90%;
    max-width: 350px;
}
.teamPopBx {
    max-width: 600px;
}
.enClose,.tmClose {
    position: absolute;
    top: 5px;
    right: 10px;
    color: #a90000;
    cursor: pointer;
}
.enquireNowPopBx h2 ,
.teamPopBx h2 {
    flex-wrap: 400;
    font-size: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}
.teamPopBx h2 {
    margin-bottom: 15px;
}
.popInput {
    width: 100%;
    float: left;
    height: 40px;
    padding: 0 10px;
    border: 1px solid #ddd;
    margin-top: 15px;
}
.checkboxInput {
    margin-top: 15px;
}
.checkboxInput input {
    margin-right: 5px;
}
.checkboxInput label {
    font-weight: 400
}
.enquireNowPopBx button {
    width: 100%;
    float: left;
    border: 1px solid #000000;
    color: #fff;
    background: #000000;
    cursor: pointer;
    margin-top: 15px;
    height: 42px;
}
.enquireNowPopBx button:hover {
    background: #03847b;
}
body.open {
    overflow: hidden;
}
/*start of fade*/

.carousel-fade .carousel-inner .item {
    -webkit-transition-property: opacity;
    transition-property: opacity;
}

.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    opacity: 0;
}

.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
}

.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}


/*end of fade*/

.carousel-indicators {
    position: absolute;
    width: 100%;
    left: 0;
    text-align: center;
    bottom: 60px;
}

.carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 2px solid #555;
    border-radius: 10px;
    margin: 0 1px;
    transition: all .5s;
}

.carousel-indicators li:hover,
.carousel-indicators li.active {
    background: #555;
    transition: all .5s;
}

/*footer*/
footer {
    width: 100%;
    float: left;
    background: #b0b0b0;
    padding: 15px 0;
    font-weight: 400;
    color: #333;
}
/*.home_page footer {
    position: fixed;
    z-index: 99;
    bottom: 0;
    left: 0;
    border-top: 0px
}*/
footer .copy {
    float: left;
    font-size: 14px;
}
footer .social {
    float: right;
}
footer .social a {
    float: left;
    margin-left: 12px;
    color: #111;
}
footer .social a:hover {
    color: #555;
}
/*footer*/
footer {
    background: #111;
    padding: 20px 0;
    color: rgba(255, 255, 255, 1);
}

.fbox {
    float: left;
    width: 25%;
}

.fabout {
    width: 50%;
    padding-right: 10%;
}

.fbox h4 {
    margin: 20px 0;
    color: #ffd13f;
    font-size: 19px;
    font-weight: 400;
}

.fbox h4:after {
    position: absolute;
    bottom: -5px;
    left: 0;
    content: '';
    background: #fff;
    height: 1px;
    width: 40px;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
}

.fbox li a {
    color: rgba(255, 255, 255, 1);
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
}

.fbox a:hover,
.fbox li a:hover {
    color: #ffd13f;
}

.fbox p {
    display: block;
    margin-bottom: 5px
}

.fbox p i {
    width: 20px;
    color: #f80273
}
.fsocail li i{
    width: 20px;
}

/*copyrights*/
.copyrights {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    color: #111;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyrights .design {
    float: right;
    /*display: none;*/
}
.copyrights .design a {
    color: #ffd13f;
}
.whatsAppFLoat {
    position:fixed;
    bottom:30px;
    right:30px;
    z-index:99;
    width:40px;
    height:40px;
    text-align:center;
    line-height:40px;
    color:#fff;
    background:#24cc63;
    border-radius:50px;
    box-shadow:0px 0px 14px 0px rgba(0,0,0,0.15);
    font-size:26px;
}
/*innerbanner*/
.innerbanner {
	display: none;
}
/*.innerbanner {
    height: 500px;
    background-position: center;
    background-size: cover;
    border-bottom: 5px solid #00aa9e
}
.innerbanner:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    background: #00aa9e;
    opacity: 0.5;
}*/
.innerBnrText {
    margin-top: 120px;
    background: #888;
    color: #fff;
    border-radius: 3px;
    padding: 12px;
}
.innerBnrText h1 {
    float: left;
    font-size: 24px;
    font-weight: 500;
    line-height: 26px;
}
.innerBnrText ul {
    float: right;
}
.innerBnrText ul li {
    float: left;
    line-height: 24px;
    margin-left: 28px;
    position: relative;
}
.innerBnrText ul li:before {
    position: absolute;
    content: '~';
    top: 6px;
    right: -20px;
    vertical-align: middle;
}
.innerBnrText ul li:last-child:before {
    display: none;
}
.innerBnrText ul li a {
    float: left;
    font-size: 14px;
    color: #fff;
    font-weight: 300
}
/*page*/
.page {
    padding: 30px 0;
    font-size: 16px;
    line-height: 1.6;
	margin-top: 90px;
}
.page p {
    margin-bottom: 10px;
    display: block;
}
.gallery_page,.blog_page {
    padding: 20px 0;
}
.gallery_list li {
    width: 23.5%;
    float: left;
    margin: 10px 0;
    margin-right: 2%;
}
.gallery_list li:nth-child(4n+4) {
    margin-right: 0;
}
.gallery_list li a {
    position: relative;
    width: 100%;
    float: left;
    box-shadow: 0px 0px 14px 0 rgba(0,0,0,0.15);
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
}
.gallery_list li a:hover {
    box-shadow: 0px 5px 24px 10px rgba(0,0,0,0.25);
}
.gallery_list li a span {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
    padding: 10px;
    width: 100%;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
}
.gallery_list li a:hover span {
    background: rgba(0,0,0,0.9);
}
.gallery_list li a img {
    width: 100%;
    height: 250px;
    object-position: center;
    object-fit: cover;
}
/*services_list*/
.services_list li {
    width: 100%;
    float: left;
    background: #e6e6e6;
    margin-bottom: 30px;
    position: relative;
}
.services_list li:last-child {
    margin-bottom: 0
}
.services_list li:nth-child(even) {
    background: #555;
}
.services_list li .img {
    width: 50%;
    float: left;
}
.services_list li .text {
    width: 50%;
    float: right;
    /*text-align: center;*/
    font-size: 16px;
    color: #333;
}
.services_list li:nth-child(even) .text {
    float: left;
    color: #fff;
}
.services_list li:nth-child(even) .img {
    float: right;
}
.services_list li .img img {
    width: 100%;
    /*max-height: 80vh;
    object-fit: contain;
    object-position: center;*/
}
.services_list li .text {
    padding: 50px;
}
.services_list li .text h2 {
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 600;
    /*color: #111;*/
}
/*blog_list*/
.blog_list li {
    width: 32%;
    float: left;
    margin: 10px 0;
    margin-right: 2%;
    background: #f2f2f2;
    box-shadow: 0px 0px 14px -5px rgba(0,0,0,0.15);
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
}
.blog_list li:hover {
    box-shadow: 0px 5px 24px 0 rgba(0,0,0,0.25);
}
.blog_list li:nth-child(3n+3) {
    margin-right: 0
}
.blog_list li .img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
}
.blog_list li .text {
    padding: 15px;
}
.blog_list li .text h6 {
    font-weight: 400;
    font-size: 14px;
    color: #00aa9e;
}
.blog_list li .text h2 {
    font-size: 24px;
    font-weight: 500;
    margin: 10px 0;
    line-height: 1;
    height: 72px;
    overflow: hidden;
}
.blog_list li .text .p {
    height: 77px;
    overflow: hidden;
}
.blog_list li .text a {
    color: #111;
    font-size: 16px;
    border-bottom: 1px solid #333;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
}
.blog_list li .text a:hover {
    color: #00aa9e;
    border-bottom: 1px solid #00aa9e;
}
/*blog_details*/
.blog_data {
    float: left;
    width: 70%;
    font-size: 16px;
}
.blog_data img {
    width: 100%;
    margin-bottom: 15px;
}
.blog_data h6 {
    font-weight: 400;
    font-size: 14px;
    color: #00aa9e;
    margin-bottom: 10px
}
.blog_data h2 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px;
}
.page_ul ul, .page_ul ul li {
    width: 100%;
    float: left;
    margin-bottom: 5px
}
.page_ul ul li {
    position: relative;
    padding-left: 20px;
}
.page_ul ul li:before {
    position: absolute;
    content: '\f105';
    font-family: 'FontAwesome';
    top: 0px;
    left: 5px;
}
.blog_nav {
    float: right;
    width: 28%;
    position: sticky;
    -webkit-position: sticky;
    top: 120px;
    right: 0;
}
.blog_nav h2 {
    font-size: 22px;
    font-weight: 500;
    color: #555;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 3px solid #00aa9e;
}
.blog_nav ul {
    background: #f4f4f4;
    padding: 5px 10px;
}
.blog_nav ul li ,
.blog_nav ul li a {
    width: 100%;
    float: left;
    position: relative;
}
.blog_nav ul li a {
    color: #333;
    padding: 10px 5px;
    line-height: 1.4;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
}
.blog_nav ul li a:hover,.blog_nav ul li a.active {
    color: #00aa9e
}
.blog_nav ul li:last-child a {
    border-bottom: 0px solid rgba(0,0,0,0.1)
}
/*contact*/
.contact_left {
    width: 60%;
    float: left;
    padding-right: 30px;
    text-align: left;
    border-right: 1px solid rgba(0,0,0,0.1)
}
.contact_right {
    width: 37%;
    float: right;
    text-align: left;
    margin-top: 70px;
}
.contact_right h2, .contact_left h2 {
    font-size: 26px;
    font-weight: 500;
    margin: 0;
    display: block;
    margin-bottom: 10px;
}
.caddress h2 {
    font-size: 22px;
    font-weight: 500;
    margin: 10px 0;
    display: block;
}
.caddress p {
    position: relative;
    padding-left: 30px;
}
.caddress p a, .contact_right p a {
    color: #555;
    text-decoration: none;
}
.caddress p img {
    width: 20px;
    position: absolute;
    top: 2px;
    left: 0;
    margin: 0;
}
.otherLocs {
    margin-top: 30px;
}
.otherLocs h2 {
    font-size: 26px;
    font-weight: 600;
}
.otherLocs li {
    width: 32%;
    float: left;
    padding: 15px;
    margin-top: 15px;
    margin-right: 2%;
    border: 1px solid #ddd;
}
.otherLocs li:nth-child(3n+3) {
    margin-right: 0
}
input.c-input, textarea.c-input {
    width: 100%;
    float: left;
    height: 40px;
    padding: 10px;
    color: #333;
    background: #f5f5f5;
    border: 1px solid #ddd;
    margin: 0 0 15px 0;
    font-size: 16px;
    transition: all .5s;
    -webkit-transition: all .5s;
}
textarea.c-input {
    height: 80px;
}
input.c-btn {
    float: left;
    margin-top: 15px;
    padding: 10px 30px;
    background: #111;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border: 0px;
    transition: all .5s;
    -webkit-transition: all .5s;
}
input.c-btn:hover, input.c-btn:focus {
    background: #666;
    color: #fff;
    transition: all .5s;
    -webkit-transition: all .5s;
}
.halfdiv {
    width: 49%;
    float: left;
}
.halfdiv.right {
    float: right;
}
.contact_txt {
	/*background: #f4f4f4;*/
	margin-bottom: 0px;
}
.cnt_img,.cnt_txt {
	width: 50%;
	float: left;
}
.cnt_img img {
	width: 100%
}
.cnt_txt {
	padding: 50px;
}
.cnt_txt h2 {
	font-size: 18px;
	margin-bottom: 15px;
	font-weight: 600;
}
.sdd{
	height: 35px !important;
}
.map{
	margin-bottom:-8px;
}
.sss h2{
    font-size: 40px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.sss h2:after {
    display: block;
    margin: 15px 0;
    background: #00887e;
    height: 2px;
    width: 100px;
    content: '';
}
.ss h3{
    font-size: 25px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align:center;
}
.ss h3:after {
    display: block;
    margin: 15px 0;
    background: #00887e;
    height: 2px;
    width: 100px;
    content: '';
    margin-left: calc(50% - 50px);
}
.aaaaa{
    display:block;
}
.bbbbb{
    display:none;
}
.service h1 {
    font-size: 36px;
    color: #111;
    margin-bottom: 15px;
	text-align:center;
}
.service h1:after {
    display: block;
    margin: 15px 0;
    background: #00a99d;
    height: 2px;
    width: 100px;
    content: '';
    margin-left: calc(50% - 50px);
}
.web{
    display:block;
}
.mob{
    display:none;
}
.services_sec .rel_newServices {
    text-align:center;
}
.services_sec .rel_newServices li {
    float:none;
    display:inline-block;
    margin-right:0;
    padding:0 10px;
    width: 24.5%;
}
/*pjt_banner*/
.pjt_banner {
    height: 600px;
    overflow: hidden;
}
.pjt_banner::before {
    top: 0;
    content: "";
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: absolute;
    display: block;
    -webkit-transition: all 0.6s ease-out;
    -moz-transition: all 0.6s ease-out;
    -o-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
    background-image: url(../img/bg1.jpg);
    background-position: right top;
    background-repeat: no-repeat;
    z-index: 2;
    background-position: right top;
    background-size: contain;
}
.bann1::before {
    background-image: url(../images/exhibitions.jpg);
}
.bann2::before {
    background-image: url(../images/interiors.jpg);
}
.bann3::before {
    background-image: url(../images/construction.jpg);
}
.pjt_banner:hover:before {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
}
.pjtb_txt {
    width: 40%;
    float: left;
    position: relative;
    z-index: 2;
    padding-top: 200px;
    color: #666
}
.pjtb_txt h1 {
    color: #71716f;
    font-size: 38px;
    margin-bottom: 15px
}
.pjt_btns a {
    float: left;
    margin-right: 15px;
    margin-top: 15px;
    color: #ffd13f;
    border: 2px solid #ffd13f;
    line-height: 48px;
    min-width: 180px;
    font-weight: 500;
    padding: 0 30px;
    text-transform: uppercase;
    text-align: center;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
}
.pjt_btns a:first-child {
    color: #fff;
    background-color: #ffd13f;
}
.pjt_btns a:hover {
    color: #fff;
    background-color: #333;
    border-color: #333;
}
.pjtb_txt ul {
    margin-top: 20px;
}
.pjtb_txt li {
    width: 100%;
    float: left;
    padding-left: 25px;
    margin-top: 5px;
    position: relative;
}
.pjtb_txt li:before {
    content: "\f00c";
    font-family: 'FontAwesome';
    position: absolute;
    top: 0;
    left: 0;
    color: #ffd13f;
}
.pjt_clients {
    padding: 50px 0
}
.pjt_clients .pjtc_title {
    font-size: 36px;
    float: left;
    width: 250px;
    font-weight: 600
}
.pjtc_img {
    float: right;
    width: calc(100% - 250px);
}
.pjtc_img span {
    float: left;
    /*width: calc(100% / 8);*/
    display: grid;
    align-items: center;
    align-content: center;
    height: 50px;
    margin-right: 30px
}
.pjtc_img span img {
    max-height: 40px;
    max-width: 100%;
}
/*pjt_why*/
.pjt_why {
    font-size: 18px
}
.pjtw_left {
    width: 100%;
    float: left;
    padding: 50px 0;
    padding-right: 50px;
    color: #666
}
.pjtw_right {
    width: 35%;
    float: right;
    padding: 50px 0;
    padding-left: 30px;
    position: relative;
    font-size: 22px;
    color: #333;
    line-height: 1.3
    /*background-color: #eee;*/
}
.pjtw_left h2 {
    font-size: 44px;
    color: #222;
    margin-bottom: 20px;
}
.pjtw_left h2 span {
    display: block;
    font-size: 30px;
    color: #ffd13f;
}
.pjtw_left p {
    display: block;
    margin-bottom: 10px;
    text-align: justify;
}
.pjtw_left b,.pjtw_left strong {
    font-size: 24px;
    color: #222;
    margin-bottom: 10px;
}
.pjtw_right:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 500%;
    height: 100%;
    content: '';
    background-color: #f2f2f2;
}
.pjtw_right .icon {
    text-align: center;
}
.pjtw_right h2 {
    font-size: 36px;
    color: #ffd13f;
    margin: 20px 0;
}
.pjtw_right form {
    margin-top: 20px
}
.input_filed {
    margin-top: 10px;
    width: 100%;
    height: 60px;
    border: 2px solid #333;
    padding: 10px;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
}
.input_filed:focus {
    border: 2px solid #ffd13f;
}
textarea.input_filed {
    height: 100px;
}
.input_btn {
    margin-top: 20px;
    height: 60px;
    border: 2px solid #ffd13f;
    padding: 0 30px;
    color: #ffd13f;
    font-size: 18px;
    cursor: pointer;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
}
.input_btn:hover {
    background-color: #ffd13f;
    color: #fff;
}
/*bg_cover*/
.bg_cover {
    height: 320px;
    overflow: hidden;
}
.bg_cover img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    transform: scale(1);
    -webkit-transform: scale(1);
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
}
.bg_cover:hover img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
}
/*.pjt_how*/
.pjt_how {
    padding: 50px 0;
    font-size: 17px;
    color: #666;
    line-height: 1.4
}
.pjt_how h2 {
    text-align: center;
    color: #111;
    font-size: 50px;
}
.pjt_how h2 span{
    font-size: 30px;
    color: #ffd13f;
}
.pjth_list li {
    margin-top: 40px;
    width: 33.33%;
    float: left;
    text-align: center;
    padding: 0 15px;
}
.pjth_list li h3 {
    color: #111;
    margin-bottom: 20px;
    font-size: 24px
}
.pjth_list li .icon,.pjth_list li img {
    width: 120px;
    height: 120px;
    display: inline-block;
    position: relative;
    margin-bottom: 20px
}
.pjth_list li .icon1 {
    background: url("../img/icon2.png") no-repeat 0% 0%;
}
.pjth_list li .icon2 {
    background: url("../img/icon3.png") no-repeat 0% 0%;
}
.pjth_list li .icon3 {
    background: url("../img/icon4.png") no-repeat 0% 0%;
}
.pjth_list li .icon4 {
    background: url("../img/icon5.png") no-repeat 0% 0%;
}
.pjth_list li .icon5 {
    background: url("../img/icon6.png") no-repeat 0% 0%;
}
.pjth_list li .icon6 {
    background: url("../img/icon7.png") no-repeat 0% 0%;
}
.pjth_list li:hover  .icon {
    background-position: 0% bottom;
}
/*pjt_above*/
.pjt_above {
    padding: 100px 0;
    text-align: center;
    color: #fff;
    font-size: 24px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1"><path fill="rgb(255 209 63)" d="M0 0h1v1H0z"/></svg>') no-repeat center center/cover, url(../img/bg3.jpg) center center/cover;
}
.pjt_above h3 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 20px
}
.pjt_above ul li {
    width: 20%;
    float: left;
    padding: 15px;
    line-height: 1.2;
    margin: 20px 0
}
.pjt_above ul li img {
    width: 40px;
    margin-bottom: 20px;
    display: inline-block;
}
.pjt_above .pjt_btns a {
    display: inline-block;
    float: none;
    background-color: transparent;
    border-color: #fff;
    padding: 0 30px;
    font-size: 17px;
    width: auto;
}
.pjt_above .pjt_btns a:hover {
    background-color: #fff;
    color: #ffd13f;
}
/*pjt_pjt*/
.pjt_pjt {
    padding: 50px 0;
}
.pjtp_title {
    text-align: center;
    color: #666;
    font-size: 23px;
    line-height: 1.4;
    padding: 0 28%;
}
.pjtp_title h3 {
    font-size: 30px;
    color: #111;
    margin-bottom: 20px
}
.pjtp_title h3 span {
    font-size: 28px;
    color: #ffd13f;
    margin-bottom: 10px
}
.pjtp_select {
    margin-top: 20px;
    margin-bottom: 40px;
}
.pjtp_select .size ,
.pjtp_select .budjet {
    float: left;
    width: 50%;
    padding: 0 10%;
}
.pjtp_select span {
    text-align: center;
    color: #111;
    font-size: 18px;
    margin-bottom: 10px
}
.pjtp_select select {
    width: 100%;
    float: left;
    height: 50px;
    border: 2px solid #333;
    padding: 10px;
    color: #555
}
.pjtp_list .span {
    position: relative;
    height: 260px;
    float: left;
    width: 33%;
    overflow: hidden;
    margin-bottom: 30px;
}
.pjtp_list .div2 .span {
    width: 32%;
    margin-right: 2%
}
.pjtp_list .div2 .span:last-child {
    margin-right: 0
}
.pjtp_list .span img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.pjtp_list .div .span1 {
    width: 65%;
    margin-right: 2%;
    height: 550px;
}
.pjtp_list .pjtp_hover {
    position: absolute;
    top: 0;
    left: -100%;
    text-align: center;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: #ffd13f;
    color: #fff;
    font-size: 18px;
    display: grid;
    align-items: center;
    justify-content: center;
    transition: all ease-out .5s;
    -webkit-transition: all ease-out .5s;
}
.pjtp_list .span:hover .pjtp_hover {
    left: 0;
    transition: all ease-out .5s;
    -webkit-transition: all ease-out .5s;
}
.pjtp_hover a {
    border: 2px solid #fff;
    color: #fff;
    height: 50px;
    line-height: 46px;
    display: inline-block;
    padding: 0 30px;
    font-size: 17px;
    margin-top: 15px;
    transition: all ease-out .5s;
    -webkit-transition: all ease-out .5s;
}
.pjtp_hover a:hover {
    background-color: #fff;
    color: #ffd13f
}
.pjtp_list .div3 .span2 {
    width: 33%;
    float: left;
}
.pjtp_list .div3 .span {
    width: 100%
}
.pjtp_list .div3 .span1 {
    width: 65%;
    margin-left: 2%;
    height: 550px;
}
.pjt_pjt .pjt_btns {
    text-align: center;
}
.pjt_pjt .pjt_btns a {
    float: none;
    display: inline-block;
    width: auto;
    padding: 0 30px;
}
.pjtc_left {
    width: 100%;
    float: left;
    padding: 50px 0;
    padding-right: 50px;
    color: #333;
    font-size: 20px
}
.pjtc_right {
    width: 35%;
    float: right;
    padding: 50px 0;
    padding-left: 30px;
    position: relative;
    font-size: 22px;
    color: #333;
    line-height: 1.3;
}
.pjtc_right::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 500%;
    height: 100%;
    content: '';
    background-color: #f2f2f2;
}
.pjtc_left h3 {
    font-size: 44px;
    color: #222;
    margin-bottom: 20px;
    text-align: center;
    display: block;
}
.pjtc_left h3 span {
    display: block;
    font-size: 30px;
    color: #ffd13f;
}
.pjtc_right h4 {
    font-size: 36px;
    color: #ffd13f;
    margin-bottom: 20px
}
.pjtc_right form {
    margin-top: 20px
}
.pjtc_list li {
    margin: 40px 0;
    width: 33.33%;
    float: left;
    text-align: center;
    padding: 0 15px;
    font-size: 17px;
    color: #666
}
.pjtc_list li h4 {
    color: #111;
    margin-bottom: 20px;
    font-size: 24px
}
.pjtc_list li .icon,.pjtc_list li img {
    width: 120px;
    height: 120px;
    display: inline-block;
    position: relative;
    margin-bottom: 20px
}
.pjtc_list li .icon1 {
    background: url("../img/icon8.png") no-repeat center 0%;
}
.pjtc_list li .icon2 {
    background: url("../img/icon9.png") no-repeat center 0%;
}
.pjtc_list li:hover .icon {
    background-position: center bottom;
}
.pjtc_btns {
    margin-top: 30px
}
.pjtc_btns a.btn1 {
    float: left;
    margin-right: 35px;
    margin-top: 15px;
    color: #fff;
    border: 2px solid #ffd13f;
    background-color: #ffd13f;
    line-height: 48px;
    padding: 0 30px;    
    text-transform: uppercase;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
}
.pjtc_btns a.btn2 {
    float: left;
    margin-top: 25px;
    color: #ffd13f;
    line-height: 32px;
}
.pjtc_btns a.btn2 img {
    float: left;
    margin-top: 5px;
    margin-right: 10px
}
.pjtc_btns a.btn1:hover {
    color: #ffd13f;
    background-color: transparent;
}
.checkboxs {
    margin: 25px 0
}
.checkboxs span {
    margin-bottom: 15px
}
.checkboxs input {
    position: absolute;
    display: none;
}
.checkboxs label {
    font-weight: 400;
    padding-left: 35px;
    margin-bottom: 5px
}
.checkboxs label:before {
    position: absolute;
    top:4px;
    left: 0;
    width: 22px;
    height: 22px;
    border: 2px solid #333;
    text-align: center;
    content: '';
    font-family: 'FontAwesome';
    font-size: 12px;
    line-height: 20px;
}
.checkboxs input:checked + label:before {
    border: 2px solid #ffd13f;
    content: "\f00c";
    color: #ffd13f;
}
/*.pjt_caseStudies {*/
.pjt_caseStudies {
    padding: 50px 0;
}
.pjtcs_title {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 40px
}
.pjtcs_title .p {
    padding: 0 20%;
}
.pjtcs_title h3 {
    font-size: 50px;
    color: #111;
    margin-bottom: 20px
}
.pjtcs_title h3 span {
    color: #ffd13f;
    font-size: 30px;
    margin-bottom: 10px;
}
.pjtcs_nav {
    padding: 0 10%;
}
.pjtcs_nav li {
    float: left;
    width: 33.33%;
    border: 2px solid #222;
    border-right: 0px;
    text-align: center;
    padding: 15px;
    font-size: 20px;
    cursor: pointer;
}
.pjtcs_nav li.active {
    background-color: #222;
    color: #fff
}
.pjtcs_nav li:last-child {
    border-right: 2px solid #222;
}
.pjtcs_txt {
    padding-top: 40px;
    display: none;
}
.pjtcs_txt:first-child {
    display: block;
}
.pjtcs_txt .iframe {
    width: 49%;
    float: left;
}
.pjtcs_txt .iframe iframe {
    width: 100%;
    height: 400px;
    border: 0px;
    margin-bottom: 20px
}
.pjtcs_txt .iframe h4 {
    margin-bottom: 30px;
    color: #222;
    font-size: 30px
}
.pjtcs_txt p {
    margin-bottom: 15px
}
.pjtcs_txt .iframe .p {
    color: #ffd13f;
}
.pjtcs_txt .txt {
    width: 49%;
    float: right;
    font-size: 18px;
    color: #666;
}
.pjtcs_txt .txt h4 {
    margin: 10px 0;
    font-size: 24px;
    color: #666;
    font-weight: 400
}
.pjtcs_txt .txt .img {
    text-align: center;
    margin-bottom: 20px
}
.pjtcs_txt .txt .img img {
    height: 100px;
}
.pjtcs_txt .txt b,
.pjtcs_txt .txt strong {
    color: #222;
    font-size: 24px
}
/*pjt_reviews*/
.pjt_reviews {
    background-color: #ffd13f;
    padding: 60px 0;
    text-align: center;
}
.pjtr_bnr {
    padding: 0 10%;
    color: #fff;
    font-size: 24px;
    line-height: 1.4
}
.pjtr_bnr .img {
    width: 20%;
    float: left;
}
.pjtr_bnr .img h5 span {
    font-weight: 400
}
.pjtr_bnr .img h5 {
    color: #fff;
    font-size: 18px;
    margin-top: 20px
}
.pjtr_bnr .txt h4 {
    margin-bottom: 20px;
    font-size: 30px
}
.pjtr_bnr .txt {
    width: 80%;
    float: left;
}
.pjtr_bnr .img img {
    height: 100px;
    width: auto !important;
}
.pjtr_bnr .carousel-indicators {
    position: relative;
    bottom: 0;
    width: 80%;
    float: right;
    margin-top: 20px;
}
.pjtr_bnr .carousel-indicators li {
    width: 15px;
    height: 15px;
    border: 0px;
    background: #fff;
    opacity: .2;
    margin: 5px
}
.pjtr_bnr .carousel-indicators li.active {
    opacity: 1
}
/*pjt_story*/
.pjt_story {
    padding: 50px 0;
    font-size: 18px;
    color: #666;
    background: #f2f2f2
}
.pjt_story p {
    margin-bottom: 15px;
    text-align: justify;
}
.pjt_story .pjts_right img{
    width:100%;
}
.pjts_left ,
.pjts_right {
    width: 49%;
    float: left;
}
.pjts_right {
    float: right;
}
.pjts_left h3 {
    color: #111;
    font-size: 22px;
    margin-bottom: 30px;
    font-weight: 400
}
.pjts_left h2 {
    color: #71716f;
    font-size: 38px;
    margin-bottom: 30px
}
.pjts_left h2 span {
    font-size: 26px;
    margin-bottom: 10px;
    color: #ffd13f;
}
/*pjt_inspiration*/
.pjt_inspiration {
    padding: 50px 0;
    text-align: center;
}
.pjt_inspiration h2 {
    color: #111;
    font-size: 50px;
    margin-bottom: 30px
}
.pjt_inspiration h2 span {
    font-size: 26px;
    margin-bottom: 10px;
    color: #ffd13f;
}
.pjt_inspiration .p {
    font-size: 18px;
    color: #666;
    padding: 0 20%
}
.pjti_list li {
    width: 32%;
    float: left;
    margin-right: 2%;
    margin-top: 40px;
    position: relative;
}
.pjti_list li:last-child {
    margin-right: 0;
}
.pjti_list li .img {
    overflow: hidden;
    margin-bottom: 20px
}
.pjti_list li .img img {
    width: 100%;
    height: 300px;
    object-position: center;
    object-fit: cover;
}
.pjti_list li .img span {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 50px 0;
    background: #ffd13f;
    color: #fff;
    font-size: 22px;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
}
.pjti_list li .img:hover span {
    bottom: 0;
}
.pjti_list li a {
    color: #222;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
}
.pjti_list li a:hover ,
.pjti_list li a:hover h6{
    color: #ffd13f;
}
.pjti_list li h5 {
    font-size: 22px;
    margin-bottom: 10px;
    padding: 0 15px;
    font-weight: 500
}
.pjti_list li h6 {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    font-style: italic;
}
/*pjt_contact*/
.pjt_contact {
    background: #ffd13f;
    color: #fff;
    padding: 50px 0;
}
.pjtc_from {
    padding: 0 15%
}
.pjtc_from h3 {
    font-size: 26px;
    margin-bottom: 20px;
        text-transform: uppercase;
}
.pjtc_from h4 {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 30px
}
.pjtc_from h3,
.pjtc_from h4{
    text-align: center;
}
.pjtc_from .input_filed {
    background: #ffd13f;
    color: #fff;
    border: 2px solid #000;
}
.divtwo {
    width: 49%;
    float: left;
}
.divtwo.right {
    float: right;
}
.pjtc_from .input_btn {
    float: none;
    display: table;
    margin: 0 auto;
    margin-top: 30px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff; 
}
.pjtc_from .input_btn:hover {
    background: #fff;
    color: #073C75; 
}
.pjtc_from .checkboxs .span {
    width: 33.33%;
    float: left;
    position: relative;
}
.pjtc_from .checkboxs label:before {
    border-color: #073C75
}
.checkboxs input:checked + label::before {
    border: 2px solid #073C75;
    background: #073C75
}


/*innerbanner*/
.inner_banner {
    width: 100%;
    overflow: hidden;
    display: block;
    position: relative;
    background-color: #000;
}
/* .inner_banner::after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: '';
    z-index: 1;
    background: transparent url(../images/header-overlay.png) repeat;
} */
.inner_banner img{
    width: 100%;
    opacity: 0.5;
    display: block;
    margin-top: 90px;
    height: 365px; 
}
.innertxt1{
   position: absolute;
    width: 100%;
    text-align: left;
    top: 50%;
    left: 0%;
    padding: 10px 35px;
    z-index: 9;
}
.searchbxtxt{top: 42%;}
.innertxt1 ul{list-style: none; text-align: left; margin-bottom: 0px;
padding-left: 0px; text-align: center}
.innertxt1 ul li{
    display: inline-block;
    position: relative;
    padding-right: 25px;
    font-weight: 300;
    margin-bottom: 0px;
    color: #a8cf45;    
}
.innertxt1 ul li:last-child{padding-right: 0px;}
.innertxt1 ul li:after{
    content: "/";
    color: #fff;
    position: absolute;
    font-size: 14px;
    right: 8px;
    top: 3px;   
}
.innertxt1 ul li:last-child:after{display: none;}
.innertxt1 ul li a{color: #fff; text-decoration: none;}
.inner_banner h1{color: #fff;  font-size: 46px; font-weight: 400; text-align: center;
text-transform: uppercase; margin-bottom: 10px; margin-top: 0px;}
.inner_banner h1 span{color: #fff;}
.inner_banner h1 p{font-size: 18px; font-weight: 400; margin-top: 5px; 
  letter-spacing: 2px; color: #fff; }
/*innerbanner*/



.innerscroll{
  clear: both;
  padding: 20px 0;
  background-color: #ffff;
  position: relative;
  display: inline-block;
}
.innerscroll img.fs-gal{border: 3px solid #ffb0b2;}
.innerscroll .owl-nav{position: absolute; top: -25%; right: 0px; width: 9% !important; opacity: 0.5;}
.innerscroll .owl-prev{
  background-image: url('../images/prev4.png');
  width: 50px;
  height: 34px;
  float: left; display: inline-block;
  margin-right: 10px;
  transition: all 0.3s;
}
.innerscroll .owl-next{
  background-image: url('../images/next4.png');
  width: 50px;
  height: 34px;
  float: left;
  display: inline-block;
  transition: all 0.3s;
}
.innerscroll .owl-prev:hover, .innerscroll .owl-next:hover{opacity: 1;}
.sss img {
    margin-bottom: 30px;
}
.blog_data iframe{
	float: right;
    height: 300px;
    width: 400px;
    margin-top: -100px;
    margin-left: 20px;
}
.fooasa{
    background: #ffd13f;padding: 0;
}
.mess{
    color: green;font-size: 18px;font-weight: 500;
}
.otee{
    color: #ffd13f;
}

/*============================
	Responsive starts here
	============================*/

@media screen and (max-width : 1279px) {
    .fullpage {
        max-width: 980px;
        padding: 0 15px;
    } 
    .blog_list li .text h2 {
        font-size: 20px;
        height: 60px;
    }
    .blog_list li .text .p {
        height: 88px;
    }
	.cnt_txt {
		padding: 30px;
	}
    .pjt_banner {
        margin-top: 150px
    }
    .pjtb_txt {
        padding-top: 50px
    }
    .pjt_banner::before {
        height: 400px
    }
    .pjt_clients {
        background: #f2f2f2
    }
    .pjtp_title,.pjtr_bnr {
        padding: 0
    }
}
@media screen and (max-width : 979px) {
    .fullpage {
        max-width: 768px;
    }
    .gallery_list li,.gallery_list li:nth-child(4n+4) {
        width: 32%;
        margin-right: 2%;
    }
    .gallery_list li:nth-child(3n+3) {
        margin-right: 0;
    }
    .blog_list li,.blog_list li:nth-child(3n+3) ,
    .otherLocs li,.otherLocs li:nth-child(3n+3) {
        width: 49%;
        margin-right: 0;
    }
    .blog_list li:nth-child(even),.otherLocs li:nth-child(even) {
        float: right;
    }
    .bannerTxt {
    font-size: 23px;
    line-height: 58px;
    }
    .services_block li img {
        height: 300px
    }
	.fbox {
	    width:50%;
	}
	.contact_block li {
        width: calc( (100% - 30px) / 3);
    }
	.contact_block li:nth-child(3n+3) {
	    margin-right:0;
    }
    .stats_block li {
        width:33%;
    }
    .pjt_banner::before {
        display: none;
    }
    .pjtb_txt {
        width: 100%
    }
    .pjt_banner {
        height: inherit;
        padding-bottom: 50px
    }
    .bg_cover {
        height: 200px
    }
    .pjtw_left h2,.pjtw_right h2,.pjt_how h2,.pjtp_title h3, .pjtc_from h3,
    .pjtc_left h3, .pjtc_right h4,.pjtcs_title h3,.pjts_left h2,.pjt_inspiration h2 {
        font-size: 30px
    }
    .pjtw_left h2 span,.pjt_how h2 span,.pjtp_title h3 span,.pjt_inspiration h2 span,
    .pjtc_left h3 span,.pjtcs_title h3 span, .pjts_left h2 span {
        font-size: 20px
    }
    .pjtp_select .size, .pjtp_select .budjet {
        padding: 0 10px
    }
    .pjtcs_nav ,.pjtcs_title .p, .pjt_inspiration .p,.pjtc_from, .pjtc_from h3{
        padding: 0
    }
}
@media screen and (max-width : 767px) {
    .fullpage {
        max-width: 550px;
    }   
    .gallery_list li,.gallery_list li:nth-child(4n+4),.gallery_list li:nth-child(3n+3) {
        width: 49%;
        margin-right: 0;
    }
    .gallery_list li:nth-child(even) {
        float: right;
    }
    .blog_list li,.blog_list li:nth-child(3n+3) ,
    .otherLocs li,.otherLocs li:nth-child(3n+3),
    footer .copy, footer .social,.blog_data,.cnt_img,.cnt_txt,
    .blog_list li,.contact_right,.contact_left,.halfdiv,.otherLocs li {
        width: 100%;
    }
    .blog_data h2 {
        font-size: 22px;
    }
    .contact_left {
        border: 0px;
        padding: 0;
    }
    .contact_right {
        padding-bottom: 10px;
        margin-bottom: 20px;
        border-bottom: 1px solid #ddd;
        margin-top: 0px;
    }
    footer .copy,footer .social {
        text-align: center;
    }
    footer .social {
        margin-top: 10px;
    }
    .blog_nav {
        margin-top: 15px;
		width: 100%;
    }
    .blog_list li .text h2,.blog_list li .text .p {
        height: auto;
    }
	.cnt_txt {
		padding: 15px;
	}
	.cnt_txt h2 {
		font-size: 24px;
	}
	.ssss a{
	    margin-right: 100px;
        margin-top: -210px;
	}
	.aaaaa{
	    display:none;
	}
	.bbbbb {
        display: block;
    }
    .about_block h1,.services_block h2,.adv_list h2,.blog_block h2,.contact_block h2 {
        font-size: 30px
    }
    .about_block .p {
        padding: 0
    }
    .services_block li {
        width: 100%;
        margin-top: 25px
    }
    .adv_block .img, .adv_list,.stats_block li,.contact_block li {
        position: relative;
        width: 100%
    } 
    .contact_block li {
        margin-right: 0;
    }
    .contact_block,.blog_block,.stats_block,.services_block,.about_block {
        padding: 30px 0;
    }
		.web{
    display:none;
	}
	.mob{
		display:block;
	}
	.fbox {
	    width:100%;
	}
    .pjt_clients {
        padding: 30px 0
    }
    .pjt_clients .pjtc_title {
        width: 100%;
        text-align: center;
        font-size: 30px
    }
    .pjtc_img {
        width: 100%
    }
    .pjtc_img span {
        width: 33.33%;
        margin-right: 0;
        padding: 0 5px
    }
    .pjtw_left,.pjtw_right,.pjtc_right {
        padding: 30px 0;
        width: 100%
    }
    .pjtw_right::before {
        left: -100%
    }
    .bg_cover {
        height: 150px
    }
    .pjth_list li,.pjt_above ul li {
        width: 100%
    }
    .pjt_above h3 {
        font-size: 30px
    }
    .pjtp_select .size, .pjtp_select .budjet {
        width: 100%;
        padding: 10px 0
    }
    .pjtp_list .div3 .span2 {
        width: 100%
    }
    .pjtp_list .div .span1,.pjtp_list .span,.pjtp_list .div2 .span,.pjtp_list .div3 .span1 {
        width: 100%;
        height: 260px;
        margin-right: 0;
        margin-bottom: 15px
    }
    .pjt_pjt .pjt_btns a ,.pjtc_btns a.btn1,.pjt_btns a{
        font-size: 16px;
        padding: 0;
        width: 100%;
        text-align: center;
    }
    .pjtc_btns {
        text-align: center;
    }
    .pjtc_btns a.btn2 {
        float: none;
        display: inline-block;
    }
    .pjtc_left {
        padding: 30px 0;
        width: 100%
    }
    .pjtc_list li {
        width: 100%;
        padding:0;
    }
    .pjtc_right:before {
        left: -100%
    }
    .pjtcs_nav li {
        border-right: 2px solid #222
    }
    .pjtcs_nav li,.pjtcs_txt .iframe,.pjtcs_txt .txt {
        width: 100%
    }
    .pjtr_bnr .img ,
    .pjtr_bnr .txt {
        width: 100%;
        text-align: center;
    }
    .pjts_left,.pjts_right,.pjti_list li,.divtwo,.pjtc_from .checkboxs .span {
        width: 100%;
    }
    .pjts_right {
        margin-top: 30px
    }
    .pjti_list li {
        margin-right: 0
    }
	.blog_data iframe{
		float: right;
		height: 300px;
		width: 100%;
		margin-top: 8px;
		margin-left: 20px;
		padding: 10px;
		margin-bottom: 20px;
	}
	.menu_bread{
        display:none;
    }
}
@media screen and (max-width : 480px) {       
    .menu_bread{
        display:none;
    }
    .gallery_list li,.gallery_list li:nth-child(4n+4),.gallery_list li:nth-child(3n+3) {
        width: 100%;
    }
	.web{
		display:none;
	}
	.mob{
		display:block;
		margin-bottom: 15px;
	}
	.blog_data iframe{
		float: right;
		height: 300px;
		width: 100%;
		margin-top: 8px;
		margin-left: 20px;
		padding: 10px;
		margin-bottom: 20px;
	}
}
@media screen and (max-width : 359px) {
    .fullpage {
        max-width: 320px;
    }
    .web{
		display:none;
	}
	.mob{
		display:block;
	}
}