:root {
    --colorLightBlue: #4580c2;
    --colorDarkBlue: #22428d;
    --colorOrange: #ff8e59;
    --colorWhite: #ffffff;
    --colorBlack: #000000;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}
input,
select,
button {
    outline: none;
    box-shadow: none;
}
input:focus,
select:focus,
button:focus {
    outline: none;
    box-shadow: none !important;
}
.form-control:focus {
    border-color: transparent;
    box-shadow: none;
}
a {
    text-decoration: none;
}
a:hover {
    transition: all 0.4s ease-in-out;
}
.thm-btn {
    font-size: 18px;
    color: var(--colorBlack);
    text-align: center;
    background-color: transparent;
    padding: 12px 32px;
    border: 1px solid var(--colorLightBlue);
    border-radius: 50px;
    display: inline-block;
}
.thm-btn:hover {
    color: var(--colorWhite);
    background-color: var(--colorLightBlue);
    transition: all 0.4s ease-in-out;
}
.thm-btn-1 {
    font-size: 18px;
    color: var(--colorWhite);
    text-align: center;
    background-color: var(--colorBlack);
    padding: 12px 32px;
    border: none;
    border-radius: 50px;
    display: inline-block;
}
.thm-btn-1:hover {
    color: var(--colorWhite);
    background-color: var(--colorLightBlue);
    transition: all 0.4s ease-in-out;
}

/*-- Start Header --*/
.header {
    position: absolute;
    z-index: 2;
    width: 100%;
    padding: 30px 18px 0;
}
.header-sticky.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: var(--colorWhite);
    box-shadow: 0 0 10px #d6d6d6;
}
.header-contact {
    position: relative;
    background-color: var(--colorLightBlue);
    border-radius: 30px;
    padding: 16px 24px;
    margin-bottom: 10px;
    margin-right: 10px;
} 
.header-contact ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.header-contact ul li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}
.header-contact ul li:last-child {
    margin-bottom: 0;
}
.header-contact ul li a {
    font-size: 16px;
    color: var(--colorWhite);
}
.header-contact ul li a:hover {
    color: var(--colorOrange);
}
.header-contact ul li a i {
    width: 32px;
    height: 32px;
    line-height: 32px;
    background-color: var(--colorWhite);
    color: var(--colorLightBlue);
    border-radius: 32px;
    margin-right: 12px;
}
.header-logo {
    width: 100%;
    text-align: center;
    margin-left: 139px;
}
.header .header-logo img {
    height: 50px;
}
.sidepanel {
    width: calc(100% - 60px);
    position: absolute;
    z-index: 3;
    top: 0;
    left: 30px;
    right: 30px;
    border-radius: 30px;
    background: linear-gradient(90deg,rgba(65, 120, 187, 1) 0%, rgba(39, 74, 148, 1) 100%);
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}
.sidepanel.active {
    opacity: 1;            
    pointer-events: auto;
}
.sidebar-menu .openbtn {
    display: flex;
    align-items: center;
    font-size: 24px;
    color: var(--colorWhite);
    text-transform: uppercase;
    text-align: center;
    padding: 0 24px 0 0;
    border: none;
    border-radius: 50px;
    background-color: transparent;
    transition: all 0.4s ease-in-out;
}
.sidebar-menu .openbtn img {
    margin-left: 15px;
    filter: contrast(0) brightness(2);
    transition: all 0.4s ease-in-out;
}
.sidebar-menu .openbtn:hover {
    color: var(--colorLightBlue);
}
.sidebar-menu .openbtn:hover img {
    filter: unset;
}
.sidebar-menu .close-box {
    position: relative;
    z-index: 0;
    padding: 43px 40px 0 0;
    float: right;
    transition: all 0.4s ease-in-out;
}
.sidebar-menu .sidepanel .close-box button {
    font-size: 18px;
    color: var(--colorWhite);
    text-transform: uppercase;
    text-align: center;
    background-color: transparent;
    padding: 0;
    border: none;
    margin-left: auto;
    border-radius: 0;
    float: right;
    transition: all 0.4s ease-in-out;
}
.sidebar-menu .sidepanel .close-box button i {
    margin-left: 15px;
}
.sidebar-menu .sidepanel .close-box button:hover {
    color: var(--colorOrange);
}
.megamenu ul {
    padding-left: 0;
    margin: 47px 50px 38px 50px;
    list-style-type: none;
    display: flex;
}
.megamenu ul li {
    width: 23%;
}
.megamenu ul li h5 {
    font-size: 22px;
    font-weight: 600;
    color: var(--colorWhite);
    margin-bottom: 12px;
}
.megamenu ul li a {
    font-size: 18px;
    color: var(--colorWhite);
    display: block;
    margin-bottom: 12px;
}
.megamenu ul li a:hover {
    color: var(--colorOrange);
}
.menu-list {
    margin: 0 50px 50px;
}
.menu-list h5 {
    font-size: 22px;
    font-weight: 600;
    color: var(--colorWhite);
    margin-bottom: 16px;
}
.menu-list h5 a {
    color: var(--colorWhite);
}
.menu-list h5 a:hover {
    color: var(--colorOrange);
}
.menu-btm-contact {
    border-top: 1px solid var(--colorWhite);
    margin: 0 50px;
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-menu-contact ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.header-menu-contact ul li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}
.header-menu-contact ul li:last-child {
    margin-bottom: 0;
}
.header-menu-contact ul li a {
    font-size: 16px;
    color: var(--colorWhite);
}
.header-menu-contact ul li a:hover {
    color: var(--colorOrange);
}
.header-menu-contact ul li a i {
    width: 32px;
    height: 32px;
    line-height: 32px;
    background-color: var(--colorWhite);
    color: var(--colorLightBlue);
    border-radius: 32px;
    margin-right: 12px;
}
.header-menu-other a {
    font-size: 18px;
    color: var(--colorWhite);
}
.header-menu-other a:hover {
    color: var(--colorOrange);
}
/*-- End Header --*/

/*-- Start --*/
.main-slider {
    margin: 30px 30px 0;
    position: relative;
}
.main-slider .owl-carousel .owl-item img {
    display: inline-block;
    width: auto;
    margin: 0 30px;
}
.main-slider .owl-carousel .item .slide-bg {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 800px;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 30px;
}
.main-slider .owl-carousel .item .slide-bg::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--colorBlack);
    opacity: 0.1;
    border-radius: 30px;
}
.main-slider .home-slide-cnt {
    position: relative;
    padding: 200px 180px 200px 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
}
.main-slider .home-slide-cnt h1 {
    font-size: 70px;
    font-weight: bold;
    color: var(--colorWhite);
    margin-bottom: 0;
}
.slider-btm-cnt {
    background-color: var(--colorDarkBlue);
    border-radius: 30px;
    padding: 30px 60px;
    margin-top: 10px;
    margin-left: 10px;
    max-width: 560px;
    position: relative;
    z-index: 1;
}
.slider-btm-cnt p {
    font-size: 18px;
    color: var(--colorWhite);
    line-height: 36px;
    margin-bottom: 0;
}
.main-slider .inverted-view {
    position: relative;
    width: 100%;
    height: 800px;
    background: var(--colorWhite);
    border-radius: 30px;
    overflow: hidden;
}
.main-slider .inverted-view .slider-box {
    position: absolute;
    inset: 0;
    background-color: var(--colorWhite);
    border-radius: 30px;
}
.main-slider .inverted-view .slider-box .header-top {
    position: absolute;
    z-index: 2;
    top: 0;
    width: max-content;
    background: var(--colorWhite);
    border-bottom-right-radius: 30px;
    transition: 0.5s;
}
.main-slider .inverted-view .slider-box .header-top::before {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 30px;
    height: 30px;
    background: transparent;
    border-top-left-radius: 30px;
    box-shadow: -5px -9px 0 5px var(--colorWhite);
}
.main-slider .inverted-view .slider-box .header-top::after {
    content: "";
    position: absolute;
    top: 0;
    right: -30px;
    width: 30px;
    height: 30px;
    background: transparent;
    border-top-left-radius: 30px;
    box-shadow: -5px -9px 0 5px var(--colorWhite);
}
.main-slider .inverted-view .slider-box .header-btm {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    width: max-content;
    background: var(--colorWhite);
    border-top-left-radius: 30px;
    transition: 0.5s; 
}
.main-slider .inverted-view .slider-box .header-btm::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: -30px;
    width: 30px;
    height: 30px;
    background: transparent;
    border-bottom-right-radius: 30px;
    box-shadow: 5px 9px 0 5px var(--colorWhite);
}
.main-slider .inverted-view .slider-box .header-btm::after {
    content: "";
    position: absolute;
    top: -30px;
    right: 0px;
    width: 30px;
    height: 30px;
    background: transparent;
    border-bottom-right-radius: 30px;
    box-shadow: 5px 9px 0 5px var(--colorWhite);
}
.sidepanel.active ~ .header-top {
    z-index: 1;
}
/*-- End --*/

/*-- Start --*/
.home-about {
    padding: 100px 0;
}
.home-about-inverted {
    position: relative;
    width: 534px;
    height: 600px;
    background: var(--colorWhite);
    border-radius: 30px 30px 0px 30px;
    overflow: hidden;
}
.home-about-inverted-box {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
}
.home-about-inverted-shape-btm {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    width: 310px;
    height: 70px;
    background: var(--colorWhite);
    border-top-left-radius: 30px;
    transition: 0.5s;
}
.home-about-inverted-shape-btm::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: -30px;
    width: 30px;
    height: 30px;
    background: transparent;
    border-bottom-right-radius: 30px;
    box-shadow: 5px 9px 0 5px var(--colorWhite);
}
.home-about-inverted-shape-btm::after {
    content: "";
    position: absolute;
    top: -30px;
    right: 0px;
    width: 30px;
    height: 30px;
    background: transparent;
    border-bottom-right-radius: 30px;
    box-shadow: 5px 9px 0 5px var(--colorWhite);
}
.home-about-cnt h2 {
    font-size: 50px;
    font-weight: 600;
    color: var(--colorBlack);
    margin-bottom: 30px;
}
.home-about-cnt p {
    font-size: 18px;
    color: var(--colorBlack);
    line-height: 36px;
    margin-bottom: 30px;
}
/*-- End --*/

/*-- Start --*/
.home-about-us {
    position: relative;
    padding: 100px 0 0;
    background-image: url(../images/AdobeStock_1539810616.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.home-about-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 50%, rgba(0, 212, 255, 0) 100%);
    opacity: 0.8;
}
.home-about-us-cnt {
    position: relative;
    z-index: 1;
}
.home-about-us-cnt p {
    font-size: 32px;
    font-weight: 600;
    color: var(--colorWhite);
    line-height: 42px;
    margin-bottom: 30px;
}
.home-about-us-cnt .thm-btn {
    border-color: var(--colorWhite);
    color: var(--colorWhite);
}
.home-about-us-cnt .thm-btn:hover {
    background-color: var(--colorWhite);
    color: var(--colorBlack);
}
.home-about-us-headline {
    position: relative;
    font-size: 350px;
    font-weight: bolder;
    color: var(--colorWhite);
    text-align: center;
    text-transform: capitalize;
    line-height: 428px;
    margin-top: 15px;
}
/*-- End --*/

/*-- Start --*/
.our-core-services {
    padding: 100px 0;
    background: linear-gradient(90deg, var(--colorDarkBlue) 0%, var(--colorLightBlue) 100%);
    border-radius: 30px;
    margin: 100px 30px 0;
}
.our-core-services .sec-heading {
    margin-bottom: 50px;
}
.sec-heading h2 {
    font-size: 50px;
    font-weight: 600;
    color: var(--colorWhite);
    margin-bottom: 30px;
}
.sec-heading p {
    font-size: 18px;
    color: var(--colorWhite);
    line-height: 36px;
    margin-bottom: 0;
}
.our-core-services-box {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}
.our-core-services-box::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--colorBlack);
    opacity: 0.4;
    transition: all 0.4s ease-in-out;
}
.our-core-services-box img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.4s ease-in-out;
}
.our-core-services-box:hover img {
    transform: translate(0) scale(1.1);
}
.our-core-services-cnt {
    position: absolute;
    z-index: 1;
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
}
.our-core-services-cnt h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--colorWhite);
    width: calc(100% - 90px);
    margin-right: 30px;
    margin-bottom: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.our-core-services-cnt p {
    font-size: 18px;
    color: var(--colorWhite);
    line-height: 36px;
    margin: 30px 0 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.circles {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--colorWhite);
    background-color: transparent;
    position: relative;
    margin-left: auto;
}
.circles::before {
    content: "";
    position: absolute;
    top: 19px;
    left: 0;
    right: 0;
    width: 1px;
    height: 18px;
    background-color: var(--colorWhite);
    margin: 0 auto;
    transform: rotate(45deg);
}
.our-core-services-box:hover .circles {
    opacity: 0.5;
    transition: all 0.4s ease-in-out;
}
.our-core-services-box:hover .circles::before {
    transform: rotate(-45deg);
    transition: all 0.4s ease-in-out;
}
/*-- End --*/

/*-- Start --*/
.our-work-action {
    padding: 100px 0;
}
.our-work-action .sec-heading {
    margin-bottom: 50px;
}
.our-work-action .sec-heading h2,
.our-work-action .sec-heading p {
    color: var(--colorBlack);
}
.our-work-action-box {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}
.our-work-action-box::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--colorBlack);
    opacity: 0.4;
    transition: all 0.4s ease-in-out;
}
.our-work-action-box img {
    width: 100%;
    height: 606px;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.4s ease-in-out;
}
.our-work-action-box:hover img {
    transform: translate(0) scale(1.1);
}
.our-work-action-cnt {
    position: absolute;
    z-index: 1;
    left: 30px;
    right: 30px;
    bottom: 30px;
}
.our-work-action-cnt h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--colorWhite);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 20px;
}
.our-work-action-cnt p {
    font-size: 18px;
    color: var(--colorWhite);
    line-height: 36px;
    margin: 0 0 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.our-work-action-box .circles {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--colorWhite);
    background-color: transparent;
    position: absolute;
    z-index: 1;
    top: 30px;
    right: 30px;
}
.our-work-action-box .circles::before {
    content: "";
    position: absolute;
    top: 19px;
    left: 0;
    right: 0;
    width: 1px;
    height: 18px;
    background-color: var(--colorWhite);
    margin: 0 auto;
    transform: rotate(45deg);
}
.our-work-action-box:hover .circles {
    opacity: 0.5;
    transition: all 0.4s ease-in-out;
}
.our-work-action-box:hover .circles::before {
    transform: rotate(-45deg);
    transition: all 0.4s ease-in-out;
}
.our-work-action-list-box {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}
.our-work-action-list a:last-child .our-work-action-list-box {
    margin-bottom: 0;
}
.our-work-action-list-box img {
    width: 300px;
    height: 186px;
    object-fit: cover;
    border-radius: 20px;
}
.our-work-action-list-cnt {
    margin-left: 24px;
}
.our-work-action-list-cnt h5 {
    font-size: 24px;
    font-weight: 600;
    color: var(--colorBlack);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 0;
}
.our-work-action-list-cnt p {
    font-size: 18px;
    color: #a1a1a1;
    line-height: 36px;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
/*-- End --*/

/*-- Start --*/
.clients-say {
    padding: 100px 0;
    background-color: var(--colorOrange);
    border-radius: 30px;
    margin: 0 30px;
}
.clients-say .container { 
    position: relative;
}
.clients-say .sec-heading {
    width: 30%;
    margin-right: 50px;
    position: absolute;
}
.clients-say .sec-heading h2,
.clients-say .sec-heading p {
    color: var(--colorBlack);
}
.clients-say-img {
    width: calc(70% - 62px);
    float: right;
}
.clients-say-cnt {
    float: left;
    margin-top: 50px;
}
.clients-say-img img {
    width: 100%;
    height: 458px;
    object-fit: cover;
    border-radius: 30px;
}
.clients-say-cnt img {
    width: 61px!important;
    height: 45px;
    border-radius: 0;
}
.clients-say-cnt p {
    width: calc(100% - 140px);
    position: relative;
    margin: 0 auto;
    font-size: 24px;
    font-weight: 400;
    color: var(--colorBlack);
    line-height: 48px;
    margin-bottom: 0px;
}
.clients-say-cnt p::before {
    content: "";
    position: absolute;
    top: -8px;
    left: -70px;
    width: 50px;
    height: 37px;
    background-image: url(../images/quote-left.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.clients-say-cnt p::after {
    content: "";
    position: absolute;
    top: auto;
    right: -70px;
    width: 50px;
    height: 37px;
    background-image: url(../images/quote-right.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.clients-say-cnt span {
    font-size: 20px;
    color: var(--colorBlack);
    margin: 10px 0 0 70px;
    display: block;
}


.clients-say .owl-nav {
    text-align: right;
    position: absolute;
    top: 50%;
    margin-left: -5px;
}
.clients-say .owl-carousel .owl-nav button.owl-prev,
.clients-say .owl-carousel .owl-nav button.owl-next {
    font-size: 20px;
    color: var(--colorBlack);
    background-color: var(--colorOrange);
    border: 1px solid var(--colorBlack);
    border-radius: 50px;
    width: 50px;
    height: 50px;
}
.clients-say .owl-carousel .owl-nav button.owl-prev:hover,
.clients-say .owl-carousel .owl-nav button.owl-next:hover {
    background-color: var(--colorBlack);
    color: var(--colorWhite);
    transition: .4s;
}
.clients-say .owl-carousel .owl-nav button.owl-prev.disabled,
.clients-say .owl-carousel .owl-nav button.owl-next disabled {
    opacity: 0.2;
}
/*-- End --*/

/*-- Start --*/
.why-choose {
    padding: 100px 0;
    background-color: var(--colorBlack);
    border-radius: 30px;
    margin: 100px 30px 0;
    position: relative;
}
.why-choose::after {
    content: "";
    position: absolute;
    top: 93px;
    right: -3px;
    width: 57px;
    height: 105px;
    background-image: url(../images/left-arrow.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.why-choose .sec-heading p {
    margin-bottom: 30px;
}
.why-choose-link a {
    font-size: 18px;
    color: var(--colorWhite);
    line-height: 36px;
    display: block;
    margin-bottom: 30px;
}
.why-choose-link a:hover {
    color: var(--colorLightBlue);
}
.why-choose .col-xl-8 {
    border-left: 2px solid var(--colorWhite);
}
.why-choose-cnt {
    padding: 10px 50px 0;
    margin-bottom: 50px;
}
.why-choose-cnt h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--colorWhite);
}
.why-choose-form {
    padding: 0 50px;
}
.why-choose-form .col-lg-6 {
    margin-bottom: 30px;
}
.why-choose-form label {
    font-size: 18px;
    font-weight: 400;
    color: var(--colorWhite);
    width: 29%;
    text-align: right;
}
.why-choose-form .form-control {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid var(--colorWhite);
    border-radius: 0;
    padding: 0;
    font-size: 18px;
    font-weight: 400;
    color: var(--colorWhite);
    margin-left: 16px;
}
.why-choose-form .form-control:focus {
    border-color: var(--colorLightBlue);
}
.why-choose-form .form-check {
    float: right;
    margin-bottom: 30px;
}
.why-choose-form .form-check label {
    width: 100%;
}
.why-choose-form .form-check-input {
    width: 24px;
    height: 24px;
    background-color: transparent;
    margin-top: 0;
}
.why-choose-form .form-check-input:focus {
    border-color: var(--colorLightBlue);
    box-shadow: none;
}
.why-choose-form .form-check-input:checked {
    background-color: var(--colorLightBlue);
    border-color: var(--colorLightBlue);
}
.why-choose-form .form-check-label {
    font-size: 18px;
    font-weight: 400;
    color: var(--colorWhite);
    margin-left: 15px;
    cursor: pointer;
    width: 100%;
    text-align: left;
}
.why-choose-form .form-check-input[type=checkbox] {
    border-radius: 0;
}
.why-choose-form .thm-btn {
    border-color: var(--colorWhite);
    color: var(--colorWhite);
}
.why-choose-form .thm-btn:hover {
    border-color: var(--colorLightBlue);
}
.why-choose-form .wpcf7-spinner {
    margin: 0 -64px 0 24px;
}
.why-choose-form .recaptcha {
    margin: 0 -18px 30px 0;
    display: block;
    float: right;
}
/*-- End --*/

/*-- Start --*/
.accreditation-logo {
    padding: 100px 30px;
}
.accreditation-logo-list {
    border: 2px solid #cccccc;
    border-radius: 30px;
    padding: 30px;
}
.accreditation-logo-list ul {
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    list-style-type: none;
}
.accreditation-logo-list ul li {
    width: 20%;
    text-align: center;
}
/*-- End --*/

/*-- Start Page Banner --*/
.page-banner {
    position: relative;
    min-height: 500px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    margin: 30px 30px 0;
    border-radius: 30px;
    padding: 117px 0 0;
}
.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--colorBlack);
    opacity: 0.2;
    border-radius: 30px;
}
.page-heading h1 {
    font-size: 70px;
    font-weight: bold;
    color: var(--colorWhite);
    margin: 50px 0 50px 50px;
    animation: 1s 0.3s fadeIn both;
}
.page-banner .header-top {
    position: absolute;
    z-index: 2;
    top: 0;
    width: max-content;
    background: var(--colorWhite);
    border-bottom-right-radius: 30px;
    transition: 0.5s;
}
.page-banner .header-top::before {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 30px;
    height: 30px;
    background: transparent;
    border-top-left-radius: 30px;
    box-shadow: -5px -9px 0 5px var(--colorWhite);
}
.page-banner .header-top::after {
    content: "";
    position: absolute;
    top: 0;
    right: -30px;
    width: 30px;
    height: 30px;
    background: transparent;
    border-top-left-radius: 30px;
    box-shadow: -5px -9px 0 5px var(--colorWhite);
}
/*-- End Page Banner --*/

/*-- Start Fire Protection --*/
.welcome {
    padding: 100px 0;
}
.welcome-cnt {
    margin-right: 94px;
}
.welcome-cnt h2 {
    font-size: 50px;
    font-weight: 600;
    color: var(--colorBlack);
    margin-bottom: 30px;
}
.welcome-cnt p {
    font-size: 18px;
    color: var(--colorBlack);
    line-height: 36px;
    margin-bottom: 30px;
}
.welcome-cnt p:last-child {
    margin-bottom: 0;
}
.welcome-inverted {
    position: relative;
    width: 534px;
    height: 600px;
    background: var(--colorWhite);
    border-radius: 0px 30px 0px 30px;
    margin: 0 auto;
    overflow: hidden;
}
.welcome-inverted-box {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
}
.welcome-inverted-shape-btm {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 58%;
    height: 70px;
    background: var(--colorWhite);
    border-bottom-right-radius: 30px;
    transition: 0.5s;
}
.welcome-inverted-shape-btm::before {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 30px;
    height: 30px;
    background: transparent;
    border-top-left-radius: 30px;
    box-shadow: -5px -9px 0 5px var(--colorWhite);
}
.welcome-inverted-shape-btm::after {
    content: "";
    position: absolute;
    top: 0;
    right: -30px;
    width: 30px;
    height: 30px;
    background: transparent;
    border-top-left-radius: 30px;
    box-shadow: -5px -9px 0 5px var(--colorWhite);
}
.our-core-fire-protection {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--colorLightBlue) 0%, var(--colorDarkBlue) 100%);
    border-radius: 30px;
    margin: 0 30px 0;
}
.our-core-fire-protection .sec-heading {
    margin-bottom: 50px;
}
.our-core-fire-box {
    display: flex;
}
.our-core-fire-box img {
    width: 100%;
    height: 198px;
    object-fit: cover;
    border-radius: 20px;
}
.our-core-fire-box-cnt {
    margin-left: 24px;
}
.our-core-fire-box-cnt h5 {
    font-size: 24px;
    font-weight: 600;
    color: var(--colorWhite);
    margin-bottom: 12px;
}
.our-core-fire-box-cnt p {
    font-size: 18px;
    color: var(--colorWhite);
    line-height: 36px;
    margin: 0;
}
.our-core-fire-protection .owl-nav {
    position: absolute;
    top: -117px;
    right: 0;
    margin-top: 0;
}
.our-core-fire-protection .owl-carousel .owl-nav button.owl-prev,
.our-core-fire-protection .owl-carousel .owl-nav button.owl-next {
    font-size: 20px;
    color: var(--colorBlack);
    background-color: transparent;
    border: 1px solid var(--colorBlack);
    border-radius: 50px;
    width: 50px;
    height: 50px;
}
.our-core-fire-protection .owl-carousel .owl-nav button.owl-prev:hover,
.our-core-fire-protection .owl-carousel .owl-nav button.owl-next:hover {
    background-color: var(--colorBlack);
    color: var(--colorWhite);
    transition: .4s;
}
.our-core-fire-protection .owl-carousel .owl-nav button.owl-prev.disabled,
.our-core-fire-protection .owl-carousel .owl-nav button.owl-next disabled {
    opacity: 0.2;
}
.ongoing-support {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff8e59 0%, #cf7951 100%);
    border-radius: 30px;
    margin: 100px 30px 0;
}
.ongoing-support .sec-heading {
    margin-bottom: 50px;
}
.ongoing-support-box {
    background-color: #955536;
    border-radius: 20px;
    padding: 48px;
}
.ongoing-support-box h3 {
    font-size: 32px;
    font-weight: 600;
    color: var(--colorWhite);
    margin-bottom: 16px;
}
.ongoing-support-box p {
    font-size: 18px;
    color: var(--colorWhite);
    line-height: 36px;
    margin: 0;
}
.why-choose-spectra {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--colorLightBlue) 0%, var(--colorDarkBlue) 100%);
    border-radius: 30px;
    margin: 100px 30px 0;
}
.why-choose-spectra .sec-heading {
    margin-bottom: 50px;
}
.why-choose-spectra-cnt {
    display: flex;
    align-items: center;
}
.why-choose-spectra-cnt p {
    font-size: 18px;
    color: var(--colorWhite);
    line-height: 36px;
    margin: 0;
    width: calc(100% - 84px);
}
.why-choose-spectra-cnt .circles {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--colorWhite);
    background-color: transparent;
    margin-left: unset;
    margin-right: 24px;
}
.why-choose-spectra-cnt .circles::before {
    content: "";
    position: absolute;
    top: 19px;
    left: 0;
    right: 0;
    width: 1px;
    height: 18px;
    background-color: var(--colorWhite);
    margin: 0 auto;
    transform: rotate(45deg);
}
/*-- End Fire Protection --*/

/*-- Start Thermal Insulation Services --*/
.government-grants {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--colorLightBlue) 0%, var(--colorDarkBlue) 100%);
    border-radius: 30px;
    margin: 0 30px 0;
}
.government-grants .sec-heading {
    margin-bottom: 50px;
}
.government-grants .b-top {
    border-top: 1px solid var(--colorWhite);
    margin: 48px 0;
}
.government-grants-cnt h5 {
    font-size: 24px;
    font-weight: bold;
    color: var(--colorWhite);
    margin-bottom: 16px;
}
.government-grants-cnt p {
    font-size: 18px;
    color: var(--colorWhite);
    line-height: 36px;
    margin-bottom: 24px;
}
.government-grants-cnt p:last-child {
    margin-bottom: 0;
}
.government-grants-cnt ul {
    padding-left: 18px;
    margin-bottom: 75px;
}
.government-grants-cnt ul li {
    font-size: 18px;
    color: var(--colorWhite);
    line-height: 36px;
}
/*-- End Thermal Insulation Services --*/

/*-- Start Enabling Works --*/
.sustainability-compliance {
    padding: 100px 0;
    background-color: #e2e1e1;
    border-radius: 30px;
    margin: 100px 30px 0;
}
.sustainability-compliance .sec-heading h2 {
    color: var(--colorBlack);
}
.sustainability-compliance-cnt p {
    font-size: 18px;
    color: var(--colorBlack);
    line-height: 36px;
    margin-bottom: 24px;
}
.sustainability-compliance-img {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 30%;
    border-radius: 20px;
}
.sustainability-compliance-cnt p:last-child { 
    margin-bottom: 0;
}
/*-- End Enabling Works --*/

/*-- Start Soft Strip Demolition --*/
.soft-strip-demolition {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--colorLightBlue) 0%, var(--colorDarkBlue) 100%);
    border-radius: 30px;
    margin: 0 30px 0;
}
.soft-strip-demolition .sec-heading {
    margin-bottom: 50px;
}
.soft-strip-demolition-cnt p {
    font-size: 18px;
    color: var(--colorWhite);
    line-height: 36px;
    margin-bottom: 24px;
}
.soft-strip-demolition-img {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 30%;
    border-radius: 20px;
}
.soft-strip-demolition-cnt p:last-child { 
    margin-bottom: 0;
}
.our-soft-strip-box-icon {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}
.our-soft-strip-box-icon .circles {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--colorWhite);
    background-color: transparent;
    margin-left: unset;
    margin-right: 24px;
}
.our-soft-strip-box-icon .circles::before {
    content: "";
    position: absolute;
    top: 19px;
    left: 0;
    right: 0;
    width: 1px;
    height: 18px;
    background-color: var(--colorWhite);
    margin: 0 auto;
    transform: rotate(45deg);
}
.our-soft-strip-box-icon h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--colorWhite);
    margin-bottom: 0;
    width: calc(100% - 84px);
}
.our-soft-strip-box p {
    font-size: 18px;
    color: var(--colorWhite);
    line-height: 36px;
    margin: 0;
    width: 76%;
}
.flexible-solutions {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--colorLightBlue) 0%, var(--colorDarkBlue) 100%);
    border-radius: 30px;
    margin: 100px 30px 0;
}
.flexible-solutions .sec-heading {
    margin-bottom: 50px;
}
.flexible-solutions .g-5 {
    --bs-gutter-x: 200px;
}
.flexible-solutions .col-xl-6:first-child {
    border-right: 2px solid var(--colorWhite);
}
.flexible-solutions-cnt p { 
    font-size: 18px;
    color: var(--colorWhite);
    line-height: 36px;
    margin-bottom: 12px;
}
.flexible-solutions-cnt p:last-child {
    margin-bottom: 0;
}
.flexible-solutions-cnt h3 {
    font-size: 40px;
    font-weight: 600;
    color: var(--colorWhite);
    margin-bottom: 24px;
}
.flexible-solutions-cnt h5 {
    font-size: 24px;
    font-weight: bold;
    color: var(--colorWhite);
    margin-bottom: 12px;
}
.flexible-solutions-cnt ul {
    padding-left: 18px;
    margin-bottom: 16px;
}
.flexible-solutions-cnt ul li {
    font-size: 18px;
    color: var(--colorWhite);
    line-height: 36px;
}
/*-- End Soft Strip Demolition --*/

/*-- Start Land Remediation --*/
.our-expertise {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--colorLightBlue) 0%, var(--colorDarkBlue) 100%);
    border-radius: 30px;
    margin: 0 30px 0;
}
.collaborative {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--colorLightBlue) 0%, var(--colorDarkBlue) 100%);
    border-radius: 30px;
    margin: 100px 30px 0;
}
.our-expertise-cnt h2,
.collaborative-cnt h2 {
    font-size: 50px;
    font-weight: 600;
    color: var(--colorWhite);
    margin-bottom: 30px;
}
.our-expertise-cnt p,
.collaborative-cnt p {
    font-size: 18px;
    color: var(--colorWhite);
    line-height: 36px;
    margin-bottom: 24px;
}
.our-expertise-cnt p:last-child,
.collaborative-cnt p:last-child {
    margin-bottom: 0;
}
.our-expertise-img img,
.collaborative-img img {
    border-radius: 20px;
}
/*-- End Land Remediation --*/

/*-- Start Damp & Black Mould --*/
.damp-black-mould {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff8e59 0%, #cf7951 100%);
    border-radius: 30px;
    margin: 100px 30px 0;
}
.damp-black-mould .sec-heading {
    margin-bottom: 50px;
}
.damp-black-mould-box {
    display: flex;
}
.damp-black-mould-box-icon .circles {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--colorWhite);
    background-color: transparent;
    margin-left: unset;
    margin-right: 24px;
}
.damp-black-mould-box-icon .circles::before {
    content: "";
    position: absolute;
    top: 19px;
    left: 0;
    right: 0;
    width: 1px;
    height: 18px;
    background-color: var(--colorWhite);
    margin: 0 auto;
    transform: rotate(45deg);
}
.damp-black-mould-box-cnt {
    width: calc(100% - 84px);
}
.damp-black-mould-box-cnt h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--colorWhite);
    margin-bottom: 4px;
}
.damp-black-mould-box-cnt p {
    font-size: 18px;
    color: var(--colorWhite);
    line-height: 36px;
    margin: 0;
    width: 76%;
}
/*-- End Damp & Black Mould --*/

/*-- Start Case Studies --*/
.case-studies {
    padding: 100px 0 0;
}
.case-studies .our-work-action-box img {
    height: 550px;
}
.case-studies-details {
    padding: 100px 0 0;
}
.case-studies-details-img {
    position: relative;
    margin-bottom: 24px;
}
.case-studies-details-img::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--colorBlack);
    border-radius: 20px;
    opacity: 0.3;
    transition: all 0.4s ease-in-out;
}
.case-studies-details-img img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.4s ease-in-out;
}
.case-studies-details-img-list .case-studies-details-img:last-child {
    margin-bottom: 0;
}
.case-studies-details-sticky {
    position: sticky;
    top: 32px;
}
.case-studies-details-cnt h4 {
    font-size: 30px;
    font-weight: bold;
    color: var(--colorBlack);
    margin-bottom: 8px;
}
.case-studies-details-cnt p {
    font-size: 16px;
    color: var(--colorBlack);
    line-height: 32px;
    margin-bottom: 24px;
}
.case-studies-details-box {
    padding: 48px;
    background: linear-gradient(135deg, #ff8e59 0%, #cf7951 100%);
    border-radius: 30px;
}
.case-studies-point {
    display: flex;
}
.case-studies-point .circles {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--colorWhite);
    background-color: transparent;
    margin-left: unset;
    margin-right: 12px;
}
.case-studies-point .circles::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
    width: 1px;
    height: 18px;
    background-color: var(--colorWhite);
    margin: 0 auto;
    transform: rotate(45deg);
}
.case-studies-point-cnt {
    width: calc(100% - 56px);
}
.case-studies-point-cnt h3 {
    font-size: 24px;
    font-weight: bold;
    color: var(--colorWhite);
    margin-bottom: 0px;
}
.case-studies-point-cnt p {
    font-size: 18px;
    color: var(--colorWhite);
    line-height: 32px;
    margin: 0;
}
/*-- End Case Studies --*/

/*-- Start Contact --*/
.contact-location {
    padding: 100px 30px;
}
.location-map iframe {
    width: 100%;
    height: 700px;
    border-radius: 30px;
}
/*-- End Contact --*/

/*-- Start Accreditations --*/
.accreditations-certificate {
    padding: 100px 0;
}
.accreditations-certificate-box {
    display: flex;
    align-items: center;
    border-radius: 30px;
    border: 2px solid #cccccc;
    position: relative;
}
.accreditations-certificate-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background-color: #cccccc;
    margin: 0 auto;
}
.accreditations-certificate-img {
    width: 50%;
    text-align: center;
    padding: 24px;
}
.accreditations-certificate-cnt {
    width: 50%;
    text-align: center;
    padding: 24px;
}
.accreditations-certificate-cnt a {
    font-size: 16px;
    color: var(--colorBlack);
    text-transform: uppercase;
}
.accreditations-certificate-cnt a:hover {
    color: var(--colorOrange);
}
.accreditations .why-choose {
    margin-bottom: 100px;
}
/*-- End Accreditations --*/

/*-- Start Carpentry Works --*/
.what-we-deliver {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--colorLightBlue) 0%, var(--colorDarkBlue) 100%);
    border-radius: 30px;
    margin: 0 30px 0;
}
.what-we-deliver .sec-heading {
    margin-bottom: 50px;
}
.what-we-deliver .b-top {
    border-top: 1px solid var(--colorWhite);
    margin: 48px 0;
}
.what-we-deliver-cnt h5 {
    font-size: 24px;
    font-weight: bold;
    color: var(--colorWhite);
    margin-bottom: 16px;
}
.what-we-deliver-cnt p {
    font-size: 18px;
    color: var(--colorWhite);
    line-height: 36px;
    margin-bottom: 24px;
}
.what-we-deliver-cnt p:last-child {
    margin-bottom: 0;
}
.what-we-deliver-cnt ul {
    display: flex;
    flex-wrap: wrap;
    padding-left: 18px;
    margin-bottom: 0;
    column-gap: 64px;
}
.what-we-deliver-cnt ul li {
    font-size: 18px;
    color: var(--colorWhite);
    line-height: 36px;
    width: calc(50% - 64px);
    margin-bottom: 24px;
}
/*-- End Carpentry Works --*/

/*-- Start Terms & Conditions --*/
.terms-conditions {
    padding: 100px 0;
}
.terms-conditions-cnt h2 {
    font-size: 50px;
    font-weight: 600;
    color: var(--colorBlack);
    margin-bottom: 30px;
}
.terms-conditions-cnt h5 {
    font-size: 24px;
    font-weight: 600;
    color: var(--colorBlack);
    margin-bottom: 16px;
}
.terms-conditions-cnt h6 {
    font-size: 18px;
    font-weight: 500;
    color: var(--colorBlack);
    margin-bottom: 8px;
}
.terms-conditions-cnt p,
.terms-conditions-cnt ul li,
.terms-conditions-cnt ol li {
    font-size: 18px;
    color: var(--colorBlack);
    line-height: 36px;
}
.terms-conditions-cnt ul {
    padding-left: 18px;
}
.terms-conditions-cnt b {
    font-weight: 600;
} 
.mesothelioma-cnt img {
    margin-bottom: 24px;
}
.mesothelioma-cnt p {
    font-size: 18px;
    color: var(--colorBlack);
    line-height: 36px;
}
/*-- End Terms & Conditions --*/

/*-- Start About --*/
.about-us {
    padding: 100px 0;
}
.about-us .sec-heading h2 {
    color: var(--colorBlack);
    margin-bottom: 0;
} 
.our-team {
    padding: 100px 0;
}
.our-team .sec-heading {
    margin-bottom: 50px;
}
.our-team .sec-heading h2 {
    color: var(--colorBlack);
    margin-bottom: 0;
} 
.our-team-box {
    background-color: #ebebeb;
    border-radius: 30px;
    padding: 30px;
}
.our-team-box h3 {
    font-size: 28px;
    font-weight: bold;
    color: var(--colorBlack);
    margin-bottom: 16px;
}
.our-team-box a {
    font-size: 16px;
    font-weight: 500;
    color: var(--colorBlack);
    margin-top: 16px;
    display: block;
}
.our-team-box a:hover {
    color: var(--colorOrange);
}
.our-team-box a i {
    width: 32px;
    height: 32px;
    line-height: 32px;
    background-color: var(--colorWhite);
    border-radius: 32px;
    font-size: 16px;
    color: var(--colorBlack);
    margin-right: 12px;
}
.our-team-img img {
    width: 262px;
    height: 262px;
    object-fit: cover;
    border-radius: 10px;
}
.our-team-cnt {
    width: calc(100% - 286px);
    margin-left: 24px;
}
.our-team-cnt p {
    font-size: 18px;
    color: var(--colorBlack);
    line-height: 36px;
}
.our-team-cnt p:last-child {
    margin-bottom: 0;
}
/*-- End About --*/

/*-- Start Footer --*/
.footer {
    padding: 50px 0;
    background: linear-gradient(8deg,rgba(39, 74, 148, 1) 0%, rgba(65, 120, 187, 1) 100%);
    margin: 0 30px 30px;
    border-radius: 30px;
}
.footer .footer-logo img {
    height: 50px;
}
.footer .footer-link ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: end;
    padding: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.footer .footer-link ul li {
    padding: 12px 24px;
}
.footer .footer-link ul li a {
    font-size: 18px;
    color: var(--colorWhite);
}
.footer .footer-link ul li a:hover {
    color: var(--colorOrange);
}
.footer .footer-link ul li:last-child {
    padding: 0 0 0 24px;
}
.footer-contact {
    border-top: 1px solid #89a2cb;
    border-bottom: 1px solid #89a2cb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    margin-top: 50px;
}
.footer-contact p {
    font-size: 18px;
    color: var(--colorWhite);
    margin-bottom: 0;
}
.footer-contact a {
    font-size: 18px;
    color: var(--colorWhite);
}
.footer-contact a:hover {
    color: var(--colorOrange);
}
.footer-btm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0 0;
}
.footer-btm p {
    font-size: 18px;
    color: var(--colorWhite);
    margin-bottom: 0;
}
.footer-btm p a {
    color: var(--colorWhite);
}
.footer-btm p a:hover {
    color: var(--colorOrange);
}
/*-- End Footer --*/
