/*!********************************************************
CORE CSS
**********************************************************/
:root {
    --webappsDarkRed: #51545e;
    --webappsYellow: #efbc5b;
    --webappsGrey: #7F7F7F;
    --webappsDarkGrey: #666666;
    --fieldColor: #51545e;
    --buttonColor: #666666;
    --sliderColor: #666666;
}
.navbar {
    --bs-navbar-nav-link-padding-x: .75rem;
}
/*!********************************************************
RESETS
**********************************************************/
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(7, 72, 128, .3);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #b30006;
    -webkit-box-shadow: inset 0 0 6px rgba(7, 72, 128, .5);
}
::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(7, 72, 128, .1);
}
html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}
body {
    color: #fff;
    font-family: 'Open Sans';
    width: 100%;
    min-height: 100%;
    background-color: var(--webappsDarkGrey);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
h1,
h2,
h3,
h4,
p {
    margin: 0;
    padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #212529;
}
.block-code {
    border-left: 4px solid var(--webappsDarkRed);
    color: #343a40 !important;
}
.nav-header {
    border-bottom: 2px var(--webappsDarkRed) solid;
}
.site-title {
    color: var(--webappsDarkRed);
    margin: 0;
}
img {
    max-width: 100%;
    width: auto;
    height: auto;
}
.form-control:focus {
    box-shadow: unset;
}
/*!********************************************************
DEFAULTS
**********************************************************/
h1 {
    font-size: 2rem;
}
h2 {
    font-size: 1.2rem;
}
h3 {
    font-size: 1rem;
}
h3.alt {
    background: var(--webappsDarkRed);
}
h4 {
    font-size: 1.1rem;
}
.ck-editor__editable_inline {
    min-height: 250px;
}
.autocomplete-suggestions {
    border: 1px solid #999;
    background: #fff;
    overflow: auto;
    cursor: pointer;
}
.autocomplete-suggestion {
    padding: 2px 5px;
    white-space: nowrap;
    overflow: hidden;
    font-size: 45px;
}
.autocomplete-selected {
    background: #f0f0f0;
}
.autocomplete-suggestions strong {
    font-weight: normal;
    color: #39f;
}
.autocomplete-group {
    padding: 2px 5px;
}
.autocomplete-group strong {
    display: block;
    border-bottom: 1px solid #000;
}
.autocomplete-no-suggestion a {
    color: #9a9a9a;
    padding: 2px 5px;
    white-space: nowrap;
    overflow: hidden;
    font-size: 45px;
}
.autocomplete-no-suggestion a:hover {
    text-decoration: none;
    color: #333;
    opacity: .7;
}
.fa-notification {
    font-size: 2.5rem !important;
    position: absolute;
    top: -10px;
    right: 5px;
}
.fa-rotate {
    transform: rotate(180deg);
}
progress {
    -webkit-appearance: none;
    -moz-appearance: none;
    display: inline-block;
    appearance: none;
    height: 0.5rem;
    overflow: hidden;
    border: 0;
    border-radius: 0.25rem;
    background-color: var(--webappsGrey);
    color: var(--webappsDarkRed);
    width: 160px;
}
progress::-moz-progress-bar {
    background-color: var(--webappsDarkRed);
}
progress::-webkit-progress-value {
    background-color: var(--webappsDarkRed);
}
::-webkit-progress-bar {
    background-color: var(--webappsGrey);
}
#toast-container>div {
    opacity: 1;
    border: 2px solid #ccc !important;
}
.boxshadow-0 {
    box-shadow: unset !important;
}
.pointer-events-none {
    pointer-events: none;
}
.form-group.input-underline .form-control {
    width: 100%;
    border-radius: 0;
    border: none;
    border-bottom: 2px solid #a9a9a9;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 1.5rem;
    margin: 4px 0 0;
    padding: 0;
}
.form-group.input-underline textarea.form-control {
    border: 1px solid #dee2e6 !important;
    margin-top: 1rem !important;
    padding: 8px 12px;
}
.form-group.input-underline .underline {
    height: 4px;
    width: 0;
    position: relative;
    margin-top: -4px;
    background: var(--fieldColor);
    transition: width .3s ease-in-out;
}
.form-group.input-underline .form-control:focus+.underline {
    width: 100%;
    background: var(--fieldColor);
}
.form-group.input-underline label {
    margin: 0 0 -5px;
    padding: 0;
    display: block;
}
input.form-control[type=checkbox],
input.form-control[type=radio] {
    display: none;
    margin: 0;
}
input.form-control[type=radio]+label:before {
    border-radius: 100%;
}
input.form-control[type=checkbox]+label:before,
input.form-control[type=radio]+label:before {
    content: "";
    background: #f4f4f4;
    border: 1px solid #b4b4b4;
    display: inline-block;
    width: 1.4rem;
    height: 1.4rem;
    position: relative;
    margin: -2px .8rem 0 0;
    vertical-align: middle;
    cursor: pointer;
    text-align: center;
    transition: 250ms;
}
input.form-control[type=checkbox]:checked+label:before,
input.form-control[type=radio]:checked+label:before {
    background-color: var(--fieldColor);
    box-shadow: inset 0 0 0 4px #f4f4f4;
}
input.form-control[type=checkbox]:focus+label:before,
input.form-control[type=radio]:focus+label:before {
    outline: 0;
    border-color: var(--fieldColor);
}
input.form-control[type=checkbox]:selected:disabled+label:before,
input.form-control[type=radio]:selected:disabled+label:before {
    box-shadow: inset 0 0 0 4px #f4f4f4;
    border-color: #b4b4b4;
    background: #b4b4b4;
}
input.form-control[type=checkbox]+label:empty:before,
input.form-control[type=radio]+label:empty:before {
    margin-right: 0;
}
.search__input {
    width: 100%;
    padding: 14px 24px 12px;
    background-color: var(--fieldColor);
    transition: 250ms ease-in-out;
    font-size: 20px;
    line-height: 18px;
    color: #fff;
    background-color: var(--fieldColor);
    background-image: url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='white' viewBox='0 0 24 24'><path d='M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/></svg>");
    background-repeat: no-repeat;
    background-size: 24px 24px;
    background-position: 95% center;
    border-radius: 5px;
    border: 1px solid #575756;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}
.search__input::placeholder {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.search__input:focus::placeholder {
    color: grey;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.search__input:focus {
    padding: 14px 0 12px;
    outline: 0;
    color: grey;
    border: 1px solid transparent;
    border-bottom: 1px solid #575756;
    border-radius: 0;
    background-color: transparent;
    background-image: url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='grey' viewBox='0 0 24 24'><path d='M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/></svg>");
    background-position: 100% center;
}
/*!********************************************************
BUTTONS
**********************************************************/
.btn-form {
    border: 3px solid var(--buttonColor);
    color: var(--buttonColor);
    background: 0 0;
    cursor: pointer;
    padding: 20px 40px;
    margin: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    outline: 0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.btn-form:hover {
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    color: #fff;
    background: var(--buttonColor);
    opacity: .8;
}
.btn-burgandy {
    background-color: var(--webappsDarkRed);
    border: 2px solid var(--webappsDarkRed);
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    padding: 2px 90px;
    border-radius: 0;
}
.btn-burgandy:hover {
    background-color: #fff;
    color: var(--webappsDarkRed);
    border: 2px solid var(--webappsDarkRed);
}
.btn-red {
    background-color: var(--webappsDarkRed);
    color: #fff;
    border: 2px solid var(--webappsDarkRed);
}
.btn-red:focus,
.btn-red:hover {
    color: #fff;
    background: var(--webappsDarkRed);
    border-color: var(--webappsDarkRed);
    opacity: .8;
    box-shadow: unset;
}
.btn-yellow {
    background-color: #fabc00;
    color: #fff;
    border: 2px solid #fabc00;
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-size: 30px;
    border-radius: 10px;
    padding: .5rem .375rem;
}
.btn-yellow:focus,
.btn-yellow:hover {
    color: #fff;
    background: #fabc00;
    border-color: #fabc00;
    opacity: .8;
    box-shadow: unset;
}
/*!********************************************************
FORM DATEPICKER/FLATPICKR
**********************************************************/
.form-control.datepicker {
    height: 38px;
    width: 100%;
    margin: 0;
}
.datepicker {
    height: 38px;
}
/*! Flatpickr */
.flatpickr-input {
    background: #fff !important;
    height: 46px;
}
.flatpickr {
    background: #fff;
}
.flatpickr input {
    background: #fff !important;
    height: auto;
}
.flatpickr a.input-button {
    text-decoration: none;
    border: 1px solid #bbb;
    padding: 4px 10px;
    border-left: 0;
    cursor: pointer;
    align-self: center;
    justify-content: center;
    line-height: 1;
}
.border-black {
    border: 2px solid #000 !important;
}
/*!********************************************************
DATATABLES
**********************************************************/
.dataTable {
    width: 100% !important;
}
.tableFilter select {
    display: inline-block;
    width: auto;
}
.dataTables_length,
.dt-buttons,
.tableFilter {
    display: inline-block;
    margin: 0 20px 8px;
}
td.dtr-control:before,
th.dtr-control:before {
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    border: unset !important;
    box-shadow: unset !important;
    height: 1.1em !important;
    width: 1.1em !important;
}
table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before,
table.dataTable.dtr-inline.collapsed>tbody>tr>th.dtr-control:before {
    content: '\f107';
    content: "\f107";
    line-height: 1.2em;
}
table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td.dtr-control:before,
table.dataTable.dtr-inline.collapsed>tbody>tr.parent>th.dtr-control:before {
    content: '\f106';
    content: "\f106";
    line-height: 1.1em;
}
div.dataTables_wrapper div.dataTables_info {
    white-space: unset;
    display: inline-block;
    margin-left: auto;
}
div.dataTables_wrapper div.dataTables_length {
    width: unset;
    display: inline-block;
    margin-right: 1.5rem;
}
div.dataTables_wrapper div.dataTables_paginate {
    float: right;
    margin-top: 8px;
}
.dt-buttons {
    float: right;
}
.dt-buttons .dt-button {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: 1px solid #dc3545;
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    color: #fff;
    background-color: #dc3545;
}
.dt-buttons .dt-button:hover {
    color: #fff;
    background-color: #bb2d3b;
    border-color: #b02a37;
}
div.dataTables_wrapper div.dataTables_length select {
    margin: 0 8px;
}
table.dataTable {
    margin-top: 0 !important;
}
.tableActionsColumn {
    width: 0;
    white-space: nowrap;
}
/*!********************************************************
RANGE SLIDER
**********************************************************/
.slidecontainer {
    width: 100%;
}
.slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 25px;
    background: #d3d3d3;
    outline: 0;
    opacity: .7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}
.slider:hover {
    opacity: 1;
}
.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: var(--sliderColor);
    cursor: pointer;
}
.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: var(--sliderColor);
    cursor: pointer;
}
/*!********************************************************
FORMS
**********************************************************/
label {
    font-size: 1rem;
    margin: 0 .5rem 1rem;
    color: #696969;
    font-weight: bold;
}
.select {
    padding: .7rem;
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    width: 100%;
}
.custom-select {
    display: inline-block;
    width: auto;
}
#status_filter {
    display: inline-block;
}
#status_filter label {
    font-weight: normal;
}
.select2-wrapper {
    width: 300px;
}
.select2-results .fa {
    float: right;
    position: relative;
    line-height: 20px;
}
/*!********************************************************
AUTOCOMPLETE
**********************************************************/
.autocompleteMenuContainer {
    width: 400px;
    margin: 0;
    padding: 0;
    position: relative;
}
.ui-menu {
    list-style: none;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    max-height: 250px;
    overflow-y: scroll;
    border: none;
}
.ui-widget.ui-widget-content {
    border: none;
}
.ui-menu-item {
    font-size: 1.3em;
    background-color: var(--webappsDarkRed);
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .8);
    color: #fff;
    font-weight: normal;
    width: 100%;
    transition: .3s;
}
.ui-menu-item:hover {
    background-color: var(--webappsDarkRed);
    cursor: pointer;
}
.ui-menu .ui-menu-item-wrapper {
    padding: .3em .8em;
}
.ui-button.ui-state-active:hover,
.ui-button:active,
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active {
    border: none;
    background: var(--webappsDarkRed);
    font-weight: normal;
    color: #fff;
    margin: 0;
    transition: .3s;
}
/*!********************************************************
CUSTOM CHECKS AND RADIOS
**********************************************************/
/*! Radio and checkmark container */
.form-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 1rem;
    margin-right: 1rem;
    cursor: pointer;
    font-size: 1.2rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    float: left;
}
/*! Hide the browser's default radio button */
.form-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
/*! Create a custom radio button */
.form-radio {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}
/*! Create a custom checkbox */
.form-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}
/*! On mouse-over, add a grey background color */
.form-container:hover input~.form-checkmark,
.form-container:hover input~.form-radio {
    background-color: #ccc;
}
/*! When the radio button is checked, add a blue background */
.form-container input:checked~.form-checkmark,
.form-container input:checked~.form-radio {
    background-color: var(--bbRed);
}
/*! Create the indicator (the dot/circle - hidden when not checked) */
.form-checkmark:after,
.form-radio:after {
    content: "";
    position: absolute;
    display: none;
}
/*! Show the indicator (dot/circle) when checked */
.form-container input:checked~.form-checkmark:after,
.form-container input:checked~.form-radio:after {
    display: block;
}
/*! Style the indicator (dot/circle) */
.form-container .form-radio:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
}
/*! Style the checkmark/indicator */
.form-container .form-checkmark:after {
    left: 10px;
    top: 6px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/*!********************************************************
CUSTOM SEARCH AND TEXT INPUTS
**********************************************************/
.input {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin: 1rem .5rem;
    max-width: 100%;
    width: calc(100% - 2em);
    vertical-align: top;
    font-size: 1.5rem;
}
.input__field {
    position: relative;
    display: block;
    float: right;
    padding: .8em;
    width: 60%;
    border: none;
    border-radius: 0;
    background: #f0f0f0;
    color: #aaa;
    font-weight: 400;
    -webkit-appearance: none;
    appearance: none;
}
.input__field:focus {
    outline: 0;
}
.input__label {
    display: inline-block;
    margin: 0;
    padding: 0 1em;
    width: 40%;
    color: #696969;
    font-weight: bold;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.input__label-content {
    position: relative;
    display: block;
    padding: 1.6em 0;
    width: 100%;
}
.input__label-content span {
    font-weight: normal;
}
/*!********************************************************
GLOBAL Image Hover/Delete
**********************************************************/
.remove_item {
    position: relative;
    cursor: pointer;
}
.remove_item img {
    width: 100%;
}
.remove_item .overlay {
    display: flex;
    position: absolute;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .3);
    transition: .5s;
    opacity: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
}
.remove_item .overlay:hover {
    opacity: 1;
}
.remove_item .overlay i {
    font-size: 5rem;
    color: #fff;
    margin: auto;
}
.popover.confirmation .popover-header {
    background: var(--webappsDarkRed);
}
/*!* Dropzone **/
.dropzone {
    border: 2px dotted rgba(0, 0, 0, .3) !important;
}
.dropzone .dz-preview {
    width: 100% !important;
    margin: 0 !important;
}
.dropzone .dz-image {
    width: 100% !important;
    background: #d2d2d2 !important;
}
.dropzone .dz-details {
    margin-top: 6px !important;
}
.dropzone .dz-filename {
    padding-top: 15px !important;
    font-size: 1rem !important;
}
.dropzone .dz-filename span {
    background: #fff !important;
    line-height: 2.5rem !important;
    padding: 4px !important;
}
.dropzone .dz-filename span:hover {
    border: none !important;
}
.dropzone .dz-size {
    margin-top: -.7em !important;
}
.dropzone .dz-size span {
    background: #fff !important;
    padding: 4px !important;
}
.dropzone .dz-progress {
    width: 90% !important;
    margin-left: 5% !important;
    margin-right: 5% !important;
    left: 0 !important;
}
.dropzone .dz-upload {
    background: #28a745 !important;
}
.dropzone .dz-button {
    font-weight: 500 !important;
    font-size: 1.6rem !important;
    padding-top: 5px !important;
}
/*!* jQuery Uploader **/
.ajax-file-upload-statusbar,
.ajax-upload-dragdrop {
    width: 100% !important;
}
.dragdrop tr {
    cursor: move;
}
/*!********************************************************
FORM DATEPICKER/FLATPICKR
**********************************************************/
.flatpickr-input.form-control:disabled,
.flatpickr-input.form-control[readonly] {
    background-color: unset;
}
.help-block {
    font-weight: bold;
    color: #dc3545;
    font-size: .9rem;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    top: 80%;
}
.select2-container .select2-selection--single {
    height: auto;
    padding: .5rem;
}
.select2-selection__choice {
    color: #000;
}
/*!********************************************************
FRONTEND CSS
**********************************************************/
body {
    font-family: "Poppins", sans-serif;
    background-image: url('/assets/img/page-bg.jpg');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}
a {
    text-decoration: none;
}
.text-yellow {
    color: #fabc00;
}
.text-red {
    color: #e10000;
}
.navbar-nav .nav-link {
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    font-size: 15px;
    color: #000000;
}
.home-dl {
    background-image: url('/assets/img/dl.jpg');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 135px 1rem;
}
.dl-heading {
    font-family: "dharma-gothic-e", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 88px;
    color: #fff;
    text-transform: uppercase;
    line-height: .9;
}
.dl-subheading {
    font-family: "dharma-gothic-e", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 38px;
    color: #fabc00;
    text-transform: uppercase;
}
.home-cta {
    background-color: #fabc00;
}
.home-cta h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 44px;
    color: #fff;
}
.home-services h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-size: 40px;
    color: #323232;
}
.home-services p {
    font-family: "Poppins", sans-serif;
    font-weight: normal;
    font-size: 16px;
    color: #323232;
}
.home-services a {
    font-family: "Poppins", sans-serif;
    font-weight: normal;
    font-size: 16px;
    color: #323232;
}
.home-services hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: #afa8ab solid 3px;
    opacity: 1;
}
.home-contact {
    background-color: #1f1f1f;
    border-radius: 10px;
    padding: 30px 40px
}
.home-contact-form .form-control {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: normal;
    color: #8c8c8c;
    background-color: #dedede;
    border-radius: 10px;
    padding: 1.3rem 1.5rem;
}
footer {
    background-color: #323232;
}
footer h4 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #e4e4e4;
}
footer h6 {
    font-family: "Poppins", sans-serif;
    font-weight: normal;
    font-size: 16px;
    color: #e4e4e4;
}
.footer-bottom p {
    font-family: "Poppins", sans-serif;
    font-weight: normal;
    font-size: 9px;
    color: #e4e4e4;
}
@media (max-width: 1200px) {
    .home-services h2 {
        font-size: 30px;
    }
}
@media (max-width: 996px) {
    .home-dl {
        background-position: top right;
        padding: 130px 1rem;
    }
    .home-cta h2 {
        font-size: 35px;
    }
    .home-services h2 {
        font-size: 26px;
    }
    .home-contact-form .form-control {
        font-size: 16px;
    }
    .home-contact-form .btn-yellow {
        font-size: 25px;
    }
}
@media (max-width: 768px) {
    .dl-heading {
        font-size: 55px;
    }
    .dl-subheading {
        font-size: 30px;
    }
    .home-cta h2 {
        font-size: 18px;
    }
    .navbar-brand {
        width: 200px;
    }
    footer img {
        width: 200px;
    }
    .home-dl {
        padding: 115px 1rem;
    }
}
@media (max-width: 500px) {
    .home-dl {
        padding: 75px 1rem;
    }
}