/*
licensed under the GPL.
*/
/* 
    Created on : Dec 24, 2022, 12:06:29 PM
    Author     : Ralph Harris at www.rahaprogramming.com
*/
.section-header h2{
    display: inline-flex;
}
h1,h2,h3,h4,h5,h6,p {
    color: var(--color-secondary);
    font-family: var(--font-primary);
}
.bg-img {
    position: relative;
    background-position: top right;
    background-attachment: fixed;
    background-size: cover;
    object-fit: fill;
}
.bg-transparent{
    background: transparent;
}

.typed-cursor{
    visibility:hidden;
}
a.h4:hover{
    color: var(--secondary-hover);
}
a.h4{
    color: var(--secondary);
}
/*--------------------------------------------------------------
# Web Design Section
--------------------------------------------------------------*/
.heading {
    font-size: calc(28px + 24 * (100vw - 768px) / 512);
    font-weight: 600;
}
.text-focused{
    font-size: 1.2rem;
    font-weight: 500;
}
.services-list .service-item {
  position: relative;
}

.services-list .service-item .icon i {
  font-size: 32px;
  line-height: 0;
  margin-right: 20px;
  color: #38618e;
}

.services-list .service-item .title {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.services-list .service-item .title a {
  color: var(--color-secondary);
}

.services-list .service-item .title a:hover {
  color: #38618e;
}

.services-list .service-item .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Services Cards Section
--------------------------------------------------------------*/
.services-cards {
  background: #f7f9fc;
}

.services-cards .card-item {
  border: 1px solid rgba(27, 47, 69, 0.1);
  background: #fff;
  position: relative;
  border-radius: 0;
}

.services-cards .card-item .card-bg {
  min-height: 300px;
  background-size: cover;
  background-repeat: no-repeat;
}

.services-cards .card-item .card-body {
  padding: 30px;
}

.services-cards .card-item h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--color-secondary);
}

.services-cards .card-item p {
  color: var(--color-secondary);
  margin: 0;
}

@media (max-width: 991.98px){
    #marketing .bg-img{
        display: none;
    }
}
