/*==========================
Google Font
==========================*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Manrope', sans-serif;
  color: #222;
  overflow-x: hidden;
}

.container {
  max-width: 1320px;
}

/*==========================
Top Header
==========================*/

.top-header {
  background: #111111;
  color: #fff;
  padding: 11px 0;
  font-size: 14px;
}

.top-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-left,
.top-right {
  display: flex;
  align-items: center;
}

.top-left a,
.top-right a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.top-left a:hover,
.top-right a:hover {
  color: #c9953d;
}

.top-left a {
  margin-right: 15px;
}

.top-right span {
  margin-right: 15px;
}

.top-right a {
  margin-left: 15px;
  font-size: 15px;
}

.divider {
  width: 1px;
  height: 15px;
  background: #666;
  margin-right: 15px;
}

/*==========================
Navbar
==========================*/

.sw-navbar {
  background: #fff;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
  height: 62px;
}

.navbar-nav {
  gap: 18px;
}

.nav-link {
  color: #1d1d1d;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.3s;
}

.nav-link:hover {
  color: #c9953d;
}

.nav-link.active {
  color: #c9953d;
}

.btn-touch {
  background: #c9953d;
  color: #fff;
  padding: 12px 24px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 14px;
  transition: 0.3s;
}

.btn-touch:hover {
  background: #a7772d;
  color: #fff;
}

.navbar-toggler {
  font-size: 32px;
}
.navbar-toggler {
  border: 0;
  box-shadow: none !important;
  padding: 0;
}

.navbar-toggler i {
  font-size: 34px;
  color: #b8842a;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/*==========================
Tablet
==========================*/

@media (max-width: 991px) {
  .top-header {
    display: none;
  }

  .navbar-brand img {
    height: 52px;
  }

  .navbar-collapse {
    background: #ffffff;
    margin-top: 18px;
    padding: 20px;
    border-radius: 10px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  }

  .navbar-nav {
    text-align: center;
  }

  .nav-link {
    padding: 14px 0;
  }

  .btn-touch {
    width: 100%;
    margin-top: 15px;
  }
}

/*==========================
Mobile
==========================*/

@media (max-width: 767px) {
  .sw-navbar {
    padding: 12px 0;
  }

  .navbar-brand img {
    height: 45px;
  }

  .navbar-nav {
    text-align: left;
  }

  .navbar-toggler {
    font-size: 28px;
  }
}
/*==========================
Footer CTA
==========================*/

.footer-cta {
  background: #171717;
  color: #fff;
  padding: 45px 0;
}

.footer-cta h2 {
  font-size: 40px;
  font-weight: 700;
}

.footer-cta h2 span {
  color: #c9953d;
}

.footer-cta p {
  color: #bdbdbd;
  margin-top: 10px;
}

.btn-footer {
  background: #c9953d;
  color: #fff;
  padding: 14px 28px;
  border-radius: 3px;
  font-weight: 600;
}

.btn-footer:hover {
  background: #ad7c2f;
  color: #fff;
}

.footer-phone {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}

.footer-phone i {
  font-size: 28px;
  color: #c9953d;
}

.footer-phone h5 {
  margin: 0;
  color: #fff;
}

.footer-phone small {
  color: #bdbdbd;
}

/*==========================
Main Footer
==========================*/

.main-footer {
  background: #111;
  color: #fff;
  padding: 70px 0 0;
}

.footer-logo {
  height: 65px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 10px;
}

.footer-about {
  color: #bdbdbd;
  line-height: 1.8;
}

.main-footer h5 {
  margin-bottom: 22px;
  font-weight: 700;
}

.main-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-footer ul li {
  margin-bottom: 12px;
}

.main-footer ul li a {
  color: #bdbdbd;
  text-decoration: none;
  transition: 0.3s;
}

.main-footer ul li a:hover {
  color: #c9953d;
}

.footer-contact li {
  display: flex;
  gap: 10px;
}

.footer-contact i {
  color: #c9953d;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid #444;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #c9953d;
  border-color: #c9953d;
}

.newsletter-text {
  color: #bdbdbd;
}

.newsletter-box {
  display: flex;
  margin-top: 20px;
}

.newsletter-box input {
  width: 100%;
  border: none;
  padding: 12px;
}

.newsletter-box button {
  width: 55px;
  border: none;
  background: #c9953d;
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #2a2a2a;
  margin-top: 60px;
  padding: 20px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  color: #bdbdbd;
}

.footer-bottom a {
  color: #bdbdbd;
  text-decoration: none;
  margin: 0 8px;
}

.footer-bottom a:hover {
  color: #c9953d;
}

/*====================================
Footer Mobile
====================================*/

@media (max-width: 767px) {
  .footer-cta {
    text-align: center;

    padding: 35px 20px;
  }

  .footer-cta h2 {
    font-size: 28px;
  }

  .footer-cta p {
    margin: 15px auto 25px;
  }

  .btn-footer {
    display: inline-flex;

    justify-content: center;

    align-items: center;
  }

  .footer-phone {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 15px;

    margin-top: 30px;
  }
  .footer-phone i {
    font-size: 28px;

    color: #c9953d;

    flex-shrink: 0;
  }

  .footer-phone div {
    text-align: left;
  }

  .footer-phone h5 {
    margin: 0;

    color: #fff;
  }

  .footer-phone small {
    display: block;

    color: #bdbdbd;
  }

  .main-footer {
    text-align: center;

    padding: 50px 0 0;
  }

  .footer-logo {
    display: block;

    margin: 0 auto 20px;
  }

  .footer-about {
    margin-bottom: 30px;
  }

  .main-footer h5 {
    margin-top: 30px;

    margin-bottom: 18px;
  }

  .main-footer ul {
    text-align: center;
  }

  .footer-contact li {
    display: flex;

    align-items: flex-start;

    justify-content: center;

    gap: 12px;

    margin-bottom: 18px;
  }

  .footer-contact i {
    width: 22px;

    min-width: 22px;

    text-align: center;

    font-size: 18px;

    color: #c9953d;

    margin-top: 3px;
  }

  .footer-contact span,
  .footer-contact p,
  .footer-contact div {
    flex: 1;

    text-align: left;
  }

  .footer-social {
    justify-content: center;
  }

  .newsletter-text {
    text-align: center;
  }

  .newsletter-box {
    max-width: 350px;

    margin: 20px auto 0;
  }

  .footer-bottom-content {
    flex-direction: column;

    gap: 15px;

    text-align: center;
  }
}

/* Hero Section Desktop */

.hero-section {
  display: grid;
  grid-template-columns: 35% 65%;
  height: 720px;
}

.hero-left {
  background: #f5f3ef;
  position: relative;
}

.hero-right {
  position: relative;

  overflow: hidden;
}

.hero-right::before {
  content: '';

  position: absolute;

  left: 0;

  top: 0;

  width: 240px;

  height: 100%;

  z-index: 2;

  background: linear-gradient(
    to right,
    #f5f3ef 0%,
    rgba(245, 243, 239, 0.96) 20%,
    rgba(245, 243, 239, 0.78) 45%,
    rgba(245, 243, 239, 0.4) 70%,
    rgba(245, 243, 239, 0) 100%
  );
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-left {
  position: relative;

  display: flex;

  align-items: center;

  justify-content: flex-start;

  background: #f5f3ef;
}

.hero-content {
  width: 470px;

  margin-left: 70px;

  position: relative;

  z-index: 5;
}

.hero-title {
  margin: 0;

  font-family: Georgia, serif;

  font-size: 68px;

  font-weight: 400;

  line-height: 1.08;

  color: #1f1f1f;
}

.hero-title span {
  color: #b8862c;
}

.hero-desc {
  width: 360px;

  margin-top: 28px;

  margin-bottom: 38px;

  font-size: 18px;

  line-height: 1.8;

  color: #555;
}

.hero-btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  width: 220px;

  height: 54px;

  background: #b8862c;

  color: #fff;

  text-decoration: none;

  text-transform: uppercase;

  font-size: 14px;

  font-weight: 600;
}

.hero-btn:hover {
  background: #9d7225;

  color: #fff;
}
.hero-bottom {
  position: absolute;

  left: 65px;

  bottom: 50px;

  z-index: 20;

  width: calc(100% - 130px);
}

.hero-bottom-box {
  display: flex;

  align-items: center;

  justify-content: flex-start;

  gap: 30px;
}

.hero-item {
  display: flex;

  align-items: center;

  justify-content: flex-start;

  gap: 12px;

  flex: 0 0 auto;

  min-width: 180px;
}

.hero-item img {
  height: 50px;
}

.hero-item span {
  font-size: 15px;

  color: #444;

  font-weight: 500;
}

.hero-divider {
  width: 1px;

  height: 42px;

  background: #e7e7e7;
}
.hero-section {
  position: relative;
}

/* Hero Section Mobile*/

@media (max-width: 767px) {
  .hero-section {
    display: block;

    height: auto;
  }

  .hero-left {
    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 560px;

    background: transparent;

    display: flex;

    align-items: flex-start;

    z-index: 5;
  }

  .hero-right {
    height: 560px;
  }

  .hero-right img {
    width: 100%;

    height: 100%;

    object-fit: cover;
  }

  .hero-right::before {
    width: 100%;

    background: linear-gradient(
      to right,
      rgba(245, 243, 239, 0.95) 0%,
      rgba(245, 243, 239, 0.8) 35%,
      rgba(245, 243, 239, 0.3) 60%,
      rgba(245, 243, 239, 0) 100%
    );
  }

  .hero-content {
    width: 280px;

    margin: 55px 22px 0;
  }

  .hero-title {
    font-size: 30px;

    line-height: 1.2;
  }

  .hero-title span {
    color: #c9962e;
  }

  .hero-desc {
    width: 250px;

    margin: 18px 0 24px;

    font-size: 15px;

    line-height: 1.7;
  }

  .hero-btn {
    width: 190px;

    height: 46px;

    font-size: 12px;
  }

  .hero-bottom {
    position: absolute;

    left: 16px;

    right: 16px;

    bottom: -150px;

    width: auto;
  }

  .hero-bottom-box {
    display: flex;

    flex-direction: column;

    gap: 0;

    background: #fff;

    border-radius: 6px;

    overflow: hidden;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

    margin-bottom: 200px;
  }

  .hero-item {
    width: 100%;

    min-width: 100%;

    padding: 10px;

    display: flex;

    align-items: center;

    gap: 16px;
  }

  .hero-item span {
    flex: 1;

    font-size: 16px;
  }

  .hero-item img {
    /* width: 32px; */

    height: 35px;
  }

  .hero-divider {
    display: none;
  }
  div.hero-item:nth-child(5) > img:nth-child(1) {
    margin-left: 10px;
  }
  div.hero-item:nth-child(5) > span:nth-child(2) {
    margin-left: 10px;
  }
}

/*==================================================
Services Strip
==================================================*/

.services-strip {
  display: flex;

  align-items: stretch;

  background: #fff;

  margin-top: -35px;

  position: relative;

  z-index: 20;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/*====================================
Left
====================================*/

.services-left {
  flex: 1;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  background: #fff;
}

/*====================================
Service Box
====================================*/

.service-box {
  padding: 45px 25px;

  text-align: center;

  border-right: 1px solid #ececec;
}

.service-box:last-child {
  border-right: none;
}

.service-box img {
  height: 100px;

  margin-bottom: 22px;
}

.service-box h5 {
  font-size: 20px;

  font-weight: bold;

  color: #222;

  margin-bottom: 18px;

  text-transform: uppercase;
}

.service-box p {
  font-size: 18px;

  line-height: 1.9;

  color: #666;

  padding: 0 32px;
  font-weight: bold;
}

/*====================================
Right Card
====================================*/

.services-right {
  width: 360px;

  background: #faf8f5;

  display: flex;

  flex-direction: column;
}

.consultation-img {
  width: 100%;

  height: 180px;

  object-fit: cover;
}

.consultation-content {
  padding: 30px;
}

.consultation-content h4 {
  font-size: 28px;

  font-weight: 700;

  margin-bottom: 18px;

  color: #222;

  text-transform: uppercase;
}

.consultation-content p {
  font-size: 15px;

  line-height: 1.9;

  color: #666;

  margin-bottom: 25px;
}

.consult-btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: 160px;

  height: 48px;

  background: #b8862c;

  color: #fff;

  text-decoration: none;

  font-size: 14px;

  font-weight: 600;

  text-transform: uppercase;

  transition: 0.3s;
}

.consult-btn:hover {
  background: #9c7123;

  color: #fff;
}

/*====================================
Tablet
====================================*/

@media (max-width: 991px) {
  .services-strip {
    flex-direction: column;
  }

  .services-left {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-right {
    width: 100%;
  }
}

/*====================================
Mobile
====================================*/

@media (max-width: 767px) {
  .services-strip {
    display: block;

    margin-top: 0;

    box-shadow: none;
  }

  /* ---------- Top : 2 x 2 Grid ---------- */

  .services-left {
    display: grid;

    grid-template-columns: repeat(2, 1fr);
  }

  .service-box {
    padding: 10px 5px;

    border-right: 1px solid #ececec;

    border-bottom: 1px solid #ececec;

    text-align: center;
  }

  .service-box:nth-child(2n) {
    border-right: none;
  }

  .service-box img {
    height: 55px;

    margin-bottom: 12px;
  }

  .service-box h5 {
    font-size: 15px;

    line-height: 1.4;

    margin: 0;
  }

  .service-box p {
    display: none;
  }

  /* ---------- Bottom Consultation ---------- */

  .services-right {
    width: 100%;

    display: flex;

    flex-direction: column;

    background: #faf8f5;
  }

  .consultation-img {
    width: 100%;

    height: 180px;

    object-fit: cover;
  }

  .consultation-content {
    padding: 15px;

    text-align: left;
  }

  .consultation-content h4 {
    font-size: 22px;

    margin-bottom: 12px;
  }

  .consultation-content p {
    font-size: 15px;

    line-height: 1.7;

    margin-bottom: 20px;
  }

  .consult-btn {
    width: 160px;

    height: 46px;

    font-size: 13px;
  }
}

/*====================================
Projects Section
====================================*/

.projects-section {
  padding: 90px 0;

  background: #fff;
}

/*====================================
Section Heading
====================================*/

.section-heading {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 18px;

  margin-bottom: 35px;
}

.section-heading h2 {
  margin: 0;

  font-size: 38px;

  font-weight: 700;

  color: #1d1d1d;

  text-transform: uppercase;

  letter-spacing: 1px;
}

.section-heading .line {
  width: 80px;

  height: 2px;

  background: #d7b16d;

  position: relative;
}

.section-heading .line::after {
  content: '';

  position: absolute;

  right: -6px;

  top: 50%;

  transform: translateY(-50%) rotate(45deg);

  width: 8px;

  height: 8px;

  border: 2px solid #d7b16d;

  background: #fff;
}

/*====================================
Project Tabs
====================================*/

.project-tabs {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 16px;

  margin-bottom: 45px;

  flex-wrap: wrap;
}

.tab-btn {
  border: none;

  background: transparent;

  padding: 11px 22px;

  font-size: 14px;

  font-weight: 600;

  color: #333;

  text-transform: uppercase;

  transition: 0.3s;

  border-radius: 3px;

  border: 1px solid #b8862c;
}

.tab-btn:hover {
  color: #b8862c;
}

.tab-btn.active {
  background: #b8862c;

  color: #fff;
}

/*====================================
Project Grid
====================================*/
.projectSwiper {
  overflow: hidden;

  padding-bottom: 60px;
}

.projectSwiper .swiper-slide {
  height: auto;
}

.projectSwiper .swiper-button-next,
.projectSwiper .swiper-button-prev {
  color: #b8862c;
}

.projectSwiper .swiper-pagination-bullet {
  background: #b8862c;
}

.projectSwiper .swiper-pagination-bullet-active {
  opacity: 1;
}

/*====================================
Project Card
====================================*/

.project-card {
  overflow: hidden;

  transition: 0.35s;
}

.project-image {
  overflow: hidden;

  background: #f8f8f8;
}

.project-image img {
  width: 100%;

  height: 235px;

  object-fit: cover;

  display: block;

  transition: 0.4s;
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-content {
  padding-top: 16px;
}

.project-content h4 {
  margin: 0 0 5px;

  font-size: 24px;

  font-weight: 600;

  color: #222;
}

.project-content span {
  font-size: 16px;

  color: #666;
}

/*====================================
Tablet
====================================*/

@media (max-width: 991px) {
  .projects-section {
    padding: 30px 0;
  }

  .section-heading {
    margin-bottom: 15px;
  }

  .section-heading h2 {
    font-size: 30px;
  }

  .projectSwiper {
    display: block;

    padding-bottom: 55px;
  }

  .projectSwiper .swiper-slide {
    width: 100%;
  }

  .project-content h4 {
    font-size: 22px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    color: #b8862c;

    transform: scale(0.65);

    border: 1px solid #b8862c;
    height: 70px;
    width: 70px;
    border-radius: 35px;
  }

  .swiper-pagination-bullet {
    width: 10px;

    height: 10px;

    background: #b8862c;

    opacity: 0.35;
  }

  .swiper-pagination-bullet-active {
    opacity: 1;
  }
}

/*====================================
Mobile
====================================*/

@media (max-width: 767px) {
  .projects-section {
    padding: 60px 0;
  }

  .section-heading {
    gap: 12px;
  }

  .section-heading .line {
    width: 40px;
  }

  .section-heading h2 {
    font-size: 24px;
  }

  .project-tabs {
    gap: 10px;
  }

  .tab-btn {
    font-size: 13px;

    padding: 8px 16px;
  }

  .project-image img {
    height: 220px;
  }

  .project-content h4 {
    font-size: 22px;
  }

  .project-content span {
    font-size: 15px;
  }
}
/* contact modal */
.contact-modal {
  border: none;

  border-radius: 12px;
}

.contact-modal .modal-header {
  border-bottom: 1px solid #eee;

  padding: 22px 30px;
}

.contact-modal h4 {
  margin: 0;

  font-size: 30px;

  font-weight: 700;

  color: #222;
}

.contact-modal .modal-body {
  padding: 30px;
}

.contact-modal .form-control {
  height: 55px;

  border-radius: 6px;

  border: 1px solid #ddd;

  box-shadow: none;
}

.contact-modal textarea.form-control {
  height: auto;
}

.contact-modal .form-control:focus {
  border-color: #b8862c;

  box-shadow: none;
}

.btn-submit {
  width: 100%;

  height: 54px;

  border: none;

  background: #b8862c;

  color: #fff;

  font-weight: 600;

  border-radius: 6px;

  transition: 0.3s;
}

.btn-submit:hover {
  background: #9d7225;
}
@media (max-width:767px){

    .modal-dialog{

        margin:15px;

    }

    .contact-modal .modal-header{

        padding:18px 20px;

    }

    .contact-modal .modal-body{

        padding:10px;

    }

    .contact-modal h4{

        font-size:24px;

    }

}

/* newsletter modal */
/*====================================
Newsletter Modal
====================================*/

.newsletter-modal{

    border:none;

    border-radius:22px;

    overflow:hidden;

    position:relative;

    background:#f8f4ec;

    box-shadow:0 30px 80px rgba(0,0,0,.25);

}

.newsletter-close{

    position:absolute;

    top:22px;

    right:22px;

    z-index:100;

    /* background:none; */

    box-shadow:none;

}

/*====================================
Left Image
====================================*/

.newsletter-image{

    height:100%;

}

.newsletter-image img{

    width:100%;

    height:100%;

    min-height:650px;

    object-fit:cover;

}

/*====================================
Right Content
====================================*/

.newsletter-content{

    padding:55px 55px 40px;

    text-align:center;

}

.newsletter-logo{

    height:85px;

    margin-bottom:30px;

}

.newsletter-content h2{

    margin:0;

    font-size:64px;

    font-weight:800;

    color:#1d1d1d;

    line-height:1;

}

.newsletter-content h2 span{

    color:#b8862c;

}

.newsletter-content h5{

    margin:18px 0 25px;

    font-size:34px;

    font-family:cursive;

    font-weight:400;

    color:#222;

}

.newsletter-content p{

    max-width:500px;

    margin:0 auto 35px;

    font-size:18px;

    line-height:1.9;

    color:#555;

}

/*====================================
Input
====================================*/

.newsletter-input{

    display:flex;

    align-items:center;

    gap:15px;

    height:60px;

    border:1px solid #ddd;

    border-radius:8px;

    padding:0 20px;

    background:#fff;

    margin-bottom:18px;

}

.newsletter-input i{

    font-size:22px;

    color:#b8862c;

}

.newsletter-input input{

    width:100%;

    border:none;

    outline:none;

    font-size:17px;

    background:transparent;

}

/*====================================
Button
====================================*/

.newsletter-btn{

    width:100%;

    height:60px;

    border:none;

    border-radius:8px;

    background:#b8862c;

    color:#fff;

    font-size:18px;

    font-weight:700;

    margin-top:8px;

    transition:.3s;

}

.newsletter-btn:hover{

    background:#9d7225;

}

/*====================================
Features
====================================*/

.newsletter-features{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    margin-top:45px;

    border-top:1px solid #ddd;

    padding-top:30px;

}

.feature{

    text-align:center;

}

.feature i{

    display:block;

    font-size:32px;

    color:#b8862c;

    margin-bottom:12px;

}

.feature span{

    font-size:15px;

    color:#333;

    font-weight:600;

}

/*====================================
Mobile
====================================*/

@media(max-width:991px){

    .newsletter-image{

        display:none;

    }

    .newsletter-content{

        padding:35px 25px;

    }

    .newsletter-logo{

        height:65px;

    }

    .newsletter-content h2{

        font-size:42px;

    }

    .newsletter-content h5{

        font-size:24px;

    }

    .newsletter-content p{

        font-size:16px;

        margin-bottom:25px;
        display: none;

    }

    .newsletter-features{

        grid-template-columns:repeat(2,1fr);

        row-gap:25px;
        display: none;

    }

}

@media(max-width:576px){

    .newsletter-content{

        padding:30px 18px;

    }

    .newsletter-content h2{

        font-size:34px;

    }

    .newsletter-content h5{

        font-size:20px;

    }

    .newsletter-input{

        height:54px;

    }

    .newsletter-btn{

        height:54px;

        font-size:16px;

    }

}
