@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/***** General CSS *****/

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  word-break: break-word;
  font: 15px/25px 'Poppins', sans-serif;
  color: #393939;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #28b16d;
  white-space: initial;
 font-family: "Roboto", sans-serif; 
}

a:hover,
a:focus {
  text-decoration: none;
  color: #393939;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
}

p {
   font-family: "Roboto", sans-serif;
  font-weight: 400;
}


/***** Font Files *****/

@font-face {
  font-family: 'American-Captain';
  src: url(../fonts/American-Captain.ttf);
  font-weight: 400;
  font-style: normal
}


/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.theme-btn {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 15px 40px;
  color: #fff;
  margin: 20px 20px 20px 0;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  text-transform: capitalize;
  border: 2px solid;
  text-transform: uppercase;
}

.theme-btn:hover {
  background-color: #fff;
  color: #28b16d;
  border-color: #28b16d;
}

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.flexCol {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}

h1 {
 font-family: 'American-Captain';
  font-size: 55px;
  line-height: 60px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 17px;
}

h2 {
 font-family: 'American-Captain';
  font-size: 55px;
  line-height: 60px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 30px;
}

h3 {
 font-family: 'American-Captain';
  font-size: 30px;
  line-height: 34px;
  color: #000000;
  font-weight: 600;
  margin: 0 0 28px;
}

h4 {
 font-family: 'American-Captain';
  font-size: 24px;
  line-height: 29px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 13px;
}

h5 {
 font-family: 'American-Captain';
  font-size: 20px;
  line-height: 25px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 20px;
}

h6 {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 23px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 22px;
}

select {
  background: #fff url('../images/arrow.png') no-repeat right;
  padding: 0 40px 0 30px;
  
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}


/*header css start */

.menuSec {
  padding: 20px 0;
}

.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.menuSec ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}
.menuSec .row {
    align-items: center;
}
.menuSec li ul {
  display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: unset;
    font-size: 14px;
    text-transform: uppercase;
}
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}
.menuSec ul li a:after {
  content: '';
  position: absolute;
  top: 35%;
  right: 0;
  width: 1px;
  height: 13px;
  background-color: #393939;
  display: none;
}

.menuSec ul li:last-child a {
  padding-right: 0px;
}

.menuSec ul li:last-child a:after {
  display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #28b16d;
}

.menuSec li:hover>ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menuSec li>ul>li>a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
  display: block;
  margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
  display: none;
}

.menuSec li:hover li {
  float: none;
}

.menuSec li:hover a {}

.menuSec li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menuSec ul ul ul {
  left: 100%;
  top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
  content: " ";
  display: table;
  display: none;
}

.menuSec ul:after {
  clear: both;
}

.menuSec li>ul>li:hover>ul {
  left: 230px;
  top: 0px;
  width: 270px;
}
.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}
.droopdwon {
    float: left;
}
.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}

.container-fluid {
    padding: 0 4%;
}
.menuSec a.btn-1 {
    justify-content: center;
}
/*header css start */



section.banner {
    padding: 150px 0px;
    position: relative;
    z-index: 1;
}

section.banner::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 49%;
    content: '';
    background-image: url(../images/banner-bf.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

a.btn-1 {
    display: flex;
}

a.btn-1 span {
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    background-color: #f36637;
    padding: 12px 20px;
    border: 1px solid #ffff;
    padding-right: 30px;
}

a.btn-1 i {
    font-size: 20px;
    background-color: #fff;
    color: #f36637;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}



.banner-txt h1 {
    font-size: 136px;
    line-height: 1;
}

.banner-txt h1 span {
    display: block;
    font-size: 99px;
}
.banner-txt p {
    margin-top: 29px;
    margin-left: 50px;
    font-size: 15px;
    color: #141414;
    width: 56%;
}
.ankars {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 43px;
}

.ankars ul {
    display: flex;
    align-items: center;
    gap: 10px;
}
.follow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 41px;
    margin-top: 40px;
}

.follow ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: unset;
}
.follow h6::before {
    position: absolute;
    left: -40px;
    width: 33px;
    content: '';
    height: 1px;
    background-color: #c3c3c3;
    top: 9px;
}
.follow ul li a {
    font-size: 20px;
    color: #848484;
    border: 1px solid;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.follow h6 {
    color: #636363;
    margin: unset;
    text-transform: uppercase;
    position: relative;
}
.ankars ul li h6 {
    color: #a5a5a5;
    font-size: 15px;
    margin: unset;
}
.banner-txt {
    position: relative;
}

.banner-txt::before {
    position: absolute;
    left: 0px;
    height: 47%;
    content: '';
    width: 1px;
    background-color: #c3c3c3;
    top: 49%;
}
.ankars ul li a {
    font-size: 19px;
    color: #f26637;
}
.banner-img {
    position: absolute;
    right: -91px;
    width: 64%;
    top: 100px;
}

.banner-img img {
    width: 100%;
}
section.banner::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    height: 51%;
    background-color: #f4f4f4;
    content:'';
}

/* about css start */
.about-sec {
    padding: 100px 0;
}

.about-sec .row {
    box-shadow: 0 0 40px rgba(0,0,0,0.08);
}

.about-img {
    background-color: #f36637;
    padding: 50px;
    height: 100%;
}

.about-img img {
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    width: 100%;
}

.about-txt {
    background-color: #fff;
    padding: 60px 80px;
    height: 100%;
}

.about-txt h2 {
    font-size: 84px;
    line-height: 1;
    margin-bottom: 25px;
    color: #000;
}

.about-txt p {
    font-size: 14px;
    line-height: 24px;
    color: #444;
}

.abt-box-main {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.abt-box {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #f1f1f1;
    padding: 15px 20px;
    flex: 1;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.abt-box-txt h5 {
    font-size: 16px;
    margin: 0;
    text-transform: uppercase;
}

.about-txt .btn-1 {
    width: max-content;
    margin-top: 20px;
}
/* about css end */

/* services css start */
.services-sec {
    padding: 100px 0;
    background-color: #f4f4f4;
}

.services-hd {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-hd h2 {
    font-size: 80px;
    line-height: 1;
    margin-bottom: 20px;
    color: #000;
}

.services-hd p {
    font-size: 15px;
    color: #666;
}

.service-card {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.service-img img {
    width: 100%;
    height: 540px;
    object-fit: cover;
}

.service-content {
    background: #fff;
    padding: 30px 15px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.service-icon {
    margin-bottom: 15px;
}

.service-icon i {
    font-size: 35px;
    color: #f36637;
    font-family: 'FontAwesome';
}

.service-content h4 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #000;
}

.service-content p {
    font-size: 14px;
    line-height: 22px;
    color: #555;
    margin: 0;
}

.ser-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #f36637;
    color: #fff;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.ser-btn:hover {
    background-color: #333;
    color: #fff;
}
/* services css end */

/* why choose css start */
.choose-sec {
    padding: 100px 0;
}

.choose-txt-box {
    background-color: #f36637;
    padding: 10px 0 0px 50px;
    margin-top: 0px;
}

.choose-txt {
    background: #fff;
    padding: 60px 50px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    position: relative;
    width: 100%;
    z-index: 1;
    margin-top: 50px;
}

.choose-txt h2 {
    font-size: 80px;
    margin-bottom: 25px;
    color: #000000;
}

.choose-txt p {
    font-size: 14px;
    line-height: 24px;
    color: #444;
}

.skills-main {
    margin-top: 40px;
}

.skill-item {
    margin-bottom: 25px;
}

.skill-hd {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.skill-hd h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Roboto';
    letter-spacing: 1px;
}

.perc {
    background-color: #f36637;
    color: #fff;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 2px;
    position: relative;
}

.perc::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #f36637;
}

.skill-bar {
    height: 8px;
    background-color: #f4f4f4;
}

.skill-per {
    height: 100%;
    background-color: #f36637;
}

.choose-img, .choose-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 1199px) {
    .choose-txt {
        width: 100%;
        padding: 40px;
    }
    .choose-txt-box {
        padding: 60px;
    }
}
/* why choose css end */

/* gallery css start */
.gallery-sec {
    padding: 100px 0 0px;
}

.gallery-hd {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.gallery-hd h2 {
    font-size: 80px;
    line-height: 1;
    margin-bottom: 20px;
    color: #000;
}

.gallery-hd p {
    font-size: 14px;
    color: #666;
}

.gal-box {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.gal-box img {
    width: 100%;
}

.center-gal {
    height: calc(100% - 30px);
}

.center-gal img {
    height: 100%;
    object-fit: cover;
}

.gal-overlay {
    position: absolute;
    bottom: 30px;
    left: 20px;
    right: 20px;
}

.gal-overlay span {
    background-color: #f36637;
    color: #fff;
    font-size: 24px;
    font-family: 'American-Captain';
    padding: 10px 15px;
    display: inline-block;
    line-height: 1;
}

.gal-overlay-txt {
    background-color: #fff;
    padding: 30px 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.gal-overlay-txt h4 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #000;
}

.gal-overlay-txt p {
    font-size: 14px;
    margin: 0;
    line-height: 22px;
}

.gal-arrow {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #f36637;
    color: #fff;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.gal-arrow:hover {
    background-color: #1a1a1a;
    color: #fff;
}
/* gallery css end */

/* contact css start */
.contact-sec {
    padding: 50px 0 0px;
    /* background-image: url('../images/map-bg.png'); */
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.contact-hd {
    position: relative;
    padding-left: 8%;
    position: absolute;
    bottom: 80px;
}

.contact-hd h2 {
    font-size: 80px;
    color: #fff;
    line-height: 1;
    margin: 0;
    text-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.map-pin {
    position: absolute;
             top: -60px;
    right: 25%;
}

.map-pin i {
    font-size: 60px;
    color: #f36637;
}

.contact-form-box {
    background: #fff;
    padding: 60px 45px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    margin-right: 10%;
    width: 75%;
    margin: 0 0 0 auto;
    margin-bottom: -60px;
    z-index: 999999;
}

.form-group {
    margin-bottom: 60px;
}

.form-group label {
    font-size: 14px;
    color: #141414;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.form-group .form-control {
    border: none;
    border-bottom: 1px solid #c9c9c9;
    border-radius: 0;
    padding-left: 0;
    font-size: 16px;
    height: 45px;
    color: #333;
    background: transparent;
}

textarea.form-control {
    height: 50px !important;
}

.upload-file {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.upload-file i {
    font-size: 40px;
    color: #141414;
}

.upload-file span {
    font-size: 14px;
    font-weight: 700;
    color: #141414;
}

.submit-btn {
    background-color: #f36637;
    color: #fff;
    border: none;
    padding: 22px 55px;
    font-size: 15px;
    font-weight: 700;
    width: 100%;
    transition: 0.3s;
}

.submit-btn:hover {
    background-color: #1a1a1a;
}

/* footer css start */
.footer-sec {
    background-color: #141414;
    padding: 100px 0 0;
    color: #fff;
}

.footer-box h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 35px;
    position: relative;
    padding-left: 15px;
    font-weight: 300;
}

.footer-box h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background-color: #f36637;
}

.footer-box p {
    color: #a5a5a5;
    font-size: 14px;
    line-height: 24px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.social-links li a {
    width: 38px;
    height: 38px;
    border: 1px solid #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a5a5a5;
    font-size: 16px;
}

.social-links li a:hover,
.social-links li a.active {
    background-color: #f36637;
    border-color: #f36637;
    color: #fff;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #a5a5a5;
    font-size: 15px;
}

.footer-links li a:hover {
    color: #f36637;
}

.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info li i {
    color: #f36637;
    font-size: 20px;
    margin-top: 5px;
}

.contact-info li span {
    color: #a5a5a5;
    font-size: 15px;
    line-height: 22px;
}

.contact-info li a {
    color: #a5a5a5;
}

.footer-bottom {
    background-color: #f36637;
    padding: 25px 0;
    text-align: center;
    margin-top: 70px;
}

.footer-bottom p {
    margin: 0;
    color: #fff;
    font-size: 14px;
}
/* footer css end */

/* responsive css start */
@media (max-width: 1399px) {
    .contact-hd h2 {
        font-size: 100px;
    }
}

@media (max-width: 1199px) {
    .about-txt h2, .services-hd h2 {
        font-size: 70px;
    }
    .contact-hd h2 {
        font-size: 80px;
    }
}

@media (max-width: 991px) {
    .about-txt {
        padding: 40px;
    }
    .about-txt h2, .services-hd h2 {
        font-size: 60px;
    }
    .contact-hd {
        padding-left: 0;
        text-align: center;
    }
    .contact-hd h2 {
        font-size: 70px;
    }
    .contact-form-box {
        margin-right: 0;
        margin-top: 40px;
    }
    .service-content {
        width: 85%;
    }
}

@media (max-width: 767px) {
    .about-txt h2, .services-hd h2, .contact-hd h2 {
        font-size: 50px;
    }
    .about-img, .about-txt {
        padding: 30px 20px;
    }
    .contact-form-box {
        padding: 40px 25px;
    }
    .banner-txt h1 {
        font-size: 80px;
    }
    .banner-txt h1 span {
        font-size: 50px;
    }
}

@media (max-width: 575px) {
     .banner-txt h1 {
        font-size: 60px;
    }
    .banner-txt h1 span {
        font-size: 40px;
    }
    .abt-box-main {
        flex-direction: column;
    }
    .abt-box {
        width: 100%;
    }
}
.contact-sec::before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    background-color: #191919;
    height: 510px;
    width: 100%;
    z-index: -1;
}

.footer-box {
    margin-left: 30px;
}
.footer-box.on {
    margin: unset;
}
.map-bx {
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: -1;
    filter: invert(100%) grayscale(100%) brightness(80%);
}
.choose-img {
    width: 100%;
    height: 558px;
}
/* responsive css end */

section.need-exterior {
    padding: 100px 0px;
    background-image: url(../images/need-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    text-align:center; 
}
.need-exterior-txt h2 {
    font-size: 73px;
    color: #fff;
    line-height: 1;
}

.need-exterior-txt h2 span {
    display: block;
}

.need-exterior-txt p {
    font-size: 15px;
    color: #fff;
    width: 76%;
    margin: 0 auto;
}

.need-exterior-txt .ankars {
    margin: 0 auto;
    width: fit-content;
    margin-top: 30px;
}

.need-exterior-txt .ankars h6 {
    color: #fff;
    text-align: justify;
}

.need-exterior-txt .ankars ul li a {
    color: #fff;
}

.need-exterior-txt .ankars ul li img {
    filter: brightness(5.5);
}

/*testimonials start*/
section.testimonials {
    padding: 100px 0 0px;
    background-color: #fff;
}
.slick-active {
    opacity: 1;
}
.test-hd {
    text-align: center;
    margin-bottom: 60px;
}

.test-hd h2 {
    font-size: 80px;
    margin-bottom: 20px;
    color: #141414;
}

.test-hd p {
    font-size: 15px;
    width: 60%;
    margin: 0 auto;
    color: #666;
    line-height: 26px;
}

.test-item {
    background-color: #f8f8f8;
    display: flex;
    padding: 0;
    margin: 15px;
    position: relative;
    min-height: 280px;
}

.test-side {
    background-color: #f36637;
    width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    position: relative;
    flex-shrink: 0;
}

.test-profile {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 40px;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 3px solid #fff;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.test-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.test-rating {
    position: absolute;
    bottom: 30px;
    color: #fff;
    font-size: 20px;
    font-family: 'American-Captain';
}

.test-body {
    padding: 40px 40px 40px 60px;
    flex-grow: 1;
}

.test-auth-info {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
}

.test-auth-name h4 {
    font-size: 28px;
    margin: 0;
    font-family: 'American-Captain';
    letter-spacing: 1px;
}

.test-auth-name span {
    font-size: 14px;
    color: #888;
}

.test-stars {
    color: #f36637;
    font-size: 16px;
}

.test-body p {
    font-size: 14px;
    line-height: 24px;
    color: #666;
    margin: 0;
}

.testimonials_sldier .slick-slide {
    margin: 0 15px;
}
/*testimonials end*/