@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
/*  moctoddaidem3  font-family: 'Roboto', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;600;700;900&display=swap');
/* moctoddaidem3 font-family: 'Source Sans Pro', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700;800&display=swap');
/* moctoddaidem3 font-family: 'Noto Sans JP', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:wght@300;400;500;600;700;800&display=swap');
/* moctoddaidem3 font-family: 'Merriweather Sans', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
/* moctoddaidem3 font-family: 'Poppins', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@100;200;300;400;500;600;700;800;900&display=swap');
/* moctoddaidem3 font-family: 'Be Vietnam Pro', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
/* moctoddaidem3 font-family: 'Inter', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700;800;900;1000&display=swap');
/* moctoddaidem3 font-family: 'Nunito', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&display=swap');
/* font-family: 'Libre Baskerville', serif; */


/*********************************************************
    Common Section Start
*********************************************************/
:root {
    --common-font-family: 'Poppins', sans-serif;
    /* --blue-color: #2e3191; */
    --menu-color: #080078;
    --blue-color: #2e5991;
    --green-color: #78b437;
    --cyan-color: #00B0F0;
    --orange: #e96e00;
    --light-gray-color: #F5F5F5;
    --dark-black-color: #3a3a3a;
    --transition-delay: 0.1s;
}

.img-fluid {
	width: 100%;
	height: auto;
}

#header {
    width: 100% !important;
    margin-left: 0 !important;
}

.container {
    width: 90% !important;
    max-width: 90% !important;
}

html {
    scroll-behavior: smooth !important;
    margin-top: 0 !important;
}

body {
    padding: 0;
    margin: 0;
    background-color: #fff !important;
    font-family: var(--common-font-family);
    overflow-x: hidden;
}

a {text-decoration: none;}
.bold{font-weight: bold !important;}
.italic{font-style: italic !important;}
.mob-view {display: none;}
.desk-view {display: block;}

ul,ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.common-hd[data-scroll="in"] {opacity: 1;transform: translateY(0)}
.common-hd[data-scroll="out"] {opacity: 0;transform: translateY(-40px)}

.common-hd {
    color: var(--blue-color);
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(-40px);
    transition: all 0.6s;
}

.common-hd[data-scroll="in"]::before,
.common-hd[data-scroll="in"]::after {width: 46px;}
.common-hd[data-scroll="out"]::before,
.common-hd[data-scroll="out"]::after {width: 0;}
.blue-color {color:var(--blue-color) !important;}
.light-blue-color {color: #666ae4 !important;}


/*********************************************************
    Header Section Start
*********************************************************/
#header {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    width: calc(100% + 150px);
    margin-left: -75px;
}

header.container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 5%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e7e7e7;
}
.logo {max-width: 210px;}

.menu-header-menu-container .menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-header-menu-container .menu > .menu-item > a {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--menu-color);
    padding: 15px 0;
    display: block;
    transition: all 0.2s;
    position: relative;
}

.menu-header-menu-container .menu > .menu-item:last-child > a {
    text-transform: capitalize;
    background-color: #0a58ca;
    border: 1px solid #0dcaf0;
    color: #fff;
    border-radius: 7px;
    padding: 8px 15px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.menu-header-menu-container .menu > .menu-item:last-child > a:hover {color: #1E2E40;}

.menu-header-menu-container .menu > .menu-item:last-child > a::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: -100%;
    left: 0;
    z-index: -1;
    transition: all 0.3s;
}
.menu-header-menu-container .menu > .menu-item:last-child > a:hover::before {top: 0;}

.menu-header-menu-container .menu > .menu-item > a:hover {color: var(--cyan-color);}
.menu-header-menu-container .menu > .menu-item > a:hover.login-item {color: #0b90b1;}
.menu-header-menu-container .menu-item-has-children {position: relative;}
.menu-header-menu-container .menu > .menu-item-has-children:hover > a {color: var(--cyan-color);}

.menu-header-menu-container .menu > .menu-item-has-children:hover > a ~ .sub-menu {
    opacity: 1;
    top: 100%;
    visibility: visible;
    transition: all 0.4s;
}

.menu-header-menu-container .menu > .menu-item-has-children > .sub-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: -10px;
    z-index: 9;
    min-width: 210px;
    background-color: #f2f2f2;
    border-radius: 0 0 5px 5px;
    border-top: 4px solid var(--cyan-color);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
}

.menu-header-menu-container .menu > .menu-item-has-children > .sub-menu::before {
    content: "";
    border: 9px solid transparent;
    border-bottom-color: var(--cyan-color);
    position: absolute;
    top: -22px;
    left: 20px;
}

.menu-header-menu-container .menu > .menu-item-has-children > .sub-menu .menu-item a {
    display: block;
    white-space: nowrap;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--menu-color);
    border-bottom: 1px dashed #dfdfdf;
    padding: 8px 15px;
    transition: all 0.3s;
}

.menu-header-menu-container .menu > .menu-item-has-children > .sub-menu .menu-item:last-child a {border-bottom: none;}
.menu-header-menu-container .menu > .menu-item-has-children > .sub-menu .menu-item a:hover {color: var(--cyan-color);}
.menu-header-menu-container .menu > .menu-item-has-children > .sub-menu > .menu-item-has-children:hover > a {color: var(--cyan-color);}

.menu-header-menu-container .menu > .menu-item-has-children > .sub-menu > .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    top: 0;
    visibility: visible;
    transition: all 0.4s;
}

.menu-header-menu-container .menu > .menu-item-has-children > .sub-menu > .menu-item-has-children .sub-menu {
    position: absolute;
    top: -10px;
    left: calc(100% + 9px);
    z-index: 9;
    min-width: 210px;
    background-color: #f2f2f2;
    border-radius: 0 5px 5px 0;
    border-left: 4px solid var(--green-color);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
}

.menu-header-menu-container .menu > .menu-item-has-children > .sub-menu > .menu-item-has-children .sub-menu::before {
    content: "";
    border: 9px solid transparent;
    border-right-color: var(--green-color);
    position: absolute;
    top: 10px;
    left: -22px;
}

.menu-header-menu-container .menu > .menu-item-has-children > .sub-menu > .menu-item-has-children .sub-menu::after {
    content: "";
    width: 100%;
	height: 100%;
    position: absolute;
    top: 0;
    left: -20px;
	z-index: -1;
}

.menu-header-menu-container .menu > .menu-item-has-children > .sub-menu > .menu-item-has-children .sub-menu .menu-item a {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: var(--menu-color);
    padding: 5px 15px;
    transition: all 0.3s;
}
.menu-header-menu-container .menu > .menu-item-has-children > .sub-menu > .menu-item-has-children .sub-menu .menu-item a:hover {color: #609922;}

/*********************************************************
    Main Banner Start
*********************************************************/
.banner-area {
    display: flex;
    overflow-x: hidden;
}

.banner-area .main-banner {width: 61.48%;}
.banner-area .main-slider {width: 38.52%;}

.banner-area .main-banner,
.mob-banner {position: relative;}

/* .banner-area .main-banner::before, .mob-banner::before {
    content: "";
	background-color: rgba(5 112 161 / 32%);	
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
	left: 0;
} */
.banner-area video {width: 100%;}

.banner-details {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.banner-details .banner-desc {
    width: 75%;
    height: max-content;
    padding: 55px 30px;
    backdrop-filter: blur(9px);
    border-radius: 10px;
    overflow: hidden;
    background-color: rgba(13, 91, 155, 0.92);
    box-shadow: 0 0 30px 0 rgba(0,0,0,.15);
}

.banner-details .banner-desc h2 {
    color: #fff;
    font-family: var(--common-font-family);
    font-size: 20px;
    font-weight: bold;
    line-height: normal;
    margin-bottom: 20px;
}

.banner-details .banner-desc p {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 10px;
}

.banner-desc .link-btn {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.banner-desc .link-btn a {
    font-size: 15px;
    display: block;
    border-radius: 5px;
    padding: 5px 15px;
    transition: all 0.3s;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

.banner-desc .link-btn .conversation-btn {
    font-weight: 600;
    color: var(--blue-color);
    background-color: #eeeeee;
}

.banner-desc .link-btn .know-more-btn {
    color: #fff;
    background-color: #303445;
    padding: 8px 30px;
    position: relative;
    z-index: 9;
    overflow: hidden;
}

.banner-desc .link-btn .know-more-btn::before {
    content: "";
    background-color: #fff;
    width: 100%;
    height: 100%;
    position: absolute;
    top: -100%;
    left: 0;
    z-index: -1;
    transition: all 0.4s;
}

.banner-desc .link-btn .know-more-btn:hover::before {top: 0;}
.banner-desc .link-btn .know-more-btn:hover {color: var(--blue-color);}
.banner-desc .link-btn a:hover {box-shadow: 0 0px 3px rgba(0, 0, 0, 0.2);}

/*********************************************************
    Welcome Section Start
*********************************************************/
.welcome-area {
    padding-top: 40px;
    padding-bottom: 20px;
}

.welcome-area img {
    width: 250px;
    max-width: 100%;
}
.welcome-area .container {text-align: center;}

.welcome-area h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #332442;
    max-width: 50rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    margin-bottom: 0;
    text-align: center;
}

.welcome-area h2 span {
    display: block;
    color: #4c1782;
}

/*********************************************************
    Secure Compliant Start
*********************************************************/
.secure-compliant-area {overflow-x: hidden;}
.secure-compliant-area, .security-area {padding: 25px 0;}
.security-area .life-straviso-desc .light-blue-color {font-size: 16px;}
.security-area .security-sec2-type2 {margin-top: 30px;}
.security-area .security-sec2-type2 .life-straviso-thumbs {width: 100px;}
.security-area .security-sec2-type2 .life-straviso-desc {width: calc(100% - 100px);}
.security-area .single-life-straviso-details {display: none;}
.security-area .single-life-straviso-details.active {display: block;}
.security-bottom-desc {text-align: center;}

.security-bottom-desc h3 {
    font-size: 19px;
    font-weight: bold;
    margin-bottom: 15px;
}

.secure-compliant-area h1.common-hd {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.secure-compliant-area h2.common-sub-hd {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #0c0c11;
    display: flex;
    text-align: center;
    padding-left: 12%;
    padding-right: 12%;
}

.multi-tabs-area {
    /* display: flex;
    gap: 30px; */
    margin-top: 60px;
    margin-bottom: 40px;
}

.multi-tabs-area #tab-list {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.multi-tabs-area #tab-list li[data-scroll="in"]{transform: scale(1)}
.multi-tabs-area #tab-list li[data-scroll="out"]{transform: scale(0)}

.multi-tabs-area #tab-list li {
    font-size: 15px;
    font-weight: 500;
    width: 100%;
    background-color: #fff;
    text-align: center;
    padding: 10px 20px;
    border: 1px solid #dfdfdf;
    border-radius: 6px;
    white-space: nowrap;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
    transform: scale(0);
    transition: all 0.8s;
    cursor: pointer;
}

.security-area #tab-list {
    display: flex;
    align-items: center;
    gap: 36px;
    margin-top: 60px;
    margin-bottom: 40px;
}

.security-area #tab-list li {
    font-size: 15px;
    font-weight: 500;
    width: calc(25% - 27px);
    background-color: #fff;
    text-align: center;
    padding: 10px;
    border: 1px solid #dfdfdf;
    border-radius: 6px;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
    cursor: pointer;
}

.multi-tabs-area #tab-list li:hover,
.security-area #tab-list li:hover {background-color: #d9daff;}

.multi-tabs-area #tab-list li.active,
.security-area #tab-list li.active {
    background-color: var(--blue-color);
    border: 1px solid  var(--blue-color);
    color: #fff;
    user-select: none;
    cursor: auto;
}

#multi-tabs-details .single-multi-tabs-details {
    gap: 60px;
    display: none;
}
#multi-tabs-details .single-multi-tabs-details.active {display: flex;}

.single-multi-tabs-details.active .multi-tabs-desc[data-scroll="in"]{opacity: 1;}
.single-multi-tabs-details.active .multi-tabs-desc[data-scroll="out"]{opacity: 0;}

.single-multi-tabs-details.active .multi-tabs-desc {
    opacity: 0;
    transition: all 1s;
}
#multi-tabs-details .multi-tabs-desc {width: calc(100% - 430px);}

#multi-tabs-details .multi-tabs-desc h1 {
    font-size: 20px;
    font-weight: bold;
    color: var(--blue-color);
    text-align: left;
    margin-bottom: 15px;
}

#multi-tabs-details .multi-tabs-desc h2 {
    font-size: 17px;
    font-weight: bold;
    color: var(--dark-black-color);
    text-align: left;
	visibility: visible;
}

#multi-tabs-details .multi-tabs-desc p,
.security-area p {
    font-size: 16px;
    font-weight: 400;
    color: #0c0c11;
}

#multi-tabs-details .multi-tabs-desc .read-more-btn {
    display: inline-block;
    font-size: 13px;
    background-color: var(--cyan-color);
    border: 1px solid var(--cyan-color);
    color: #fff;
    border-radius: 4px;
    padding: 5px 15px;
    margin-top: 25px;
    transition: all 0.4s;
}

#multi-tabs-details .multi-tabs-desc .read-more-btn:hover {
    font-weight: 400;
    color: var(--blue-color);
    background-color: transparent;
    border: 1px solid var(--blue-color);
}

.single-multi-tabs-details.active .multi-tabs-thumbs[data-scroll="in"]{
    transform: translateX(0);
    opacity: 1;
}

.single-multi-tabs-details.active .multi-tabs-thumbs[data-scroll="out"]{
    transform: translateX(100%);
    opacity: 0;
}

.single-multi-tabs-details.active .multi-tabs-thumbs {
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.9s;
}
#multi-tabs-details .multi-tabs-thumbs {width: 370px;}

#multi-tabs-details .single-multi-tabs-thumb {
    border-radius: 15px;
    box-shadow: 0 0 13px rgba(0, 0, 0, 0.15);
}
#multi-tabs-details .single-multi-tabs-thumb img {border-radius: 15px;}

/*********************************************************
    Vision & Mission Start
*********************************************************/
.brief-area {
    display: flex;
    margin-top: 30px;
    margin-bottom: 70px;
}

.left-col {
    width: 55%;
    border-right: 1px solid #c1c1c1;
    padding-right: 40px;
}

.right-col {
    width: 45%;
    padding-left: 40px;
}

.brief-area h2 {
    font-size: 22px;
    font-weight: bold;
    color: var(--blue-color);
    text-align: left;
    margin-bottom: 12px;
}

.brief-area p {
    font-size: 16px;
    font-weight: 400;
    color: #0c0c11;
    margin-bottom: 20px;
}

.brief-block {margin-bottom: 35px;}
.brief-block:last-of-type {margin-bottom: 0;}

/**************************************
    Our Team Section
**************************************/
.leadership {
    margin-top: 50px;
    margin-bottom: 60px;
}

.team-profile {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.first-prof {
    width: 100%;
    display: flex;
    justify-content: center;
}

.single-team-profile {
    width: calc(25% - 30px);
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #ece9e9;
    transition: all 0.4s;
}

.single-team-profile:hover {transform: translateY(-4px);}
.profile-avatar {cursor: pointer;}

.profile-details {
    text-align: center;
    padding: 15px 10px;
    transition: all 0.4s;
    cursor: pointer;
    height: 100%;
}

.single-team-profile:hover .profile-details {background: #0a58ca;}

.profile-designation h3 {
    display: inline-block;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 0;
    cursor: pointer;
    transition: all 0.4s;
}

.single-team-profile:hover .profile-designation h3 {color: #ffffff;}
.single-team-profile:hover .profile-designation h6 {color: #ffffff;}
.single-team-profile:hover .profile-designation p {color: #ffffff;}

.profile-designation h6 {
    font-size: 13px;
    font-weight: 400;
    color: #919191;
    line-height: 18px;
    margin-bottom: 0;
    transition: all 0.4s;
}

.profile-designation p {
    font-size: 15px;
    font-weight: 400;
    color: rgb(0, 0, 0, 0.6);
    line-height: 18px;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 0;
    transition: all 0.4s;
}

.full-profile {
    position: fixed;
    top: 0;
    left: -40px;
    z-index: -1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: 0;
    transition: all 0.3s;
}

.full-profile.active {
    opacity: 1;
    visibility: visible;
    left: 0;
    z-index: 99999;
}

.full-profile .prof-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.full-profile-info {
    border-radius: 5px;
    background-color: #fff;
    width: 75%;
    max-height: 90%;
    overflow-y: auto;
    z-index: 9;
    padding: 1.5rem;
    position: relative;
}

.full-profile-info::-webkit-scrollbar {
    background-color: transparent;
    width: 7px;
}

.full-profile-info::-webkit-scrollbar-thumb {
    background: #d6d6d6;
    border-radius: 10px;
}
.full-profile-info::-webkit-scrollbar-thumb:hover {background: #ccc;}

.closeProf {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 999;
}

.closeProf i {
    color: #666666;
    border: 1px solid #666666;
    background-color: transparent;
    border-radius: 4px;
    width: 30px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.closeProf i:hover {
    color: #0465cc;
    border-color: #0465cc;
    background-color: rgba(4, 101, 204, 0.1);
}

.prof-image {
    max-width: 200px;
    margin-bottom: 10px;
}

.full-profile-info h3 {
    font-size: 20px;
    color: #a33600;
    margin-bottom: 10px;
}

.full-profile-info h6 {
    font-size: 15px;
    color: rgba(0, 0, 0, .5);
    margin-bottom: 20px;
}

.full-profile-info p {
    font-size: 16px;
    color: rgba(0, 0, 0, .7);
}

.full-profile-info p a {
    text-decoration: underline;
    color: rgba(0, 0, 0, .7);
}
.full-profile-info p a:hover {color: #0d6efd;}

.prof-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.full-profile-info ol {
    list-style: auto;
    padding-left: 25px;
}

.full-profile-info ol li {margin-bottom: 20px;}
.full-profile-info .prof-social {justify-content: start;}

#termsConditions {
    color: #0d6efd;
    cursor: pointer;
}

.prof-social li a {
    display: block;
    font-size: 14px;
    width: 30px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    color: #373e5a;
    border: 1px solid #373e5a;
    border-radius: 50%;
    transition: all 0.2s;
}

.prof-social li a:hover {
    color: #741f06;
    border-color: #741f06;
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
    transform: scale(1.01);
}

/********************************************
    News Section Start
********************************************/
#news {
    display: flex;
    gap: 30px;
    margin-top: 70px;
    margin-bottom: 100px;
}

#news .left-col {width: calc(72% - 30px);}
#news .right-col {width: 28%;}
.widgets {font-family: "Geologica", sans-serif;}

.widgets h1 {
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    color: #6d6d6d;
    margin-top: 5px;
    margin-bottom: 30px;
    padding-bottom: 5px;
    position: relative;
}

.widgets h1::before {
    content: "";
    background-color: #717171;
    width: 85%;
    height: 2px;
    position: absolute;
    top: 100%;
    left: 0;
}

.widgets h1::after {
    content: "";
    background-color: #9ea9b4;
    width: 15%;
    height: 2px;
    position: absolute;
    top: 100%;
    left: 85%;
}

.single-widget {
    padding-top: 5px;
    margin-bottom: 25px;
}

.widget-title h3 {
    font-size: 14px;
    text-transform: uppercase;
    color: #424863;
    background: #f4f4f4;
    border-top: 1px solid var(--dark-black);
    padding: 7px 9px;
    margin-bottom: 6px;
}

.widget-content {font-family: var(--common-font);}
.widget-content ul, .widget-content ol {padding-left: 20px;}

.widget-content p, .widget-content li,
.widget-content img {
    font-size: 13px;
    font-weight: 400;
    color: var(--dark-black);
    margin-bottom: 6px;
}
.widget-content p:last-of-type {margin-bottom: 0;}

#news h1, .latest-news h1 {
    font-size: 22px;
    font-weight: 600;
    color: var(--blue-color);
    border-bottom: 1px solid var(--blue-color);
    margin-bottom: 25px;
    padding-bottom: 4px;
    position: relative;
}

.news-block {
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 45px;
}
.members-news {margin-top: 50px;}

.members-news > h2 {
    font-size: 21px !important;
    color: var(--orange);
    border-bottom: 1px solid var(--orange);
}

.single-news-block {
    width: calc(50% - 15px);
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
    border: 1px solid #d4d4d4;
    border-top: none;
}

.single-news-block:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.single-news-block .news-thumb {
    height: min-content;
    overflow: hidden;
}

.single-news-block .news-thumb img {
    margin: 0;
    transition: all 1.5s;
}
.single-news-block:hover .news-thumb img {transform: scale(1.05);}

.single-news-block .news-block-content {
    padding: 15px;
    padding-top: 12px;
    overflow: hidden;
}

.news-block-content .time {
    display: flex;
    gap: 6px;
    align-items: center;
    font-size: 13px;
    font-family: var(--menu-font);
    color: #8b8b8b;
    margin-bottom: 12px;
}
.news-block-content .time i {font-size: 13px;}

.news-block-content h2 {
    font-family: var(--common-font);
    font-size: 17px !important;
    font-weight: 600 !important;
    color: var(--dark-black);
    margin-bottom: 13px !important;
    text-align-last: left;
    word-spacing: normal !important;
    white-space: normal;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    max-height: 44px;
    overflow: hidden;
    transition: all 0.3s;
}

.news-block-content h2 a {color: var(--dark-black);}
.news-block-content h2 a:hover {color: var(--orange);}

.news-block-content p {
    font-size: 15px !important;
    font-family: var(--common-font);
    font-weight: 400;
    color: #343434 !important;
    text-align: left !important;
    white-space: normal;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    max-height: 94px;
    overflow: hidden;
    margin-bottom: 10px !important;
}

.news-block-content .readMoreBtn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--menu-font);
    line-height: 14px;
    color: #00b0f0;
    transition: all 0.3s;
}
.news-block-content .readMoreBtn:hover {color: var(--orange);}

.news-block-content .readMoreBtn i {
    line-height: 9px;
    font-weight: 500;
    padding-top: 2px;
}

.moreNewsBtn {
    text-align: center;
    margin-top: 40px;
}

.moreNewsBtn a {
    font-family: "Gelasio", serif;
    font-size: 20px;
    color: #004E73;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #c8e6ff;
    border: 1px solid #004f737c;
    padding: 10px 25px;
    border-radius: 7px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
}

.moreNewsBtn a:hover {
    color: #fff;
    background-color: #0a8ac5;
    border-color: #004E73;
}

.news-list {
    margin-top: 50px;
    margin-bottom: 100px;
}

.single-news {
    display: flex;
    gap: 24px;
    border: 1px solid #ebebeb;
    background: #fff;
    padding: 20px;
    margin-bottom: 30px;
    transition: all 0.4s;
}

.single-news:hover {box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);}
.single-news:last-of-type {margin-bottom: 0;}

.news-thumbnail {
    width: 30%;
    height: 100%;
    overflow: hidden;
}

.news-thumbnail img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    min-height: 200px;
    transition: all 0.6s;
}

.single-news:hover .news-thumbnail img {transform: scale(1.05);}
.news-brief-content {width: calc(70% - 24px);}

.news-brief-content h2 {
    font-family: var(--common-font);
    font-size: 19px;
    font-weight: 600;
    line-height: normal;
    color: var(--dark-black);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 10px;
}

.news-brief-content h2 a {
    color: #0768f7;
    transition: all 0.4s;
}
.news-brief-content h2 a:hover {color: var(--orange);}

.authors {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    align-items: center;
}

.authors li {
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 13px;
    font-family: var(--menu-font);
    color: #8b8b8b;
}
.authors li i {font-size: 14px;}

.news-brief-content p {
    font-size: 15px;
    font-family: var(--common-font);
    color: #585858;
    margin-top: 15px;
    margin-bottom: 0;
    white-space: normal;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    max-height: 94px;
    overflow: hidden;
}

.readMore {
    margin-top: 20px;
    padding-top: 5px;
    border-top: 1px dashed #ebebeb;
}

.readMore a {
    display: inline-flex;
    align-items: center;
    color: #505050;
    font-size: 14px;
    transition: all 0.4s;
}

.readMore a i {
    font-size: 12px;
    line-height: 9px;
    padding-top: 2px;
    transition: all 0.4s;
}

.readMore a:hover i {transform: translateX(3px);}
.readMore a:hover {color: var(--orange);}

.author.news-block {gap: 14px;}

.author .single-news-block {
    width: calc(50% - 7px);
    display: flex;
    gap: 10px;
    border-radius: 6px;
    border: 1px solid #d4d4d4;
    border-left: none;
}

.author .single-news-block .news-thumb {
    width: 120px;
    height: 98px;
}

.author .single-news-block .news-thumb img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.author .single-news-block .news-block-content {
    width: calc(100% - 130px);
    padding: 5px;
    padding-left: 0;
}

.author .news-block-content .time {
    font-size: 12px;
    line-height: 12px;
    margin-bottom: 10px;
}
.author .news-block-content .time i {font-size: 11px;}

.author .news-block-content h2 {
    max-height: 37px;
    font-size: 15px !important;
    margin-bottom: 6px !important;
}
.author .news-block-content p {display: none;}

/********************************************
    News Full Page Section Start
********************************************/
.full-news-area {
    margin-top: 70px;
    margin-bottom: 100px;
}

.full-news-area > .container {
    display: flex;
    gap: 20px;
}

.full-news-details {
    width: calc(75% - 20px);
    border: 1px solid #f1f1f1;
}
.right-panel {width: 25%;}

.full-news-details h1 {
    font-size: 25px;
    font-weight: bold;
    font-family: var(--common-font);
    color: var(--blue);  
    padding: 15px;
    padding-bottom: 0;
    margin-bottom: 25px;
}

.author-social {
    font-family: var(--menu-font);
    display: flex;
    align-items: center;
    gap: 35px;
    padding: 0 10px;
    margin-bottom: 12px;
}

.author-social .author-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-social .author-box p {
    display: flex;
    align-items: center;
    gap: 6px;
}

.author-social .author-box p,
.author-social .social-media p {
    font-size: 15px;
    color: #838383;
    margin-bottom: 0;
}
.author-social .author-box p i {font-size: 13px;}

.author-social .social-media {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-social .social-media a img {width: 20px;}
.full-news-details .feature-image {margin-bottom: 10px;}
.full-news-details .feature-image img {
    max-width: 100%;
    height: auto;
}

.full-news-details .news-content {
    color: var(--dark-black);
    font-family: var(--common-font);
    padding: 0 15px;
}

.full-news-details .news-content ul,
.full-news-details .news-content ol{
    padding-left: 40px;
    margin-bottom: 20px;
}
.full-news-details .news-content ol {list-style: decimal;}
.full-news-details .news-content ul {list-style: disc;}
.full-news-details .news-content ul ul {list-style: circle;}

.full-news-details .news-content ul li,
.full-news-details .news-content ol li {
    font-size: 17px;
    margin-bottom: 10px;
}

.full-news-details .news-content a {color: var(--cyan-color);}
.full-news-details .news-content a:hover {color: rgb(26, 26, 26)}

.full-news-details .news-content p {
    font-size: 16px;
    margin-bottom: 18px;
}
.full-news-details .news-content img {margin: 25px 0;}

.full-news-details .news-content h2,
.full-news-details .news-content h3,
.full-news-details .news-content h4,
.full-news-details .news-content h5 {
    font-weight: bold;
    margin-top: 24px;
    margin-bottom: 12px;
}

.full-news-details .news-content h2 {font-size: 23px;}
.full-news-details .news-content h3 {font-size: 21px;}
.full-news-details .news-content h4 {font-size: 19px;}
.full-news-details .news-content h5 {font-size: 17px;}
.full-news-details .news-content > img {margin: 20px 0;}

.full-news-details .news-content h1 {
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    background-color: var(--cyan-color);
    color: #fff;
    padding: 30px 40px;
	width: max-content;
    margin: 40px auto;
}
.section-title {margin-bottom: 15px;}

.section-title h2 {
    font-family: var(--common-font);
    font-weight: 600;
    font-size: 16px;
    color: #424863;
    background: #f4f4f4;
    border-left: 3px solid #0a112d;
    padding: 7px 9px;
    margin-bottom: 0;
}

.single-latest-news {
    font-family: var(--common-font);
    background-color: #ffffff;
    padding-bottom: 13px;
    margin-bottom: 13px;
    display: flex;
    border-bottom: 1px solid #eeeeee;
}

.single-latest-news > a {
    display: block;
    width: 91px;
    height: 75px;
    border-radius: 0 4px 4px 0;
    overflow: hidden;
}

.single-latest-news a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.latest-news-content {
    width: calc(100% - 91px);
    padding-left: 15px;
}

.latest-news-content h3 {
    font-size: 13px;
    font-weight: 600;
    line-height: 17px;
    margin-bottom: 0;
    white-space: normal;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    max-height: 54px;
    overflow: hidden;
}

.latest-news-content h3 a {
    color: var(--dark-black);
    transition: all 0.3s;
}
.latest-news-content h3 a:hover {color: var(--orange);}

.latest-news-content span {
    display: block;
    font-family: var(--menu-font);
    font-size: 12px;
    color: #8a8a8a;
    margin-top: 4px;
}

/********************************************
    Gallery Begin Here
********************************************/
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 21px;
    margin-top: 70px !important;
    margin-bottom: 100px !important;
}

.gallery .gallery-item {
    width: calc(33.33% - 14px) !important;
    transition: all 0.4s;
}

.gallery .gallery-item img {
    height: 100%;
    width: 100%;
}

.gallery .gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.gallery-content .gallery {
    align-items: start;
    gap: 20px;
}
.gallery-content .gallery-item {margin: 0 !important;}

.gallery-thumb {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 70px;
    margin-bottom: 100px;
}

.single-gallery-thumb {
    width: calc(20% - 16px);
    border: 1px solid #efefef;
}

.single-gallery-thumb .gallery-thumbnail {
    overflow: hidden;
    position: relative;
}

.single-gallery-thumb .gallery-thumbnail::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: 6px;
    transition: all 0.5s;
}
.single-gallery-thumb:hover .gallery-thumbnail::before {background-color: rgba(42, 67, 104, 0.3);}

.single-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 1.5s;
}
.single-gallery-thumb:hover img {transform: scale(1.1);}

.single-gallery-thumb h2 {
    font-size: 15px;
    font-weight: 400;
    color: #2d3f5b;
    background-color: #efefef;
    padding: 15px 10px;
    margin-bottom: 0;
    text-align: center;
}

/*********************************************************
    Page Content Section Start
*********************************************************/
#pages-area {
    margin-top: 50px;
    margin-bottom: 50px;
}

.main-hd {
    font-family: "Newsreader", serif;
    font-size: 27px;
    font-weight: 500;
    color: #575757;
    border-bottom: 1px solid #ccc;
    margin-bottom: 35px;
    padding-bottom: 4px;
}

.page-details {
    display: flex;
    gap: 30px;
}

.page-details .left-col {width: calc(72% - 30px);}
.page-details .right-col {width: 28%;}

.pages-content h2 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 8px;
}

.pages-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 8px;
}

.pages-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 8px;
}

.pages-content ul {
    list-style: disc;
    padding-left: 35px;
}

.pages-content ol {
    list-style: decimal;
    padding-left: 35px;
}

.pages-content p, .pages-content li {
    font-size: 16px;
    color: #404040;
    margin-bottom: 15px;
}
.pages-content p {margin-bottom: 25px;}

/********************************************
    Testimonials Begin Here
********************************************/
.testimonial {
    /* background-image: linear-gradient(to bottom, #90bacd, #bdbebe); */
    padding: 50px 5%;
    padding-bottom: 80px;
}

.testimonials-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.testimonials-list .testimonial-slider {width: calc(50% - 20px);}

.testimonial h2, .page-content > h1 {
    font-family: var(--common-font-family);
    font-size: 28px;
    font-weight: 600;
    color: var(--blue-color);
    margin-bottom: 50px;
    text-align: center;
}
.page-content > h1 {margin-top: 30px;}

.testimonial .owl-carousel .owl-stage {padding: 20px 0;}
.testimonial .owl-carousel .owl-item {padding: 0 10px;}

.testimonial-slider {
    background-color: #fff;
    border-radius: 10px;
    height: 100%;
    margin-top: 50px;
    border: 1px solid #e7e7e7;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
    padding: 60px 35px;
    padding-bottom: 40px;
    position: relative;
}

.testimonial-prof {
    position: absolute;
    top: -50px;
    left: calc(50% - 25px);
    border: 1px solid #2C0F4F;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    overflow: hidden;
}

.testimonial-slider p {
    font-size: 14px;
    color: #2C0F4F;
}

.testimonial-slider h6 {
    font-size: 14px;
    font-weight: 600;
    color: #2C0F4F;
    margin-bottom: 0;
    padding-left: 15px;
    position: relative;
}

.testimonial-slider h6::before {
    content: "";
    width: 10px;
    height: 2px;
    background-color: #b799db;
    position: absolute;
    top: 50%;
    left: 0;
}

.experience-more {
    text-align: center;
    margin-top: 60px;
}

.experience-more a {
    display: inline-block;
    text-decoration: none;
    font-size: 17px;
    font-family: 'Karla', sans-serif;
    border: 1px solid #d5692d;
    color: #d5692d;
    background-color: transparent;
    padding: 9px 18px;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    z-index: 9;
    transition: all 0.4s;
}

.experience-more a:hover {
    border-color: #381308;
    color: #381308;
    background-color: #edf5ff;
}

/*********************************************************
    Delivering business Start
*********************************************************/
.delivery-business-area {position: relative;}
.delivery-business-area .delivery-bg {background-color: #214c7f;}

.delivery-business-details {
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.delivery-business-details h2 {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-align: center;
}

.counter-list {
    display: flex;
    /* align-items: center; */
    gap: 32px;
    margin-top: 35px;
}

.counter-list li[data-scroll="in"]{transform: scale(1);}
.counter-list li[data-scroll="out"]{transform: scale(0);}

.counter-list li {
    width: calc(25% - 24px);
    border: 2px  solid #c5deff;
    color: #c5deff;
    /* color: #bfbfbf; */
    text-align: center;
    border-radius: 20px;
    padding: 20px;
    transform: scale(0);
    transition: all 1s;
}

.counter-list .value {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.counter-list .title {
    font-size: 14px;
    font-weight: 400;
}

.counter-list .title span {display: block;}
.telecom-hd {font-size: 22px !important;}

.telecom-counter {
    justify-content: center;
    gap: 90px;
}

.telecom-counter li {
    width: calc(25% - 60px);
    border-color: var(--cyan-color);
    color: var(--blue-color);
    padding: 25px 20px;
}

.telecom-counter .value {
    font-size: 34px;
    font-weight: 500;
    margin-bottom: 5px;
}

.telecom-counter .value span {
    font-size: 34px;
    font-weight: bold;
}

.telecom-counter .title {
    font-size: 16px;
    font-weight: 600;
}
.telecom-counter .title p {margin-bottom: 0;}

/*********************************************************
    Key Initiatives Start
*********************************************************/
.initiative-area {
    padding-top: 60px;
    padding-bottom: 95px;
    background-color: #f3f3f3;
}

.initiative-area h1 {
    font-size: 25px;
    font-weight: bold;
    color: #080C72;
    margin-bottom: 65px;
}

.initiative-list {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: center;
    gap: 45px;
}

.single-initiative {
    width: calc(33.33% - 30px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.initiative-logo img {max-width: 90px;}
.initiative-info {text-align: center;}

.initiative-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #de5ca3;
}

.single-initiative:nth-child(2) .initiative-info h3 {color: #800000;}
.single-initiative:last-child .initiative-info h3 {color: #c78c08;}
.initiative-info p {font-size: 1rem;}

/*********************************************************
    Partners Start
*********************************************************/
.partners-area {
    padding-top: 60px;
    padding-bottom: 95px;
}

.partners-area h1 {
    font-size: 25px;
    font-weight: bold;
    color: #080C72;
    margin-bottom: 65px;
}

/* .partners-list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
} */
 
.partner-logo {background-color: #F5F5F5;}
.partners-carousel .carousel-cell {width: 16.66%;}

.partners-carousel .carousel-cell .partners-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 80px;
    margin: auto;
}
.partners-carousel .carousel-cell .partners-logo img {
    max-width: 100%;
    height: auto;
}
.partners-carousel .flickity-page-dots {display: none;}

/*********************************************************
    Faqs Section Start
*********************************************************/
.faqs-area {
    background-color: #E2EAF0;
    padding-top: 40px;
    padding-bottom: 60px;
}

.faqs-area h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: bold;
    color: #004A41;
    text-align: center;
    margin-bottom: 40px;
}
.page-content .faqs-area h1 {color: #0768f7;}

.single-faqs {
    font-family: 'Poppins', sans-serif;
    color: #3b3c41;
    background-color: #fff;
    border-radius: 30px;
    margin-bottom: 15px;
    box-shadow: 0 1px 15px rgb(0, 0, 0, 0.05);
    transition: all 0.6s;
}
.single-faqs.active {border-radius: 10px;}

.page-content .single-faqs {
    margin-bottom: 25px;
    border-radius: 10px;
}

.faqs-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 30px;
    cursor: pointer;
}
.page-content .faqs-title {cursor: auto;}

.faqs-title h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
    margin-bottom: 0;
}

.faqs-title i {
    color: #ff3a3a;
    transition: all 0.4s;
}
.single-faqs.active .faqs-title i {transform: rotate(-180deg);}

.faqs-content {
    padding: 17px 30px;
    padding-top: 0;
    display: none;
}
.single-faqs.active .faqs-content, .page-content .faqs-content {display: block;}

.faqs-content p {
    font-size: 15px;
    border-top: 1px solid #cfcfcf;
    padding-top: 17px;
    margin-bottom: 10px;
}

/*********************************************************

    Blogs Content Section Start

*********************************************************/

.full-blogs-area {margin: 40px 0;}

.full-blogs-details h1.press-hd {
    padding: 0 !important;
    background-color: transparent !important;
    text-align: left !important;
    color: var(--blue-color) !important;
}

.full-blogs-details h1 {

    font-size: 27px;

    font-weight: bold;

    color: var(--blue-color);
    

    margin-bottom: 20px;

}



.author-social {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}



.author-social .author-box {

    display: flex;

    align-items: center;

    gap: 15px;

}



.author-social .author-box p,

.author-social .social-media p {

    font-size: 16px;

    color: #838383;

    margin-bottom: 0;

}



.author-social .social-media {

    display: flex;

    align-items: center;

    gap: 10px;

}



.author-social .social-media a img {width: 23px;}



.full-blogs-details .feature-image {margin-bottom: 30px;}



.full-blogs-details .blog-content {

    color: var(--dark-black-color);

}


.blog-content video {
    width: 600px;
    height: 339px;
    margin-left: calc(50% - 300px);
}


.full-blogs-details .blog-content ul,
.full-blogs-details .blog-content ol{

    list-style: disc;

    padding-left: 40px;

    margin-bottom: 20px;

}



.full-blogs-details .blog-content ul ul {list-style: circle;}



.full-blogs-details .blog-content ul li,
.full-blogs-details .blog-content ol li {

    font-size: 15px;

    margin-bottom: 7px;

}

.full-blogs-details .blog-content a {color: var(--cyan-color);}
.full-blogs-details .blog-content a:hover {color: rgb(26, 26, 26)}

.success-story-txt h2[data-scroll="in"],
.success-story-txt p[data-scroll="in"],
.success-story-txt blockquote[data-scroll="in"] {
    opacity: 1;
    transform: translateY(0);
}

.success-story-txt h2[data-scroll="out"],
.success-story-txt p[data-scroll="out"],
.success-story-txt blockquote[data-scroll="out"] {
    opacity: 0;
    transform: translateY(30px);
}

/*********************************************************
    Connect with Us Section Start
*********************************************************/
.connect-area {position: relative;}

.connect-area .connect-area-details {
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.connect-area-details .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.connect-area-details h2[data-scroll="in"]{transform: translateX(0);}
.connect-area-details h2[data-scroll="out"]{transform: translateX(-180%);}

.connect-area-details h2 {
    font-size: 25px;
    font-weight: bold;
    color: var(--blue-color);
    transform: translateX(-180%);
    transition: transform 1s;
}

.connect-area-details .connect-us-btn[data-scroll="in"]{transform: translateX(0);}
.connect-area-details .connect-us-btn[data-scroll="out"]{transform: translateX(180%);}

.connect-area-details .connect-us-btn {
    transform: translateX(180%);
    transition: transform 1s;
}

.connect-area-details .connect-us-btn a {
    display: block;
    font-size: 17px;
    background-color: var(--cyan-color);
    border: 1px solid transparent;
    color: #fff;
    border-radius: 5px;
    padding: 6px 25px;
    position: relative;
    z-index: 9;
    overflow: hidden;
    transition: all 0.4s;
}

.connect-area-details .connect-us-btn a::before {
    content: "";
    background-color: #fff;
    width: 100%;
    height: 100%;
    position: absolute;
    top: -100%;
    left: 0;
    z-index: -1;
    transition: all 0.4s;
}
.connect-area-details .connect-us-btn a:hover::before {top: 0;}

.connect-area-details .connect-us-btn a:hover {
    color: var(--blue-color);
    border: 1px solid var(--blue-color);
}

/*********************************************************
    Contact Us Section Start
*********************************************************/
.contact-area {padding: 50px 0;}
.contact-form-area {padding-right: 20px;}

.contact-form-area h1 {
    font-size: 25px;
    font-weight: bold;
    color: var(--blue-color);
    margin-bottom: 15px;
}

.contact-form-area p {font-size: 16px;}
.contact-form-area p a:hover {text-decoration: underline;}

.form-area {
    background-color: var(--light-gray-color);
    border-top: 3px solid var(--cyan-color);
    padding: 20px;
    padding-top: 35px;
}

.form-area .form-group {margin-bottom: 20px;}
.form-area .form-group > p {margin-bottom: 0;}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form-area input,
.form-area select,
.form-area textarea {
    width: 100% !important;
    border-radius: 0;
	font-size: 15px;
	padding: 8px 12px;
	color: #000;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
}
.form-area select {color: #696969;}

.form-area input:focus,
.form-area select:focus,
.form-area textarea:focus {
    outline: none;
    box-shadow: none;
}

.submit-btn,
.form-area form p input[type="submit"]{
    width:max-content !important;
    display:inline-block;
    color: #fff !important;
    background: #3376ce;
    border-radius: 2px !important;
    border: none !important;
    font-size: 18px !important;
    padding: 6px 30px !important;
    cursor: pointer !important;
    transition: all 0.3s;
}

.submit-btn:hover,
.form-area form p input[type="submit"]:hover{
    background: #1966ca !important;
	border: none !important;
	outline: none !important;
}

.contact-detail {
    font-family: "Albert Sans", sans-serif;
    padding-left: 50px;
}

.contact-detail ul li {
    font-size: 17px;
    margin-bottom: 10px;
    display: flex;
    gap: 7px;
}

.contact-detail ul li strong {
    display: block;
    font-weight: bold;
    min-width: 90px;
}

.form-info-txt {
    margin-top: 20px;
    margin-bottom: 10px;
}

.form-info {
    background-color: #fff;
    border: 1px solid #b1b1b1;
    border-radius: 8px;
    padding: 20px;
    height: 100%;
}

.form-info h6 {
    font-size: 16px;
    font-weight: 600;
    color: #001ad7;
}

.form-info p {
    font-size: 14px;
    font-weight: 400;
    color: #0a076e;
    margin-bottom: 0;
}
.form-info p strong {font-weight: 600;}

/*********************************************************
    Privacy Policy Section Start
*********************************************************/
.privacy-policy-area {
    padding: 40px 0;
    border-top: 1px solid #dfdfdf;
    color: var(--dark-black-color);
}

.privacy-policy-area h1 {
    font-size: 25px;
    font-weight: bold;
    color: var(--blue-color);
    text-align: center;
    margin-bottom: 30px;
}

.privacy-policy-area h2 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}
.privacy-policy-area p {font-size: 15px;}

.privacy-policy-area ul {
    list-style: disc;
    margin-bottom: 20px;
    padding-left: 40px;
}

.privacy-policy-area ul li {
    font-size: 15px;
    margin-bottom: 5px;
}

/*********************************************************
    Footer Section Start
*********************************************************/
.footer {
    /* border-top: 10px solid var(--blue-color); */
    border-bottom: 1px solid #fff;
    background-color: #252760;
    padding: 40px 0;
}

.footer h3 {
    text-transform: uppercase;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.footer p {
    font-size: 15px;
    font-weight: 300;
    color: #f2f2f2;
}

.footer-menu .menu-footer-menu-container .menu {
    display: flex;
    column-gap: 30px;
    flex-wrap: wrap;
}

.footer-menu .menu-footer-menu-container .menu li[data-scroll="in"]{transform: translateY(0)}
.footer-menu .menu-footer-menu-container .menu li[data-scroll="out"]{transform: translateY(20px)}

.footer-menu .menu-footer-menu-container .menu li {
    width: calc(50% - 15px);
    margin-bottom: 6px;
    transform: translateY(20px);
    transition: transform 0.7s;
}
.footer-menu .menu-footer-menu-container .menu li:last-child {margin-bottom: 0;}

.footer-menu .menu-footer-menu-container .menu li i {
    font-size: 11px;
    color: #bfbfbf;
    margin-right: 8px;
}

.footer-menu .menu-footer-menu-container .menu a {
    font-size: 15px;
    font-weight: 300;
    color: #f2f2f2;
    transition: all 0.3s;
}

.footer-menu .menu-footer-menu-container .menu a:hover {color: var(--cyan-color);}
.contact-details ul li[data-scroll="in"]{transform: translateY(0)}
.contact-details ul li[data-scroll="out"]{transform: translateY(20px)}

.contact-details ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.8s;
}

.contact-details ul li i {
    font-size: 24px;
    color: #fff;
}
.contact-details ul li img {width: 30px;}

.contact-details ul li p {
    font-size: 15px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 0;
}
.contact-details ul li p span {display: block;}

.contact-details ul li a {
    color: #fff;
    transition: all 0.3s;
}
.contact-details ul li a:hover {color: #90ff18;}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 35px;
}

.footer-social li a {
    display: block;
    width: 36px;
}

.footer-social li a:hover {
    border-color: #ff9292;
    color: #ff9292;
}

/*********************************************************
    Copyright Section Start
*********************************************************/
.copyright-area {
    padding: 10px 0;
    background-color: #02095c;
}

.copyright-description {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright-description p {
    font-size: 13px;
    font-weight: 300;
    color: #ececec;
    margin-bottom: 0;
}

.copyright-description p:last-of-type {
    font-weight: 500;
    /* color: #000; */
}

.copyright-description p a {
    font-weight: 500;
    transition: all 0.3s;
}

.copyright-description p:last-of-type a {color: #ffa900;}
.copyright-description p a:hover {color: #fff;}

/*********************************************************
    Member Form Section Start
*********************************************************/
.member-form {
    background-color: #dfdfdf;
    padding-top: 50px;
    padding-bottom: 60px;
}

.member-form .alert {
    font-size: 14px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.non-indian, .indian {
    visibility: hidden;
    position: absolute;
}

.filter-form {
    display: flex;
    align-items: end;
    gap: 30px;
    margin-bottom: 30px;
}

.filter-form .form-field {
    display: flex;
    flex-direction: column;
    min-width: 300px;
}

.filter-form .form-field:last-of-type {min-width: fit-content;}
.filter-form .form-field button {width: fit-content;}

.filter-form .form-field label {
    font-size: 13px;
    font-weight: 500;
    color: #161818;
}

.filter-form .form-field select {
    min-width: 220px;
    border-radius: 0;
    padding: 10px;
}

.member-list {padding: 35px 25px !important;}
.member-list table {margin-bottom: 0;}
.member-list table th {background-color: #f1f1f1;}
.member-list table th, .member-list table td {
    font-size: 15px;
    padding: 14px;
}

.member-list table tbody {border-top: none !important;}
.member-list table td a {transition: all 0.3s;}
.member-list table td a:hover {color: #ff4500;}

.member-list > h1 {
    font-size: 22px;
    font-weight: 600;
    color: #1E2E40;
    text-align: center;
    margin-bottom: 25px;
}

.member-form .card {
    background-color: #fff;
    border: none;
    padding: 0;
}
.member-form #success_msg .alert {margin-bottom: 30px;}

.member-form .card-header {
    background-color: transparent;
    padding: 20px 10px;
}

.member-form .card-header h6 {
    font-size: 20px;
    color: #0c032e;
}

.member-form .labels {
    font-size: 14px;
    font-weight: 500;
    color: #161818;
}

.member-form fieldset legend {color: #fff !important;}
.member-form .form-group {margin-bottom: 20px;}

.member-form input, .member-form select, .member-form textarea {
    font-size: 15px;
    color: #3c4247;
    border-color: #b1b1b1;
    padding: 8px 10px;
}
.member-form input:focus, .member-form select:focus, .member-form textarea:focus {box-shadow: none;}

.member-form input[type="file"] {padding: 6px 10px;}
.member-form input::file-selector-button {padding: 10px;}

.validation-invalid-label {
    font-size: 14px;
    display: inline-block;
    color: #ef4444;
    position: relative;
    padding-left: calc(var(--spacer-2) + var(--icon-font-size));
    margin-top: .25rem;
}

.validation-valid-label {display: none !important;}
form button[type='submit']:focus {box-shadow: none !important;}
.paginations-field {border-bottom: none;}

.paginations-field td {
    border: none;
    padding: 0;
}

#paginations {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 100%;
    margin-top: 10px;
}

#paginations a {
    display: block;
    font-size: 16px;
    color: #5b5b5b;
    border: 1px solid #dee2e6;
    padding: 4px 14px;
    transition: all 0.3s;
}

#paginations a:first-child {border-radius: 5px 0 0 5px;}
#paginations a:last-child {border-radius: 0 5px 5px 0;}

#paginations a:hover, #paginations a.active {
    background-color: #dee2e6;
    color: #5a5555;
}

/*********************************************************
    Thank You Form Section Start
*********************************************************/
#success-bdy {
    width: 50%;
    margin: 60px auto;
    box-shadow: 0 0 25px rgba(0,0,0,.15);
}

#success-bdy .success-head {
    background-color: #00b7ff;
    padding: 30px;
    text-align: center;
}
#success-bdy.maati-ii .success-head {background-color: #ff9200;}

#success-bdy .success-head i {
    font-size: 50px;
    color: #fff;
    margin-bottom: 10px;
}

#success-bdy .success-head h2 {
    font-size: 29px;
    font-family: 'Roboto Condensed', sans-serif;
    color: #fff;
    margin-bottom: 0;
}

#success-bdy .success-info {
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
}

#success-bdy .success-info p {
    font-size: 17px;
    font-family: 'Roboto Condensed', sans-serif;
    color: #4e4e4e;
    text-align: center;
}

#success-bdy.maati-ii .success-info p {
    font-size: 19px;
    text-align: center;
}

#success-bdy.maati-ii .success-info p.fontSize {font-size: 21px;}
#success-bdy.maati-ii .success-info a {white-space: nowrap;}
#success-bdy .success-info .small {font-size: 18px;}

#success-bdy .success-info .goBack a {
    display: inline-block;
    font-size: 15px;
    border: 1px solid #2e5991;
    background-color: #2e5991;
    color: #fff;
    border-radius: 50px;
    margin-top: 40px;
    padding: 8px 20px;
    transition: all 0.4s;
}

#success-bdy .success-info .goBack a:hover {
    background-color: transparent;
    color: #2e5991;
}

#success-bdy .success-info .goBack a.downloadBtn {
    border: 1px solid #a73b37;
    background-color: #a73b37;
    color: #fff;
    margin-top: 0 !important;
    margin-bottom: 20px;
}

#success-bdy .success-info .goBack a.downloadBtn:hover {
    background-color: transparent;
    color: #a73b37;
}

/*********************************************************
    Member Details Section Start
*********************************************************/
.members-info {
    padding: 50px 0;
    background-color: #f1f1f1;
}

.member-details {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 15px rgb(0, 0, 0, 0.05);
    border-radius: 5px;
}

.member-btn {
    text-align: right;
    margin-bottom: 25px;
}

.member-btn a {
    display: inline-block;
    background-color: #286693;
    color: #fff;
    border: 1px solid transparent;
    border-radius: 3px;
    padding: 6px 15px;
    transition: all 0.3s;
}

.member-btn a:hover {
    border-color: #286693;
    background-color: transparent;
    color: #286693;
}

.members-header img {
    max-width: 100%;
    max-height: 100px;
}

.members-header .company-name {
    font-size: 25px;
    font-weight: 600;
    color: #d34912;
    margin-top: 10px;
    margin-bottom: 20px;
}

.nationality {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.nationality img {max-height: 18px;}

.nationality h3 {
    font-weight: 400;
    font-size: 18px;
    color: #999999;
    margin-bottom: 0;
}

.members-header {
    border-bottom: 1px solid #edebeb;
    padding-bottom: 30px;
}
.members-body {padding-top: 25px;}

.members-body h3 {
    font-size: 17px;
    font-weight: 400;
    color: #81878b;
    margin-bottom: 3px;
}

.members-body p {
    font-size: 16px;
    font-weight: 400;
    color: #031127;
    margin-bottom: 25px;
}
.members-body p a {word-break: break-all;}

.members-body .member-btn {
    float: none;
    text-align: right;
}

/*********************************************************
    Quick Contact Section Start
*********************************************************/
#quickContact {
    position: fixed;
    top: 48%;
    right: -49px;
    z-index: 9995;
    transform: rotate(-90deg);
}

#quickContact a {
    display: inline-block;
    max-width: 100%;
    padding-bottom: 4px;
    background-color: var(--menu-color);
    color: #fff;
    font-size: 18px;
    font-family: 'Source Sans Pro', sans-serif;
    border-radius: 5px 5px 0 0;
    box-shadow: -4px 2px 25px 0 rgb(29 29 29 / 10%);
    padding: 6px 15px;
    transition: all 0.3s;
    user-select: none;
}
#quickContact a:hover {background-color: var(--cyan-color);}

/************************************************************************
  WhatsApp Section Start
************************************************************************/
.whatsapp-chat {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 100px;
  right: 40px;
  z-index: 9999;
  width: 54px;
  height: 54px;
  background: rgb(37, 211, 102);
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
  border: 1px solid transparent;
  transition: all 0.3s linear;
}

.whatsapp-chat:hover {
  background-color: #fff;
  border-color: rgb(37, 211, 102);
}

.whatsapp-chat i {
  font-size: 36px;
  color: #fff;
  padding-top: 2px;
}

.whatsapp-chat:hover i {
  color: #25d366;
  transition: all 0.3s linear;
}

/*********************************************************
    Scroll Section Start
*********************************************************/
#scrollTop {
    position: fixed;
    bottom: 20px;
    right: 40px;
    z-index: 9999;
    width: 38px;
    height: 38px;
    background-color: var(--cyan-color);
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0px 5px 20px 0 rgba(66, 65, 65, 0.5);
    display: none;
}

#scrollTop:hover {
    background-color: #038abb;
    transition: all 0.3s linear;
}

#scrollTop i,#scrollTop svg {
    color: #f2f2f2;
    font-size: 30px;
    line-height: 40px;
    transition: all 0.3s linear;
}
#scrollTop:hover i,#scrollTop:hover svg {color: #f2f2f2;}