@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
:root {
    --font-family: 'Poppins', sans-serif;
    --primary-color: #3078fb;
    --dark-blue: #062241;
    --black-color: #151b2c;
    --light-font: #5d6471;
    --white-color: #fff;
    --green-color: #5CC258;
    --secondary-blue: #163DD5;
    --overlay-inset: #062241d6 0 0 0 1000px inset;
    --box-shadow: 0 0 1.2rem rgb(30 34 40 / 5%);
}


/* RESET */

* {
    margin: 0;
}

ul {
    padding-left: 0px;
    list-style: none;
    text-decoration: none;
    line-height: 2rem;
    color: var(--light-font);
}

dl,
ol,
ul {
    margin-bottom: 0px;
}

a {
    text-decoration: none;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

a:hover {
    text-decoration: none;
}

button {
    font-family: var(--font-family);
}

input,
select,
textarea {
    font-family: var(--font-family);
}

button:focus {
    outline: none;
}


/* GENERAL CSS */

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.7;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-family);
    line-height: 1.2;
}

h2 {
    font-size: 34px;
    font-weight: 600;
}

h3 {
    font-size: 22px;
    font-weight: 600;
}

h4 {
    font-size: 20px;
    font-weight: 600;
}

p {
    color: var(--light-font);
    line-height: 1.7;
}

.logo-wrapper {
    padding-top: 5px;
}
.aligncenter{
    align-self: center;
}
img.logo-img {
    width: 150px;
    transition: 0.5s ease all;
    -webkit-transition: 0.5s ease all;
    -moz-transition: 0.5s ease all;
}
.fixed .logo-wrapper a img{
    width: 100px;
    transition: 0.5s ease all;
    -webkit-transition: 0.5s ease all;
    -moz-transition: 0.5s ease all;
}

.title-wrapper {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}
.title-wrapper h1{
    font-size: 55px;
    font-weight: 600;
}
.title-wrapper p {
    font-size: 17px;
    margin-top: 15px;
}

.lighter-font {
    color: var(--font-blue);
}

.border-bottom {
    border-bottom: 1px solid var(--borer-color)!important;
}

.uppercase {
    text-transform: uppercase;
}

.underline {
    text-decoration: underline;
}

.white {
    color: var(--white-color)!important;
}

.primary {
    color: var(--primary-color)!important;
}

.black {
    color: var(--black-color);
}

.bg-grey {
    background: #F5F8FB;
}

.green-bg {
    background: var(--green-color);
}

.secondary-bg {
    background: var(--secondary-blue);
}

.mb-0 {
    margin-bottom: 0px!important;
}

.mt-10 {
    margin-top: 10px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mt-20 {
    margin-top: 20px;
}

.mr-10 {
    margin-right: 10px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-100 {
    margin-top: 100px;
}

.mb-100 {
    margin-bottom: 100px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-70 {
    padding-top: 70px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-200 {
    padding-bottom: 200px;
}

.txt-left {
    text-align: left;
}

.txt-center {
    text-align: center;
}

.txt-right {
    text-align: right;
}

.ml-0 {
    margin-left: 0!important;
}

.ml-10 {
    margin-left: 10px;
}

.ml-20 {
    margin-left: 20px;
}

.mr-20 {
    margin-right: 20px;
}

.font-14 {
    font-size: 14px;
}

.font-18 {
    font-size: 18px;
}

.font-20 {
    font-size: 20px;
    font-weight: 300;
}

.font-22 {
    font-size: 22px;
    font-weight: 500;
}

.font-24 {
    font-size: 24px;
    font-weight: 600;
}

.font-30 {
    font-size: 30px;
    font-weight: 500;
}

.font-32 {
    font-size: 32px;
    font-weight: bold;
}

.font-40 {
    font-size: 40px;
}

.font-50 {
    font-size: 50px;
    line-height: 1.2;
}

.img-responsive {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.width-100 {
    width: 100%;
}

.br-0 {
    border-radius: 0px!important;
}


/* FLEX */

.flex {
    display: flex!important;
}

.row {
    display: flex;
    flex-direction: row;
}

.column {
    display: flex;
    flex-direction: column;
}

.gap-05 {
    gap: 5px;
}

.gap-1 {
    gap: 10px;
}

.gap-2 {
    gap: 20px;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: flex-end;
}

.space-between {
    justify-content: space-between;
}

.wrap {
    flex-wrap: wrap;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.g-gap-10 {
    grid-gap: 10px;
}

.g-gap-20 {
    grid-gap: 20px;
}

.g-gap-30 {
    grid-gap: 30px;
}

.g-gap-5 {
    grid-gap: 5px;
}

.g-gap-50 {
    grid-gap: 50px;
}

.flexspace{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* BUTTON CSS */

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 2px;
    white-space: nowrap;
}

.primary-btn {
    background: var(--primary-color);
    color: var(--white-color);
    border: 1px solid var(--primary-color);
}

.primary-btn:hover {
    background: var(--white-color);
    color: var(--primary-color);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

.primary-border-btn {
    background: var(--white-color);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.primary-border-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

.download-btn {
    border: 1px solid #c7c7c7;
    color: var(--light-font);
}

.download-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
    border: 1px solid var(--primary-color);
}


/* CONTAINER */

.container {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
}


/* HEADER */

.whole-mobile-section {
    display: none;
}

.upper-header {
    background: #243559;
    color: var(--white-color);
    padding: 10px 0px;
}

.upper-header .left-col a {
    color: var(--white-color);
    font-size: 14px;
    line-height: 1;
}

.upper-header .left-col a i {
    color: var(--white-color);
    font-size: 16px;
}

.soci-flex a {
    background: var(--primary-color);
    color: var(--white-color);
    width: 24px;
    display: inline-block;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 13px;
    border: 1px solid var(--primary-color)
}

.header-grid {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    align-items: center;
}

.main-header {
    background: transparent;
}

nav ul {
    display: flex;
    justify-content: center;
}

nav .nav-link {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    color: #444;
    font-size: 16px;
    font-weight: 500;
    padding: 35px 12px;
    text-transform: capitalize;
    display: inline-block;
}

nav .nav-list {
    position: relative;
}

nav .nav-link i {
    font-size: 13px;
    color: var(--light-font);
}

.dropdown-list-wrapper {
    background: #fff;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 115%;
    transition: all 0.3s ease 0s;
    visibility: hidden;
    width: 170px;
    z-index: -99;
    padding: 10px 0px;
    border-top: 2px solid #3078fb;
    display: inline-block;
}

nav .nav-list:hover ul.dropdown-list-wrapper {
    top: 100%;
    opacity: 1;
    z-index: 999;
    visibility: visible;
}

.dropdown-list-wrapper .dropdown-list a {
    color: #151b2c;
    display: block;
    font-size: 14px;
    padding: 5px 20px;
    line-height: 1.5;
}

.search-wrapper .search-link {
    color: var(--black-color);
    font-size: 16px;
    padding-right: 15px;
    display: inline-block;
}

.right-cta {
    position: relative;
}

.search-form {
    background: #f5f5f5;
    bottom: -104px;
    color: #151b2c;
    display: none;
    position: absolute;
    right: 0px;
    width: 300px;
    z-index: 99999;
    padding: 20px;
    box-sizing: border-box;
}

.search-form.show {
    display: block;
    transition: all 0.3s ease 0s;
}

.search-input {
    background: #fff none repeat scroll 0 0;
    border: medium none;
    color: #151b2c;
    display: block;
    float: left;
    font-size: 14px;
    font-style: italic;
    padding: 8px 10px;
    width: 100%;
    height: 40px;
    box-sizing: border-box;
    outline: none;
}

.search-form .input-wrapper button {
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 16px;
    width: 40px;
    display: inline-block;
    border: 0px;
}


/* fixed header */

.fixed-header {
    position: absolute;
    width: 100%;
}

.fixed-header.fixed {
    position: fixed;
    width: 100%;
    top: 0px;
    left: 0px;
    background: var(--white-color);
    box-shadow: var(--box-shadow);
    z-index: 99;
}

.fixed-header.fixed nav .nav-link {
    padding: 25px 12px;
}




/* INDEX PAGE */

.banner-section {
    background: url('../images/main-banner.png') left center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 100px;
    box-sizing: border-box;
}

.gbg {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#abc6d7+0,ffffff+79,ffffff+79&1+0,0+100 */
    background: -moz-linear-gradient(top, rgba(171, 198, 215, 1) 0%, rgba(255, 255, 255, 0.21) 79%, rgba(255, 255, 255, 0) 100%) !important;
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(171, 198, 215, 1) 0%, rgba(255, 255, 255, 0.21) 79%, rgba(255, 255, 255, 0) 100%) !important;
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(171, 198, 215, 1) 0%, rgba(255, 255, 255, 0.21) 79%, rgba(255, 255, 255, 0) 100%) !important;
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#abc6d7', endColorstr='#00ffffff', GradientType=0) !important;
    /* IE6-9 */
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}

.banner-cta h1 {
    color: var(--black-color);
    font-size: 45px;
    font-weight: 600;
    line-height: 64px;
    max-width: 700px;
    text-transform: capitalize;
}

.cta-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-img img {
    width: 30vw;
}

.banner-cta {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 14vh 0px;
}

.banner-cta .sub-text {
    font-weight: 500;
    font-size: 18px;
    color: #1a57c5;
    display: inline-block;
}

.banner-cta p {
    font-size: 20px;
    width: 65%;
    color: var(--primary-color);
}


/* FIRST SECTION */

.icon-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.icon-grid-3 .icon {
    width: 80px;
}

.icon-grid-3 h3 {
    margin-top: 30px;
    margin-bottom: 10px;
}

.icon-grid-3 .wrapper {
    padding: 40px 30px;
}

.wrapper:nth-child(2n) {
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
}

.icon-grid-3 .wrapper .line-link {
    margin-top: 15px;
}

.line-link {
    position: relative;
    font-weight: 500;
    color: #444;
}

.line-link::after {
    content: '';
    position: absolute;
    height: 1px;
    background: var(--primary-color);
    left: 0px;
    bottom: 0px;
    width: 0%;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

.line-link:hover {
    color: var(--primary-color);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

.line-link:hover::after {
    width: 100%;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
}

.service-module {
    z-index: 1;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: none;
    text-align: left;
    padding: 40px 30px;
    border: 1px solid rgba(48, 120, 251, 0.4);
    background: var(--white-color);
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.service-module .icon {
    width: 60px;
    margin-bottom: 15px;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}
.service-module .icon100{
    width: 100%;
    min-height: 205px;
    min-width: 205px;
}

.btn-next {
    font-size: 18px;
    color: #3078fb;
    transition: 0.5s;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 41px;
    font-weight: 700;
    border-radius: 2px;
    background: #f5f8fb;
    text-align: center;
    border: 1px solid #f5f8fb;
}

.btn-next:hover {
    background: var(--primary-color);
    color: var(--white-color);
    border: 1px solid var(--primary-color);
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.service-module::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0%;
    background: var(--dark-blue);
    opacity: 0;
    transition: 0.4s;
    content: "";
    z-index: -1;
}

.service-module:hover::after {
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    opacity: 1;
    height: 100%;
}

.service-module:hover,
.service-module:hover p {
    color: var(--white-color);
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.service-module:hover .icon {
    filter: brightness(10);
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.counter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}

.counter-module .icon {
    width: 50px;
    margin-bottom: 10px;
}

.counter-module {
    padding: 40px 10px;
    text-align: center;
    border-radius: 3px;
    background: #f5f8fb;
}

.counter-module .counter {
    color: #444;
    display: block;
    font-size: 40px;
    line-height: 44px;
    font-weight: 600;
    margin-bottom: 5px;
}

.animated-div {
    position: relative;
    padding: 0px 30px;
}

.animated-div .img-wrapper {
    position: absolute;
    width: 100%;
    bottom: 0px;
    left: 0px;
    padding: 0px 30px;
    box-sizing: border-box;
    z-index: 9;
}

.globe-wrapper {
    position: inherit;
    z-index: 2;
    opacity: 0.3;
    width: 90%;
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
    }
}

.rotate {
    animation-name: rotation;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.overlay-section {
    background: url('../images/bg2.jpg');
    padding: 70px 0px;
    box-shadow: var(--overlay-inset);
    background-position: center;
}

.overlay-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
}

.overlay-grid .overlay-info .icon {
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.goals-wrapper {}

.goal-module {
    margin: 15px;
}

.goal-module .img-wrapper {
    position: relative;
    overflow: hidden;
}

.goal-module .center-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--white-color);
    background: #042e57e0;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.goal-module:hover .img-wrapper .img-responsive {
    transform: scale(1.1);
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.goal-module:hover .center-icon {
    opacity: 1;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.goal-module .details-wrapper h3 {
    color: var(--black-color);
    font-weight: 500;
    position: relative;
    margin-bottom: 10px;
}

.goal-module .details-wrapper h3 i {
    position: absolute;
    font-size: 17px;
    background: var(--primary-color);
    height: 30px;
    width: 35px;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0px;
    right: 60px;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.goal-module:hover .details-wrapper h3 i {
    opacity: 1;
    right: 0px;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.goals-wrapper .splide__arrow {
    background: transparent;
    border: 1px solid var(--white-color);
    color: var(--white-color);
    width: 40px;
    height: 40px;
    font-size: 17px;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.goals-wrapper .splide__arrow--prev {
    left: 7em;
}

.goals-wrapper .splide__arrow--next {
    right: 7em;
}

.goals-wrapper:hover .splide__arrow {
    opacity: 1;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.goals-wrapper:hover .splide__arrow--prev {
    left: 1rem;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.goals-wrapper:hover .splide__arrow--next {
    right: 1em;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.goals-wrapper .splide__arrow:hover {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.small-contact-section {
    background: #072241;
}

.call-back-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    grid-gap: 30px;
}

.blue-input {
    border: 1px solid rgba(49, 120, 251, 0.4);
    border-radius: 3px;
    color: #fff;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 15px;
    font-size: 14px;
    background: transparent;
    margin-bottom: 20px;
    outline: none;
}

.blue-input:last-child {
    margin-bottom: 0px;
}

.call-back-grid .grid-2 {
    grid-gap: 20px;
}

.blue-input::placeholder {
    color: #b4b4b4;
}

.call-back-grid textarea {
    margin-bottom: 12px;
}


/* tab */

.tab {
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}


/* Style the buttons inside the tab */

.tab button {
    color: #2a354e;
    padding: 20px 10px;
    align-items: center;
    text-align: center;
    border-radius: 4px;
    border: 1px solid rgba(49, 120, 251, 0.4);
    background: transparent;
    font-size: 22px;
    width: 24%;
    cursor: pointer;
}


/* Create an active/current tablink class */

.tab button.active {
    background: var(--primary-color);
    color: var(--white-color);
}


/* Style the tab content */

.tabcontent {
    display: none;
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s;
}

.tabcontent .grid-2 {
    grid-gap: 40px;
    align-items: center;
}


/* Fade in tabs */

@-webkit-keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

ul.blue-tick li i {
    background: var(--primary-color);
    color: var(--white-color);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.tabcontent ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}


/* news */

.news-module .details-wrapper {
    padding: 30px;
    overflow: hidden;
    background: #fff;
}

.icon-flex {
    font-size: 14px;
    color: var(--light-font);
    margin-bottom: 15px;
}

.icon-flex i {
    color: var(--primary-color);
}

.news-module h3 {
    font-size: 20px;
}

.news-flex {
    display: flex;
    flex-direction: column;
}

.news-module:nth-child(even) .news-flex {
    flex-direction: column-reverse;
}

.testimonial-module {
    padding: 30px 30px;
    position: relative;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 5px;
}

.testimonial-module .rating-flex i {
    color: #fec731;
    font-size: 17px;
}

.rating-flex {
    gap: 5px;
}

.testimonials-slider {
    padding-bottom: 40px;
}

.testimonials-slider .splide__pagination__page.is-active {
    background: #3078fb;
    width: 30px;
    border-radius: 3px;
    transform: scale(1);
}

.testimonials-slider .splide__pagination__page {
    background: #7e8ca0;
    opacity: 1;
}

.testimonials-slider .splide__slide.is-visible.is-active .testimonial-module {
    border: 1px solid var(--dark-blue);
    background: var(--dark-blue);
    color: var(--white-color);
    transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -webkit-transition: all 0.1s ease-in-out;
}

.testimonials-slider .splide__slide.is-visible.is-active .testimonial-module p,
.testimonials-slider .splide__slide.is-visible.is-active .testimonial-module h4 {
    color: var(--white-color);
}

.half-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
}

.half-section .right-section {
    background: var(--dark-blue);
    padding: 100px 70px 100px 100px;
}

.circle-list li {
    line-height: 26px;
    position: relative;
    padding-left: 30px;
    display: block;
    margin-top: 10px;
}

.circle-list li::before {
    position: absolute;
    content: "";
    border: 1px solid var(--black-color);
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50px;
}

.left-section {
    background: url('../images/woman-in-suit.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-section_remove {
    align-self: center;
}

.popup-wrapper a {
    color: var(--white-color);
    background: var(--primary-color);
    width: 75px;
    height: 75px;
    display: block;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    border: 1px solid var(--primary-color);
}

.popup-wrapper a:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

.popup-wrapper a i {
    padding-left: 8px;
}


/* ABOUT PAGE */

.sub-banner {
    padding-top: 200px;
    padding-bottom: 100px;
  
}

.banner-title {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.banner-title h1 {
    font-size: 42px;
    font-weight: 500;
}

.breadcrumbs ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--white-color);
    font-size: 16px;
    margin-top: 10px;
}

.breadcrumbs ul li a {
    color: var(--white-color);
    position: relative;
    padding-right: 20px;
}

.breadcrumbs ul li a:after {
    content: "\f054";
    font-family: 'FontAwesome';
    position: absolute;
    font-size: 12px;
    color: var(--white-color);
    right: -0px;
}

.counter2 {
    padding: 40px 20px;
    border-radius: 3px;
}

.counter2 .count2 {
    font-size: 60px;
    font-weight: 600;
    line-height: 1;
}

.counter2 .title {
    font-size: 24px;
}


/* TEAM PAGE */

.grid-4 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 30px;
}

.team-module {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.team-module .details-wrapper {
    position: absolute;
    top: 70%;
    content: "";
    left: 0;
    right: 0;
    transition: 0.5s;
    background: rgba(255, 255, 255, 0.75) none repeat scroll 0 0;
    padding: 20px 20px;
    width: 100%;
    height: 200px;
    box-sizing: border-box;
    color: #444;
}

.team-module .soci-flex a {
    background: var(--white-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border: 1px solid transparent;
    font-size: 16px;
    border-radius: 0px;
    box-sizing: border-box;
}

.team-module .soci-flex a:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.team-module .name {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 17px;
}

.team-module .soci-flex {
    opacity: 0;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.team-module:hover .details-wrapper {
    opacity: 1;
    top: 45%;
    transition: 0.5s;
    background: transparent;
}

.team-module:hover .details-wrapper .soci-flex {
    opacity: 1;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.team-img:after {
    background: rgba(255, 255, 255, 0.90) none repeat scroll 0 0;
    width: 100%;
    height: 0%;
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    transition: 0.5s;
    box-shadow: 2px 2px 20px #ddd;
}

.team-module:hover .team-img:after {
    height: 100%;
}


/* SERVICE DETAILS */

.service-details-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    grid-gap: 70px;
}

.content-wrapper h3 {
    margin-bottom: 15px;
    font-size: 26px;
}
.relative{
    position: relative;
}

.content-wrapper h2 {
    margin-bottom: 15px;
}

.content-wrapper p {
    margin-bottom: 15px;
}

.content-wrapper .img-responsive {
    margin-bottom: 30px;
}

.content-wrapper .grid-2 {
    margin-bottom: 30px;
}

.content-wrapper .quote-div {
    margin-bottom: 30px;
}

.service-menu ul li a {
    color: var(--black-color);
    display: block;
    font-size: 16px;
    padding: 13px 20px;
    position: relative;
    text-decoration: none;
    text-transform: capitalize;
    background: #f4f4f4;
}

.service-menu ul li.active a {
    background: var(--primary-color);
    color: #fff;
}

.service-menu ul li a:hover {
    color: var(--primary-color);
    background: #f0f0f0;
}

.service-menu ul li {
    display: block;
    margin: 2px 0px;
    position: relative;
}

.service-menu ul li a:hover::after,
.service-menu ul li.active a::after {
    position: absolute;
    left: 0;
    top: 0px;
    background: var(--primary-color);
    content: "";
    width: 3px;
    height: 100%;
}

ul.blue-tick li {
    display: grid;
    grid-template-columns: 1fr 20fr;
    grid-gap: 0;
    align-items: baseline;
}

.content-wrapper .grid-2 .img-responsive {
    margin-bottom: 0px;
}

.content-wrapper .grid-2 p {
    margin-bottom: 10px;
}

.download-btn .icon {
    font-size: 20px;
}

.small-testimonial {
    padding: 30px;
    background: #f4f4f4;
}

.small-testimonial .client-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}


/* PROJECT DETAILS */

.splide-img-wrapper {
    padding: 10px 15px;
}

.image-slider .splide__arrow {
    background: var(--primary-color);
    opacity: 1;
    color: var(--white-color);
    width: 40px;
    height: 40px;
    font-size: 16px;
    box-sizing: border-box;
    border: 1px solid var(--primary-color);
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.image-slider .splide__arrow--prev {
    left: 0em;
}

.image-slider .splide__arrow--next {
    right: 0em;
}

.image-slider .splide__arrow:hover {
    background: var(--white-color);
    color: var(--primary-color);
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.project-details {
    padding: 30px;
    background: var(--primary-color);
    color: var(--white-color);
}

.project-details ul li span {
    padding-right: 15px;
    min-width: 110px;
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
}

.project-details ul li {
    color: var(--white-color);
}

.small-cta {
    padding: 30px;
    background: #f5f5f5;
}


/* BLOG PAGE */

.pagination-div ul {
    display: flex;
    gap: 8px;
}

.pagination-div ul li a {
    background: #f4f5f5;
    color: var(--light-font);
    padding: 8px 12px;
    border-radius: 3px;
    font-size: 15px;
}

.pagination-div ul li.active a,
.pagination-div ul li a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.blog-section .news-flex {
    box-shadow: var(--box-shadow);
}

.blog-section .news-module:nth-child(even) .news-flex {
    flex-direction: column;
}

.quote-div {
    background: #f5f5f5;
    padding: 30px;
    position: relative;
}

.quote-div .quote {
    font-size: 40px;
    color: #3d5368;
    font-style: italic;
    position: absolute;
    top: 20px;
}

.quote-div p {
    font-style: italic;
    margin-bottom: 0px;
    padding-left: 50px;
}

.related-post-module .img-wrapper {
    width: 100px;
    overflow: hidden;
}

.related-post-module .title a {
    line-height: 1.5;
    font-size: 15px;
    display: block;
    color: var(--black-color);
}

.related-post-module .title a:hover {
    color: var(--primary-color);
}

.related-post-module .date {
    font-size: 14px;
    color: var(--light-font);
}

hr.my-border {
    border: 0;
    border-bottom: 1px solid #ddd;
}

h3.h-w-br {
    position: relative;
    color: #3d5368;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
    padding: 15px 0px;
    text-transform: capitalize;
    border-bottom: 1px solid #eee;
}

h3.h-w-br:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -2px;
    width: 60px;
    height: 3px;
    background: #3078fb;
}

.catergory-wrapper ul .count {
    border: 1px solid var(--primary-color);
    padding: 5px;
    line-height: 1;
    color: var(--primary-color);
    font-size: 13px;
    border-radius: 4px;
    height: 26px;
    width: 26px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px 0px;
}

.catergory-wrapper ul li a {
    color: var(--light-font);
}

.recent-wrapper ul li {
    padding: 15px 0px;
}


/* FAQ */

.faq-module .number {
    background: var(--primary-color);
    width: 30px;
    height: 30px;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 16px;
}

.faq-module {
    margin-bottom: 30px;
}

.faq-module:last-child {
    margin-bottom: 0px;
}

.faq-module .question {
    display: inherit;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.5;
}

.faq-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
    
}


/* CONTACT PAGE */
.shadow{
    box-shadow: var(--box-shadow);
}
.information_div{
    padding: 40px;
}
.minwidth{
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
padding: 50px;
box-shadow: var(--box-shadow);
background: var(--white-color);
}

.contact-module {
    padding: 40px 50px;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    position: relative;
}

.contact-module::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 80%;
    height: 2px;
    background: #3078fb;
    right: 0;
    margin: auto;
}

.contact-module i {
    font-size: 54px;
    color: var(--primary-color);
    margin-bottom: 30px
}

.my-input {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 1px solid #ccc;
    border-radius: 0;
    color: #3d5368;
    height: 52px;
    margin-bottom: 20px;
    padding-left: 20px;
    width: 100%;
    box-sizing: border-box;
    outline: none;
}

.map-responsive {
    overflow: hidden;
    padding-bottom: 60%;
    position: relative;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}



/* FOOTER */

.upper-footer {
    background: #FDFCFC;
    padding-top: 70px;
    padding-bottom: 70px;
}

.upper-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    grid-gap: 50px;
}

.upper-footer .input-wrapper .search-input,
.upper-footer .input-wrapper .btn {
    height: 50px;
    border-radius: 0px;
    box-sizing: border-box;
}

.upper-footer .input-wrapper {
    box-shadow: var(--box-shadow);
}

.upper-footer .input-wrapper .search-input {
    outline: none;
    font-style: normal;
    border: 1px solid #f5f5f5;
}

.upper-footer .input-wrapper .search-input:focus {
    border: 1px solid var(--primary-color);
}

.footer-nav .small-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
}

.footer-nav ul {
    display: block;
}

.footer-nav ul li a {
    display: flex;
    gap: 8px;
    color: var(--black-color);
    align-items: center;
    padding-bottom: 5px;
}

.footer-nav ul li a:hover {
    color: var(--primary-color);
}

.footer-nav ul li a i {
    font-size: 14px;
}

.upper-footer .soci-flex a {
    width: 30px;
    height: 30px;
    font-size: 16px;
}

.soci-flex a:hover {
    background: transparent;
    color: var(--primary-color);
    background: var(--white-color);
}

.lower-footer {
    background: #f5f8fb;
    padding: 20px 0px;
}


/* back to top button */

#button {
    display: inline-block;
    background-color: var(--primary-color);
    width: 35px;
    height: 35px;
    text-align: center;
    border-radius: 2px;
    position: fixed;
    bottom: 10px;
    right: 10px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-color);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

#button::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    line-height: 50px;
    color: #fff;
}

#button:hover {
    cursor: pointer;
    background-color: var(--white-color);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

#button:hover::after {
    color: var(--primary-color);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}


/* #button:active {
    background-color: #555;
  } */

#button.show {
    opacity: 1;
    visibility: visible;
}

.project-section .goal-module {
    margin: 0px;
}


/******** MEDIA QUERIES **************/


/* SMALL PC */

@media (max-width: 1200px) {
    .container {
        max-width: 90%;
    }
    .banner-cta {
        padding: 20vh 0px;
    }
    body {
        font-size: 15px;
    }
    nav .nav-link {
        font-size: 15px;
    }
    .title-wrapper {
        width: 60%;
    }
    .news-module .icon-flex {
        font-size: 12px;
        gap: 10px;
    }
    .upper-footer-grid {
        grid-gap: 30px;
    }
    footer {
        font-size: 14px;
    }
    .upper-footer-grid {
        grid-template-columns: 2fr 2fr 1fr;
    }
    .upper-footer .input-wrapper .search-input,
    .upper-footer .input-wrapper .btn {
        height: 45px;
    }
    .title-wrapper p {
        font-size: 16px;
    }
    .counter2 .count2 {
        font-size: 50px;
    }
    .counter2 .title {
        font-size: 20px;
    }
    .team-module {
        height: 250px;
    }
    .team-module .details-wrapper {
        top: 60%;
    }
    .project-details {
        padding: 20px;
    }
    .project-details ul li {
        font-size: 14px;
    }
    .project-details ul li span {
        font-size: 15px;
        min-width: 100px;
    }
    .contact-module {
        padding: 30px;
    }
}


/* TABLET MEDIA QUERY  */

@media (max-width: 992px) {

    .header-grid {
        grid-template-columns: 1fr 3fr;
    }
    .right-cta{
        display: none !important;
    }
    nav ul {
        justify-content: flex-end;
    }

    nav .nav-link i {
        display: none;
    }
    .container {
        max-width: 95%;
    }
    body {
        font-size: 14px;
    }
    h1,
    h2,
    h3,
    h4 {
        line-height: 1.5;
    }
    h2 {
        font-size: 26px;
    }
    h3 {
        font-size: 20px;
    }
    nav .nav-link {
        font-size: 14px;
        padding: 35px 10px;
    }
    .banner-cta {
        padding: 10vh 0px;
        gap: 15px;
    }
    .banner-cta h1 {
        font-size: 27px;
        line-height: 36px;
        max-width: 460px;
    }
    .banner-cta p {
        font-size: 17px;
    }
    .icon-grid-3 .icon {
        width: 65px;
    }
    .pt-100 {
        padding-top: 70px;
    }
    .pb-100 {
        padding-bottom: 70px;
    }
    .mt-20 {
        margin-top: 15px;
    }
    .mt-70 {
        margin-top: 50px;
    }
    .icon-grid-3 .wrapper {
        padding: 20px 30px;
    }
    .half-section .right-section {
        padding: 50px 40px;
    }
    .half-section {
        grid-template-columns: 1fr 2fr;
    }
    .title-wrapper p {
        font-size: 15px;
        margin-top: 10px;
    }
    .grid-3 {
        grid-template-columns: 1fr 1fr;
    }
    .counter-module {
        padding: 20px;
    }
    .counter-module .counter {
        font-size: 28px;
        line-height: 1.5;
    }
    .counter-module .icon {
        width: 35px;
        margin-bottom: 0px;
    }
    .counter-grid {
        grid-gap: 20px;
    }
    .globe-wrapper {
        width: 100%;
    }
    .overlay-grid {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
    .font-20 {
        font-size: 18px;
    }
    .overlay-grid .overlay-info .icon {
        width: 35px;
        height: 35px;
    }
    .tab button {
        padding: 15px 10px;
        font-size: 16px;
    }
    .tabcontent .grid-2 {
        align-items: flex-start;
    }
    .tabcontent ul li {
        align-items: flex-start;
        line-height: 1.7;
    }
    .news-module .icon-flex {
        font-size: 13px;
    }
    .tab-dn {
        display: none!important;
    }
    .footer-nav .small-grid {
        grid-template-columns: 1fr;
    }
    .upper-footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
    .counter2 .title {
        font-size: 15px;
        margin-top: 5px;
    }
    .counter2 .count2 {
        font-size: 40px;
    }
    .sub-banner {
        padding-top: 170px;
        padding-bottom: 70px;
    }
    .banner-title h1 {
        font-size: 34px;
    }
    .breadcrumbs ul {
        font-size: 15px;
        margin-top: 0px;
    }
    .grid-4 {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .content-wrapper h3 {
        font-size: 22px;
    }
    .content-wrapper .grid-2 {
        grid-template-columns: 1fr;
    }
    .service-details-grid {
        grid-gap: 40px;
    }
    .banner-title {
        width: 80%;
    }
    .project-details ul li span {
        font-size: 14px;
        min-width: 80px;
    }
    .fixed-header.fixed nav .nav-link {
        padding: 25px 6px;
    }
    .right-div .related-post-module .img-wrapper {
        display: none;
    }
    .contact-section .grid-3 {
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 20px;
    }
    .contact-module {
        padding: 30px 20px;
    }
    /* .header-grid{
        grid-template-columns: 120px 3fr 1fr;
    } */
}


/* MOBILE MEDIA QUERY  */

@media (max-width: 767px) {
    .upper-header {
        display: none;
    }
    .main-header {
        display: none;
    }
    /**** NAVIGATION MENU ****/
    .whole-mobile-section {
        display: block;
    }
    .mobile-header {
        background: var(--white-color);
        padding: 10px 0px;
        position: fixed;
        width: 100%;
        top: 0px;
        z-index: 9999;
        box-shadow: var(--box-shadow);
    }
    nav ul {
        display: block;
    }
    .nav-right {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
    }
    #nav-icon i {
        font-size: 26px;
        color: var(--primary-color);
    }
    .mobile-menu a {
        color: var(--white-color);
        padding: 8px;
        display: inline-block;
        font-size: 16px;
        font-weight: 400;
        text-transform: uppercase;
    }
    .sidein-menu nav {
        padding: 0px 40px;
    }
    /* ACCORDION */
    .accordion {
        transition: 0.4s;
    }
    .accordion i {
        font-size: 14px;
        margin-left: 10px;
        transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -webkit-transition: all 0.5s ease-in-out;
    }
    .active i {
        transform: rotate(-90deg);
        transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -webkit-transition: all 0.5s ease-in-out;
    }
    .panel {
        padding: 0 18px;
        text-transform: uppercase;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.2s ease-out;
    }
    /* SIDEIN MENU */
    .sidein-menu {
        height: 100%;
        width: 0;
        position: fixed;
        z-index: 9999;
        top: 0;
        left: 0;
        background: var(--dark-blue);
        overflow-x: hidden;
        transition: 0.2s;
        padding-top: 20px;
        box-shadow: rgb(137 137 140 / 21%) 0px 7px 29px 0px;
    }
    .close-wrapper {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding-left: 20px;
    }
    .closebtn {
        font-size: 40px;
        text-align: right;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding-right: 30px;
        color: var(--white-color);
    }
    .openbtn {
        font-size: 30px;
    }
    .sidenav .closebtn {
        position: absolute;
        top: 0;
        right: 25px;
        font-size: 36px;
        margin-left: 50px;
    }
    .sidein-menu-logo {
        width: 250px;
    }
    /* INDEX */
    body {
        font-size: 15px;
    }
    .title-wrapper {
        width: 90%;
    }
    .banner-section {
        padding-top: 80px;
    }
    .icon-grid-3 {
        grid-template-columns: 1fr;
    }
    .container {
        width: 450px;
    }
    .banner-cta {
        width: 80%;
    }
    .wrapper:nth-child(2n) {
        border-left: 0px;
        border-right: 0px;
    }
    .half-section {
        grid-template-columns: 1fr;
    }
    .left-section {
        height: 150px;
        background-size: 300px;
        background-position: top left;
        background-color: #F2F4F5;
    }
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .counter-grid {
        grid-template-columns: 1fr;
    }
    .counter-module .counter {
        font-size: 40px;
    }
    .counter-module .title {
        font-size: 18px;
    }
    .counter-module .icon {
        width: 40px;
    }
    .mt-50 {
        margin-top: 30px;
    }
    .call-back-grid {
        grid-template-columns: 1fr;
    }
    .call-back-grid .grid-2 {
        grid-template-columns: 1fr;
    }
    .tab {
        flex-direction: column;
        gap: 10px;
    }
    .tab button {
        display: flex;
        width: 100%;
        font-size: 22px;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }
    .tabcontent .grid-2 {
        grid-template-columns: 1fr;
    }
    .upper-footer-grid {
        grid-template-columns: 1fr;
    }
    .tab-dn {
        display: block!important;
    }
    .footer-nav .small-grid {
        grid-template-columns: 1fr 1fr;
    }
    .news-module:nth-child(even) .news-flex {
        flex-direction: column;
    }
    .grid-2.additional-grid {
        grid-template-columns: 1fr;
    }
    .counter2 .count2 {
        font-size: 50px;
    }
    .counter2 .title {
        font-size: 18px;
    }
    .grid-2.additional-grid .grid-2 {
        grid-template-columns: 1fr;
    }
    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }
    .team-module .details-wrapper {
        top: 60%;
    }
    .team-module {
        height: 230px;
    }
    .faq-column {
        grid-template-columns: 1fr;
    }
    .sub-banner {
        padding-top: 140px;
        padding-bottom: 70px;
    }
    .service-details-grid {
        grid-template-columns: 1fr;
    }
    .banner-title {
        width: 100%;
    }
    .right-div .related-post-module .img-wrapper {
        display: block;
    }
    .contact-section .grid-3 {
        grid-template-columns: 1fr;
        grid-gap: 30px;
    }
    .contact-section .grid-2 {
        grid-template-columns: 1fr;
    }
    .map-grid .grid-2.g-gap-20 {
        grid-gap: 0px;
    }
    .map-responsive {
        padding-bottom: 80%;
    }
}


/* MOBILE MEDIA QUERY  */

@media (max-width: 576px) {
    .cta-grid {
        grid-template-columns: 1fr;
    }
    .font-50 {
        font-size: 35px;
    }
    .mob-grid-1{
        grid-template-columns: 1fr;
    }
    .mob-grid-1 div.mob-top:nth-child(2) {
        grid-column: 1;
        grid-row: 1 / 1;
      }
    .title-wrapper {
        width: 100%;
    }
    .title-wrapper h1 {
        font-size: 35px;
        font-weight: 600;
        line-height: 1.1;
    }
    .mt-100 {
        margin-top: 50px;
    }



    .g-gap-50 {
        grid-gap: 20px;
    }
    .service-module .icon100 {
        min-height: auto;
        min-width: auto;
    }
    .information_div {
        padding: 25px;
    }
    .minwidth {
        max-width: fit-content;
        padding: 40px;
    }
    .minwidth .g-gap-20{
        grid-gap: 0px;
    }
  
    
    .cta-img {
        display: none;
    }
    .txt-left a img{
        width: 80px;
    }
    body {
        font-size: 16px;
    }
    .container {
        width: 85%;
    }
    .banner-cta {
        width: 95%;
    }
    .banner-cta h1 {
        font-size: 26px;
    }
    .banner-cta p {
        font-size: 15px;
    }
    .banner-section {
        padding-top: 70px;
    }
    .banner-cta {
        padding: 7vh 0px;
        gap: 15px;
    }
    .icon-grid-3 .wrapper {
        padding: 30px 10px;
    }
    .half-section .right-section {
        padding: 50px 15px 80px 20px;
    }
    .half-section .grid-2 {
        grid-template-columns: 1fr;
    }
    .overlay-section {
        padding: 80px 0px;
    }
    h2 {
        font-size: 25px;
    }
    ul.blue-tick li i {
        width: 20px;
        height: 20px;
    }
    .news-module h3 {
        font-size: 18px;
    }
    .sub-banner {
        padding-top: 120px;
        padding-bottom: 50px;
    }
    .banner-title h1 {
        font-size: 28px;
    }
    .team-module {
        width: 70%;
        margin: auto;
        height: 250px;
    }
    .grid-4 {
        grid-template-columns: 1fr;
    }
    .faq-module .question {
        font-size: 18px;
    }
    .faq-module p {
        font-size: 15px;
    }
    .breadcrumbs ul {
        font-size: 14px;
    }
    .quote-div .quote {
        font-size: 35px;
        top: 10px;
    }
    .quote-div p {
        padding-left: 35px;
    }
    .quote-div {
        padding: 20px;
    }
    .contact-module i {
        font-size: 40px;
        margin-bottom: 20px;
    }
    .contact-module {
        padding: 30px 50px;
    }
    .sidein-menu nav {
        padding: 0px 20px;
    }
}


}

}