#nav {
    background-color: #F5F5F5;
}

#nav #logo {
    width: 250px;
}

#nav.sticky {
    background-color: #F5F5F5;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    animation: slideDownNavBar 0.3s linear;
}

#nav.sticky #logo {
    width: 170px;
}

.custom-mobile-nav-btn {
    /*background: #0c3c8a !important;*/
    /*width: 40px;*/
    /*height: 40px;*/
}

@keyframes slideDownNavBar {
    0% {
        top: -100px;
    }
    100% {
        top: 0;
    }
}



#header {
    position: relative;
    overflow: hidden;
    padding-bottom: 160px;
    /*padding-top: 90px;*/
}
#header .main-title {
    font-size: 2rem !important;
    letter-spacing: 0;
}

#header .header-image {
    height: 440px;
    margin-left: 30px;
}

#header ul {
    list-style: none;
    padding-left: 0;
}
#header ul li {
    margin-bottom: 0.5rem;
    padding-left: 30px;
    position: relative;
}
#header ul li::before {
    content: "";
    border: 2px solid #3C7EFF;
    border-radius: 50px;
    display: inline-block;
    text-align: center;
    padding: 3px;
    margin-right: 16px;
    margin-left: 2px;
    position: absolute;
    left: 0px;
    top: 10px;
}
#header .benefits {
    /*margin-left: 6px;*/
}
#header .benefits .item{
    height: 100%;
}
#header .calculate-price {
    padding: calc(1.25rem - 2px) calc(2.25rem - 2px);
    font-weight: 600;
}
#header .calculate-price .icon{
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}


@media (max-width: 991px) {
    #header .header-image {
        position: absolute;
        right: -50px;
        bottom: -130px;
        width: 410px !important;
        z-index: 0;
        opacity: 0.5;
        display: inline;
    }
}
@media (max-width: 575px) {
    #header .benefits .benefit-item-title {
        font-size: 1.2rem !important;
    }

    #header .benefits .benefit-item-desc {
        font-size: 1rem !important;
    }
}
@media (max-width: 380px) {
    #header .benefits .benefit-item-title {
        font-size: 1rem !important;
    }

    #header .benefits .benefit-item-desc {
        font-size: 0.9rem !important;
    }
}

#call-to-action {
    position: relative;
    margin-top: -110px;
}
#call-to-action .wrapper-block {
    background-color: #295977 !important;
}
#call-to-action .form-control {
    background: #456F89;
    border: none;
}
#call-to-action .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

#call-to-action .form-check-input {
    background-color: #456F89;
    border-color: #456F89;
}


#our-services ul {
    list-style: none;
    padding-left: 0;
}
#our-services ul li {
    margin-bottom: 0.5rem;
    padding-left: 24px;
    position: relative;
    font-size: 18px;
}
#our-services ul li::before {
    content: "";
    border: 1px solid #235ec0;
    border-radius: 50px;
    display: inline-block;
    text-align: center;
    padding: 3px;
    margin-right: 16px;
    margin-left: 2px;
    position: absolute;
    left: 0;
    top: 9px;
}



@media (max-width: 575px) {
    #how_we_work .items .item {
        flex: 1 0 calc(50% - 1rem);
    }
}


#call_back {
    background-color: #e8edfc;
}

#call_back .svg {
    max-width: 195px;
    width: 100%;
}


#consultation {
    background-color: #BFD4E1;
}
#consultation .items {
    /*margin: 0 -0.5rem;*/
}
#consultation .items .item {
    flex: 1;
    flex-basis: calc(50% - 1rem);
    /*margin: 0.5rem;*/
}

#calculate_cost {
    background-color: #e8edfc;
}

#calculate_cost .svg {
    max-width: 195px;
    width: 100%;
}

.hr-lines {
    position: relative;
    display: inline-block;
}
.hr-lines:before{
    content: " ";
    display: block;
    height: 3px;
    max-width: 75px;
    width: 100%;
    position: absolute;
    top: calc(1.25rem + 3px);
    left: -100px;
    background: var(--bs-action-1);
}
.hr-lines:after{
    content: " ";
    display: block;
    height: 3px;
    max-width: 75px;
    width: 100%;
    position: absolute;
    top: calc(1.25rem + 3px);
    right: -100px;
    background: var(--bs-action-1);
}
@media (max-width: 575px) {
    .hr-lines:before {
        position: relative;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0.5rem;
        left: 0;
        top: 0;
    }
    .hr-lines:after {
        display: none;
    }
}

.dots {
    border-bottom: dotted 3px #e8edfc !important;
    margin-bottom: 7px;
}

.grid-container {
    display: flex;
    align-items: center;
}
.grid-container div {
    width: 300px;
}

.lh-17 {
    line-height: 1.7 !important;
}