:root {
    --the-heading-font: "DM Sans", sans-serif;
    --the-bgcolor: #FFFFFF;
    --the-bgcolor2: #FFF1EB;
    --the-bgcolor3: #EBF7FB;
    --the-bgcolor4: #F3F5F6;
    --the-textcolor: #213B59;
    --the-textcolor2: #ff8d5c;
    --the-textcolor3: #07BFBF;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--the-heading-font);
    color: var(--the-textcolor);
}

.Title-Text {
    font-family: var(--the-heading-font);
    color: var(--the-textcolor);
    font-weight: 700;
    font-size: 64px;
    line-height: 64px;
}

.Heading-Text {
    font-family: var(--the-heading-font);
    color: var(--the-textcolor);
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
}

.Subheading-Text {
    font-family: var(--the-heading-font);
    color: var(--the-textcolor);
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;

}

.Para-Text {
    font-family: var(--the-heading-font);
    color: var(--the-textcolor);
    font-weight: 300;
    font-size: 16px;
}

.Page-URL-Heading {
    background-image: url(Resource/image-W2YSNE3.jpg);
    background-position: 10% 90%;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.Service-URL-Heading {
    background-image: url(Resource/business-concepts-two-men-are-consulting-a-busines-PK3YZUA-1024x660.jpg);
    background-position: 10% 90%;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.URL {
    background-color: var(--the-bgcolor2);
    opacity: .80;
}

.Item:hover {
    color: var(--the-textcolor2);
    transition: all .5s;
}

.Item:hover i {
    color: var(--the-textcolor2) !important;
    transition: all .5s;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content p {
    color: black;
    padding: 0.5em 1em;
    text-decoration: none;
    display: block;
}

.dropdown-content p:hover {
    background-color: #f1f1f1;
    color: var(--the-textcolor2);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.Hero-Section {
    background: linear-gradient(180deg, white 0%, rgba(255, 141, 92, 0.436) 280%) !important;

}

.Hero {
    background-image: url(Resource/Background.png);
    background-size: 110%;
    background-repeat: no-repeat;
    background-position: bottom;
}

.Quote span {
    width: 5px;
    height: 100%;
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    background: var(--the-textcolor2);
}

.Card-Item {
    transition: all .5s;
}

.Card-Item:hover {
    transform: scale(.80);
}

.Case-Card,
.Case-Layer {
    transition: all 500ms;
}

.Case-Layer {
    background-color: var(--the-textcolor2) !important;
    opacity: .9;
    left: 0%;
    bottom: -100%;
}

.Case-Card:hover .Case-Layer {
    bottom: 0%;
    background-color: #14305D;
}

.Contact-Form-Container input,
.Contact-Form-Container textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #f0f0f0;
    border-radius: 5px;
    background-color: #ececec;
    font-size: 16px;
    color: #666;
    outline: none;
    transition: border-color 0.3s ease;
}

.Contact-Form-Container input:focus,
.Contact-Form-Container textarea:focus {
    border-color: var(--the-bgcolor);
}

.Contact-Form-Container textarea {
    height: 250px;
    resize: none;
}

@media screen and (max-width: 1000px) {
    .Title-Text {
        font-size: 44px;
        line-height: 40px;
    }

    .Heading-Text {
        font-size: 36px;
        line-height: 36px;
    }

    .Subheading-Text {
        font-size: 20px;
        line-height: 20px;

    }
    .Para-Text {
        font-size: 15px;
    }
}

@media screen and (max-width: 400px) {
    .Title-Text {
        font-size: 40px;
        line-height: 35px;
    }

    .Heading-Text {
        font-size: 28px;
        line-height: 28px;
    }

    .Subheading-Text {
        font-size: 20px;
        line-height: 20px;

    }
    .Para-Text {
        font-size: 15px;
    }

}