/* Common Style */
:root {
  --main-color: #ff6e31;
  --head-color: #000b49;
  --grey-bg: #f2f3f8;
  --head-font: "Oswald", sans-serif;
  --text-font: "Roboto", sans-serif;
}

::selection {
  color: white;
  background-color: var(--main-color);
}

* {
  box-sizing: border-box;
}

body {
  background: #f2f3f8;
  font-family: var(--text-font);
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--head-color);
  font-family: var(--head-font);
  margin: 0;
}

p {
  color: #666666;
  font-size: 16px;
  line-height: 26px;
  text-transform: capitalize;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

.container {
  width: 1432px;
  border: 0px solid #000;
  margin: 0 auto;
  display: flow-root;
}

.btn {
  color: #fff;
  background: var(--main-color);
  font-family: var(--head-font);
  font-size: 20px;
  font-style: italic;
  text-transform: capitalize;
  border: 2px solid var(--main-color);
  padding: 12px 35px;
  display: inline-block;
  transition: all 0.3s;
}

.btn:hover {
  background: var(--head-color);
}

section {
  padding: 60px 0;
}

.section-head {
  margin-bottom: 30px;
}

.section-head.center {
  text-align: center;
}

.section-head .tagline {
  color: var(--main-color);
  font: 500 22px var(--head-font);
  text-transform: capitalize;
}

.section-head h2 {
  font-size: 45px;
  font-weight: 600;
  line-height: 54px;
  text-transform: capitalize;
  text-shadow: 0.2rem 0.2rem 0.2rem rgba(0, 0, 0, 0.1);
}

.section-head img {
  height: 15px;
  margin-top: 10px;
}

/* Info Bar Style */
#info-bar {
  color: #fff;
  background: var(--main-color);
  padding: 10px 0;
}

#info {
  float: left;
}

#info span {
  margin-right: 30px;
}

#info i.fa {
  font-size: 18px;
  margin-right: 10px;
}

#social-link {
  list-style: none;
  float: right;
}

#social-link li {
  display: inline-block;
  margin-left: 26px;
}

#social-link a {
  color: #fff;
  font-size: 18px;
  transition: all 0.3s;
}

#social-link a:hover {
  color: var(--head-color);
}

/* LogoBar Style */
#logo-bar {
  background: #fff;
  padding: 15px 0;
}

#logo {
  float: left;
  display: block;
}

#logo img {
  width: 54px;
  margin-right: 10px;
  float: left;
}

#logo h1 {
  color: #000;
  font-size: 28px;
  line-height: 36px;
  font-weight: 600;
}

#logo h1 span {
  color: var(--main-color);
}

#logo .tagline {
  color: var(--main-color);
  font-family: var(--head-font);
  font-size: 17px;
  font-weight: 600;
}

#logo .company-name {
  float: left;
}

#logo h1 {
}

#logo span {
  /* display: block; */
  /* clear: both; */
}

nav {
  float: right;
  margin-top: 14px;
}

nav ul {
  list-style: none;
}

nav ul li {
  display: inline-block;
  margin-right: 20px;
}

nav a {
  color: var(--head-color);
  font-family: var(--head-font);
  font-size: 20px;
  font-weight: 500;
  transition: all 0.3s;
}

nav a:hover {
  color: var(--main-color);
}

#search-bar {
  float: right;
}

#search-bar .fa-search {
  color: var(--head-color);
  font-size: 18px;
  font-weight: 900;
  margin-right: 10px;
}

/* Home Banner Style */
#banner {
  background: #aeaeae url(../images/banner.jpg) 0px -290px / cover no-repeat;
  background-blend-mode: multiply;
  padding: 110px 0 145px;
}

#banner-desc {
  color: #fff;
  width: 580px;
}

#banner-desc .head-tagline {
  color: var(--main-color);
  font-family: var(--head-font);
  font-size: 28px;
  font-weight: 500;
  text-transform: capitalize;
}

#banner-desc h1 {
  color: #fff;
  font-size: 60px;
  font-weight: 500;
  line-height: 72px;
}

#banner-desc p {
  color: #fff;
  font-size: 17px;
  line-height: 27px;
}

#banner-scrollbtn {
  height: 20px;
  transform: translateY(130px);
  text-align: center;
}

#banner-scrollbtn span,
#testimonial-scrollbtn span {
  height: 10px;
  width: 30px;
  display: inline-block;
  background: #c2c8c6;
  border-radius: 10px;
  margin: 0 1px;
}

#banner-scrollbtn span.active,
#testimonial-scrollbtn span.active {
  background: var(--main-color);
  width: 60px;
}

/* Subscribe Newsletter */
#newsletter {
  background: #c4c4c4 url(../images/Subscribe.jpg) no-repeat left center / cover;
  background-blend-mode: multiply;
  padding: 30px 0 40px;
}

#newsletter-head {
  color: #fff;
  float: left;
}

#newsletter-head h3 {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
}

#newsletter-head p {
  color: #fff;
  margin: 0;
}

#newsletter-form {
  background: #fff;
  float: right;
  padding: 5px;
}

#newsletter-form input[type="text"] {
  width: 435px;
  border: 0;
  padding: 5px 5px 5px 15px;
}

#newsletter-form input[type="text"]:focus {
  border: 0;
  outline: 0;
}

/* Footer Sidebar */
#footer-sidebar {
  color: #fff;
  background: #000b49;
  padding: 25px 0 40px;
}

#footer-sidebar .widget {
  width: 25%;
  float: left;
}

#footer-logo {
  display: block;
}

#footer-logo img {
  width: 54px;
  margin-right: 10px;
  float: left;
}

#footer-logo h1 {
  color: #fff;
  font-size: 28px;
  line-height: 36px;
  font-weight: 600;
}

#footer-logo h1 span {
  color: var(--main-color);
}

#footer-logo .tagline {
  color: #fff;
}

#footer-social li {
  display: inline-block;
  margin-right: 3px;
}

#footer-social li a {
  color: #fff;
  background: var(--main-color);
  font-size: 18px;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border: 2px solid var(--main-color);
  border-radius: 50%;
  transition: all 0.3s;
}

#footer-social li a:hover {
  color: var(--main-color);
  background: transparent;
}

.widget ul {
  list-style: none;
}

.widget .widget-links li {
  margin-bottom: 13px;
}

.widget .widget-links li:before {
  content: "\f1ad";
  color: var(--main-color);
  font-family: "FontAwesome";
  font-size: 14px;
  margin-right: 10px;
}

.widget ul a {
  color: #fff;
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
}

.widget ul a:hover {
  color: var(--main-color);
}

.widget p {
  color: #fff;
}

.widget h5 {
  color: #fff;
  font: 600 25px var(--text-font);
  margin-bottom: 15px;
}

.widget h5:after {
  content: "";
  background: var(--main-color);
  display: block;
  width: 100px;
  height: 2px;
  margin-top: 5px;
}

#footer-info li {
  font-weight: 500;
  margin-bottom: 15px;
}

#footer-info li span {
  /* display: inline-block; */
  width: 330px;
}

#footer-info .fa {
  color: var(--main-color);
  margin-right: 12px;
  display: inline-block;
}

/* Footer Style */
footer {
  color: #fff;
  background: var(--main-color);
  text-align: center;
  padding: 28px 0;
}

footer p {
  color: #fff;
  font-size: 20px;
  margin: 0;
}

/* Main Content */
.servicebox-1 {
  color: #fff;
  background: var(--head-color);
  width: 32.85%;
  float: left;
  margin-right: 10px;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 30px 20px;
}

.servicebox-1 i.fa {
  color: var(--main-color);
  font-size: 50px;
  display: inline-block;
  margin-right: 20px;
}

.servicebox-1 h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 5px;
  display: inline-block;
}

.servicebox-1 p {
  color: #fff;
  margin: 0;
}

.servicebox-1:last-child {
  margin-right: 0;
}

/* About Section */
#about-img {
  width: 692px;
  float: left;
  position: relative;
  overflow: hidden;
}

#about-img .about-1 {
  width: 610px;
  translate: 0px -50px;
}

#about-img-inner {
  border: 10px solid #f2f3f8;
  width: 380px;
  position: absolute;
  bottom: 0;
  right: 0;
}

#about-img-inner img {
  width: 100%;
}

#about-img-inner .experince {
  background: #f2f3f8;
  width: 220px;
  height: 170px;
  position: absolute;
  right: 0px;
  top: -85px;
  padding: 10px 0 0 10px;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

#about-img-inner .experince .inner {
  background: var(--main-color);
  color: #fff;
  text-align: center;
  width: 200px;
  height: 150px;
  padding-top: 15px;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

#about-img-inner .inner span:first-child {
  font-size: 40px;
  line-height: 48px;
  font-weight: 600;
}

#about-img-inner .inner span:last-child {
  font-size: 18px;
  font-weight: 500;
  display: block;
}

#about-desc {
  width: 720px;
  float: right;
}

.servicebox-2 .fa {
  color: var(--main-color);
  font-size: 40px;
  float: left;
  margin: 6px 17px 60px 0;
}

.servicebox-2 h3 {
  font-size: 25px;
  font-weight: 500;
  text-transform: capitalize;
}

.servicebox-2 p {
  margin-top: 2px;
}

.servicebox-2 .btn {
  margin-top: 7px;
}

/* ServiceBox 3 */
.servicebox-3 {
  width: 32.8%;
  float: left;
  margin-right: 10px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.servicebox-3:last-child {
  margin-right: 0;
}

.servicebox-3 .service-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.servicebox-3 .service-img img {
  width: 100%;

  position: absolute;
  top: -50px;
  /* transform: translateY(-50px); */
}

.servicebox-3 .service-icon {
  color: #fff;
  background: var(--main-color);
  width: 120px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  position: absolute;
  top: -40px;
  left: calc(50% - 60px);
}

.servicebox-3 .service-icon .fa {
  color: #fff;
  font-size: 25px;
}

.servicebox-3 .service-desc {
  background: #fff;
  position: relative;
  padding: 60px 25px 25px;
}

.servicebox-3 .service-desc h3 a {
  color: var(--head-color);
  font-size: 28px;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 0.3s;
}

.servicebox-3 .service-desc h3 a:hover {
  color: var(--main-color);
}

/* Service COunter */
#service-counter {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
    url(../images/Counter.jpg) no-repeat left center;
  background-size: cover;
}

#service-counter .counter {
  width: 24.9%;
  text-align: center;
  float: left;
}

#service-counter .counter-icon {
  color: #fff;
  background: var(--main-color);
  font-size: 35px;
  width: 150px;
  height: 100px;
  line-height: 100px;
  margin: 0 auto 20px;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

#service-counter .counter span {
  color: #fff;
  display: block;
}

#service-counter .counter .number {
  font-size: 40px;
  font-weight: 500;
}

#service-counter .counter .projects {
  font-family: var(--head-font);
  font-size: 22px;
  font-weight: 500;
  text-transform: capitalize;
}

#service-counter .counter::after {
  content: "";
  background: var(--main-color);
  display: block;
  height: 2px;
  width: 60px;
  margin: 15px auto 0;
}

/* Why Us Section */
#whyus-desc {
  width: 50%;
  float: left;
  margin-right: 30px;
}

#whyus-desc ul {
  color: #666666;
  font-size: 16px;
  line-height: 26px;
  text-transform: capitalize;
  list-style: none;
  margin-bottom: 30px;
}

#whyus-desc ul li {
  margin-bottom: 5px;
}

#whyus-desc ul i.fa {
  color: var(--main-color);
  margin-right: 12px;
}

#whyus-img {
  width: calc(50% - 30px);
  float: right;
  position: relative;
}

#whyus-img:after {
  content: "";
  background: var(--main-color);
  display: block;
  width: 215px;
  height: 550px;
  float: right;
}

#whyus-img img {
  width: 95%;
  height: 450px;
  position: absolute;
  top: 40px;
  left: 0;
  object-fit: cover;
  /* object-position: ; */
}

/* Our Projects */
#project-gallery-links {
  text-align: center;
  list-style: none;
  margin-bottom: 30px;
}

#project-gallery-links li {
  display: inline-block;
  margin: 0 4px;
}

#project-gallery-links li a {
  color: #fff;
  background: var(--head-color);
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  padding: 15px 35px;
  transition: all 0.3s;
}

#project-gallery-links li a:hover {
  background: var(--main-color);
}

#project-gallery-links li a.active {
  background: var(--main-color);
}

.project-gallery {
  width: 32.8%;
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
  position: relative;
}

.project-gallery:nth-child(3n) {
  margin-right: 0px;
}

.project-gallery img {
  width: 100%;
}

.project-desc {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 5px;
  padding: 30px 20px;
  position: absolute;
  inset: 57% 30px 20px 10px;
}

.project-desc .project-category {
  color: var(--main-color);
  font-size: 20px;
  font-weight: 600;
}

.project-desc h3 a {
  color: var(--head-color);
  font-size: 30px;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 0.3s;
}

.project-desc h3 a:hover {
  color: var(--main-color);
}

.project-link {
  color: #fff;
  background: var(--main-color);
  border-radius: 8px;
  padding: 15px;
  transition: all 0.3s;
  position: absolute;
  right: -20px;
  top: 35px;
}

.project-link:hover {
  background: var(--head-color);
}

/* Foundation */
#foundation {
  background: url(../images/foundation.jpg) no-repeat 0px -682px;
  background-size: cover;
}

#foundation .section-head h2 {
  color: #fff;
}

/* Work Process */
#work-desc {
  width: calc(50% - 30px);
  float: left;
}

#work-steps {
  width: 50%;
  float: right;
}

.process {
  background: #fff;
  width: 49.2%;
  float: left;
  border-bottom: 5px solid var(--main-color);
  margin: 0 10px 10px 0;
  padding: 28px 20px 20px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.process:nth-child(2n) {
  margin: 0 0 10px 0;
}

.process h3 {
  font-size: 25px;
  font-weight: 500;
  clear: both;
}

.process i.fa {
  color: var(--main-color);
  font-size: 40px;
  float: left;
}

.process .number {
  color: var(--main-color);
  background: var(--main-color);
  padding: 4px 10px;
  border-radius: 5px;
  font-family: var(--head-font);
  font-size: 25px;
  font-weight: 700;
  display: inline-block;
  float: right;
  -webkit-text-stroke: 0.7px #fff;
}

/* Our Team */
.team-member {
  width: 24.4%;
  float: left;
  margin-right: 10px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.team-member:last-child {
  margin-right: 0px;
}

.team-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.team-img img {
  width: 100%;
}

.team-social {
  position: absolute;
  right: -52px;
  top: 25px;
  list-style: none;
  transition: all 0.3s;
}

.team-member:hover .team-social {
  right: 20px;
  top: 25px;
}

.team-social li {
  margin-bottom: 8px;
}

.team-social a {
  color: #fff;
  background: var(--main-color);
  text-align: center;
  width: 50px;
  height: 40px;
  line-height: 40px;
  display: block;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.team-social a:hover {
  background: var(--head-color);
}

.team-detail {
  background: #fff;
  text-align: center;
  padding: 30px 10px;
}

.team-detail span {
  display: block;
}

.team-detail span a {
  color: var(--head-color);
  font-family: var(--head-font);
  font-size: 24px;
  font-weight: 600;
  transition: all 0.3s;
}

.team-detail span a:hover {
  color: var(--main-color);
}

.team-detail .designation {
  color: var(--main-color);
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 3px;
}

/* Testimonials */
#testimonials {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
    url(../images/Testimonials.jpg) no-repeat;
  background-size: cover;
}

#testimonials .section-head h2 {
  color: #fff;
}

.testimonial {
  background: #fff;
  width: 49.6%;
  float: left;
  padding: 30px;
}

.testimonial:first-child {
  margin-right: 10px;
}

.client-img {
  width: 70px;
  height: 70px;
  border: 5px solid var(--main-color);
  border-radius: 50%;
  position: relative;
}

.client-img img {
  width: 100%;
  border-radius: 50%;
}

.client-img i.fa {
  color: #fff;
  background: var(--head-color);
  font-size: 8px;
  text-align: center;
  line-height: 22px;
  width: 22px;
  height: 22px;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  position: absolute;
  right: -11px;
  bottom: 0;
}

.client-details {
  position: relative;
}

.client-details span {
  display: block;
}

.client-name {
  color: var(--head-color);
  font: 500 24px var(--head-font);
}

.client-designation {
  color: var(--main-color);
  font-weight: 600;
  text-transform: uppercase;
}

.client-details i.fa {
  color: var(--main-color);
  font-size: 60px;
  position: absolute;
  right: 0;
  top: 0;
}

#testimonial-scrollbtn {
  height: 20px;
  text-align: center;
  margin-top: 40px;
}

/* Latest Blog */
.latest-news {
  background: #fff;
  width: 32.8%;
  float: left;
  margin-right: 10px;
}

.latest-news:last-child {
  margin-right: 0;
}

.latest-news-img {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.latest-news-img .news-date {
  color: #fff;
  background: var(--main-color);
  text-align: center;
  width: 110px;
  height: 90px;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  position: absolute;
  top: 15px;
  left: 15px;
  padding-top: 20px;
}

.latest-news-img .news-date span {
  font-size: 19px;
  font-weight: 600;
  width: 30px;
  display: inline-block;
}

.latest-news-img img {
  width: 100%;
}

.latest-news-detail {
  padding: 20px;
}

.news-category {
  color: #fff;
  background: var(--main-color);
  text-transform: capitalize;
  padding: 8px 10px;
  margin-bottom: 5px;
  display: inline-block;
}

.latest-news-detail h3 {
  font-size: 28px;
  font-weight: 500;
  text-transform: capitalize;
}

.latest-news-detail h3 a {
  color: var(--head-color);
  transition: all 0.3s;
}

.latest-news-detail h3 a:hover {
  color: var(--main-color);
}

.author-detail {
  border-top: 1px solid #e5e5e5;
  padding-top: 20px;
  margin-top: 10px;
}

.author-detail i.fa {
  color: var(--main-color);
  font-size: 21px;
  margin-right: 10px;
}

.author-detail span {
  color: #888888;
}

/* Our Client */
#our-client {
  background: #e6e7eb;
}

#clients-list {
  list-style: none;
  display: flow-root;
}

#clients-list li {
  float: left;
  width: 20%;
}

#clients-list img {
  width: 95%;
}

/* Laptop Media Query */
@media screen and (max-width: 1450px) {
  .container {
    width: 1100px;
  }

  .servicebox-1 {
    width: 32.6%;
  }

  #about-img {
    width: 47%;
  }

  #about-desc {
    width: 50%;
  }

  .servicebox-3 {
    width: 32.6%;
  }

  .project-gallery {
    width: 32.6%;
  }

  #foundation {
    background: url(../images/foundation.jpg) no-repeat 0px -592px;
  }

  .process {
    width: 49%;
  }

  .team-member {
    width: 24.3%;
  }

  .testimonial {
    width: 49.5%;
  }

  .latest-news {
    width: 32.6%;
  }

  .project-desc{
    padding: 11px 20px;
  }
  .project-link{
    top: 22px;
  }
}

/* OLD Monitor */
@media screen and (max-width: 1120px) {
  .container {
    width: 950px;
  }

  nav {
    display: none;
  }

  #banner {
    background: #aeaeae url(../images/banner.jpg) 0px -3px / cover no-repeat;
  }

  .process {
    width: 48.6%;
  }
  .team-member {
    width: 24.2%;
  }

  .testimonial {
    width: 49.4%;
  }

  .project-desc{
    inset: 48% 30px 20px 10px;
  }
}

/* Tablet Screen */
@media screen and (max-width: 970px) {
  .container {
    width: 850px;
  }

  .servicebox-1 {
    width: 100%;
    margin-top: 0px;
    margin-bottom: 10px;
  }

  #about-img {
    width: 100%;
  }

  #about-desc {
    width: 100%;
  }

  .servicebox-3 {
    width: 49.2%;
  }

  .servicebox-3:nth-child(2) {
    margin-right: 0;
  }

  .servicebox-3:last-child {
    display: none;
  }

  #service-counter .counter {
    width: 50%;
    margin-bottom: 30px;
  }

  #whyus-desc {
    width: 100%;
  }

  #whyus-img {
    width: 100%;
  }

  .project-gallery {
    width: 49.2%;
  }

  .project-gallery:nth-child(2n) {
    margin-right: 0;
  }

  .project-gallery:nth-child(3n){
    margin-right: 10px;
  }

  .project-gallery:nth-child(6) {
        margin-right: 0px;
    }

  #work-desc {
    width: 100%;
    margin-bottom: 50px;
  }

  #work-steps {
    width: 100%;
  }

  .process {
    width: 49.3%;
  }

  .team-member {
    width: 49.3%;
    margin-bottom: 10px;
  }

  .team-member:nth-child(2n) {
    margin-right: 0;
  }

  .latest-news {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }

  #clients-list li {
    width: 25%;
  }

  #clients-list li:last-child {
    display: none;
  }

  #newsletter-head {
    width: 100%;
    margin-bottom: 25px;
  }

  #newsletter-form {
    width: 100%;
  }
  #newsletter-form input[type="text"] {
    width: 688px;
  }

  #footer-sidebar .widget{
    width: 100%;
    margin-bottom: 25px;
  }

  .project-desc{
    inset: 58% 30px 20px 10px;
  }
}

@media screen and (max-width: 860px) {
  .container {
    width: 600px;
  }

  #info{
    display: none;
  }

  .servicebox-3 {
        width: 49%;
    }
    .project-gallery {
        width: 49%;
    }
    .process {
        width: 49%;
    }

    .team-member{
      width: 49%;
    }
    .testimonial {
        width: 49%;
    }
    #newsletter-form input[type="text"] {
        width: 438px;
    }

    .project-desc{
      inset: 46% 30px 20px 10px;
    }
}

/* Mobile Screen */
@media screen and (max-width: 600px) {
  .container {
    width: 95%;
  }

#clients-list li{
  width: 33%;
}

  #clients-list li:nth-child(3){
    display: none;
  }

  #newsletter-form input[type="text"] {
        width: 358px;
    }

    .project-desc{
      inset: 33% 30px 20px 10px;
    }
    .project-desc h3 a{
      font-size: 26px;
    }

    #project-gallery-links li{
      margin:0 4px 10px;
    }

    #project-gallery-links li a{
      padding: 10px 24px;
    }
}

@media screen and (max-width: 450px) {
  .project-gallery{
    width: 100%;
  }
.servicebox-3 {
        width: 100%;
        margin-bottom: 15px;
    }
  
}