body {
    font: 16px/1.5 'Poppins', sans-serif;
    color: #3B3B3B;
    font-weight: 400;
    background: #fff;
}

h1,
h2,
h3, 
h4, 
h5 {
    font-weight: 600;
}

h1 {
    font-size: 38px;
    line-height: 1.25;
    margin: 0 0 30px; 
}

h2 {
    font-size: 35px;
    line-height: 1.4;
    margin-bottom: 30px
}

h3 {
    font-size: 30px;
    line-height: 1.4;
    margin-bottom: 20px
}

h4 {
    font-size: 25px;
    line-height: 1.4;
    margin-bottom: 20px
}

h5 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 20px
}

p {
    margin: 0 0 30px;
}

ul, ol {
    margin: 0;
}

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

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

a:hover,
a:focus,
a:active {
    text-decoration: none;
}

.text-component ul li,
.service-short-text ul li {
    position: relative;
    padding-left: 45px;
}

.text-component ul li:before,
.service-short-text ul li:before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    background-color: #1E7BD3; 
    border-radius: 3px;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
}

.text-component ul li:after,
.service-short-text ul li:after {
    content: 'L';
    display: block;
    width: 30px;
    height: 30px;
    font-size: 16px;
    color: #fff;
    position: absolute;
    left: -11px;
    top: -4px;
    font-weight: 500;
    transform: scaleX(-1) rotate(-35deg);
}

.btn {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    text-decoration: none;
    border-radius: 200px;
    padding: 15px 30px;
    min-width: 200px;
    text-align: center;
    display: inline-block;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: var(--primary-color);
    border: 1px solid  var(--primary-color);
    color: #fff;;
    position: relative;
    text-align: center;
}

.section--primary .btn {
    border-color: #fff;
}

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

.btn.secondary {
    background: #fff;
    color: var(--primary-color);
}

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

.btn.cta-call {
    padding-left: 60px;
    text-align: left;
}

.btn.cta-call:before,
.btn.cta-call.secondary:hover:before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    background: #fff url(../images/icons/phone-color.png) no-repeat 50% 50%;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
}

.btn.secondary:before,
.btn.cta-call:hover:before  {
    background: var(--primary-color) url(../images/icons/phone-white.png) no-repeat 50% 50%;
}

.arrow {
    background: var(--primary-color);
    height: 2px;
    width: 11px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-top: -3px;
}

.arrow:before,
.arrow:after {
    content: "";
    background: var(--primary-color);
    position: absolute;
    height: 2px;
    width: 7px;
}

.arrow:before {
    right: -2px;
    bottom: -2px;
    transform: rotate(-45deg);
}

.arrow:after {
    right: -2px;
    top: -2px;
    transform: rotate(45deg);
}

.breadcrumbs {
    font-size: 14px;
    display: flex;
    gap: 5px;
    color: #5D5D5D;
    padding: 20px 0;
    background-color: #FFF;
    position: relative
}

.breadcrumbs:before {
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    top: 0; 
    background-color: #FFF;
    width: 100%;
    left: -100%;
}

.hero-section.no-background-image .breadcrumbs:after {
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    top: 0; 
    background-color: #FFF;
    width: 100%;
    right: -100%;
}

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

.footer-holder {
    background: #070D2C;
    color: #FFFFFF;
    padding: 100px 0 40px;
    font-size: 15px;
}

.footer-holder .footer-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
}

.footer-holder .footer-menu li {
    margin-bottom: 15px;

}

.footer-holder .footer-menu li:last-child {
    margin-bottom: 0;
}

.footer-holder .footer-menu .arrow {
    margin-right: 8px;
}

.footer-holder .copyright {
    margin-top: 80px;
    font-size: 14px;
}

.socials-list {
    display: flex;
    gap: 10px;
}

.socials-list a {
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    background-color: var(--primary-color);
    border-radius: 50%;
    padding-top: 6px;
}

@media only screen and (min-width: 1200px) {
    .header-menu > li a:before {
        content: '';
        height: 3px;
        width: 0;
        background-color: var(--primary-color);
        position: absolute;
        bottom: -4px;
        left: 0;
        right: 0;
        margin-left: auto; 
        margin-right: auto; 
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
    
    .header-menu > li a:hover:before,
    .header-menu > li.current_page_item a:before{
        width: 100%;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
}

@media only screen and (max-width: 767px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
        line-height: 1.25;
    }

    h3 {
        font-size: 25px;
    }
}