* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
:root {
    /* color */
    --background:#111111;
    --light-black:#2D2D2D;
    --bg-color: #ffffff;
    --text-color: rgba(242, 242, 242, 80%);
    --text-color-dark: #3E6B89;
    --gray: #d3dadf;
    --menu-text: rgba(255, 255, 255, 80%);
    --blue:#2E3192;
    --off-white-90: rgba(245, 245, 245, 90%);
    --off-white-75: rgba(245, 245, 245, 75%);
    --off-white-10: rgba(245, 245, 245, 10%);
    --off-white-20: rgba(245, 245, 245, 20%);
    --light-green: rgba(212, 255, 236, 0.5);
    --black-20: rgba(0, 0, 0, 0.2);
    --black-40: rgba(0, 0, 0, 0.4);
    --black-60: rgba(0, 0, 0, 0.6);
    --black-80: rgba(0, 0, 0, 0.8);
    --box: #eef3f8;
    --black: #000000;
    --linear-gradient:linear-gradient(90deg, rgba(0, 0, 0, 0.95) 10.19%, rgba(0, 0, 0, 0.8) 39.05%, rgba(0, 0, 0, 0.2) 67.91%);
    

    /* font size */
    --body-font-size: 16px;

    /* border */
    --border-green-30: 2px solid rgba(46, 128, 107, 30%);
    --border-green: 2px solid rgb(46, 128, 107);
    --border-white-0: 2px solid transparent;
    --border-gray: 1px solid rgba(0, 0, 0, 10%);
    --border-light-gray: 1px solid rgba(138, 149, 158, 0.2);
    --border-white: 2px solid rgb(255, 255, 255);
    --border-white-10: 1px solid rgba(255, 255, 255, 10%);
    --border-white-20: 1px solid rgba(255, 255, 255, 20%);
    --border-white-40: 2px solid rgba(255, 255, 255, 40%);
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    font-size: var(--body-font-size);
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    line-height: 26px;
    font-variation-settings: "slnt" 0;
    color: var(--text-color);
    background-color: var(--background);
}

.container {
    max-width: 1440px;
}

.blue {
    color: var(--bg-color);
}

.ar {
    font-family: "Cairo", sans-serif;
}

.material-symbols-rounded {
    font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

.navbar-nav-last {
    gap: 20px;
}

.link-btn {
    text-decoration: none;
    color: var(--bg-color);
    font-size: 16px;
    padding-bottom: 2px;
    font-weight: 500;
    border-bottom: var(--border-white-20);
}

.link-btn:hover {
    border-bottom: var(--border-white);
}

.btn-padding-m {
    padding: 12px 24px;
    border-radius: 100px;
    display: block;
}

.p-btn {
    background:var(--bg-color);
    text-decoration: none;
    color: var(--blue);
    font-weight: 600;
    border: 2px solid transparent;
}

.p-btn:hover {
    background:var(--blue);
    color:var(--bg-color);
    border: var(--border-white);
}

.a-btn {
    text-decoration: none;
    color: var(--bg-color);
    display: flex;
    align-items: center;
    gap: 8px;
    vertical-align: middle;
    font-weight: 600;
    border: var(--border-white-0);
    padding-left: 16px;
}

.a-btn:hover {
    border: var(--border-white);
}

.navbar-nav.mx-auto {
    gap: 40px;
}

#header {
    background-color: var(--light-black);
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3);
}

#header .nav-link {
    padding: 12px 0;
    color: var(--menu-text);
    font-weight: 500;
    display: inline-block;
}

#header .nav-link:hover {
    color: var(--bg-color);
}

#header .nav-link.active {
    color: var(--bg-color);
    font-weight: 500;
    border-bottom: var(--border-white-40);
}

.dropdown-item.active,
.dropdown-item:active{
    color: var(--bg-color);
    text-decoration: none;
    background-color: transparent;
    position: relative;
}

.dropdown-item.active::before,
.dropdown-item:active::before{
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--off-white-75);
    position: absolute;
    left:12px; 
    top:50%;
    transform: translateY(-50%);
}

.active-menu{
    color: var(--bg-color)!important;
    border-bottom:var(--border-white-40)
}

.mega-menu {
    display: flex;
}

#header .dropdown-menu {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
    border-radius: 12px;
    border: 0;
    background-color: var(--light-black);
    border:var(--border-white-10)
}

.mega-menu-center {
    right: auto;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    padding: 0;
}

.mega-menu .main {
    padding: 12px 0;
}

.mega-menu .main:first-child {
    border-right: var(--border-white-10);
}

.mega-menu li {
    list-style: none;
}

a.dropdown-item {
    color: var(--menu-text);
    font-weight: 500;
    padding:8px 8px 8px 32px;
}

.mega-menu a.dropdown-item {
    padding: 8px 32px;
}

a.dropdown-item:hover,
a.dropdown-item:focus {
    color: var(--bg-color);
    background-color: var(--off-white-10);
}

.mega-menu li ul {
    padding: 0;
}

/* button */
.btn-lg {
    text-decoration: none;
    padding: 16px 32px;
    font-weight: 500;
    font-size: 18px;
    border-radius: 100px;
    display: inline-block;
}

.btn-f-white {
    background-color: var(--bg-color);
    color: var(--blue);
    border: var(--border-white);
}

.btn-f-white:hover {
    background-color: var(--blue);
    color: var(--bg-color);
    border: var(--border-white);
}

.btn-o-white {
    background-color: transparent;
    border: var(--border-white-40);
    color: var(--bg-color);
}

.btn-o-white:hover {
    border: var(--border-white);
}

h1 {
    font-size: 48px;
    font-weight: 600;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 36px;
}

h4 {
    font-size: 32px;
}

/* banner */
#banner {
    position: relative;
}

#banner::after{
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top:0;
    left: 0;
}

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

#banner .carousel-inner {
    height: 100vh;
}

#banner .carousel-inner video{
    background-color: #000000;
}

#banner .carousel-inner .carousel-item {
    height: 100%;
}

#banner .carousel-inner .carousel-item img,
#banner .carousel-inner .carousel-item video {
    height: 100%;
    object-fit: cover;	width:100%
}

#banner .banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 50%;
    text-align: center;
}

#banner .banner-content h1,
#banner .banner-content p {
    color: var(--bg-color);
}

#banner .banner-content p {
    padding: 20px 0;
    font-size: 18px;
    max-width: 60%;
    margin: 0 auto;
}

.gradient,
.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h2 {
    font-size: 40px;
    font-weight: 600;
}

h3{
    font-size: 32px;
}

#logo-carousel {
    padding: 80px 0;
    text-align: center;
}

#logo-carousel h2 {
    color: var(--bg-color);
    margin-bottom: 32px;
}

#logo-carousel .owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    background: var(--off-white-75);
    display: block;
}

#logo-carousel .owl-theme .owl-dots .owl-dot.active span,
#logo-carousel .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--bg-color);
}


footer {
    margin-top: 80px;
    position: relative;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), linear-gradient(90.97deg, #000000 -57.28%, #2E3192 142.32%);
}

.footer-bg {
    z-index: -1;
}

footer .logo {
    padding: 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .logo .anchor,
a.call span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: var(--border-white-20);
    color: var(--bg-color);
    text-decoration: none;
}

footer .logo .anchor:hover,
a.call:hover span {
    border: var(--border-white);
}

footer .middle {
    padding: 40px 0 80px 0;
}

footer .middle .item-group {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

footer .middle .item-group .item {
    /*flex: 1;*/
}

footer .middle .item-group .item:last-child,
footer .middle .item-group .item:nth-of-type(2) {
    /*flex: 0;*/
}

footer .middle .item-group .item .box {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.item-group .item ul {
    padding: 0;
    margin: 0;
}

.item-group .item ul li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.item-group .item ul li:not(:last-child) {
    margin-bottom: 16px;
}

.item-group .item p {
    color: var(--off-white-75);
}

a.call {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--off-white-75);
}

.item-group .item ul li a {
    text-decoration: none;
    display: inline-block;
    /* padding-bottom:4px; */
    color: var(--off-white-75);
    border-bottom: 1px solid transparent;
}

.item-group .item ul li a:hover {
    color: var(--bg-color);
    border-bottom: var(--border-white-20);
}

/* footer span.count{
    background-color: rgba(0, 0, 0, 0.2);
} */

span.count {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 8px;
    background-color: var(--off-white-10);
    color: var(--bg-color);
}

.item-group .item h4 {
    color: var(--off-white-90);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

a.call:hover {
    color: var(--bg-color);
}

.green-pill {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    padding: 4px 12px;
    background-color: var(--off-white-10);
    border-radius: 8px;
    font-weight: 600;
}

.heading {
    display: flex;
    gap: 20px;
    max-width: 70%;
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
    padding-bottom: 48px;
    text-align: center;
}

.heading h2 {
    color: var(--bg-color);
    flex: 1;
    text-align: left;
}

#aboutus {
    padding: 164px 0 80px 0;
}

#aboutus .heading{
    align-items: center!important;
}

.img-group {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.img-group img {
    width: 100%;
    height: 100%;
}

#sms {
    padding: 40px 0;
}

.box-group {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.box-group .box {
    flex: 1;
    background-color: transparent;
    padding: 32px 20px;
}

.box-group .box:not(:last-child){
    border-right: var(--border-white-20)
}

#offerings .box-group .box{
    border:0;
}

.box-group .box img {
    margin-bottom: 20px;
}

.box-group .box h4 {
    color: var(--bg-color);
    margin-bottom: 8px;
    font-size: 52px;
    font-weight: 600;
}

.box-group .box p {
    padding: 0;
    margin: 0;
    font-size:20px;
}

#smsit-partner .heading * {
    color: var(--bg-color);
}

#smsit-partner .heading {
    position: absolute;
    z-index: 1;
    padding: 80px;
    text-align: left;
    max-width: 30%;
}

#approach {
    padding: 120px 0;
}

#approach .heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    max-width: 100%;
}

#approach .heading .left {
    text-align: left;
    flex: 1;
}

#approach .heading .right {
    text-align: right;
    flex: 1;
}

.lg-box-group {
    display: flex;
}

.lg-box-group .lg-box h4 {
    padding: 20px 0;
    font-size: 24px;
}

.lg-box-group .lg-box {
    padding: 0 64px;
}

.lg-box-group .lg-box:first-child {
    padding-left: 0;
}

.lg-box-group .lg-box:nth-of-type(2) {
    border-left: var(--border-light-gray);
    border-right: var(--border-light-gray);
}

.lg-box-group .lg-box:last-child {
    padding-right: 0;
}

.bg-green {
    background-color: var(--off-white-10);
    border-radius: 20px;
    padding: 48px;
}

#solutions .heading {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 100%;
    padding: 0;
}

#solutions .heading .left {
    max-width: 40%;
}

#solutions .heading .left p {
    opacity: 0.8;
}

#solutions .heading .left * {
    color: var(--bg-color);
    text-align: left;
}

#solutions .heading .right {
    text-align: right;
}

.bg-gray {
    background-color: var(--box);
}

.vision .col-lg-12 {
    margin-top: 72px;
}

.vision .col-lg-12 p {
    font-size: 18px;
    line-height: 28px;
}

.vision .col-lg-12 p b {
    display: block;
}

.vision .col-lg-12 p:not(:last-child) {
    margin-bottom: 20px;
}

.vision .col-lg-12 .row {
    align-items: center;
}

#offerings-banner .container {
    position: relative;
}

#offerings-banner .img-group {
    height: 100vh;
}

#offerings-banner .img-group img {
    height: 100vh;
    object-fit: cover;
    object-position: top;
}

#offerings-banner .heading {
    text-align: left;
    max-width: 50%;
    position: absolute;
    top: 200px;
    left: 0;
    z-index: 1;
    align-items: flex-start;
}

#offerings-banner .heading h1,
#offerings-banner .heading p {
    color: var(--bg-color);
    margin: 0;
}

#offerings-banner .heading p {
    opacity: 0.8;
    line-height: 28px;
}

#services {
    padding:120px 0 80px 0;
}

#services ul li{
    color: var(--text-color);
}

#services .container{
    overflow: hidden;
}

#services h3{
    color: var(--off-white-90);
    margin-bottom: 20px;
}

#services p{
    color: var(--text-color);
}

#services .box{
    padding:32px 12px;
    text-decoration: none;
    display: block;
}

#services .box img{
    width: 100%;
    border-radius:12px;
    margin-bottom: 20px;
}

#services .box:hover{
    cursor: default;
}

#services .box:hover h3{
    color: var(--bg-color);
    /*text-decoration: underline;*/
}

.item-row-group {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.item-row-group .item-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
}

.item-row-group .item-row h5 {
    font-size: 24px;
    font-weight: 500;
    color: var(--blue);
    margin-bottom: 8px;
}

.item-row-group .item-row i {
    font-weight: 500;
}

.link-btn-group {
    padding-left: 120px;
}

#choose {
    background-color: var(--light-black);
    padding: 80px 0;
    margin-bottom: 80px;
}

#choose .box-group {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}

#choose .box {
    padding:0 40px;
    order: 0;
    align-self: stretch;
    flex-grow: 1;
}

#choose .box h4 {
    font-size: 24px;
    color: var(--off-white-90);
}

#choose .box p {
    text-transform: none;
    letter-spacing: normal;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-color);
}

.blue.sticky-lg-top {
    top: 110px;
}

.white-box {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: relative;
    align-items: center;
    flex-wrap: nowrap;
}

.white-box .feature-img {
    border-radius: 20px;
    width: 40%;
}

#offerings {
    padding: 120px 0 0 0;
}

.white-box .box h4 {
    font-size: 24px;
    color: var(--bg-color);
}

.white-box .left,
.white-box .right {
    display: flex;
    flex-direction: column;
    gap: 96px;
    width: 25%;
}

.white-box .right {
    align-items: flex-start;
}

.white-box .box p {
    text-transform: none;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: normal;
    font-weight: 400;
}

.bottom-footer {
    border-top: var(--border-white-20);
}

.bottom-footer .left-right-group {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom-footer .left-right-group .left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bottom-footer .left-right-group .left * {
    color: var(--bg-color);
    opacity: 0.75;
    margin: 0;
}

.bottom-footer .left-right-group .left span {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--bg-color);
    opacity: 0.2;
}

.bottom-footer .left-right-group .right ul {
    display: flex;
    padding: 0;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.bottom-footer .left-right-group .right ul li {
    list-style: none;
}

.bottom-footer .left-right-group .right a {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: var(--border-white-20);
    border-radius: 50%;
}

.bottom-footer .left-right-group .right a:hover {
    border: var(--border-white);
}

#secondary-banner {
    position: relative;
}

#secondary-banner .heading {
    text-align: center;
    max-width: 100%;
    position: absolute;
    top: calc(50% + 66px);
    left: 50%;
    transform: translate(-50%, -80%);
    z-index: 1;
    align-items: center;
    padding: 0;
    width: 100%;
}

#secondary-banner .heading * {
    color: var(--bg-color);
    margin: 0;
}

.img-group::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background:var(--linear-gradient);
}

.img-group.img-group-offerings::before{
    background:var(--linear-gradient);
}

#form-section {
    padding:80px 0 0 0;
}

#form-section form {
    padding-left: 32px;
}

.form-control {
    border-radius: 12px;
    background-color: var(--light-black);
    border:var(--border-white-0);
    color: var(--text-color);
}

.form-check-input{
    background-color: var(--off-white-20);
    border-color: var(--border-white-40);
}

.form-control:hover,
.form-check-input:hover {
    border-color: var(--bg-color);
}

.form-floating > .form-control-plaintext ~ label::after, .form-floating > .form-control:focus ~ label::after, .form-floating > .form-control:not(:placeholder-shown) ~ label::after, .form-floating > .form-select ~ label::after{
    background-color: transparent;
}

.form-control:focus,
.form-check-input:focus {
    border-color: transparent;
    outline: 0;
    box-shadow:inherit;
    background-color: var(--light-black);
    color: var(--bg-color);
}

.form-floating>.form-control-plaintext~label, .form-floating>.form-control:focus~label, .form-floating>.form-control:not(:placeholder-shown)~label, .form-floating>.form-select~label{
    color: var(--text-color);
}

.form-check-input:checked {
    background-color: var(--bg-color);
    border-color: var(--bg-color);
}

.form-check-input:checked[type=checkbox]{
    background-image: url('/images/check.svg');
}

#form-section iframe {
    border-radius: 20px;
    margin-top: 40px;
}

#form-section .info a {
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 16px;
}

#form-section .info a p {
    margin: 0;
    flex:1;
}

#form-section .info a:hover p {
    color: var(--bg-color);
}

#form-section .info a:hover span {
    background-color: var(--bg-color);
    color: var(--blue);
}

#form-section .info a span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--off-white-10);
    font-size: 28px;
    color: var(--bg-color);
}

#form-section .info a:not(:last-child) {
    margin-bottom: 24px;
}

#form-section .box {
    display: flex;
    /* flex-wrap: wrap; */
    gap: 1rem;
}

#form-section .box .form-floating {
    width: 100%;
}

.form-group p.blue {
    font-size: 18px;
}

#homeofferings ~ footer {
    margin: 0;
}

#homeofferings {
    padding: 120px 0;
    background-color: var(--box);
}

#homeofferings img {
    width: 100%;
    border-radius: 20px;
}

#homeofferings .col-lg-12 {
    gap: 120px;
    display: flex;
    flex-direction: column;
}

#homeofferings .left .heading,
#homeofferings .right .heading {
    max-width: 90%;
    width: 90%;
}

#homeofferings .left .heading {
    margin: auto 0;
}

#homeofferings .right .heading {
    margin: 0 0 0 auto;
}

/*  */

.card-header{
    padding: 0;
}

.progress {
    height: 4px;
    background: transparent;
}

.progress-bar {
    width: 0%;
    opacity: 0;
}

.progress-bar.animate-bar {
    width: 100%;
    opacity: 1;
    background-color: var(--bg-color);
}

.accordion{
    border-bottom:var(--border-white-20);
}

.accordion-item,
.accordion-button,
.accordion-button:not(.collapsed){
    background-color: transparent;
    border:transparent;
    box-shadow: inherit;
    border-radius: 0!important;
}

.accordion-button:not(.collapsed){
    color: var(--bg-color);
}

.accordion-button,
.accordion-button:not(.collapsed){
    font-size: 32px;
}

.accordion-button{
    color: var(--text-color);
    border-top:var(--border-white-20);
    padding:24px 0;
}

.accordion-button:hover{
    color: var(--bg-color);
}

.accordion-button:not(.collapsed){
    border-top:var(--border-white-20);
}

.accordion-body{
    padding:0 0 32px 0;
}

.accordion-body p{
    color: var(--text-color);
    margin-bottom: 20px;
}

button:focus:not(:focus-visible){
    box-shadow: inherit;
}

.accordion-button:not(.collapsed)::after,
.accordion-button::after{
    background-image:url('/wp-content/themes/bootscore/images/chevron.svg');
}

#home-offerings .carousel-item::before{
    background-color: rgba(0, 0, 0, 0.4);
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

#home-offerings{
    padding:80px 0 120px 0;
}

#home-offerings .container{
    gap:120px;
    display: flex;
    flex-direction: column;
}

#home-offerings video,
#home-offerings img{
    height: 100%;
    object-fit: cover;
}

#home-offerings .carousel-item, 
#home-offerings .carousel-inner{
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}
#home-offerings .carousel{
    height: 600px;
}
#home-offerings .row{
    align-items: center;
}
#home-offerings .img-mobile img,
#home-offerings .img-mobile video{
    width: 100%;
    border-radius: 12px;
    height: 275px;
    object-fit: cover;
    display: none;
}

.navbar-toggler-icon{
    background-image: url("../images/menu.svg");
    
}

.navbar-toggler{
    border:var(--border-white-20);
}

.modal-header{
    border-bottom: var(--border-white-10);
    display: flex;
    align-items: center;
}

.close-btn {
    margin-left: auto;
    width: 32px;
    height: 32px;
    background:var(--off-white-10);
    display: grid;
    place-content: center;
    text-decoration: none;
    color:var(--bg-color);
    border-radius: 50%;
}

.close-btn:hover,
.close-btn:focus{
    background-color: var(--off-white-20);
}

.modal-footer{
    border-top: var(--border-white-10);
    gap:20px;
}

.modal-dialog-scrollable .modal-body{
    padding:60px 40px;
    text-align: center;
}

.full-img-section{
    position: relative;
}

.full-img-section::before{
    content: '';
    background:var(--linear-gradient);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 1;
}

.full-img-section .container{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    z-index: 2;
}

.nav-pills .nav-link{
    font-size: 24px;
    line-height: 36px;
    text-align: left;
    border:var(--border-white-0);
    border-radius: 12px;
    padding: 32px;
    width: 100%;
}

.full-img-section .nav-link{
    color: var(--text-color);
    border:var(--border-white-0);
}

.full-img-section .nav-link:hover{
    color: var(--bg-color);
}

.full-img-section .nav-pills .nav-link.active, .nav-pills .show>.nav-link{
    background-color: transparent;
    color: var(--bg-color);
    border: var(--border-white-40);
}

.full-img-section .box-content{
    background-color: var(--bg-color);
    padding:40px 40px 80px 40px;
    border-radius: 20px;
}

#services.full-img-section .box-content h3{
    color: var(--blue);
}

#services.full-img-section .box-content p,
#services.full-img-section .box-content ul{
    color: var(--text-color-dark);
}

.modal-body.text-left{
    text-align: left;
}

.modal-body .p-group{
    padding:20px 0 0 0;
}
.p-group p{
    margin: 0;
}

.p-group{
    display: flex;
    flex-direction: column;
    gap:8px;
}

#offerings-banner.bg-right .heading{
    right: 0;
    left: inherit;
}

#offerings-banner.bg-right .img-group::before{
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.19) 17.06%, rgba(0, 0, 0, 0.76) 48.42%, rgba(0, 0, 0, 0.9025) 79.78%);
}

#offerings-banner.bg-center .heading{
    left: 0;
    right: 0;
    text-align: center;
    align-items: center;
}

#offerings-banner.bg-center .img-group::before{
    background: #000000;
    opacity: 0.7;
}

#offerings-banner.bg-center.carrier .img-group::before{
    background: #000000;
    opacity: 0.2;
}

#offerings-banner.bg-center.carrier .img-group,
#offerings-banner.bg-center.carrier .img-group img{
    height: 550px;
}

.breadcrum{
    display: flex;
    align-items: center;
    gap: 8px;
}
.breadcrum p{
    margin: 0;
    color: var(--text-color);
}

.breadcrum a{
    text-decoration: none;
    color:var(--bg-color)
}

.breadcrum a:hover{
    text-decoration: underline;
}

.services-img{
    border-radius: 20px;
    margin-top:20px;
    width: 100%;
}

#post-grid{
    padding: 80px 0;
}

#post-grid .box{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap:20px;
    justify-content:center;
}

#post-grid .box .box-group{
    text-align: left;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    padding: 32px;
    border-radius: 12px;
    background-color: var(--off-white-10);
    width: calc(33.33% - 20px);
}

#post-grid .box .box-group ul{
    list-style: none;
    margin: 0;
    padding:16px 0;
    display: flex;
    flex-direction: column;
    gap:12px;
}

#post-grid .box .box-group ul li{
    display: flex;
    align-items: center;
    gap:8px;
}

#post-grid .box .box-group ul li p{
    margin: 0;
}

#post-grid .box .box-group ul li span{
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--off-white-10);
}

#post-grid .box .box-group .footer{
    margin-top: auto;
}

#post-grid h3{
    font-size: 24px;
}

#post-grid .head span{
    font-size: 14px;
}

#job-description .item{
    background-color: var(--off-white-10);
    gap:32px;
    border-radius: 12px;
}

#job-description .item .block,
#job-description .item{
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#job-description .block-group{
    gap: 0;
}

#job-description .block-group .block ol{
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: inherit;
}

#job-description .item .block:not(:last-child){
    border-bottom: var(--border-white-10);
}

#job-description .item-group{
    display: flex;
    flex-direction: column;
    gap:32px;
}

#job-description .item .head h2{
    color: var(--bg-color);
}

#job-description .item .head span{
    font-size: 16px;
}

#job-description .block-group{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    padding: 12px 0;
}

#job-description .block-group li{
    flex: 1;
    margin: 0;
}

.block-group li span.material-symbols-rounded{
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--off-white-10);
    color: var(--bg-color);
}

.text-group{
    font-size: 16px;
    flex: 1;
}

#job-description .block-group .text-group p{
    font-weight: 500;
    color: var(--bg-color);
}

form span.info{
    display: block;
    font-size: 14px;
    color: var(--off-white-75);
    padding-top: 8px;
}

.modal .form-control{
    background-color: var(--off-white-10);
}

#blog-grid{
    padding:80px 0;
}

#blog-grid .bglog-card{
    background-color: var(--off-white-10);
    border-radius: 20px;
    padding:8px;
    display: inline-block;
    text-decoration:none;
    width: calc(33.33% - 32px);
}

#blog-grid .row{
    gap:32px;
    flex-wrap: wrap;
    justify-content: center;
}

#blog-grid .bglog-card:hover h3{
    text-decoration: underline;
}

#blog-grid .bglog-card .blog-description{
    padding:16px;
}

#blog-grid .bglog-card .blog-description h3{
    padding:0;
    margin: 12px 0;
    font-size: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--off-white-90);
}

#blog-grid .bglog-card .blog-description p{
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--off-white-75);
    margin: 0;
}

#blog-grid .bglog-card .blog-description p.link-btn{
    display: inline-block;
    margin-top: 12px;
}

#blog-grid .bglog-card .blog-description .green-pill{
    color: var(--off-white-75);
    font-size: 12px;
    font-weight: 500;
    padding:4px 12px;
    margin-bottom: 8px;
    display: inline-block;
}

#blog-grid .bglog-card img{
    width: 100%;
    border-radius: 12px;
}

#blog-reading {
    border-bottom: 1px solid var(--off-white-10);
}

#blog-reading .head{
    padding: 32px 0;
    border-bottom: var(--border-white-10);
}

#blog-reading .head h1{
    margin: 0;
    padding-top:20px;
}

#blog-reading .head .author{
    justify-content: space-between;
    padding: 32px 0;
    gap: 8px;
}

#blog-reading .head .author,
#blog-reading .head .author .user{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

#blog-reading .head .author .user{
    gap:16px;
}

#blog-reading .head .author .user img{
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

#blog-reading .head .author .user .name-group{
    flex:1;
    gap: 0;
    display: flex;
    flex-direction: column;
}

#blog-reading .head .author .user .name-group p{
    margin-bottom: 0;
    color: var(--bg-color);
    font-weight: 500;
}

#blog-reading .head .author .user .name-group span{
    font-size: 14px;;
}

#blog-reading .body{
    padding:32px 0 80px 0;
    display: flex;
    flex-direction: column;
    gap:32px;
}

#blog-reading .body .block h4{
    margin: 0;
    padding-bottom: 16px;
}

#blog-reading .body .block img{
    width: 100%;
    border-radius: 20px;
    margin-bottom: 16px;
}

#blog-grid .heading{
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
}form .wpcf7 form .wpcf7-response-output {    margin: 0;    padding: 4px 8px;    border: 2px solid #00a0d2;    border-radius: 8px;}.custom-html-widget{	width: 100%;  display: contents;}
#offerings-banner .img-group video {
  height: 100vh;
  object-fit: cover;
  object-position: top;
  width: 100%;
}
#blog-grid .bglog-card .blog-description a {
    text-decoration: none;
    color: var(--off-white-90);
}

#blog-grid .bglog-card img {
    height: 265px;
    object-fit: cover;
}
#blog-grid .bglog-card .blog-description .green-pill {
    padding: 0;
    background: transparent;
}
.category-badge .bg-primary-subtle {
    padding: 8px 12px;
    display: inline-block;
background-color: var(--off-white-10)!important;
text-transform: uppercase;
    letter-spacing: 2px;
color: var(--off-white-75)!important;
}
.post-thumbnail img {
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    
    width: 100%;
}
nav.overflow-x-auto.text-nowrap.mb-4.mt-2.py-2.px-3.bg-body-tertiary.rounded {
    background: transparent !important;
}
.breadcrum .breadcrumb-item.active {
    color: var(--text-color)!important;
}
.breadcrumb-item+.breadcrumb-item::before {
    color: var(--text-color) !important;
	padding: 0 !important;
}
#blog-reading .green-pill {
    padding: 0;
    background-color: transparent;
}

#blog-reading .category-badge{margin:0}
.author.vcard a{
    text-decoration: none;
    color: var(--bg-color);
}

.author.vcard{
    padding: 0!important;
}

.author.vcard a:hover{
    text-decoration: underline;
}
#home-offerings .offerings{
    gap:120px;
    display: flex;
    flex-direction: column;
}

#home-offerings .offerings img, 
#home-offerings .offerings video{
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
}

.offerings-landing{
    margin-top: 120px;
}
