@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap');
/* font-family: 'Dancing Script', cursive; */

/* CSS Rules for transition (Javascript)*/
.reveal
{
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: all 1s ease;
}
.reveal.active
{
    transform: translateY(0px);
    opacity: 1;
}


/* CSS Rules for header (Javascript) */
.header.header-scrolled
{
    background-color: #081b29;
    opacity: 0.85;
}

/* CSS Rules for floating widgets show */
.float-icons.widgets-show
{
    opacity: 1;
}
/* CSS Rules for all */
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
}
body
{
    background: white;
}

/* CSS Rules for Header */
.header
{
    border: transparent;
    top: 0;
    left: 0;
    padding: 10px 10%;
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    transition: all .5s ease-in-out;
}
.Logo img
{
    border: solid transparent;
    width: 100%;
    height: 50px;
}
.Links a
{
    color: white;
    font-weight: 450;
    margin: 10px;
    transition: all .5s ease-in-out;
}
.Links a:hover
{
    color: #ed7d31;
    text-decoration: overline;
}

@media screen and (max-width: 600px)
{
    .header
    {
        min-width: 0;
        flex-direction: column;
    }
    .Logo img
    {
        margin: 5% 0;
    }
    .Links a
    {
        margin: 5px;
        font-size: 15px;
    }
}


/* CSS Rules for Intro */
.intro
{
    border: transparent;
    background-image: url(/images/W-1.jpg);
    filter: brightness(0.95);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: auto;
    margin: 0;
    display: flex;
    justify-content: space-between;
    padding: 5% 10%;
    transition: all .5s ease-in-out;
}
.intro-txt
{
    border: transparent;
    width: 80%;
    display: grid;
    height: 150px;
    margin: 32% 0 10% 0;
}
.intro-txt h2
{
    border: transparent;
    font-size: 40px;
    font-weight: 600;
    background-image: linear-gradient(to right, #ed7d31 0%, #ededed 50%, #ededed 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}
.intro-txt h3
{
    border: transparent;
    color: #ed7d31;
}
.intro a
{
    border: solid #ed7d31;
    background: none;
    border-radius: 10px;
    margin: 2% 1% 0 0;
    padding: 2% 0;
    width: 20%;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #ed7d31;
    position: relative;
    transition: all .5s ease-in-out;
}
.intro a:hover
{
    color: #081b29;
    opacity: 0.99;
    z-index: 1; 
}
.intro a::after
{
    position: absolute;
    border-radius: 5px;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #ed7d31;
    transition: all .5s ease-in-out;
    z-index: -1;
}
.intro a:hover::after
{
    width: 100%;
}

@media screen and (max-width: 600px)
{
    .intro
    {
        min-width: 0;
        flex-direction: column-reverse;
    }
    .intro-txt
    {
        width: 100%;
        margin-top: 150%;
        margin-bottom: 40%;
        text-align: center;
    }
    .intro-txt h2
    {
        font-size: 30px;
    }
    .intro a
    {
        width: 40%;
        margin: auto;
    }
}
/* CSS Rules for Org Info */
.Org-Info
{
    border: transparent;
    background: #040e15;
    width: 100%;
    display: grid;
    padding: 5% 5%;
    transition: all .5s ease-in-out;
}
.Org-Info img
{
    width: 5%;
    margin: auto;
}
.Org-Info-Txt
{
    border: transparent;
    width: 50%;
    margin: auto;
    height: auto;
}
.Org-Info-Txt h2
{
    color: #ed7d31;
    margin: 5% 0;
    text-align: center;
}
.Org-Info-Txt p
{
    color: white;
    font-family: 'Dancing Script', cursive;
    font-size: 20px;
    margin-bottom: 3%;
    text-align: center;
}

@media screen and (max-width: 600px)
{
    .Org-Info
    {
        min-width: 0;
        flex-wrap: wrap;
        flex-direction: column;
    }
    .Org-Info img
    {
        width: 15%;
    }
    .Org-Info-Txt
    {
        width: 95%;
    }
    .Org-Info-Txt h2
    {
        transform: scale(0.65);
    }
    .Org-Info-Txt p
    {
        font-size: 15px;
    }
}

/* CSS Rules for Title */
.title-container
{
    border: transparent;
    background-image: linear-gradient(to right, white 0%, #ed7d31 50%, white 100%);
    width: 70%;
    padding: 0.5% 0;
    margin: auto;
    margin-top: 70px;
    margin-bottom: 20px;
    transition: all .5s ease-in-out;
}
.title-container h2
{
    text-align: center;
    color: #081b29;
    font-weight: 500;
}

@media screen and (max-width: 600px)
{
    .title-container
    {
        min-width: 0;
        width: 100%;
    }
    .title-container
    {
        font-size: 12px;
    }
}

/* CSS Rules for Mission, Vision and Core Values */
.MVC
{
    border: transparent;
    border-radius: 10px;
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    transition: all .5s ease-in-out;
}
.MVC-Card-Mission
{
    border: outset #ed7d31;
    box-shadow: 5px 5px 15px;
    background-image: url(/images/Mission.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: none;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    margin: 1%;
    width: 35%;
    text-align: center;
    transition: all .5s ease-in-out;
}
.MVC-Card-Vision
{
    border: outset #ed7d31;
    box-shadow: 5px 5px 15px;
    background-image: url(/images/Vision.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: none;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    margin: 1%;
    width: 35%;
    text-align: center;
    transition: all .5s ease-in-out;
}
.MVC-Card-Core-Values
{
    border: outset #ed7d31;
    box-shadow: 5px 5px 15px;
    background-image: url(/images/Core-Values.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: none;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    margin: 1%;
    width: 35%;
    text-align: center;
    transition: all .5s ease-in-out;
}
.MVC-intro
{
    background: rgb(237, 125, 49, 0.92);
    height: 200px;
    width: 100%;
    transform: translateY(260px);
    transition: all .5s;
}
.MVC-intro h2,p
{
    color: #081b29;
    margin: 0 2%;
}
.MVC-intro h2
{
    margin-bottom: 20px;
    font-weight: 550;
}
.MVC-Card-Mission:hover, .MVC-Card-Vision:hover, .MVC-Card-Core-Values:hover
{
    cursor: pointer;
    transform: scale(1.02);
    .MVC-intro
    {
        transform: translateY(150px);
        font-weight: 500;
    }
    .MVC-intro h2
    {
        text-decoration: 2px dashed underline;
    }
}

@media screen and (max-width: 600px)
{
    .MVC
    {
        min-width: 0;
        width: 100%;
        padding-bottom: 5%;
        flex-direction: column;
        
    }
    .MVC-Card-Mission, .MVC-Card-Vision, .MVC-Card-Core-Values
    {
        margin: auto;
        margin-top: 20px;
        width: 70%;
    }
}

/* CSS Rules for The Team */
.team
{
    border: transparent;
    width: 100%;
    height: auto;
    display: grid;
    transition: all .5s ease-in-out;
}
.team-container
{
    border: transparent;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: top center;
    padding: 3% 5%;
}
.team-div
{
    border: outset #ed7d31;
    box-shadow: 5px 5px 10px;
    border-radius: 10px;
    width: 30%;
    height: 100%;
    overflow: hidden;
    transition: all .5s ease-in-out;
}
.team-div img
{
    width: 100%;
    transition: all .5s ease-in-out;
}
.team-div-txt
{
    border: transparent;
    position: relative;
    display: grid;
    transform: translateY(0px);
    transition: all .5s ease-in-out;
}
.team-div-txt h2
{
    color: #ed7d31;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    transition: all .5s ease-in-out;
}
.team-div-txt h5
{
    color: #081b29;
    text-align: center;
    transition: all .5s ease-in-out;
}
.team-div-txt a img
{
    border: none;
}
.team-div:hover
{   
    height: 90%;
    transform: scale(1.02);
    .team-div-txt
    {
        transform: translateY(-55px);
    }
    .team-div-txt h2
    {
        background-image: linear-gradient(to right, rgba(255,0,0,0) 0%, #040e15 50%, rgba(255,0,0,0) 100%);
    }
    .team-div-txt h5
    {
        background-image: linear-gradient(to right, rgba(255,0,0,0) 0%, #040e15 50%, rgba(255,0,0,0) 100%);
        color: #ededed;
    }
    .team-img
    {
        filter: blur(3px);
    }
}
.team-btn
{
    border: solid #ed7d31;
    border-radius: 10px;
    font-weight: 700;
    padding: 1%;
    margin: 0 auto;
    color: #ed7d31;
    transition: all .5s ease-in-out;
    animation: flash 2s infinite;
}
@keyframes flash
{
    0%
    {
        opacity: 1;
    }
    50%
    {
        opacity: 0.6;
    }
    100%
    {
        opacity: 1;
    }
}
.team a:hover
{
    background: #ed7d31;
    color: white;
    animation: none;
}

@media screen and (max-width: 600px)
{
    .team
    {
        min-width: 0;
    }
    .team-container
    {
        flex-direction: column;
    }
    .team-div
    {
        width: 95%;
        margin: 3% auto;
    }
    .team-div:hover
    {
        height: 100%;
    }
    .team-div-txt
    {
        transform: translateY(0px);
    }
    .team-div:hover
    {
        .team-div-txt
        {
            transform: translateY(0px);
        }
        .team-div-txt h2
        {
            background-image: none;
        }
        .team-div-txt h5
        {
            background-image: none;
            color: #081b29;
        }
        .team-img
        {
            filter: blur(1px);
        }
    }
    .team-btn
    {
        border-radius: 5px;
        padding: 4%;
        font-size: 20px;
        font-weight: 600;
    }
}

/* CSS Rules for Services */
.services
{
    border: transparent;
    width: 100%;
    height: auto;
    display: grid;
}
.services-intro
{
    border: transparent;
    width: 100%;
    height: auto;
    display: grid;
}
.services-intro img
{
    width: 5%;
    margin: 1% auto 2%;
    animation: flash 3s infinite;
}
.services-intro p
{
    color: #081b29;
    font-family: 'Dancing Script', cursive;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 3%;
    text-align: center;
}
.services-div-G
{
    border: transparent;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: top center;
}
.services-div
{
    border: transparent;
    width: 25%;
    display: grid;
}
.bg-color-change
{
    background-color: #ededed;
}
.services-div img
{
    width: 10%;
    margin: 10% auto;
}
.services-div h3
{
    color: #ed7d31;
    font-weight: 500;
    text-align: center;
    margin-bottom: 10%;
}
.services-btn
{
    border: transparent;
    width: 65%;
    margin: auto;
    align-items: center;
    transition: all .5s ease-in-out;
    animation: flash 2s infinite;
}
.services-btn img
{
    width: 100%;
}
.services-btn:hover
{
    animation: none;
    scale: 1.05;
}


@media screen and (max-width: 600px)
{
    .services
    {
        min-width: 0;
    }
    .services-intro img
    {
        width: 15%;
    }
    .services-intro p
    {
        font-size: 15px;
        margin-bottom: 10%;
    }
    .services-div img
    {
        width: 20%;
    }
    .services-div h3
    {
        font-size: 10px;
    }
    .services-btn img
    {
        width: 100%;
    }
}


/* CSS Rules for floating icons */
.float-icons
{
    border: transparent;
    width: 7%;
    position: sticky;
    bottom: 5px;
    left: 92%;
    transition: all .5s ease-in-out;
    opacity: 0;
}
.float-whatsapp
{
    border: transparent;
    width: 50%;
    margin-left: 30%;
    transition: all .5s ease-in-out;
}
.float-whatsapp:hover
{
    transform: scale(1.05);
}
.float-top
{
    border: transparent;
    width: 40%;
    margin-left: 55%;
    transition: all .5s ease-in-out;
}
.float-top:hover
{
    transform: scale(1.05);
}

@media screen and (max-width: 600px)
{
    .float-icons
    {
        width: 20%;
    }
}

/* CSS Rules for footer */
.footer
{
    margin-top: 50px;
    border: transparent;
    background: #081b29;
    height: auto;
    width: 100%;
    transition: all .5s ease-in-out;
}
.footer-container
{
    border: transparent;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: top center;
    padding: 3%;
}
.contact-details
{
    border: transparent;
    border-radius: 10px;
    box-shadow: 5px 5px 15px;
    width: 30%;
    transition: all .5s ease-in-out;
}
.logo-redu
{
    width: 40%;
    margin: 5% 5% 1%;
}
.contact-details h4
{
    background-image: linear-gradient(to right, #ed7d31 0%, #ededed 50%,#ededed 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    font-size: 15px;
    margin: 8% 5% 0;
}
.contact-details:hover
{
    transform: scale(1.02);
}
.business-hrs
{
    border: transparent;
    border-radius: 10px;
    box-shadow: 5px 5px 15px;
    width: 30%;
    transition: all .5s ease-in-out;
}
.business-hrs h4
{
    border: solid transparent;
    text-align: center;
    margin: 3% 0 8%;
    font-size: 20px;
    font-weight: 500;
    background-image: linear-gradient(to bottom, #ed7d31 0%,#ededed 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}
.business-hrs p
{
    border: transparent;
    width: 70%;
    text-align: center;
    background-image: linear-gradient(to right, #ed7d31 0%, #ededed 50%,#ededed 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    font-size: 15px;
    font-weight: 700;
    margin: 15% auto 0;
}
.business-hrs:hover
{
    transform: scale(1.02);
}
.quick-links
{
    border: transparent;
    border-radius: 10px;
    box-shadow: 5px 5px 15px;
    width: 30%;
    transition: all .5s ease-in-out;
}
.quick-links h4
{
    border: solid transparent;
    text-align: center;
    margin: 3% 0 8%;
    font-size: 20px;
    font-weight: 500;
    background-image: linear-gradient(to bottom, #ed7d31 0%,#ededed 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}
.quick-links h5
{
    border: transparent;
    text-align: center;
    font-size: 15px;
    width: 50%;
    margin: 5% auto;
    background-image: linear-gradient(to left, #ed7d31 0%, #ededed 70%,#ededed 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}
.quick-links a:hover
{
    text-decoration: underline #ed7d31;
}
.quick-links:hover
{
    transform: scale(1.02);
}
.copyright
{
    border: transparent;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.c-1
{
    border: transparent;
    font-size: 15px;
    width: 40%;
    margin-left: 10px;
    background-image: linear-gradient(to right, #ed7d31 0%, #ededed 70%,#ededed 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}
.c-2
{
    border: transparent;
    font-size: 15px;
    width: 20%;
    margin-right: 20px;
    text-align: right;
    background-image: linear-gradient(to left, #ed7d31 0%, #ededed 70%,#ededed 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

@media screen and (max-width: 600px)
{
    .footer
    {
        min-width: 0;
    }
    .footer-container
    {
        flex-direction: column;
    }
    .contact-details, .business-hrs, .quick-links
    {
        margin: 5% auto;
        padding: 0 0 5%;
        width: 90%;
    }
    .c-1
    {
        width: 50%;
        font-size: 10px;
    }
    .c-2
    {
        width: 20%;
        font-size: 10px;
    }
}

/* CSS Rules for Contacts Page */
/* Intro section */
.intro-C
{
    border: solid transparent;
    width: 100%;
    height: auto;
    background-image: url(/images/Contacts.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: brightness(0.95);

}
.intro-C h2
{
    text-align: center;
    margin: 10% 0;
    font-size: 30px;
    text-shadow: 5px 5px 15px;
    color: #ededed;
}
@media screen and (max-width: 600px)
{
    .intro-C
    {
        min-width: 0;
    }
    .intro-C h2
    {
        margin: 50% 0;
    }
}

/* Contacts Section */
.contacts-info
{
    border: transparent;
    background: #ededed;
    display: flex;
    justify-content: space-between;
    align-items: top center;
    padding: 10% 5%;
    transition: all .5s ease-in-out;
}
.contacts-info-sect-1
{
    border: transparent;
    width: 40%;
}
.contacts-info-div
{
    border-top: dashed black;
    border-bottom: dashed black;
    width: 100%;
    margin: 1% 0;
}
.contacts-header
{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 3%;
}
.contacts-header img
{
    width: 5%;
    margin-right: 1%;
}
.contacts-into-txt
{
    margin: 5% 0;
}
.contacts-into-txt p
{
    text-align: center;
}
.contacts-info-sect-2
{
    border: transparent;
    width: 45%;
}
.form-title
{
    border: transparent;
    text-align: center;
    padding: 3% 0;
    margin: 1% 0 3% 0;
    background-image: linear-gradient(to right, #ededed 0%, #ed7d31 50%, #ededed 100%);
    color: #081b29;
}
input[type=text]
{
    width: 90%;
    margin: 2% 3%;
    padding: 0 3%;
    border: solid 1px;
    border-radius: 5px;
    height: 35px;
}
textarea
{
    width: 90%;
    margin: 2% 3%;
    padding: 2% 3%;
    border: solid 1px;
    border-radius: 5px;
    height: 190px;
}
input[type=submit]
{
    width: 30%;
    color: #ed7d31;
    font-weight: 700;
    margin: 2% 3%;
    padding: 3% 0;
    border: solid #ed7d31;
    border-radius: 5px;
    transition: all .5s ease-in-out;
}
input[type=submit]:hover
{
    background: #ed7d31;
    color: #ededed;
    cursor: pointer;
}

@media screen and (max-width: 600px)
{
    .contacts-info
    {
        min-width: 0;
        flex-direction: column;
    }
    .contacts-info-sect-1
    {
        width: 80%;
        margin: auto;
    }
    .contacts-info-sect-2
    {
        width: 80%;
        margin: 10% auto 0;
    }
}

/* Maps Section */
.maps
{
    border: solid transparent;
    background-color: #ededed;
    overflow: none;
    transition: all .5s ease-in-out;
}
.maps h4
{
    border: transparent;
    background-image: linear-gradient(to right, #ededed 0%, #ed7d31 50%, #ededed 100%);
    color: #081b29;
    width: 70%;
    font-size: 25px;
    font-weight: 500;
    text-align: center;
    margin: 3% auto;
}
iframe
{
    width: 100%;
    height: 400px;
}

@media screen and (max-width: 600px)
{
    .maps
    {
        min-width: 0;
    }
}

/* CSS Rules for About.html */
/* About Us intro */
.About-A
{
    border: solid transparent;
    width: 100%;
    height: auto;
    background-image: url(/images/W-2.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: brightness(0.95);

}
.About-A h2
{
    text-align: center;
    margin: 10% 0;
    font-size: 30px;
    text-shadow: 5px 5px 15px;
    color: #ededed;
}
@media screen and (max-width: 600px)
{
    .About-A
    {
        min-width: 0;
    }
    .About-A h2
    {
        margin: 50% 0;
    }
}

/* History Section */
.About-Info
{
    border: transparent;
    width: 100%;
    display: grid;
    padding: 5% 5% 0%;
    transition: all .5s ease-in-out;
}
.About-Info img
{
    width: 5%;
    margin: auto;
}
.About-Info-Txt
{
    border: transparent;
    width: 70%;
    margin: auto;
    height: auto;
}
.About-Info-Txt h2
{
    color: #ed7d31;
    margin: 5% 0;
    text-align: center;
}
.About-Info-Txt p, .About-Info-Txt sup
{
    color: #040e15;
    font-family: 'Dancing Script', cursive;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 3%;
    text-align: center;
}

@media screen and (max-width: 600px)
{
    .About-Info
    {
        min-width: 0;
        flex-wrap: wrap;
        flex-direction: column;
    }
    .About-Info img
    {
        width: 15%;
    }
    .About-Info-Txt
    {
        width: 95%;
    }
    .About-Info-Txt h2
    {
        transform: scale(0.65);
    }
    .About-Info-Txt p
    {
        font-size: 15px;
    }
}

/* Team Section */
.Team-C
{
    border: transparent;
    width: 100%;
    height: auto;
}
.Team-C-div
{
    width: 90%;
    margin: 2% auto;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.Team-C hr
{
    width: 90%;
    margin: auto;
}
.Team-C-div img
{
    border: inset #ed7d31;
    border-radius: 5px;
    margin: auto;
    width: 50%;
}
.Team-C-div-txt
{
    border: transparent;
    height: auto;
    display: grid;
}
.Team-C-div-txt h2
{
    border: transparent;
    color: #ed7d31;
    text-align: center;
}
.Team-C-div-txt p
{
    font-size: 14px;
    text-align: center;
}
.Title-Line
{
    border: solid #ed7d31;
    width: 70%;
    margin-top: 5px;
    margin-bottom: 20px;
    position: relative;
    animation: mymove 5s infinite;
}
@keyframes mymove
{
    0% {left: 0%;}
    50% {left: 30%;}
    100% {left: 0%;}
}

@media screen and (max-width: 600px)
{
    .Team-C
    {
        min-width: 0;
    }
    .Team-C-div
    {
        width: 90%;
        margin: 5% auto;
        flex-direction: column;
    }
    .Team-C-div img
    {
        width: 100%;
    }
    .Team-C-div-txt h2
    {
        font-size: 15px;
        margin: 2% 0 0;
    }
    .Team-C-div-txt p
    {
        font-size: 10px;
        margin-bottom: 3%;
        text-align: center;
    }
    .title-line-short
    {
        margin-bottom: 10px;
    }
}


/* CSS Rules for Services.html */
.Services-S
{
    border: solid transparent;
    width: 100%;
    height: auto;
    background-image: url(/images/W-2.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: brightness(0.95);

}
.Services-S h2
{
    text-align: center;
    margin: 10% 0;
    font-size: 30px;
    text-shadow: 5px 5px 15px;
    color: #ededed;
}
@media screen and (max-width: 600px)
{
    .Services-S
    {
        min-width: 0;
    }
    .Services-S h2
    {
        margin: 50% 0;
    }
}

/* Services History Section */

/* Services Section */
.services-s
{
    border: transparent;
    width: 100%;
    height: auto;
    transition: all .5s ease-in-out;
}
.services-s-container
{
    border: transparent;
    width: 100%;
    height: auto;
    margin: 1% auto 3%;
    display: flex;
    justify-content: space-around;
    align-items: top center;
    padding: 1% 10%;
}
.center-div
{
    justify-content: center;
}
.services-s-div
{
    border: transparent;
    background: #f2f2f2;
    width: 30%;
    overflow: hidden;
    transition: all .5s ease-in-out;
}
.services-s-div:hover
{
    transform: scale(1.02);
    .services-s-div, img
    {
        filter: grayscale(1);
        transform: rotate(15deg);
        scale: 1.4;
    }
}
.services-s-img
{
    width: 100%;
    overflow: hidden;
}
.services-s-div img
{
    width: 100%;
    transition: all .5s ease-in-out;
}
.services-s-div h3
{
    text-align: center;
    color: #ed7d31;
    margin: 10% 0;
}

@media screen and (max-width: 600px)
{
    .services-s
    {
        min-width: 0;
    }
    .services-s-container
    {
        flex-direction: column;
    }
    .services-s-div
    {
        width: 70%;
        margin: 5% auto;
    }
    .services-s-div h3
    {
        font-size: 15px;
    }
}

/* CSS Rules for all the Law Pages */
.Law
{
    border: solid transparent;
    width: 100%;
    height: auto;
    background-image: url(/images/W-2.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: brightness(0.95);

}
.Law h2
{
    text-align: center;
    margin: 10% 0;
    font-size: 30px;
    text-shadow: 5px 5px 15px;
    color: #ededed;
}
.Law-Txt
{
    border: transparent;
    background: #f2f2f2;
    margin: 5% auto;
    padding: 5%;
    width: 80%;
    text-align: center;
    font-size: 20px;
}
@media screen and (max-width: 600px)
{
    .Law
    {
        min-width: 0;
    }
    .Law h2
    {
        margin: 50% 0;
    }
}