html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background-color: rgba(168, 168, 168, 0.747);
    border-radius: 2px;
}

::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #bb322d;
    opacity: 0.1;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Domine-Bold';
    src: url('../fonts/Domine-Bold.woff') format('woff2'),
        url('../fonts/Domine-Bold.woff2') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #d72a24;
    --secondary-color: #174488;
    --white-color: #fff;
    --black-color: #000;
    --primary-font: 'Domine-Bold';
    --secondary-font: 'Poppins';
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-family: 'Poppins';
}

a {
    text-decoration: none;
    font-family: 'Poppins';
}

h1,
h2 {
    font-family: 'Domine-Bold';
    font-size: 46px;
    font-weight: 700;
    text-transform: capitalize;
}

span {
    color: var(--primary-color);
}

h3,
h4,
h5,
h6 {
    font-family: 'Domine-Bold';
    font-weight: 700;
    text-transform: capitalize;
}

label {
    font-family: 'Poppins';
}

p,
input,
select,
textarea,
li {
    color: #575757;
    font-family: 'Poppins';
    font-size: 15px;
/*     text-transform: capitalize; */
}

img {
    width: 100%;
}

body {
    font-family: 'Poppins';
}

.header-text {
    position: absolute;
    top: 20%;
}

.sticky .header-top {
    display: none;
}

section.header-main {
    position: absolute;
    top: 0;
    z-index: -2;
}

@-webkit-keyframes move-lr {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    10% {
        -webkit-transform: rotate(-15deg);
        transform: rotate(-15deg);
    }

    20% {
        -webkit-transform: rotate(20deg);
        transform: rotate(20deg);
    }

    30% {
        -webkit-transform: rotate(-24deg);
        transform: rotate(-24deg);
    }

    40% {
        -webkit-transform: rotate(21deg);
        transform: rotate(21deg);
    }

    50% {
        -webkit-transform: rotate(-18deg);
        transform: rotate(-18deg);
    }

    60% {
        -webkit-transform: rotate(14deg);
        transform: rotate(14deg);
    }

    70% {
        -webkit-transform: rotate(-11deg);
        transform: rotate(-11deg);
    }

    80% {
        -webkit-transform: rotate(7deg);
        transform: rotate(7deg);
    }

    90% {
        -webkit-transform: rotate(-3deg);
        transform: rotate(-3deg);
    }

    100% {
        -webkit-transform: rotate(1deg);
        transform: rotate(1deg);
    }
}

@keyframes move-lr {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    10% {
        -webkit-transform: rotate(-15deg);
        transform: rotate(-15deg);
    }

    20% {
        -webkit-transform: rotate(20deg);
        transform: rotate(20deg);
    }

    30% {
        -webkit-transform: rotate(-24deg);
        transform: rotate(-24deg);
    }

    40% {
        -webkit-transform: rotate(21deg);
        transform: rotate(21deg);
    }

    50% {
        -webkit-transform: rotate(-18deg);
        transform: rotate(-18deg);
    }

    60% {
        -webkit-transform: rotate(14deg);
        transform: rotate(14deg);
    }

    70% {
        -webkit-transform: rotate(-11deg);
        transform: rotate(-11deg);
    }

    80% {
        -webkit-transform: rotate(7deg);
        transform: rotate(7deg);
    }

    90% {
        -webkit-transform: rotate(-3deg);
        transform: rotate(-3deg);
    }

    100% {
        -webkit-transform: rotate(1deg);
        transform: rotate(1deg);
    }
}

.sticky-top {
    top: 100px;
}

/* ----------------  header ------------------- */
header.head-section {
    position: relative;
}

.header {
    width: 100%;
    z-index: 9999;
}

.header-top {
    width: 100%;
    padding: 6px 0px;
    background-color: var(--secondary-color);
}

.nav-bar {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--white-color);
    border-radius: 10px;
    position: relative;
}

.logo {
    width: 15%;
}

.logo img {
    width: 140px;
}

.menu {
    width: 60%;
    padding-left: 50px;
}

.menu ul {
    display: inline-block;
    padding: 0;
    margin: 0;
}

.menu ul li:last-child {
    margin: 0;
}

.menu ul li {
    position: relative;
    -webkit-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
    padding: 0px 18px;
    display: inline-block;
}

.menu ul li a {
    display: inline-block;
    color: #363737;
    font-size: 16px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
    padding: 28px 0px;
    font-weight: 500;
}

.menu ul li i {
    font-size: 16px;
}

ul.dropdown li i {
    font-size: 10px;
}

ul.dropdown {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    z-index: 9999999;
    background-color: var(--secondary-color);
    min-width: 225px;
    opacity: 0;
    border-radius: 6px;
    width: auto;
}

ul.dropdown li {
    margin: 0;
    width: 100%;
    position: relative;
    padding: 2px;
}

.menu ul li:hover ul.dropdown {
    display: block;
    opacity: 1;
}

ul.dropdown li a {
    width: 100%;
    display: inline-block;
    padding: 6px 12px;
    position: relative;
    border-radius: 6px;
    color: var(--white-color);
    -webkit-transition: .4s ease-in-out;
    -o-transition: .4s ease-in-out;
    transition: .4s ease-in-out;
    text-transform: capitalize;
}

ul.dropdown li:hover a::before {
    opacity: 1;
    width: 100%;
    border-radius: 6px;
}

ul.dropdown li:hover a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0px;
    height: 100%;
    background-color: white;
    -webkit-transition: .3s ease-in;
    -o-transition: .3s ease-in;
    transition: .3s ease-in;
    z-index: -1;
}

ul.dropdown li a:hover {
    background-color: white !important;
    color: black !important;
}

.menu ul li ul.dropdown li ul.dropdown {
    display: none;
    position: absolute;
    top: 0;
    left: 226px;
}

.menu ul li ul.dropdown li:hover ul.dropdown {
    display: block;
}

.nav-call {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.nav-call-text span {
    display: block;
    margin: 0;
    font-size: 14px;
}

.header-box {
    padding: 10px;
    -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.nav-call-text a {
    color: black;
    font-weight: 700;
}

.nav-call-text a:hover {
    color: var(--secondary-color);
}

.btn-sec {
    width: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-left: 2px solid gainsboro;
    /* margin-left: 20px; */
}

.nav-call-icon {
    margin-left: 20px;
}

.nav-call:hover .nav-call-icon i {
    color: var(--secondary-color);
}

.nav-btn i {
    margin-left: 15px;
}

.nav-btn a {
    background: var(--secondary-color);
    padding: 6px 20px;
}

.nav-btn a:hover {
    background-color: var(--primary-color);
    color: white;
}

.nav-call-icon i {
    color: var(--primary-color);
    font-size: 28px;
    margin-right: 10px;
}

.menu ul li a.active {
    color: var(--primary-color);
}

.nav-btn a {
    color: white;
}

.menu ul li a:hover {
    color: var(--primary-color);
}

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: white;
    -webkit-animation: slidetop 0.6s ease-in;
    animation: slidetop 0.6s ease-in;
    -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.sticky .nav-btn {
    border-radius: 0px;
}

@-webkit-keyframes slidetop {
    from {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    to {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}

@keyframes slidetop {
    from {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    to {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}

/*======= header-img-siler ===============*/
section.header-img {
    position: relative;
}

.silder-text {
    position: absolute;
    top: 30%;
    width: 42%;
}

.silder-text h1 {
    color: var(--primary-color);
}

.silder-text h1 span {
    color: var(--secondary-color);
}

.silder-btn a {
    background: var(--primary-color);
    padding: 8px 16px;
    color: white;
    font-size: 14px;
}

.silder-text p {
    margin: 26px 0px;
}

/* -------------- services ----------- */
section.service-sec {
    padding: 60px 0px 60px;
}

.service-box {
    background: white;
    -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 24px 28px;
    border: 2px solid white;
    -webkit-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.img-service img {
    width: 80px;
    height: 80px;
}

.service-text h3 {
    font-size: 20px;
    color: var(--secondary-color);
}

.service-text {
    margin-top: 20px;
}

.btn-read a {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 600;
}

.btn-read i {
    font-size: 10px;
    color: var(--secondary-color);
    margin-left: 5px;
    font-weight: 600;
}

.service-box:hover {
    border: 2px solid var(--secondary-color);
}

.service-box:hover .btn-read a,
.service-box:hover .btn-read i {
    color: var(--primary-color);
}

/*===================== About ====================*/
.about-box-main {
    position: relative;
}

.about-img img {
    border-radius: 10px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.about-img.about-2 {
    margin-top: 30px;
}

.about-img.about-3 {
    position: relative;
}

.about-center-btn {
    position: absolute;
    top: 40%;
    border-radius: 50%;
    background: white;
    width: 100px;
    height: 100px;
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-items: stretch;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    padding: 19px;
}

.about-center-btn {
    position: absolute;
    top: 32%;
    border-radius: 50%;
    background: white;
    width: 160px;
    height: 160px;
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-items: stretch;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    padding: 12px;
    border: 30px solid var(--secondary-color);
    left: 36%;
}

.about-box-main:hover .about-center-btn {
    border: 30px solid var(--primary-color);
}

.about-center-btn h5 {
    font-size: 36px;
    color: var(--primary-color);
    line-height: 20px;
    margin-bottom: -4px;
}

.about-box-main:hover .about-center-btn .about-center-btn h5 {
    color: var(--secondary-color);
}

.about-center-btn h5 span {
    font-size: 16px;
    color: black;
}

.About-text h5 {
    font-size: 16px;
    font-family: var(--secondary-font);
}

.About-text h3 {
    font-size: 32px;
    color: var(--primary-color);
}

.About-text h3 span {
    color: var(--secondary-color);
}

ul.about-tick li:before {
    content: "✔";
    margin-right: 10px;
    color: var(--primary-color);
}

/*------------- Explore-sec  ------------------  */
section.Explore-sec {
    padding: 60px 0px 0px;
    position: relative;
}

.Explore-box {
    position: relative;
}

.Explore-box.explore-1 img {
    width: 100%;
    height: 480px;
    -o-object-fit: cover;
    object-fit: cover;
}

.Explore-box.explore-2 img {
    width: 100%;
    height: 228px;
}

.Explore-text {
    position: absolute;
    text-align: center;
    bottom: 0%;
    background: -webkit-gradient(linear, left bottom, left top, from(#000), to(#00000000));
    background: -o-linear-gradient(bottom, #000, #00000000);
    background: linear-gradient(to top, #000, #00000000);
    overflow: hidden;
    z-index: 9;
    width: 100%;
    padding: 26px;
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}

.Explore-img img {
    width: 100%;
    position: relative;
    background-repeat: no-repeat;
}

.Explore-text h4 {
    color: white;
    font-size: 28px;
    margin-bottom: -28px;
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}

.Explore-text p {
    color: white;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    opacity: 0;
    visibility: hidden;
    -webkit-transform-style: flat;
    transform-style: flat;
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    -webkit-transition: .4s ease-in-out;
    -o-transition: .4s ease-in-out;
    transition: .4s ease-in-out;
    font-size: 14px;
}

.Explore-text a {
    background: var(--secondary-color);
    color: white;
    padding: 6px 8px;
    border-radius: 8px;
    font-size: 14px;
    -webkit-transition: .4s ease-in-out;
    -o-transition: .4s ease-in-out;
    transition: .4s ease-in-out;
}

.Explore-box:hover .Explore-text p {
    visibility: visible;
    opacity: 1;
    -webkit-transform: inherit;
    -ms-transform: inherit;
    transform: inherit;
}

.Explore-head.text-center h2 {
    font-size: 32px;
    color: var(--secondary-color);
}

.Explore-box:hover .Explore-text h4 {
    margin-bottom: 0px;
}

.Explore-box:hover .Explore-text a {
    background: var(--primary-color);
    font-size: 14px;
}

.explore-line {
    width: 100px;
    height: 2px;
    background: gray;
    content: " ";
    margin: auto;
}

/* ================ counter-box ===============*/
section.counter-box {
    background-image: url(../images/img-sec.jpg);
    padding: 90px 0px 70px;
    margin-top: 60px;
}

.counter.about-counter img {
    width: 70px;
    height: 70px;
}

.client-box-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.stat-number {
    font-size: 46px;
    font-family: 'Domine-Bold';
    color: white;
}

.stat-number+p {
    font-size: 64px;
    font-family: 'Domine-Bold';
    color: white;
    margin-top: 18px;
    margin-left: 12px;
}

.counter.about-counter p {
    font-size: 20px;
    color: white;
}

.counter.about-counter {
    border-right: 2px solid white;
    margin-left: 26px;
}

/* ------------- Blog-sec ----------------- */
section.Blog-sec {
    padding: 60px 0px 40px;
}

.blog-main {
    position: relative;
}

.blog-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.blog-text {
    width: 85%;
    background-color: white;
    position: relative;
    margin: -65px auto 40px;
    border-radius: 20px;
    padding: 30px 20px;
    -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: 2px solid white;
}

.blog-text:hover {
    border: 2px solid var(--secondary-color);
}

.blog-main .blog-img img {
    width: 100%;
    height: 260px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.blog-text span {
    color: var(--primary-color);
    font-size: 13px;
}

.blog-text h3 a {
    font-size: 21px;
    font-weight: 400;
    font-family: 'Domine-Bold';
    color: var(--secondary-color);
}

.blog-area {
    width: 94% !important;
}

.blog-btn a {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--secondary-color);
}

.blog-text:hover .blog-btn a {
    color: var(--primary-color);
}

.blog-btn i {
    font-size: 10px;
}

.blog-main:hover .blog-img img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    border-radius: 10px;
}

/* --------------  section.home-contact ----------- */
section.home-contact {
    background-image: url(../images/Untitled-18.jpg);
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0px;
}

.home-form {
    background: #09306b;
    padding: 50px 60px;
}

.home-form .h-form-txt span {
    font-size: 32px;
    color: white;
    font-family: 'Domine-Bold';
}

.home-form .h-form-txt p {
    font-size: 16px;
    color: white;
}

.line-contact {
    width: 100px;
    height: 2px;
    background: var(--primary-color);
    content: " ";
    margin: 20px 0px;
}

input.form-control {
    background: #09306b !important;
    border: 1px solid white;
    margin-bottom: 18px;
    color: white !important;
    padding: 8px;
}

input.form-control::-webkit-input-placeholder {
    color: white;
    font-size: 12px;
}

input.form-control::-moz-placeholder {
    color: white;
    font-size: 12px;
}

input.form-control:-ms-input-placeholder {
    color: white;
    font-size: 12px;
}

input.form-control::-ms-input-placeholder {
    color: white;
    font-size: 12px;
}

input.form-control::placeholder {
    color: white;
    font-size: 12px;
}

textarea.form-control {
    background: #09306b !important;
    border: 1px solid white;
    margin-bottom: 18px;
    color: white !important;
    height: 150px;
}

textarea.form-control::-webkit-input-placeholder {
    color: white;
    font-size: 12px;
}

textarea.form-control::-moz-placeholder {
    color: white;
    font-size: 12px;
}

textarea.form-control:-ms-input-placeholder {
    color: white;
    font-size: 12px;
}

textarea.form-control::-ms-input-placeholder {
    color: white;
    font-size: 12px;
}

textarea.form-control::placeholder {
    color: white;
    font-size: 12px;
}

.check-btn label {
    font-family: 'Poppins';
    color: white;
    font-size: 14px;
}

input[type="submit"] {
    background: var(--primary-color);
    border: none;
    padding: 8px 30px;
    color: white;
    text-transform: uppercase;
    margin-top: 20px;
    border-radius: 0px;
}

/*=============== section.Work-sec ================ */
section.Work-sec {
    padding: 70px 0px;
}

.Work-img img {
    width: 90px;
    height: 90px;
}

.Work-main {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.Work-img {
    width: 150px;
    height: 150px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    border-radius: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0 0 5px rgb(2 6 52 / 4%);
    box-shadow: 0 0 5px rgb(2 6 52 / 4%);
}

.Work-box {
    width: 200px;
    height: 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    position: relative;
    border-radius: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 51px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px dashed var(--primary-color);
}

.Work-box:hover .Work-img {
    background-color: var(--secondary-color);
}

.Work-box:hover .Work-img img {
    -webkit-filter: brightness(6.5);
    filter: brightness(6.5);
}

.work-num {
    position: absolute;
    bottom: 35px;
    z-index: 4;
    text-align: center;
    /* left: 30%; */
    font-size: 20px;
}

.work-num span {
    background: var(--secondary-color);
    border-radius: 50%;
    padding: 6px 8px;
    color: white;
    font-size: 18px;
}

.Work-box:hover .work-num span {
    background: var(--primary-color);
}

.work-text {
    text-align: center;
}

.work-text h4 {
    font-size: 22px;
    color: var(--secondary-color);
}

.work-text p {
    padding: 0px 16px;
}

section.bg-work {
    background-color: #d6e1eb73;
}

/*------- Testimonials  ----------- */
.Testimonials-box i {
    font-size: 72px;
    color: var(--secondary-color);
}

.Testimonials-text h6 {
    font-size: 20px;
    color: var(--secondary-color);
}

.Testimonials-box p {
    padding: 15px 0px 25px;
}

.Testimonials-text p {
    margin: 0;
}

.Testimonials-main {
    width: 90% !important;
    margin: 10px 10px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background: white;
    padding: 30px 30px;
    border: 2px solid white;
}

.Testimonials-main:hover {
    border: 2px solid var(--secondary-color);
}

.Testimonials-main:hover .Testimonials-box i {
    color: var(--primary-color);
}

.Testimonials-main:hover .Testimonials-text h6 {
    color: var(--primary-color);
}

.Testimonials-img-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.Testimonials-img img {
    width: 60px;
    border-radius: 50%;
    margin-right: 20px;
}

/*--------- section.footer -------------- */
section.footer {
    padding: 50px 0px;
    background: var(--secondary-color);
}

.footer_box img {
    width: 150px;
    margin-bottom: 20px;
}

.footer_box p {
    color: white;
    font-size: 12px;
}

.footer_links li::before {
    position: absolute;
    content: "➤";
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 18px;
}

.footer_links li {
    position: relative;
    padding: 2px 0 0 10px;
}

.footer_box h4 {
    display: inline-block;
    font-weight: 500;
    font-size: 21px;
    padding: 0 0 5px 0;
    margin: 0 0 20px 0;
    position: relative;
    color: var(--primary-color);
    font-family: 'Domine-Bold';
    font-weight: 700;
}

.footer_links li a {
    color: white;
    margin-left: 10px;
    font-size: 13px;
}

.link-icon i {
    background: white;
    padding: 6px;
    border-radius: 50%;
    font-size: 19px;
    color: #1c3261;
    width: 26px;
    height: 26px;
    font-size: 13px;
}

ul.footer_contact li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 16px;
}

.link-text a {
    font-size: 13px;
    color: white;
    margin-left: 10px;
}

.link-text span {
    color: white;
    margin-left: 10px;
    font-size: 13px;
}

.footer_box ul.footer_links input {
    background: transparent;
    border: 0px;
    border-bottom: 2px solid white;
    font-size: 13px;
    color: white;
    width: 100%;
}

.footer_box ul.footer_links input[type="submit"] {
    background: transparent;
    border: 0px;
    border-bottom: 2px solid white;
}

.footer_box ul.footer_links i {
    margin-left: -40px;
    color: var(--primary-color);
}

.footer_icon {
    margin-top: 30px;
}

.footer_icon ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer_icon ul li a {
    background-color: var(--primary-color);
    padding: 4px 8px;
    font-size: 15px;
    color: white;
    margin-right: 8px;
    border-radius: 50%;
}

section.footer_copyright p {
    margin: 0;
    padding: 16px;
    color: white;
    font-size: 13px;
}

.footer_copyright {
    width: 100%;
    text-align: center;
    background-color: var(--secondary-color);
    color: white;
    border-top: 2px solid gray;
}

/*------- quickLinks -------------*/
.quickLinks:not(.stuck)>.container>.row>.col {
    width: 100%;
    min-height: inherit;
}

body.home .quickLinks-wrap {
    height: auto;
    top: 1%;
}

.quickLinks-wrap {
    position: absolute;
    top: 130px;
    right: 0;
    height: 100%;
    z-index: 102;
    width: 98px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    pointer-events: none;
}

.quickLinks {
    width: 98px;
    z-index: 102;
    right: 0;
    pointer-events: auto;
    -webkit-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    transform: translateY(-100px);
}

.page-content .quickLinks:not(.stuck) .quickLinks-open {
    display: none !important;
}

body:not(.touch) .quickLinks.closed .quickLinks-open:hover,
.quickLinks .quickLinks-open {
    border-left: 45px solid rgba(var(--shadow_rgb), 0.2);
}

.quickLinks .quickLinks-open {
    border-left: 45px solid rgba(38, 167, 235, 0.25);
}

.quickLinks .quickLinks-open {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    border-top: 45px solid transparent;
    border-bottom: 45px solid transparent;
    border-left: 45px solid rgba(30, 118, 189, 0.25);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    right: -10px;
    top: -20px;
    cursor: pointer;
}

.quickLinks .quickLinks-open span {
    position: absolute;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    top: -16px;
    right: 20px;
    z-index: 1;
    color: #424242;
    font-size: 30px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.medin-theme-set .wpb_button,
.medin-theme-set .wpb_content_element,
.medin-theme-set ul.wpb_thumbnails-fluid>li,
.banner-call h6 {
    margin-bottom: 0;
}

.quickLinks .google-map {
    width: 390px;
    max-width: 100vw;
    height: 312px;
}

.quickLinks:not(.stuck) .link-drop {
    left: -390px !important;
    top: 0;
    right: auto !important;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
}

.quickLinks .link-drop {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    background-color: #f5f5f5;
    color: #424242;
    padding: 30px;
    top: 100%;
    left: 0;
    width: 390px;
    max-width: 100vw;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
    z-index: -1;
    -webkit-transition: opacity 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s, -webkit-transform 0.3s ease-in-out 0s;
    transition: opacity 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s, -webkit-transform 0.3s ease-in-out 0s;
    -o-transition: opacity 0.3s ease-in-out 0s, transform 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
    transition: opacity 0.3s ease-in-out 0s, transform 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
    transition: opacity 0.3s ease-in-out 0s, transform 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s, -webkit-transform 0.3s ease-in-out 0s;
    pointer-events: none;
    text-align: left;
    text-transform: none;
    -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}

.wpb_gmaps_widget .wpb_wrapper {
    background-color: #f7f7f7;
    padding: 5px;
}

body:not(.touch) .quickLinks .col>.link:hover,
.quickLinks .col>.link.active,
.quickLinks .col-close,
.quickLinks .link-drop-title>[class*='icon-'] {
    color: var(--main_color);
}

body:not(.touch) .quickLinks .col:hover .link-drop,
body.touch .col.hovered .link-drop {
    visibility: visible;
    opacity: 1;
    z-index: 1;
    -webkit-transform: translateY(0%) !important;
    -ms-transform: translateY(0%) !important;
    transform: translateY(0%) !important;
    -webkit-transition-delay: 0s, 0s, 0s, 0.3s;
    -o-transition-delay: 0s, 0s, 0s, 0.3s;
    transition-delay: 0s, 0s, 0s, 0.3s;
    pointer-events: auto;
}

.wpb_gmaps_widget .wpb_map_wraper iframe {
    margin-bottom: 0;
    padding: 0;
    display: block;
    width: 100%;
    border: none;
}

div#menu-item-148 {
    background: #154286;
    padding: 16px;
    color: white;
    position: relative;
}

div#menu-item-148 a.link i,
div#menu-item-149 a.link i,
div#menu-item-150 a.link i {
    font-size: 39px;
    text-align: center;
    color: white;
}

div#menu-item-148 a.link span,
div#menu-item-149 a.link span,
div#menu-item-150 a.link span {
    color: white;
    font-size: 14px;
    text-align: center;
}

div#menu-item-149 {
    background: #154286;
    padding: 16px;
    color: white;
    position: relative;
}

.quickLinks:not(.stuck) .link-drop {
    left: -390px !important;
    top: 0;
    right: auto !important;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
}

.quickLinks .link-drop {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    background-color: #f5f5f5;
    color: #424242;
    padding: 30px;
    top: 100%;
    left: 0;
    width: 390px;
    max-width: 100vw;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
    z-index: -1;
    -webkit-transition: opacity 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s, -webkit-transform 0.3s ease-in-out 0s;
    transition: opacity 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s, -webkit-transform 0.3s ease-in-out 0s;
    -o-transition: opacity 0.3s ease-in-out 0s, transform 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
    transition: opacity 0.3s ease-in-out 0s, transform 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
    transition: opacity 0.3s ease-in-out 0s, transform 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s, -webkit-transform 0.3s ease-in-out 0s;
    pointer-events: none;
    text-align: left;
    text-transform: none;
    -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}

.quickLinks .link-drop-title {
    text-transform: none;
    margin-bottom: 20px;
}

.quickLinks .link-drop .row-table {
    width: 100%;
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 15px;
}

.quickLinks .link-drop .row-table tr:not(:last-child) {
    border-bottom: 1px solid #ededed;
}

div#menu-item-150 {
    background: #154286;
    padding: 16px;
    color: white;
}

.Servive-from {
    background: gray;
    padding: 26px 30px 50px;
}

.home-cont-form.Servive-iiner h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 12px;
    color: white;
}

.home-cont-form input {
    width: 100%;
    margin-bottom: 10px;
    height: 36px;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #c9c9c9;
}

.home-cont-form.Servive-iiner textarea {
    height: 100px;
}

.home-cont-form textarea {
    width: 100%;
    margin-bottom: 10px;
    height: 36px;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #b5b5b5;
}

.home-btn {
    background-color: #023859;
    padding: 6px;
    border-radius: 5px;
    text-align: center;
    color: white;
}

.home-btn a {
    color: white;
}

.contect-page h2 {
    font-size: 24px;
}

.service-call {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}

.service-num a {
    display: block;
    color: #154286;
    font-size: 14px;
    margin-left: 20px;
}

.service-icon i {
    color: white;
    background: #154286;
    padding: 8px;
    border-radius: 50%;
}

/* =========== section.About-inner ============ */
section.About-inner .single-item h3 {
    font-size: 20px;
    position: relative;
    display: block;
    line-height: 32px;
    font-weight: bold;
    margin-bottom: 0px;
}

section.About-inner .list-style-one li {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 11px;
}

.list-style-one li i {
    color: white;
    margin-right: 10px;
    font-weight: bold;
    background: var(--secondary-color);
    padding: 6px;
    border-radius: 50%;
}

section.About-inner .About-img-2 img {
    width: 90%;
    height: 400px;
    border-radius: 10px;
    float: right;
}

section.About-inner {
    padding: 60px 0px;
    background: #17448814;
}

.in-head img {
    width: 100%;
    height: 350px;
    -o-object-fit: cover;
    object-fit: cover;
}

section.section-1 {
    position: relative;
    z-index: -14;
}

.in-head-text {
    position: absolute;
    top: 70%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
}

.in-head-text nav {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

li.breadcrumb-item a,
.breadcrumb-item+.breadcrumb-item::before,
.breadcrumb-item.active {
    color: white;
}

.head-layer {
    position: absolute;
    width: 100%;
    background-color: #000000a6;
    height: 100%;
    top: 0;
}

section.service-sec.inner-page .img-service img {
    width: 100%;
    height: 230px;
    border-radius: 12px;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

section.service-sec.inner-page .service-box {
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 30px;
}

section.service-sec.inner-page .service-text {
    padding: 10px 20px;
}

.btn-read {
    padding: 0px 20px;
}

section.service-sec.inner-page .service-box .img-service:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.img-service {
    overflow: hidden;
    border-radius: 12px;
}

section.service-sec.inner-page {
    padding-bottom: 50px;
}

.service-single-area {
    padding: 60px 0px;
}

.widget {
    background: var(--secondary-color);
    padding: 20px;
    margin-bottom: 30px;
}

.widget .widget-title {
    padding-bottom: 10px;
    margin-bottom: 30px;
    position: relative;
    font-size: 26px;
    color: rgb(255, 255, 255);
}

.widget .category-list a {
    display: block;
    padding: 10px 18px;
    font-weight: 500;
    color: var(--secondary-color);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    margin-bottom: 10px;
    -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background: white;
    border-radius: 6px;
}

.widget .category-list a i {
    margin-right: 12px;
    color: var(--primary-color);
    -webkit-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}

.guest-form h4 {
    font-size: 32px;
    color: #ededed;
    text-align: center;
    margin: 20px;
    font-weight: 600;
}

.guest-form input {
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 15px;
    border: none;
    outline: none;
    border-radius: 4px;
}

.guest-form textarea {
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 15px;
    border: none;
    outline: none;
    border-radius: 4px;
}

.guest-form input[type="submit"] {
    color: #fff;
    background: var(--primary-color);
    font-size: 21px;
    padding: 7px 2px;
    cursor: pointer;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}

.service-single-list i {
    color: white;
    margin-right: 18px;
    background-color: var(--secondary-color);
    border-radius: 1px;
    padding: 2px;
}

ul.service-single-list li {
    margin-bottom: 10px;
}

.widget .category-list a:hover {
    background: #d72a24;
    color: white;
    border-radius: 6px;
}

.widget .category-list a:hover i {
    color: white;
}

.service-details-img img {
    width: 100%;
    height: 350px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-bottom: 20px;
    -webkit-transition: .3s ease-out;
    -o-transition: .3s ease-out;
    transition: .3s ease-out;
}

.service-details-img {
    overflow: hidden;
}

.service-details-img:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.blog-details-area {
    padding: 60px 0px;
}

.blog-details-content .blog-details {
    margin-bottom: 30px;
}

.details-image img {
    height: 400px;
    -o-object-fit: cover;
    object-fit: cover;
}

.blog-details-content .blog-details .details-image {
    position: relative;
}

.blog-details-content .blog-details .details-image .time {
    position: absolute;
    right: 0;
    bottom: 25px;
    background: var(--secondary-color);
    border-radius: 20px 0px 0px 20px;
    padding: 12px 22px;
}

.blog-details-content .blog-details .details-image .time p {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
}

.blog-details-content .blog-details h4 {
    font-size: 32px;
    margin-top: 25px;
    margin-bottom: 27px;
}

.blog-details-content .rerum {
    background-color: #f8f8f8;
    border-radius: 20px;
    padding: 30px 90px 30px 30px;
    margin-bottom: 40px;
    position: relative;
}

.blog-details-content .rerum i {
    position: absolute;
    right: 24px;
    bottom: 24px;
    font-size: 30px;
    color: var(--primary-color);
}

.blog-details-content .editor {
    margin-bottom: 30px;
}

.blog-details-content .editor .editop-img img {
    border-radius: 10px;
}

.editop-img img {
    width: 100%;
    height: 240px;
    -o-object-fit: cover;
    object-fit: cover;
}

.categories-box {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 38px 35px;
    margin-bottom: 30px;
}

.About-head h5 {
    font-size: 18px;
    text-transform: uppercase;
}

.About-head h3 {
    font-size: 40px;
}

section.inner-contact {
    padding: 60px 0px;
}

.form-input input {
    width: 100%;
    height: 50px;
    border: 1px solid #c2c2c2;
    outline: none;
    font-size: 15px;
    border-radius: 5px;
    padding: 15px;
    color: #ffffff;
    margin: 8px 0 16px 0;
}

.contact-icon i {
    color: white;
}

.contact-flex:hover .contact-icon {
    background-color: var(--secondary-color);
}

.contact-flex:hover .contact-icontext h3 {
    color: var(--primary-color);
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: -ms-grid;
    display: grid;
    place-items: center;
    border-radius: 5px;
    font-size: 30px;
    color: var(--tertiary-color);
    background-color: var(--primary-color);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.contact-flex {
    width: 100%;
    margin: 30px 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.contact-icontext {
    width: 85%;
}

.contact-icontext h3 {
    font-size: 22px;
    margin: 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.contact-text p {
    margin: 10px 0 0 0;
    font-size: 15px;
}

.detail_image {
    width: 100%;
    height: 400px;
}

.detail_image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
}

.detail_blogtext h2 {
    font-size: 36px;
    margin: 30px 0 0 0;
    color: black;
}

.blog_head {
    width: 100%;
}

.blog_head ul {
    padding: 0;
    display: inline-block;
    margin: 20px 0;
}

.blog_head ul li {
    display: inline-block;
    margin: 0 30px 0 0;
    color: black;
    font-size: 15px;
}

.blog_head ul li i {
    color: var(--primary-color);
    margin: 0 10px 0 0;
}

.blog_info {
    width: 100%;
    background-color: #0000003d;
    padding: 30px 60px 30px 40px;
    margin: 0 0 30px 0;
}

.blog_info p {
    color: var(--primary-color);
    font-size: 20px;
    font-style: italic;
    padding: 0 0 0 70px;
    display: inline-block;
    margin: 10px 0 0 0;
}

.blog_box_cont {
    width: 100%;
    padding: 30px;
    border: 1px solid #b2b2b2;
    border-radius: 10px;
}

.blog_box_cont h4 {
    font-size: 25px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    margin: 0;
}

.blog-link {
    width: 100%;
    margin: 20px 0 0 0;
}

.blog-link a {
    font-size: 18px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    color: black;
}

section.contact-box {
    padding: 60px 0px;
}

section.section-2 {
    padding: 60px;
}

section.From-section {
    background: #ebebeb;
    padding: 60px 0px;
}

.from-box h5 {
    font-size: 18px;
}

.head-text h2 {
    font-weight: 600;
    color: var(--primary-color);
}

.head-text {
    text-align: center;
    padding: 10px 0px 20px;
}

section.From-section .form-flex .form-input {
    width: 32%;
}

.wpcf7-form-control-wrap {
    position: relative;
}

.form-input input {
    width: 100%;
    height: 50px;
    border: 1px solid #c2c2c2;
    outline: none;
    font-size: 15px;
    border-radius: 5px;
    padding: 15px;
    color: #000000;
    margin: 8px 0 16px 0;
}

.form-flex {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

section.From-section .form-flex .form-input.Full-input {
    width: 66%;
}

.form-input {
    width: 20%;
}

input[type="button"] {
    background: var(--secondary-color);
    color: white;
}

.team-card {
    position: relative;
    margin-bottom: 30px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.team-card img {
    position: relative;
    width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 5px 5px 0 0;
}

.team-card .content {
    /*position: absolute;*/
    background-color: #ffffff;
    box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
    padding: 30px 20px;
    bottom: 0;
    left: 0;
    text-align: center;
    width: 100%;
    border-radius: 0 0 5px 5px;
    min-height: 225px;
}

.team-card .content .social-link {
    position: absolute;
    bottom: 150px;
    left: 0;
    width: 100%;
    visibility: visible;
    opacity: 1;
}

.team-card .content .social-link li i {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 12px;
    border-radius: 50%;
}

.team-card:hover .content .social-link {
    bottom: 200px;
    opacity: 1;
    visibility: visible;
}

.team-card:hover .content {
    /*position: absolute;*/
    background-color: #ffffff;
    box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
    padding: 30px 20px;
    bottom: -20;
    left: 0;
    text-align: center;
    width: 100%;
    border-radius: 0 0 5px 5px;
}

.team-card .content h3 {
    margin-bottom: 10px;
}

.team-card .content h3 a {
    font-size: 22px;
    color: #202647;
}

.team-card .content span {
    color: var(--secondary-color);
    display: inline-block;
}

.team-card .content .social-link {
    padding: 0;
    margin: 15px 0 -50px 0;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
}

.team-card .content .social-link li {
    list-style-type: none;
    display: inline-block;
    margin: 0 5px;
}

.Explore-box.explore-2 img {
    width: 100%;
    height: 228px;
    object-fit: cover;
}

.Explore-box.explore-2 {
    margin-bottom: 24px;
}

.clk_btn {
    position: absolute;
    top: 8px;
    right: 0;
    z-index: 99;
    cursor: pointer;
    line-height: 4;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.m-0 {
    background: #d72a24;
    border: none;
    width: 109px;
}

.footer_box ul.footer_links i {
    margin-left: -105px;
    color: #ffffff;
}

.footer_box ul.footer_links input {
    background: transparent;
    border: 0px;
    border-bottom: 1px solid white;
    font-size: 15px;
    color: white;
    width: 100%;
    margin-bottom: 20px;
}

/*===================*/

@media only screen and (max-width: 1199px) {
    .menu ul li {
        padding: 0px 12px;
    }

    .nav-call {
        display: none;
    }

    .btn-sec {
        justify-content: flex-end;
    }

    section.About-inner .list-style-one li {
        position: relative;
        display: inline-flex;
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 11px;
        align-items: center;
    }
}

@media only screen and (max-width: 991px) {
    .toggle {
        visibility: visible;
        /* position: relative; */
        top: 20px;
        right: 14px;
        z-index: 99999;
        /* transform: translateY(-50%); */
        cursor: pointer;
        width: 40px;
        height: 40px;
        /* margin: 0 0 0 auto; */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        order: 3;
    }

    .toggle>* {
        width: 80%;
        height: 3px;
        background: #000;
        margin: 3px 0;
    }

    .toggle.navactive .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle.navactive .line2 {
        opacity: 0;
    }

    .toggle.navactive .line3 {
        transform: rotate(45deg) translate(-7px, -8px);
    }

    .menu {
        display: none;
        position: absolute;
        width: 100%;
        background: #fff;
        left: 0;
        top: 56px;
        padding: 0;
        z-index: 99;
    }

    .service-box {
        height: 300px;
        margin-bottom: 30px;
    }

    .Explore-box.explore-1 img {
        height: 270px;
    }

    .menu ul li {
        width: 100%;
    }

    .menu ul li a {
        padding: 7px 10px;
        width: 100%;
        margin: 2px 0px;
    }

    .menu ul {
        width: 100%;
    }

    .About-text.mx-5 {
        margin-top: 30px;
    }

    .Explore-img {
        margin-bottom: 30px;
    }

    section.About-inner .About-img-2 img {
        width: 100%;
        object-fit: cover;
    }

    section.service-sec.inner-page .service-box {
        height: auto;
    }

    .nav-bar {
        justify-content: space-between;
    }

    .clk_btn {
        line-height: 0;
        padding: 10px;
        top: -3px;
    }

    ul.dropdown {
        position: revert;
    }

    .blog-area {
        width: 100% !important;
    }

    .blog-text {
        width: 90%;
    }

    .home-form {
        margin-top: 40px;
    }

    .footer_box {
        margin-top: 30px;
    }

    .Testimonials-main {
        width: 98% !important;

    }

    .slider-img img {
        height: 450px;
        object-fit: cover;
    }

    .blog-main .blog-img img {
        width: 96%;

    }

    .About-text.mx-5 {
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 30px !important;
    }

    .counter.about-counter {
        border: none;
    }

    section.home-contact {
        padding: 0px 0px 10px;
    }

    section.Blog-sec {
        padding: 40px 0px 10px;
    }

    section.service-sec {
        padding: 40px 0px 10px;

    }

    .About-img-2 {
        margin-top: 40px;
    }

    section.About-inner .single-item h3 {
        font-size: 24px;
        margin-bottom: 8px;
        margin-top: 20px;
    }

    section.About-inner .list-style-one li {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 4px;
        align-items: center;
    }
}

@media only screen and (max-width: 734px) {
    .blog-main .blog-img img {
        width: 100%;
    }

    .btn-sec {
        width: auto;
    }

    section.Work-sec {
        padding: 30px 0px 10px;
    }

    .Testimonials-main {
        width: 94% !important;
    }

    .logo img {
        width: 120px;
        height: auto;
    }

    .nav-btn a {
        background: var(--secondary-color);
        padding: 6px 9px;
    }

}

RESPONSIVE QUERY______ @media only screen and (max-width: 667px) {}

@media only screen and (max-width: 600px) {
    .silder-text h1 {
        font-size: 36px;
    }

    .silder-text {
        top: 25%;
        width: 36%;
    }

    .in-head-text {
        position: absolute;
        top: 49%;
        left: 8%;
        -webkit-transform: translate(0%, 0%);
        -ms-transform: translate(0%, 0%);
        transform: translate(0%, 0%);
        color: #fff;
    }

    .in-head-text nav {
        justify-content: flex-start;
    }

    section.Our-team {
        padding: 30px 0px;
    }


}

@media only screen and (max-width: 568px) {
    .in-head-text h1 {
        font-size: 28px;
    }

    .contact-icontext {
        width: 75%;
    }

    .About-text h3 {
        font-size: 28px;
        color: var(--primary-color);
    }

    .contact-text h2 {
        font-size: 28px;
    }

    .home-form {
        background: #09306b;
        padding: 50px 18px;
    }

    .detail_blogtext h2 {
        font-size: 28px;
        margin: 30px 0 0 0;
        color: black;
    }

    .silder-text h1 {
        font-size: 28px;
    }

    .silder-text {
        top: 25%;
        width: 18%;
    }
}

@media only screen and (max-width: 480px) {
    .p-0 {
        padding: 0 !important;
        padding: 0px 10px !important;
    }

    .btn-sec {
        width: auto;
        margin-left: 80px;
    }

    .in-head-text {
        position: absolute;
        top: 20%;
        left: 8%;
        -webkit-transform: translate(0%, 0%);
        -ms-transform: translate(0%, 0%);
        transform: translate(0%, 0%);
        color: #fff;
    }

    .in-head-text {
        position: absolute;
        top: 36%;
    }
    .in-head img {
    height: 225px;
    }
    .About-text h3 {
    font-size: 24px;
}

section.Explore-sec {
    padding: 40px 0px 0px;
}

.Explore-head.text-center h2 {
    font-size: 24px;
}

.Explore-text h4 {
    font-size: 18px;
}

section.counter-box {
    margin: 0;
    padding: 40px 0px;
}

.stat-number {
    font-size: 30px;
}

.counter.about-counter p {
    font-size: 15px;
    margin-top: 5px;
}

.Testimonials-box i {
    font-size: 40px;
}

.footer_box {
    margin-top: 10px;
}

.team-card .content {
    min-height: auto;
}

section.About-inner .About-img-2 img {
    height: 250px;
}

.widget .widget-title {
    margin-bottom: 5px;
    font-size: 22px;
}

.guest-form h4 {
    font-size: 24px;
    margin: 0px 0 20px;
}

form p {
    margin: 0;
}

.guest-form input[type="submit"] {
    margin: 0;
}

.service-single-area {
    padding: 40px 0px;
}

.in-head-text h1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

li.breadcrumb-item.active {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

ol.breadcrumb {
    flex-wrap: nowrap;
}

.detail_blogtext h2 {
    font-size: 24px;
}

.blog_info p {
    padding: 0;
}

.blog_info {
    padding: 30px;
}

.blog_info h3 {
    font-size: 20px;
}

.blog-link a {
    font-size: 16px;
}

}

@media only screen and (max-width: 460px) {}

@media only screen and (max-width: 350px) {
    .nav-btn a {
    font-size: 12px;
}
}

@media only screen and (max-width: 360px) {}


@media only screen and (max-width: 320px) {}

.service-sidebar {
    position: sticky;
    top: 10%;
}
.head-text p {
    display: none;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ffb900;
    color: #f3cfa0;
}