@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,73100&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200&display=swap');
@font-face
{
    font-family: Goodtimes;
    src:url(./fonts/Good\ Times\ 400.ttf);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scrollbar-width: auto;
    scrollbar-color: #00b894;
}
html {
    scroll-behavior: smooth;
}
body
{
    overflow-y: scroll;
    overflow-x: hidden;
}
::-webkit-scrollbar
{
    width: 10px;
}
::-webkit-scrollbar-track
{
    background-color: #ebebeb;
}
::-webkit-scrollbar-thumb
{
    background: linear-gradient(10deg, rgba(0,33,115,0.8) 0%, rgba(0,169,145,1) 73%, rgba(0,184,148,0.3) 100%);
    border-radius: 10px;
}

section {
    padding: 100px;
}

.banner
{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner video
{
    object-fit: cover;
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 1;
}
.banner h2
{
    font-family: 'Montserrat', sans-serif;
    font-size: 4.2em;
    position: absolute;
    text-align: center;
    color: #fff;
    text-shadow: 6px 2px 5px rgba(23,5,5,0.01);
    margin-top: 7%;
}
.banner h2 span
{
    color: #002173;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8em;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
    transition: 0.5s;
    background: #fff;
    box-shadow: 0 2px 7px rgb(0 0 0 / 10%);
}

header.sticky {
    background: #fff;
    padding: 20px 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

header.sticky ul li a {
    color: #002173;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

header .logo {
    background-image: url(./images/comply_regular.png);
    background-repeat: no-repeat;
    width: 200px;
    height: 60px;
}
header.sticky .logo
{
    background-image: url(./images/comply_regular.png);
    background-repeat: no-repeat;
    width: 200px;
    height: 60px;
}
header ul {
    display: flex;
    position: relative;
}
header ul li {
    position: relative;
    list-style: none;
}

header ul li a {
    position: relative;
    margin: 0 15px;
    text-decoration: none;
    display: inline-block;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #002173;
}
header ul li a:hover
{
    color: #00b894;
    transition: 0.4s;
}
header ul li.active a
{
    color: #00b894;
}
header ul li ul
{
    position: absolute;
    top: 35px;
    left: 10px;
    display: block;
    width: 200px;
    transition: 0.4s;
    line-height: 35px;
    opacity: 0;
    visibility: hidden;
}
header.sticky ul li:hover ul
{
    opacity: 1;
    visibility: visible;
}
header ul li ul a
{
    font-size: 18px;
}
header.sticky ul li ul
{
    position: absolute;
    top: 40px;
    left: 10px;
    display: block;
    width: 100px;
    transition: 0.4s;
    line-height: 35px;
    opacity: 0;
    visibility: hidden;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    background: white;
    
}
.heading {
    width: 100%;
    color: #f9f9f9;
    text-align: center;
    margin-bottom: 30px;
}

.heading h2 {
    font-size: 30px;
    letter-spacing: 1px;
    font-weight: 600;
}
.content {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.contentBx {
    padding-right: 30px;
}

.contentBx p {
    font-weight: 400;
    color: #111;
    line-height: 30px;
    font-size: 14px;
    margin-bottom: 10px;
    text-align: justify;
}
.contentBx h1
{
    color: #002173;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 5px;
}
.contentBx h4
{
    color: #111;
    font-size: 17px;
    letter-spacing: 0.3px;
    font-weight: 600;
    margin-bottom:10px;
}
.contentBx h3 {
    margin-bottom: 15px;
    color: #111;
    font-size: 24px;
}

.w50 {
    min-width: 50%;
}

img {
    max-width: 100%;
    margin-top: 30px;
}
.social_icons
{
    display: flex;
    margin-top: 20px;
}
.social_icons li
{
    list-style: none;
}
.social_icons li a 
{
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    text-decoration: none;
    border-radius: 4px;
}
.social_icons li a:hover
{
    background: #00b894;
}
.social_icons li a .fa
{
    color: #fff;
}
.services {
    background: #111;
}

.white {
    color: #fff;
}

.services .content 
{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
}

.services .content .serviceBx 
{
    padding: 35px 20px;
    width: 395px;
    margin: 20px;
    background: #222;
    color: #fff;
    text-align: center;
    transition: 0.5s;
    cursor: pointer;
    border-radius: 5px;
}
.btn_manage
{
    position: relative;
    margin-top: 20px;
    text-decoration: none;
    display: inline-block;
    color: #00b894;
    font-weight: 500;
    border-radius: 4px;
    font-size: 15px;
}
.btn_manage:hover
{
    color: #111;
    cursor: pointer;
}
.services .content .serviceBx:hover {
    background:#00b894;
}

.services .content .serviceBx img {
    max-width: 80px;
    filter: invert(1);
}

.services .content .serviceBx h2 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 10px;
    letter-spacing: 0.8px;
    
}
.services .content .serviceBx p 
{
    font-weight: 200;
    font-size: 15px;
    margin-top: 10px;
}
.work
{
    background: #f7f7f7;
}
.work .content 
{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
}
.work .content .workBox
{
    width: 400px;
    padding: 40px 20px;
    margin: 15px;
    background: #ffff;
    text-align: center;
    border-radius:5px;
    color: #222;
    transition: 0.5s;
    box-shadow: 1px 0px 7px 3px rgb(61 61 61 / 13%);
-webkit-box-shadow: 1px 0px 7px 3px rgb(61 61 61 / 13%);
-moz-box-shadow: 1px 0px 7px 3px rgb(61 61 61 / 13%);
}
.work .content .workBox h2
{
    font-weight: 600;
    font-size: 1.2em;
}
.work_btn:hover
{
    background: #00b894;
    transition: 0.4s;
}
.work_btn
{
    position: relative;
    margin-top: 30px;
    background: #222;
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
    color: #fff;
    font-weight: 500;
    cursor:pointer;
    border-radius:4px;
}
.btn
{
    position: relative;
    margin-top: 30px;
    background: #00b894;
    text-decoration: none;
    padding: 8px 15px;
    display: inline-block;
    color: #fff;
    font-weight: 500;
    cursor:pointer;
    border-radius:4px;
}
.serviceBx:hover .btn
{
    background: #111;
}
.testimonial {
    background: #ffff;
}

.testimonial .content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.testimonial .content .testmonialBx {
    max-width: calc(50% - 40px);
    padding: 60px 40px;
    background: #00b894;
    margin: 20px;
}

.testimonial .content .testmonialBx p {
    font-size: 16px;
    font-style: italic;
    color: #f7f7f7;
    font-weight: 300;
}

.testimonial .content .testmonialBx h3 {
    margin-top: 20px;
    text-align: end;
    color: #111;
    font-size: 18px;
    font-weight: 700;
    line-height: 1em;
}

.testimonial .content .testmonialBx h3 span {
    font-size: 14px;
    font-weight: 600;
}
.content_contact
{
    width: 100%;
    position: relative;
    text-align: center;
}
.mxw800p {
    max-width: 800px;
    margin: 0 auto;
}
.social {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
}

.social ul {
    display: flex;
}

.social ul li {
    list-style: none;
}

.social ul li a {
    text-decoration: none;
    display: inline-block;
    margin: 0 30px;
}

.social ul li a img {
    filter: invert(1);
    max-width: 40px;
}

.social ul li a:hover img {
    opacity: 0.5;
}
.contact {
    background: #000;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact .cont_content
{
    max-width: 50%;
    margin-left: 15px;
}
.contact .cont_btn
{
    margin-right: 30px;
}
.cont_btn a
{
    color: #fff;
    text-decoration: none;
    padding: 15px 50px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.8px;
    border: 2px solid #00b894;
    transition: 0.4s;
}
.cont_btn a:hover
{
    background: #00b894;
}
.contact .cont_content .text
{
   color: #f7f7f7;
   font-size: 25px;
   font-weight: 600;
}
.contact .cont_content .text span
{
    color: #00b894;
    font-size: 30px;
}

.management
{
    background: #f9f9f9;
}
.management1
{
    background: #fff;
    padding-top: 10px;
}
.management2
{
    background: #f9f9f9;
    padding-top: 10px;
}
.container
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-gap: 20px;
}
.container .card
{
    position: relative;
    text-align: center;
    margin: 0 auto;
    padding: 20px;
    width: 350px;
    background: #fff;
    box-sizing: border-box;
    overflow-y: hidden;
    border-radius: 4px;
}
.container .card .bottom_layer
{
    z-index: 1;
    position: absolute;
    top: calc(100% - 7px);
    left: 0;
    width: 100%;
    height: 100%;  
    transition: 0.4s;
    background: #E0EAFC;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #CFDEF3, #E0EAFC);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #CFDEF3, #E0EAFC); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
/* .container .card:hover .bottom_layer
{
    top: 0;
} */
.container .card .card_content
{
    z-index: 2;
    position: relative;
}
.container .card .card_content p
{
    line-height: 25px;
    color: #111;
    font-size: 14px;
    font-weight: 400;
    margin-top: 5px;
}
.container .card .card_content img
{
    width: 150px;
    height: 150px;
    border-radius: 50%;
}
.container .card .card_content span
{
    font-size: 16px;
    font-weight: 600;
}
.container .card .card_content h2
{
    font-weight: 600;
}
.s_icons
{
    display: flex;
    margin-top: 20px;
}
.s_icons li
{
    list-style: none;
}
.s_icons li a 
{
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    text-decoration: none;
    border-radius: 25px;
}
.s_icons li a:hover
{
    background: #00b894;
}
.s_icons li a .fa
{
    color: #fff;
}
@media (max-width:991px)
{
    header,
    header.sticky
    {
        padding: 20px 50px;
        z-index: 1000;
    }
    .banner h2 span
    {
        font-size: 3em;
    }
    .menu
    {
        position: fixed;
        top: 75px;
        left: -100%;
        display: block;
        padding: 100px 50px;
        text-align: center;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: 0.5s;
        z-index: 999;
        border-top: 1px solid rgba(0,0,0,0.2) ;
    } 
    .menu.active
    {
        left: 0;
    }
    header ul li a 
    {
        color: #111;
        font-size: 24px;
        margin: 10px;
    }
    .toggle
    {
        width: 40px;
        height: 40px;
        background: url(./images/menu.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 30px;
        cursor:pointer;
    }
    .toggle.active
    {
        background: url(./images/close.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 25px;
        cursor:pointer;
    }
    header.sticky .toggle
    {
        filter: invert(1);
    }
    section
    {
        padding: 100px 0px;
    }
    .banner
    {
        padding: 100px 50px 100px;
    }
    .banner h2
    {
        font-size: 1.5em;
    }
    .banner h3
    {
        font-size: 1em;
    }
    .btn
    {
        margin-top: 10px;
        padding: 10px 20px;
        font-size: 16px;
    }
    .management
{
    padding: 20px 15px;
}
.management1
{
    padding: 10px 15px;
}
.management2
{
    padding: 10px 15px;

}
    .heading h2
    {
        font-size: 24px;
    }
    .contentBx h3
    {
        font-size: 24px;
    }
    .content
    {
        flex-direction: column;
    }
    .w50
    {
        margin-bottom: 20px;
    }
    .services .content .serviceBx
    {
        margin: 10px;
    }
    .work .content .workBox
    {
        width: 100%;
        padding: 10px;
    }
    .contact
    {
        flex-direction: column;
        justify-content: center;
        flex-wrap: wrap;
    }
    .contact .cont_btn
    {
        margin-top: 50px;
    }
    .social_icons
    {
        justify-content: center;
    }
    .social {
        margin: 20px;
    }
    .social ul li a img {
        font-size: 24px;
    }
    .row100 {
        flex-direction: column;
    }
    .contact .cont_btn
{
    margin-right: 0px;
}
     h3 {
        font-size: 36px;
    }
    footer
    {
        padding: 20px;
    }
    footer .container
    {
        flex-direction: column;
    }
    footer .container .sec
    {
        margin-right: 0;
        margin-bottom: 40px;
    }
    footer .container .sec.about_pro, .quicklinks, .footer_contact
    {
        width: 100%;
    }
    .copyRights
    {
        padding: 8px 40px;
    }
    .mailsec
    {
        text-align: center;
        flex-direction: column-reverse;
        padding: 20px 50px;
    }
    .mailsec p
    {
    margin: 5px;
    letter-spacing: 0.3px;
    font-size: 13px;
    }
    .mailsec ul
    {
       margin-bottom: 20px;
    }
    .mailsec p::before
    {
        padding: 0px 8px;
        font-size: 15px;
    }
    .copyRights-section 
    {
       padding:20px 15px;
       text-align: center;
       flex-direction: column-reverse;
    }
    .copyRights-section ul 
    {
        display: block;
        margin-bottom: 10px;
    }
    .copyRights-section ul li
    {
        margin: 10px;
    }
    .login-menu
    {
        display: none;
    }
}

@media (max-width: 600px)
{ 
    header,
    header.sticky
    {
        padding: 20px 20px;
    }
    .banner
    {
        padding: 150px 20px 100px;
    } 
    .section
    {
        padding: 100px 0px;
    }
    .cont_btn a
    {
        padding: 15px 40px;
    }
    .contact .cont_content
    {
    max-width: 100%;
    }
}