.clear {
    clear: both;
}

.wrapper {
    width: 100%;
    float: left;
    margin: 0px;
}

.inner {
    width: 1200px;
    height: auto;
    overflow-y: hidden;
    min-height: 100px;
    padding: 20px 0px;
    float: none;
    margin: 0px auto;
    font-family: 'Catamaran', sans-serif;
}


/* Clients Page */

.clients-wrp {
    padding-bottom: 15px;
    background: #fff;
}

.clients-wrp ul {
    list-style: none;
}

.clients-wrp ul li {
    width: 18%;
    height: 140px;
    float: left;
    border: 1px solid #e0e0e0;
    padding: 17px;
    margin: 10px 1%;
    transition: all 0.3s ease;
  		-webkit-transition: all 0.3s ease;
  		 -moz-transition: all 0.3s ease;
  		 -o-transition: all 0.3s ease;
}

.clients-wrp ul li:nth-child(5n+1) {
    clear: left;
}

.clients-wrp ul li .grid-in {
    width: 100%;
    height: 100%;
    position: relative;
}

.clients-wrp ul img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.clients-wrp ul .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: #c30d23;
}

.clients-wrp ul li:hover .overlay {
    opacity: 0.9;
}

.clients-wrp ul li:hover{
      border: 1px solid #c30d23;
    -moz-box-shadow: 6px 7px 7px #d2d0d0;
    -webkit-box-shadow: 6px 7px 7px #d2d0d0;
    box-shadow: 6px 7px 7px #d2d0d0;


}

.clients-wrp ul .text {
    color: white;
    font-size: 14px;
    position: absolute;
    text-align: center;
    line-height: 18px;
    font-style: italic;
    padding: 0px 5px;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}


/* Contact Page */

.contact-wrp .inner {
    padding: 0px;
}

.contact-wrp .left {
    width: 50%;
    float: left;
    padding: 20px 0px;
}

.contact-wrp .right {
    width: 50%;
    float: right;
    text-align: center;
}

.contact-wrp .right img {
    max-height: 423px;
}

h4.main-head {
    color: #c3ac45;
    font-family: 'Catamaran', sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 26px;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 15px;
}

h4.main-head:before {
    display: inline-block;
    margin: 0 20px 8px 0;
    height: 3px;
    content: " ";
    text-shadow: none;
    background-color: #c3ac45;
    width: 50px;
}

.contact-wrp h5 {
    color: #3e3e3e;
    font-family: 'Catamaran', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
    text-align: left;
    margin-top: 30px;
    margin-bottom: 15px;
}

.contact-wrp p {
    color: #676767;
    font-family: 'Catamaran', sans-serif;
    font-size: 18px;
    margin-bottom: 24px;
}

.contact-wrp p strong {
    display: inline-block;
    padding-right: 6px;
    font-weight: 700;
}

.contact-wrp p span {
    color: #c30d23;
}

.contact-form {
    background: url("../images/form-bg.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
}

.contact-form .inner {
    padding: 55px 0px;
}

.contact-form h5 {
    font-family: 'Catamaran', sans-serif;
    font-size: 21px;
    font-weight: 300;
    color: #fff;
    text-align: center;
    font-style: italic;
    margin-bottom: 35px;
}

.contact-form form {
    width: 100%;
    max-width: 820px;
    float: none;
    margin: auto;
}

.field {
    width: 48%;
    float: left;
    background: none;
    border: none;
    outline: none;
    padding: 15px 8px;
    color: #fff;
    font-family: 'Catamaran', sans-serif;
    font-weight: 300;
    font-size: 15px;
    border-bottom: 5px solid #e7909b;
}

.field:nth-child(odd) {
    clear: left;
}

.field:nth-child(even) {
    float: right;
}

.area {
    width: 100%;
    height: 88px;
    float: left;
    resize: none;
    background: none;
    border: none;
    outline: none;
    padding: 15px 8px;
    color: #fff;
    font-family: 'Catamaran', sans-serif;
    font-weight: 300;
    font-size: 15px;
    border-bottom: 5px solid #e7909b;
    clear: both;
}

.field::-webkit-input-placeholder, .area::-webkit-input-placeholder {
    color: #fff;
}

.field:-ms-input-placeholder, .area:-ms-input-placeholder {
    color: #fff;
}

.field::-moz-placeholder, .area::-moz-placeholder {
    color: #fff;
}

.field:-moz-placeholder, .area:-moz-placeholder {
    color: #fff;
}

.btn-submit {
    font-family: 'Catamaran', sans-serif;
    font-size: 17px;
    font-weight: 300;
    text-transform: uppercase;
    color: #fff;
    background: #c3ac45;
    border: none;
    border-radius: 50px;
    -webkit-appearance: none;
    padding: 8px 36px;
    outline: none;
    line-height: normal;
    margin: 30px auto 0px;
    display: block;
    float: none;
    cursor: pointer;
    transition: 0.2s ease all;
}

.btn-submit:hover {
    background: #353535;
}

.map {
    height: 350px;
}

.map iframe {
    width: 100%;
    height: 100%;
}


/* Services Page */

.services-wrp {}

.ser-row {
    margin: 20px 0px;
    float: left;
}

.ser-row .image {
    width: 40%;
    float: right;
}

.ser-row .image img {
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
  		-webkit-transition: all 0.3s ease;
  		 -moz-transition: all 0.3s ease;
  		 -o-transition: all 0.3s ease;
}

.ser-row:hover .image img {
    opacity: 0.8;
    filter: alpha(opacity=80); /* For IE8 and earlier */
}

.ser-row:hover h5 {
    color: #c30d23;
}

.ser-row .content {
    width: 60%;
    float: left;
    padding-right: 3%;
}

.ser-row .num {
    float: left;
    margin-right: 30px;
}

.ser-row .num span {
    font-size: 33px;
    color: #cdcdcd;
    position: relative;
}

.ser-row .num span:after {
    position: absolute;
    content: "";
    width: 35px;
    height: 3px;
    background: #c3ac45;
    bottom: -2px;
    left: 0;
}

.ser-row .matter {
    display: table-cell;
    vertical-align: top;
}

.ser-row h5 {
    font-size: 30px;
    font-weight: 600;
    color: #636363;
    text-align: left;
    font-family: 'Catamaran', sans-serif;
    margin-bottom: 20px;
    line-height: 28px;
}

.ser-row p {
    color: #757575;
    font-family: 'Catamaran', sans-serif;
    font-size: 17px;
    font-weight: 300;
    line-height: 24px;
    text-align: left;
    margin-bottom: 10px;
}

.ser-row p strong {
    font-weight: 700;
}

.ser-row a{
  color: #c3ac45;
  text-decoration: none;
}

.ser-row a:hover{
  color: #c30d23;
}

.ser-row ul {
    padding-left: 30px;
    margin-bottom: 10px;
    list-style-image: url("../images/list-icon.png");
}

.ser-row ul li {
    color: #757575;
    font-family: 'Catamaran', sans-serif;
    font-size: 17px;
    font-weight: 300;
    line-height: 24px;
    text-align: left;
}

.ser-row:nth-child(even) .image {
    float: left;
}

.ser-row:nth-child(even) .content {
    float: right;
    padding-left: 3%;
    padding-right: 0px;
}

.services-desc{

}

.services-desc p{
  color: #757575;
  font-family: 'Catamaran', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 24px;
  text-align: left;
  margin-bottom: 10px;
}

.scrollToTop{
	width:45px;
	height:45px;
	text-align:center;
	background: whiteSmoke;
	font-weight: bold;
	color: #444;
	text-decoration: none;
	position:fixed;
	bottom:35px;
	right:20px;
	display:none;
	text-indent:9999;
	background:url(../images/arrow_up.png) no-repeat;
}
.scrollToTop:hover{
	text-decoration:none;
}







/*********************** Media Querey *********************/

@media screen and (max-width: 1280px) {
    .inner {
        width: 96%;
    }
}

@media screen and (max-width: 980px) {
    .clients-wrp ul li {
        height: 110px;
        padding: 8px;
    }
}

@media screen and (max-width: 768px) {
    .clients-wrp ul li {
        width: 23%;
        height: 85px;
        margin: 7px 1%;
    }
    .clients-wrp ul .text {
        font-size: 14px;
        line-height: 17px;
    }
    .clients-wrp ul li:nth-child(5n+1) {
        clear: none;
    }
    .clients-wrp ul li:nth-child(4n+1) {
        clear: left;
    }
    .ser-row {
        margin: 20px 0px;
    }
    .ser-row .image {
        width: 100%;
        float: left;
        margin-bottom: 20px;
    }
    .ser-row .content {
        width: 100%;
        float: right;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .ser-row .image img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        object-position: top;
    }
}

@media screen and (max-width: 700px) {
    .contact-wrp .right img {
        max-height: 315px;
    }
    .contact-wrp h5 {
        font-size: 17px;
        margin-top: 10px;
    }
    .contact-wrp p {
        font-size: 15px;
        margin-bottom: 6px;
    }
}


@media screen and (max-width: 530px) {
    .contact-wrp .left {
        float: left;
        width: 100%;
    }
    .contact-wrp .right {
        float: right;
        width: 100%
    }
    .contact-wrp .right img {
        max-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .clients-wrp ul li {
        width: 48%;
        height: 130px;
    }
    .clients-wrp ul li:nth-child(3n+1) {
        clear: none;
    }
    .clients-wrp ul li:nth-child(2n+1) {
        clear: left;
    }
    .clients-wrp ul img {
        object-position: center;
    }
    .map {
        height: 250px;
    }
    .ser-row .content {
        padding-right: 10px !important;
    }
    .ser-row .image img {
        height: 225px;
    }
    .ser-row .num {
        margin-right: 20px;
    }
    .ser-row .num span {
        font-size: 26px;
    }
    .ser-row .num span:after {
        width: 28px;
        bottom: 2px;
    }
    .ser-row h5 {
        font-size: 26px;
        line-height: 30px;
        margin-bottom: 6px;
    }
    .ser-row p {
        text-align: justify;
    }
}

@media screen and (max-width: 400px) {
    .clients-wrp ul li {
        width: 48%;
        height: 106px;
        margin: 4px 1%;
    }
    .field {
        width: 100%;
    }
}

@media screen and (max-width: 340px) {
    .clients-wrp ul {
        width: 100%;
        max-width: 230px;
        float: none;
        margin: auto;
    }
    .clients-wrp ul li {
        width: 100%;
        height: 130px;
        margin: 5px 0px;
    }
    .ser-row .image img {
        height: 190px;
    }
}
