:root {
  --font-primary: 'Eurostile-Reg', sans-serif;
  --font-secondary: 'Eurostile-Med', sans-serif;
  --font-default: 'Eurostile-Bol', sans-serif;
}

:root {
  --color-primary: #b1adeb;
  --color-secondary: #52565e;
}

:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-primary);
  overflow-x: hidden;
  font-size: 16px;
    
  background-color: #fff;
  line-height: 1.55;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-default);
  text-decoration: none;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f5f6f7;
}

.section-header {
  text-align: center;
  padding-bottom: 50px;
}

.section-header h2 {
  font-size: 34px;
  position: relative;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  font-weight: 600; 
}

.section-header p {
  margin: 0 auto 0 auto;
  color: var(--color-secondary);
  font-size: 20px;
  font-family: var(--font-secondary);
}


 @media (min-width: 320px) and (max-width: 960px) {
     
  section {
  padding: 40px 0;
  overflow: hidden;
}
  .section-header {
  text-align: center;
  padding-bottom: 30px;
}
  
  .section-header h2 {
  font-size: 20px;
  position: relative;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  font-weight: 600; 
}
     
  .section-header p {
  margin: 0 auto 0 auto;
  color: var(--color-secondary);
  font-size: 16px;
  font-family: var(--font-secondary);
}
     
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 26px;
  color: var(--color-secondary);
  line-height: 0;
}

.scroll-top:hover {
  background-color: var(--color-primary);
  color: #fff;
}

.scroll-top i:hover {
  font-size: 26px;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--color-primary) transparent var(--color-primary) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  z-index: 997;
  padding: 16px 0;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background-color: #2c2c2c;
}


.header .logo h1 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 0;
  font-family: var(--font-default);
}

.header .logo h1 span {
  color: #ffd800;
font-family: var(--font-default);
}

 @media (min-width: 320px) and (max-width: 960px) {
 .header .logo h1 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 0;
  font-family: var(--font-default);
}   
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-primary);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    font-family: var(--font-secondary);
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
    font-family: var(--font-secondary);
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    text-transform: uppercase;
    transition: 0.3s;
    font-family: var(--font-secondary);
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #52565e;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    position: relative;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    padding-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
section .about {
  padding: 100px 0 80px 0;
  overflow: hidden;
}

.about h2 {
  font-size: 50px;
  font-family: var(--font-primary);
  line-height: 0;
  color: var(--color-primary);
  font-weight: 600;
  padding: 0 0 50px 0;
  z-index: 100; 
}

@media (max-width: 1380px) {
  .about h2 {
    max-width: 80%;
    font-size: 32px;
    padding: 0px 0 20px 10px;
  }
}

.about .our-story {
  padding: 40px;
  background-color: #f5f6f7;
  font-size: 18px;
  color: #838893;
}

@media (min-width: 991px) {
  .about .our-story {
    padding-right: 35%;
  }
}

.about .our-story h3 {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

.about .our-story p:last-child {
  margin-bottom: 0;
  font-family: var(--font-primary);
}

.about ul {
  list-style: none;
  padding: 0;
  font-size: 16px;
}

.about ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  margin-right: 4px;
  color: var(--color-primary);
  margin-top: 4px;
}

.about .watch-video i {
  font-size: 32px;
  transition: 0.3s;
  color: var(--color-primary);
  margin-top: 2px;
}

.about .watch-video a {
  color: var(--color-primary);
  margin-left: 8px;
  transition: 0.3s;
  font-size: 22px;
  font-family: var(--font-secondary);
}

.about .watch-video:hover a {
  color: var(--color-primary);
  text-decoration: underline;
}

.about .about-img {
  min-height: 600px;
  background-size: cover;
  background-position: center;
}

@media (min-width: 992px) {
  .about .about-img {
    position: absolute;
    top: 0;
    right: 0;
  }
}


@media (min-width: 320px) and (max-width: 960px) {
  .about .our-story h3 {
  font-size: 32px;
  margin-bottom: 10px;
}  
   .about .about-img {
  display: none;
} 
  .about .our-story {
  padding: 30px;
  font-size: 16px;
}
}


/*--------------------------------------------------------------
# Description
--------------------------------------------------------------*/
.description {
  background-color: #f5f6f7;
}

.description h4 {
  color: var(--color-secondary);
  font-size: 28px;
  font-family: var(--font-secondary);
}


.description .img-bg {
  background-size: cover;
  background-position: center center;
  min-height: 400px;
}

.description li i {
  transition: 0.3s;
}

.description .text-about {
  padding-top: 40px;
  background-color: #f5f6f7;
  font-size: 20px;
  color: #838893;
}

.description .text-about span {
  font-size: 24px;
  color: var(--color-primary);
  margin-left: 10px;
  font-family: var(--font-primary);
  font-weight: 600;
}


.description .text-about p {
  font-size: 18px;
  color: #838893;
  font-family: var(--font-primary);
}

.description ul {
  list-style: none;
  padding: 0;
}

.description ul li {
  padding: 0;
  display: flex;
  align-items: center;
  font-size: 20px;
  font-family: var(--font-primary);
  font-weight: 500; 
}

.description ul i {
  font-size: 22px;
  margin-right: 4px;
  color: var(--color-primary);
  margin-top: 4px;
  font-family: var(--font-secondary);
}

@media (min-width: 320px) and (max-width: 960px) {
 
 .description {
  margin-bottom: 0;
  padding-bottom: 0;
}  

    
.description h4 {
  font-size: 22px;
  padding: 20px 20px;
}  
   
.description ul li {
  font-size: 16px;
}  
    
 .description .text-about {
  padding: 0 20px;
}  
.description .text-about span {
  font-size: 18px;
  margin-left: 4px;
}
    
.description ul i {
font-size: 16px;
margin-right: 2px;
}
.description .text-about p {
font-size: 16px;
}
}

/*--------------------------------------------------------------
# Description-2
--------------------------------------------------------------*/
.description-2 {
  background-color: #f5f6f7;
}


.description-2 .img-bg {
  background-size: cover;
  background-position: center center;
  min-height: 400px;
}

.description-2 li i {
  transition: 0.3s;
}

.description-2 .text-about {
  padding-top: 40px;
  background-color: #f5f6f7;
  font-size: 20px;
  color: #838893;
}

.description-2 .text-about span {
  font-size: 26px;
  color: var(--color-primary);
  margin-left: 10px;
  font-family: var(--font-primary);
  font-weight: 600;
}

.description-2 .text-about p {
  font-size: 18px;
  color: #838893;
  font-family: var(--font-primary);
}

.description-2 ul {
  list-style: none;
  padding: 0;
}

.description-2 ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
  font-size: 20px;
  font-family: var(--font-primary);
  font-weight: 500;
}

.description-2 ul i {
  font-size: 22px;
  margin-right: 4px;
  color: var(--color-primary);
  margin-top: 4px;
  font-family: var(--font-secondary);
}

@media (min-width: 320px) and (max-width: 960px) {
 
  #description-2  {
  background-color: #f5f6f7;
  margin-top: 0px;
}
    
 .description-2 .text-about {
  padding: 0px 20px;
}

.description-2 .text-about span {
  font-size: 18px;
  margin-left: 4px;
} 
  .description-2 ul i {
  font-size: 16px;
  margin-right: 2px;
}
.description-2 .text-about p {
  font-size: 16px;
}
}



/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  background-color: #fff;
}

.features .service-item {
  padding: 40px;
  background-color: #f5f6f7;
  height: 100%;
}

.features .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 20px;
}

.features .service-item .icon i {
  color: var(--color-secondary);
  font-size: 40px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
  line-height: 1.8;
}

.features .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: var(--color-primary);
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -15px;
  transition: 0.3s;
}

.features .service-item h3 {
  color: var(--color-secondary);
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid var(--color-primary);
  transition: 0.3s;
  font-family: var(--font-primary);
  font-weight: 600;
}

.features .service-item p {
  font-size: 18px;
  color: #838893;
  font-family: var(--font-primary);
}

.features .service-item:hover .icon:before {
  background: #ffd800;
}

.features .service-item:hover h3 {
  border-color: #ffd800;
}

@media (min-width: 320px) and (max-width: 960px) {
  
.features .service-item h3 {
  font-size: 20px;
}

.features .service-item p {
  font-size: 16px;
}  
  .features .service-item {
  padding: 20px;
}   
}

/*--------------------------------------------------------------
# Specifications
--------------------------------------------------------------*/
.specifications .nav-tabs {
  border: 0;
}

.specifications .nav-link {
  padding: 15px 0;
  transition: 0.3s;
  color: var(--color-secondary);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 4px solid #fff
}

.specifications .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.specifications .nav-link h4 {
  font-size: 18px;
  margin: 0;
  font-family: var(--font-secondary);
}

.specifications .nav-link:hover {
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.specifications .nav-link.active {
  color: var(--color-secondary);
  border-color: var(--color-secondary);
  background-color: transparent;
}

.specifications .tab-content {
  margin-top: 30px;
}

.specifications .tab-pane h2 {
  font-size: 30px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  font-weight: 600;
}

.specifications .tab-pane h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--color-primary);
  left: 0;
  bottom: 0;
}

.specifications .tab-content .tab-pane table {
   height: 100%;
}

.specifications .tab-pane table th {
   padding: 10px 20px 10px 20px;
   color: var(--color-secondary);
   font-size: 17px;
   font-family: var(--font-secondary);
}

.specifications .tab-pane table td {
   color: #838893;
   font-size: 17px;
   font-family: var(--font-primary);
}

.specifications-7-bg {
  width: 100%;
  background: url("../img/trimble-x7-lending/specifications-bg.webp") top center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

.specifications-9-bg {
  width: 100%;
  background: url("../img/trimble-x9-lending/specifications-bg.webp") top center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

.specifications-x12-bg {
  width: 100%;
  background: url("../img/trimble-x12-lending/specifications-bg.webp") top center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

.specifications-12-bg {
  width: 100%;
  background: url("../img/trimble-sx12-lending/specifications-bg.webp") top center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}


@media (min-width: 320px) and (max-width: 960px) {
    
    .specifications {
  background-color: #f5f6f7;
}
  
    .specifications .tab-pane h2 {
  font-size: 20px;
}
    
  .specifications .nav-link h4 {
    font-size: 16px;
  }
    
   .specifications .tab-pane table {
   height: 100%;
}
    
   .specifications .tab-pane table th {
   padding: 5px 10px 5px 10px;
   font-size: 14px;
}

   .specifications .tab-pane table td {
   font-size: 14px;
}
  .specifications-7-bg {
  background-color: #f5f6f7; 
}

.specifications-9-bg {
  background-color: #f5f6f7;
}

.specifications-12-bg {
  background-color: #f5f6f7;
}
    
.specifications .tab-content table {
height: 100%;
display: flex;
}
}

/*--------------------------------------------------------------
# Equipment
--------------------------------------------------------------*/

.equipment .nav-pills li .nav-link {
  cursor: pointer;
  display: inline-block;
  font-size: 18px;
  margin: 10px 10px;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  color: var(--color-secondary);
  border-radius: 30px;
  border: 1px solid var(--color-secondary); 
}

.equipment .nav-pills li .nav-link:hover {
  color: #fff;
  background-color: var(--color-primary);
  border-radius: 30px;
    border: 1px solid var(--color-primary); 
}

.equipment .nav-pills li .nav-link:active {
  color: #fff;
  background-color: var(--color-primary);
  border-radius: 30px;
    border: 1px solid var(--color-primary); 
}

.equipment .nav-pills li .nav-link:focus {
  color: #fff;
  background-color: var(--color-primary);
  border-radius: 30px;
    border: 1px solid var(--color-primary); 
}

.equipment .nav-pills li .active {
  color: #fff;
  background-color: var(--color-primary);
  border-radius: 30px;
  border: 1px solid var(--color-primary);
}

.equipment .portfolio-content {
  position: relative;
  overflow: hidden;
}

.equipment .portfolio-content img {
  transition: 0.3s;
}

.equipment .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.equipment .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  color: #fff;
  display: inline-block;
  background-color: var(--color-primary);
  font-family: var(--font-secondary);
}

.equipment .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.equipment .portfolio-content .portfolio-info .preview-link {
  position: absolute;
  left: calc(50% - 10px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.equipment .portfolio-content .portfolio-info .preview-link:hover {
  color: var(--color-primary);
}

.equipment .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.equipment .portfolio-content:hover img {
  transform: scale(1.1);
}

.equipment .tab-content .portfolio-item {
    padding: 10px;
}

@media (min-width: 320px) and (max-width: 960px) {
    
.projects .portfolio-flters li {
    font-size: 14px;
    margin: 0 5px;
  }
   
.equipment .nav-pills li .nav-link {
  font-size: 16px;
}
   .equipment .nav-pills li .nav-link:hover {
  color: #fff;
  background-color: var(--color-primary);
}

.equipment .nav-pills li .nav-link:active {
  color: #fff;
  background-color: var(--color-primary);   
}

.equipment .nav-pills li .nav-link:focus {
  color: #fff;
  background-color: var(--color-primary);   
}

.equipment .nav-pills li .active {
  color: #fff;
  background-color: var(--color-primary);   
} 
}

/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/
.products .products-wrap {
  padding-left: 50px;
}

.products .products-carousel,
.products .products-slider {
  overflow: hidden;
}

.products .products-item {
  box-sizing: content-box;
  padding: 40px 30px 40px 160px;
  margin: 0 15px 30px 0;
  min-height: 200px;
  box-shadow: 0px 2px 20px rgba(82, 86, 94, 0.1);
  position: relative;
  background: #fff;
  color: var(--color-secondary);
}

.products .products-item .products-img {
  width: 200px;
  position: absolute;
  left: -60px;
}

.products .products-item h3 {
  font-size: 24px;
  margin: 10px 0 5px 0;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}

.products .products-item h4 {
  font-size: 16px;
  color: #838893;
  margin: 0;
  font-family: var(--font-primary);
}

.products .products-item a {
  color: #fff;
  background-color: var(--color-primary);
  font-family: var(--font-secondary);
  font-size: 16px;
  padding: 5px 16px;
}

.products .products-item a:hover {
  background-color: var(--color-secondary);
}

.products .products-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.products .products-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.products .products-item p {
  margin: 15px auto 15px auto;
  color: var(--color-secondary);
  font-size: 17px;
  font-family: var(--font-primary);
}

.products .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.products .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d5d7da;
  opacity: 1;
}

.products .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}


@media (min-width: 320px) and (max-width: 960px) {
    
  .products .products-wrap {
    padding-left: 0;
  }

  .products .products-carousel,
  .products .products-slider {
    overflow: hidden;
  }

  .products .products-item {
    padding: 30px;
    margin: 15px;
  }

  .products .products-item .products-img {
    position: static;
    left: auto;
  }
    
  .products .products-item a {
  font-size: 14px;
  padding: 5px 16px;
}
  .products .products-item p {
  font-size: 16px;
}
 .products .products-item h4 {
  font-size: 14px;
}
    
  .products .products-item a {
  width: 100%;
  padding: 10px 64px;
  font-size: 16px;
}  
}


/*--------------------------------------------------------------
# Mail
--------------------------------------------------------------*/

.mail {
  background-color: #fff;
}

.mail .container h3 {
  font-size: 38px;
  color: var(--color-secondary);
  margin-bottom: 25px;
  padding-bottom: 25px;
  position: relative;
  font-family: var(--font-secondary);
  font-weight: 600;
}

.mail .container h5 {
  font-size: 24px;
  color: #838893; 
  font-family: var(--font-primary);
  font-weight: 600;
  margin-left: 20px; 
}

.mail .container p {
  font-size: 16px;
  color: #838893;
  font-family: var(--font-primary);
}

.mail .container .card .card-body .php-email-form h4 {
  color: var(--color-secondary);
  margin-bottom: 20px;
font-size: 16px;
}

label.error {
  display: none !important;
}

form input.error{
  border-color:red;
}

.mail .container .card .card-body .php-email-form span {
    font-size: 14px;
    color: var(--color-secondary);
    font-family: var(--font-primary);
}

.mail .container .card .card-body .php-email-form {
    padding: 0 20px;
}

.mail .container .card-form {
    height: 100%;
    margin: 0px;
    align-content: center;
    text-align: center;
    background-color: #f5f6f7;
    border-top: 4px solid var(--color-primary);
}

.mail .php-email-form input,
.mail .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 16px;
  border-radius: 0;
  font-family: var(--font-secondary);
  line-height: 1.3em;
  color: #838893;
}

.mail .php-email-form input:focus,
.mail .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.mail form button[type=button] {
  background-color: #b1adeb;
  border: 0;
  padding: 8px 50px;
  color: #fff;
  transition: 0.4s;
  font-family: var(--font-secondary);
  font-size: 16px;
  margin-top: 20px;
}

.mail form button[type=button]:hover {
  background-color: #52565e;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

 @media (min-width: 320px) and (max-width: 960px) {
  
   .mail {
   background-color: #fff;
   padding: 30px 0;
   overflow: hidden;
}

.mail .container h3 {
  font-size: 22px;
  margin-left: 20px;
}

 .mail .container h5 {
  font-size: 18px;
}
     
.mail .card .card-body .php-email-form h4 {
  font-size: 16px;
}

.mail .container p {
  font-size: 14px;
  margin-left: 20px;
}
 
   .mail .container .card .card-body .php-email-form span {
    font-size: 12px;
}
    .mail .container .card .card-body .php-email-form {
    padding: 10px 0px;
} 

.mail .php-email-form textarea {
  height: 250px;
}
     
.mail .php-email-form input {
  height: 40px;
  padding: 20px 10px; 
}

.mail .container .card-form {
height: 100%;
}

  .mail form button[type=button] {
  width: 100%;
  font-size: 18px;
  padding: 10px 64px;
}
}

/*--------------------------------------------------------------
# Price
--------------------------------------------------------------*/

.price .about-img {
  min-height: 520px;
  background-size: cover;
  background-position: center;
}

.price .card-body {
  padding: 0;
  margin: 0;
}

.price .card-body ul {
  font-size: 18px;
  color: #838893;
  list-style: none;
  padding: 0px 0px 0px 40px;
  margin: 20px 0 20px 0;
  font-family: var(--font-primary);
}

.price h5 {
  font-size: 20px;
  background-color: var(--color-primary);
  color: #fff;
  padding: 10px 10px 10px 40px;
  margin: 0 0 10px 0;
  font-family: var(--font-primary);  
}

.price h1 {
  color: var(--color-secondary);
  margin-top: 50px;
  padding: 0px 0px 0px 40px;
  font-size: 26px;
  font-family: var(--font-secondary);
}

.price .post-footer i {
  color: var(--color-primary);
  font-size: 20px;
}

.price .post-footer span {
  color: var(--color-primary);
  font-size: 20px;
  font-family: var(--font-secondary);
}


.price .post-footer .post-button {
  right: 30px;
  bottom: 50px;
  font-size: 18px;
  margin: 10px 0px;
  padding: 10px 64px;
  color: #fff;
  background-color: var(--color-secondary);
  font-family: var(--font-secondary);
  width: 200px;
}

.price .post-footer {
  padding: 0px 0px 0px 40px;
  margin-top: 30px; 
}


.price .post-footer h4 {
  font-size: 30px;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}

.price .post-footer hr {
  color: var(--color-secondary);
  margin-bottom: 20px;
  margin-right: 40px;
}

.price .card:hover .post-button {
  color: #fff;
  background-color: var(--color-primary);
}

.price .card {
  background-color: #fff;
}

.price-7-bg {
  width: 100%;
  background: url("../img/trimble-x7-lending/price-bg.webp") top center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

.price-9-bg {
  width: 100%;
  background: url("../img/trimble-x9-lending/price-bg.webp") top center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}


.price-x12-bg {
  width: 100%;
  background: url("../img/trimble-x12-lending/price-bg.webp") top center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

@media (min-width: 320px) and (max-width: 960px) {
     
.price .about-img {
  min-height: 360px;
  background-size: cover;
  background-position: center;
}
   .price h5 {
  font-size: 16px;
  padding: 10px 0px 10px 30px;
  margin: 0 0 10px 0;
}
 .price h1 {
  margin-top: 30px;
  padding: 0px 30px 0px 30px;
  font-size: 18px;
}
  .price .card-body ul {
  font-size: 14px;
  padding: 0px 0px 0px 30px;
  margin: 20px 0 20px 0;
}
  .price .post-footer {
  padding: 0px 0px 0px 30px;
  margin-top: 20px; 
}

.price .post-footer h4 {
  font-size: 22px;
}

.price .post-footer i {
  font-size: 12px;
}

.price .post-footer span {
  font-size: 12px;
}
    
.price .post-footer .post-button {
  right: 30px;
  bottom: 50px;
  font-size: 18px;
  padding: 10px 64px;
  margin: 10px 0px 30px 0;
  width: 88%;
} 


.price  {
  background-color: #fff;
}

.price-7-bg {
  background-color: #fff;
}

.price-9-bg {
  background-color: #fff;
}

}

/*--------------------------------------------------------------
# Price-sx12
--------------------------------------------------------------*/
.price-sx12 {
  width: 100%;
  background: url("../img/trimble-sx12-lending/price-bg.webp") top center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

.price-sx12 .price-sx12-list .price-sx12-item {
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
  background-color: #fff;
  padding: 30px 0;
}

.price-sx12 .price-sx12-list .price-sx12-img img {
  transition: 0.5s;
}

.price-sx12 .price-sx12-list .price-sx12-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 16px;
  padding: 6px 12px;
}

.price-sx12 .price-sx12-list .price-sx12-content {
  padding: 30px; 
}

.price-sx12 .price-sx12-list .price-sx12-content li {
  list-style-type: none;
}

.price-sx12 .price-sx12-list .price-sx12-title {
  font-size: 24px;
  color: var(--color-secondary);
  transition: 0.3s;
  margin-bottom: 15px;
  font-family: var(--font-primary);
  font-weight: 600;
}

.price-sx12 .price-sx12-list hr {
  color: var(--color-secondary);
  margin-bottom: 20px;
}

.price-sx12 .price-sx12-content h4 {
  font-size: 26px;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  padding-top: 8px;
}

.price-sx12 .price-sx12-content .post-button {
  right: 30px;
  bottom: 50px;
  font-size: 18px;
  margin: 10px 0px;
  color: #fff;
  background-color: var(--color-secondary);
  font-family: var(--font-secondary);
  width: 200px;
}

.price-sx12 .price-sx12-item:hover .post-button {
  color: #fff;
  background-color: var(--color-primary);
}

.price-sx12 .price-sx12-footer i {
  color: var(--color-primary);
  font-size: 18px;
}

.price-sx12 .price-sx12-footer span {
  color: var(--color-primary);
  font-family: var(--font-secondary);
  font-size: 18px;
}

.price-sx12 .price-sx12-list .price-sx12-item:hover .price-sx12-img img {
  transform: scale(1.1);
}

@media (min-width: 320px) and (max-width: 960px) {
  
#price-sx12 .section-header .p {
padding: 0 30px 0 30px;    
}
    
.price-sx12 .price-sx12-list .price-sx12-title {
font-size: 20px;
}
    
.price-sx12 .price-sx12-content .post-button {
  right: 30px;
  bottom: 50px;
  font-size: 18px;
  padding: 10px 64px;
  margin: 10px 0px 10px 0;
  width: 100%;
}
  .price-sx12 .price-sx12-footer i {
  font-size: 12px;
}

.price-sx12 .price-sx12-footer span {
  font-size: 14px;
}
      .price-sx12 {
  background-color: #fff;
}

.price-sx12-bg {
  background-color: #fff;
} 
}

/*--------------------------------------------------------------
# Documentation
--------------------------------------------------------------*/


.documentation .card {
  background-color: #fff;
}

.documentation .card-body {
  font-size: 18px;
  margin-bottom: 8px;
  padding-top: 40px;
  border-top: 4px solid var(--color-primary);
  color: var(--color-secondary);
}

.documentation .card-body i {
  font-size: 32px;
  color: var(--color-secondary);
}

.documentation .card-title {
  font-size: 18px;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  font-weight: 600;
}

.documentation .card-text {
  font-size: 16px;
  color: var(--color-secondary);
  font-family: var(--font-primary);
}

.documentation .card .btn-light {
  color: #fff;
  background-color: var(--color-secondary);
  padding: 4px 20px;
  font-family: var(--font-secondary);
}

.documentation .card:hover .btn-light {
  color: #fff;
  background-color: var(--color-primary);
}

.documentation-7-bg {
  width: 100%;
  background: url("../img/trimble-x7-lending/documentation-bg.webp") top center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

.documentation-9-bg {
  width: 100%;
  background: url("../img/trimble-x9-lending/documentation-bg.webp") top center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

.documentation-x12-bg {
  width: 100%;
  background: url("../img/trimble-x12-lending/documentation-bg.webp") top center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

.documentation-12-bg {
  width: 100%;
  background: url("../img/trimble-sx12-lending/documentation-bg.webp") top center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

@media (min-width: 320px) and (max-width: 960px) {
  
  .documentation {
  background-color: #f5f6f7;
}
  .documentation-7-bg {
  background-color: #f5f6f7;
}

.documentation-9-bg {
  background-color: #f5f6f7;
}

.documentation-12-bg {
  background-color: #f5f6f7;
}  
  .documentation .card-title {
  font-size: 20px;
}
   .documentation .card-body i {
  font-size: 36px;
}  
    .documentation .card .btn-light {
  width: 100%;
  font-size: 18px;
  padding: 10px 64px;
}
    
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: #fff;
  background-color: #2c2c2c;
  font-size: 14px;
  padding: 50px 0 30px 0;
  position: relative;
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .footer-content .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
}

.footer .footer-content .footer-info h4 {
  color: var(--color-primary);
  font-size: 20px; 
}

.footer .footer-content .footer-info i {
margin-right: 10px; 
}

.footer .footer-content .footer-info p,
.footer .footer-content .footer-dealer p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: #fff;
}

.footer .footer-content .footer-dealer h5 {
  color: var(--color-primary);
  font-size: 18px;
}

.footer .footer-content .footer-dealer .social-links a {
  font-size: 18px;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  margin-right: 8px;
  border-radius: 50px;
  width: 36px;
  height: 36px;
  transition: 0.3s; 
}

.footer .footer-content .footer-dealer .social-links a:hover {
  background-color: var(--color-primary);
  text-decoration: none;
}

.footer .footer-content h4 {
  font-size: 16px;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-content .footer-links {
  margin-bottom: 30px;
}

.footer .footer-content .footer-links i {
  margin-right: 10px;
    
}

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

.footer .footer-content .footer-links ul li {
  padding: 8px 0;
}

.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-content .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-legal .copyright {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #797979;
}

 @media (min-width: 320px) and (max-width: 960px) {
  
  .footer {
  color: #fff;
  background-color: #2c2c2c;
  font-size: 14px;
  padding: 30px 0 30px 0;
  position: relative;
}

     
  .footer .footer-content .footer-info h3 {
  font-size: 20px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
}

.footer .footer-content .footer-dealer h5 {
  color: var(--color-primary);
  font-size: 16px;
}
     
.footer .footer-content .footer-info h4 {
  color: var(--color-primary);
  font-size: 18px; 
}

.footer .footer-content .footer-info i {
margin-right: 10px; 
}    
}

/*--------------------------------------------------------------
# Products pagination
--------------------------------------------------------------*/

.products-details .products-pagination {
  margin-top: 50px;
  color: #838893;
  font-family: var(--font-secondary); 
}

.products-details .products-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.products-details .products-pagination li {
  margin: 0 5px;
  transition: 0.3s;
    
}

.products-details .products-pagination li a {
  color: var(--color-secondary);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-details .products-pagination li.active,
.products-details .products-pagination li:hover {
  background: var(--color-primary);
  color: #fff;
}

.products-details .products-pagination li.active a,
.products-details .products-pagination li:hover a {
  color: #fff;
}

/*--------------------------------------------------------------
# Products details
--------------------------------------------------------------*/

.products-details {
  background-color: #fff;
}

.products-details .products-details-list .products-details-item {
  transition: 0.3s;
  background-color: #f5f6f7;
  height: 100%;
  margin-top: 20px;
}

.products-details .products-details-list .post-img img {
  transition: 0.5s;
}

.products-details .products-details-list .products-details-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 16px;
  padding: 6px 12px;
}

.products-details .products-details-list .products-details-content {
  padding: 30px;
}

.products-details .products-details-list .products-details-title {
  font-size: 26px;
  color: var(--color-secondary);
  transition: 0.3s;
  margin-bottom: 15px;
  font-family: var(--font-secondary);
}


.products-details .products-details-content p {
 margin-top: 10px;
 font-size: 18px;
 font-family: var(--font-primary);
 color: #838893;
}

.products-details .products-details-content hr {
  color: #838893;
  margin-bottom: 20px;
}

.products-details .products-details-content .readmore {
  display: flex;
  align-items: center;
  transition: 0.3s;
  color: #838893;
  font-size: 18px;
 font-family: var(--font-secondary);
}

.products-details .products-details-content .readmore i {
  margin-left: 6px;
  font-size: 18px;
  font-family: var(--font-secondary);
}


.products-details .products-details-list .products-details-item:hover .post-img img {
  transform: scale(1.1);
}

 @media (min-width: 320px) and (max-width: 960px) {
     
 .products-details .products-details-list .products-details-title {
  font-size: 22px;
}
    
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact {
   background-color: #fff;
   padding: 70px 0;
   overflow: hidden;
}

.contact .container .section-header h3 {
  font-size: 26px; 
  color: var(--color-primary);
  margin-top: 20px;
  font-family: var(--font-secondary);
}

.contact .container .card .card-body {
padding: 20px 10px 8px 20px;
}

.contact .container .card h6 {
  color: var(--color-secondary);
  font-size: 18px;
}

.contact .container .card p {
  font-size: 16px;
  color: #838893;
  font-family: var(--font-primary);
  padding: 0 0 0 21px;
}

.contact .container .card i {
margin-right: 5px;
font-size: 15px;
color: var(--color-secondary);
font-family: var(--font-secondary);
}

.contact .container .card span {
font-size: 16px;
color: #838893;
font-family: var(--font-primary);
margin: 0 5px;
}

.contact .container .card .hr-4 {
margin: 34px 0 18px 0;
}

.contact .container .card a {
font-family: var(--font-secondary);
color: var(--color-primary);
text-decoration: none;
}

.contact .container .card a:hover {
font-family: var(--font-secondary);
color: var(--color-primary);
text-decoration: underline;
}
 
#pills-tab .nav-link {
   border-radius: 0px;
   color: #fff;
   background-color: #52565e;
   font-size: 14px;
   justify-content: center;
   font-family: var(--font-secondary);
   margin: 0 10px 10px 0px; 
}

#pills-tab .active,
#pills-tab .nav-link:hover,
#pills-tab .active:hover,
#pills-tab button:focus,
#pills-tab .active:focus,
#pills-tab button:active,
#pills-tab .active:active {
   color: #fff;
   background-color: #b1adeb;
} 

/*--------------------------------------------------------------
# Mail-contact
--------------------------------------------------------------*/

.contact .container .card .card-body .php-email-form h4 {
  color: var(--color-secondary);
  margin-bottom: 20px;
  font-size: 22px;
}

label.error {
  display: none !important;
}

form input.error{
  border-color:red;
}

.contact .container .card .card-body .php-email-form span {
    font-size: 12px;
    color: var(--color-secondary);
    font-family: var(--font-primary);
}

.contact .container .card .card-body .php-email-form {
    padding: 0 20px 0 10px;
}

.contact .container .card-form {
    height: 100%;
    margin: 0px;
    align-content: center;
    text-align: center;
    background-color: #f5f6f7;
    border-top: 4px solid var(--color-primary);
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 16px;
  border-radius: 0;
  font-family: var(--font-primary);
  line-height: 1.3em;
  color: #838893;
}

.contact .php-email-form input {
  height: 40px;
}

.contact .php-email-form textarea {
  height: 217px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.contact form button[type=button] {
  background-color: var(--color-primary);
  border: 0;
  padding: 8px 30px;
  color: #fff;
  transition: 0.4s;
  font-family: var(--font-secondary);
  font-size: 16px;
  margin-top: 20px;
}

.contact form button[type=button]:hover {
  background-color: var(--color-secondary);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

 @media (min-width: 320px) and (max-width: 960px) {
  
.contact {
   background-color: #fff;
   padding: 30px 0;
   overflow: hidden;
}
.contact .container h3 {
  font-size: 22px;
  margin-left: 20px;
}
 .contact .container h6 {
  font-size: 18px;
}    
.contact .card .card-body .php-email-form h4 {
  font-size: 16px;
}
.contact .container p {
  font-size: 16px;
  margin-left: 0;
}
.contact .container .section-header p {
  padding-left: 20px;
  padding-right: 20px;  
}
.contact .container .card .card-body .php-email-form span {
    font-size: 12px;
}
.contact .container .card .card-body .php-email-form {
    padding: 0 10px 0 4px;
}
.contact.php-email-form textarea {
  height: 350px;
}    
.contact .php-email-form input {
  height: 40px;
  padding: 20px 10px; 
}
.contact .container .card-form {
height: 100%;
}
.contact form button[type=button] {
  width: 100%;
  font-size: 18px;
  padding: 10px 64px;
}
#pills-tab .nav-link {
   font-size: 16px;
}
}



/*--------------------------------------------------------------
# Post-details
--------------------------------------------------------------*/
.breadcrumb {
  font-size: 16px;
  justify-content: center;
  font-family: var(--font-secondary);
}

.breadcrumb .active {
  color: var(--color-secondary);
  justify-content: center;
}

.breadcrumb a {
  color: #838893;
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

.post-details .post {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.post-details .post .carousel slide .carousel-inner {
  margin: 0px;
  padding: 0px;
  overflow: hidden;
  width: 100%;
}

.post-details .post .content {
  margin-top: 20px;
  text-align: justify;
}

.post-details h3 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 30px;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}

.post-details .post .content p {
  font-size: 18px;
  color: #838893;
  font-family: var(--font-primary);
}

.post-details .post .content table {
    font-size: 16px;
}

.post-details .post .content table th {
    vertical-align: middle;
    color: var(--color-secondary);
    text-align: left;
    font-family: var(--font-secondary);
}

.post-details .post .content table td {
    color: #838893;
    vertical-align: middle;
    font-family: var(--font-primary);
}

.post-details .post .content blockquote {
  overflow: hidden;
  background-color: rgba(82, 86, 94, 0.06);
  padding: 30px 60px;
  position: relative;
  text-align:justify;
  margin: 20px 0;
}

.post-details .post .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-primary);
  margin-top: 20px;
  margin-bottom: 20px;
}


@media (min-width: 320px) and (max-width: 960px) {
    
  .breadcrumb {
  font-size: 14px;
}  
  .post-details .post {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 20px;
}
    
  .post-details .post .content blockquote {
  padding: 4px 20px;
  margin: 4px 0;
  text-align: left;
}

.post-details .blog-details .content blockquote p {
  line-height: 1.4;
  font-size: 10px;
}

.post-details .post .content blockquote:after {
  margin-top: 10px;
  margin-bottom: 10px;
}  
  .post-details .post .content p {
  font-size: 14px;
}
   .post-details .post .content table {
    font-size: 14px;
}

    .post-details .post .content table td {
    text-align: left;
} 
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.post-details .sidebar {
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.post-details .sidebar .sidebar-title {
  font-size: 22px;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}

.post-details .sidebar h1 {
  font-size: 24px;
  color: var(--color-primary);
  margin-bottom: 14px;
  font-family: var(--font-secondary);
}

.post-details .sidebar .post-button {
  font-size: 18px;
  padding: 8px 80px 8px 80px;
  margin: 0px;
  color: #fff;
  background-color: var(--color-primary);
  width: 100%;
  margin-bottom: 20px;
  font-family: var(--font-secondary);
}

.post-details .sidebar .post-button:hover {
  color: #fff;
  background-color: #a4a0df;
  opacity: 5; 
}

.post-details .sidebar .fa,
.post-details .sidebar span {
  color: var(--color-primary);
  font-size: 18px;
}

.post-details .sidebar span {
  font-family: var(--font-secondary);
}

.post-details .sidebar .fa {
  margin-right: 4px;
}

.post-details .sidebar .sidebar-item+.sidebar-item {
  margin-top: 20px;
}

.post-details .sidebar .categories p {
  font-size: 16px;
  color: #838893;
  font-family: var(--font-secondary);
}

.post-details .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.post-details .sidebar .categories ul li {
  padding-top: 5px;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}

.post-details .sidebar .categories ul a {
  color: #838893;
  transition: 0.3s;
  font-family: var(--color-primary);
}

.post-details .sidebar .categories ul a:hover {
  color: var(--color-secondary);
  text-decoration: underline;
  font-family: var(--font-secondary);
}

.post-details .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(54, 77, 89, 0.4);
  font-size: 14px;
}

.sidebar hr {
  color: #838893;
  margin: 40px 0; 
}

.sidebar .sidebar-item p {
  color: var(--color-secondary);
  margin-top: 10px;
}

.sidebar .sidebar-item i {
   font-size: 28px;
    margin-right: 10px;
    color: var(--color-secondary);
}

.sidebar .sidebar-item a {
  color: var(--color-secondary);
  text-decoration: none;
}

.sidebar .sidebar-item a:hover {
  color: var(--color-primary);
  text-decoration: none;
}


.post-details .sidebar .recent-posts .post-item {
  display: flex;
}

.post-details .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}


@media (min-width: 320px) and (max-width: 960px) {
 
  
 .post-details .sidebar {
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
    .post-details .sidebar h1 {
  font-size: 22px;
  margin-bottom: 14px;
}

.post-details .sidebar .fa,
.post-details .sidebar span {
  font-size: 14px;
}

.post-details .sidebar .fa {
  margin-right: 4px;
}

.sidebar hr {
  color: #838893;
  margin: 20px 0; 
}

.post-details .sidebar .categories ul li {
  font-size: 14px;
}
 
.sidebar .sidebar-item p {
  font-size: 16px;
}
 
.sidebar .sidebar-item i {
font-size: 24px;
}

.sidebar .sidebar-item a {
 font-size: 14px;
}   
}


