:root {
    /* COLORS */
    --main-color: #33b6bb;
    --yellow-color: #d7ce34;
    --white-color: #FFFFFF;
    --black-color: #000;
    --red-color: red;
    --light-green-color: #25d366;
    --orange-color: #f79420;
    --golden-color: #CBAA6B;
    --blue-color: rgb(13 110 253);
    --heading-light-black: #828282;
    --heading-color: #000000;
    --para-graph-light-color: #3c4043;
    --para-color: #6e6e6e;
    --light-sky-blue-bg-color: #27bdbe;
    --bg-red-light-color: #f2dede;
    --bg-gray-color: #dddddd;
    --bg-gray-light-color: #f5f5f5;
    --bg-blue-light-color: #f4fbff;
    --bg-white: #FFFFFF;
    --bg-black: #000000;
    --border-color-light: #ddd;

    /* transition */
    --transition-3: all .3s ease-in-out;
    --transition-4: all .5s ease-in-out;
    --transition-5: all .5s ease-in-out;
    /* cursor */
    --cursor: pointer;
    /* box-shadow */
    --box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    --box-shadow-2: rgba(149, 157, 165, .2) 0 8px 24px;

    /* font-family */
    --font-family: "Manrope", serif;
    --font-style: normal;

    /* TYPOGRAPHY font-size */

    /* --x-large-font-size: 40px; */
    --font-size-h1: 36px;
    --font-size-h2: 30px;
    --font-size-h3: 22px;
    --font-size-h4: 18px;
    --font-size-h5: 16px;
    --font-size-h6: 15px;
    --font-size-p: 16px;
    --paragraph-small: 15px;

    --x-small-font-size: 14px;

    --large-heading: 50px;
    --common-heading: 24px;
    --small-heading: 15px;

    /* font-weight */

    --font-weight-100: 100;
    --font-weight-200: 200;
    --font-weight-300: 300;
    --font-weight-400: 400;
    --font-weight-500: 500;
    --font-weight-600: 600;
    --font-weight-700: 700;
    --font-weight-800: 800;
    --font-weight-900: 900;

    /* line-height */

    --line-height-1: 1.1;
    --line-height-1-2: 1.2;
    --line-height-1-3: 1.3;
    --line-height-1-4: 1.4;
    --line-height-1-5: 1.5;
    --line-height-1-6: 1.6;
    --line-height-1-7: 1.7;

    /* border-radius */

    --border-radius-10: 10px;
    --border-radius-20: 20px;
    --border-radius-30: 30px;
    --border-radius-40: 40px;
    --border-radius-50: 50px;

    /* border */

    --border-1: 1px solid var(--border-color-light);
    /* --border-2: 1px solid var(--border-color-light); */
}

@font-face {
    font-family: 'Manrope';
    src: url('../font/Manrope-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../font/Manrope-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../font/Manrope-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../font/Manrope-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../font/Manrope-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../font/Manrope-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../font/Manrope-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-size: var(--font-size-h6);
    line-height: var(--line-height-1-4);
}

html,
body {
    font-family: var(--font-family);
    font-style: var(--font-style);
}

a {
    text-decoration: none;
    color: var(--black-color);
}

li {
    list-style: none;
}

ul,
figure {
    margin: 0;
    padding: 0;
}

/*  inhe apne hisab kar lo */
.container-sm,
.container-lg,
.container-x-lg,
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.container-sm {
    max-width: 860px;
}

.container {
    max-width: 1240px;
}

.container-lg {
    max-width: 1280px;
}

.container-x-lg {
    max-width: 1440px;
    padding: 0 70px;
}

.container-full {
    width: 100%;
}

img {
    max-width: 100%;
    display: block;
}

p a,
li p a {
    color: var(--main-color) !important;
    font-weight: var(--font-weight-600);

}

p {
    font-size: 15px;
    line-height: 1.6;
    color: #737373;
}

.black-btn {
    width: max-content;
    height: 40px;
    font-weight: 100;
    margin-top: 10px;
    padding: 6px 20px;
    font-size: 13px;
    letter-spacing: 0.5px;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}



/* common--botton css */
.sky-btn {
    width: fit-content;
    margin-top: 28px;
    background-color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5px;
    font-weight: bold;
    color: #ffffff;
    padding: 24px 32px;
    border-radius: 12px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1607843137);
    font-weight: var(--font-weight-700);
}

.sky-btn img {
    width: 20px;
    margin-left: 10px;
}

/* common css */
h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-family: var(--font-family);
    font-style: normal;

}

h1,
h2 {
    font-weight: var(--font-weight-800);
}

h5,
h6,
.common-heading {
    font-weight: var(--font-weight-500);
}

h1 {
    font-size: var(--font-size-h1);
}

h2 {
    font-size: var(--font-size-h2);
}

h3 {
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-700);
}

h4 {
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-500);
}

h5 {
    font-size: var(--font-size-h5);
    font-weight: var(--font-weight-600);
}

h6 {
    font-size: var(--font-size-h6);

}

.para {
    font-size: var(--paragraph-small);
    color: var(--para-color);
    line-height: var(--line-height-1-6);
}

.large-heading {
    font-size: var(--large-heading);
    font-weight: var(--font-weight-800);
}

.small-heading {
    font-size: var(--font-size-h6);
    font-weight: var(--font-weight-400);
    font-weight: var(--font-weight-900);
}

.small-text {
    font-size: var(--x-small-font-size);
    font-weight: normal;
}

.common-heading {
    font-size: var(--common-heading);
    line-height: var(--line-height-1-4);
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.relative,
.common-banner {
    position: relative;
}

.common-banner {
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.bg-layer::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -1px;
    background-color: rgb(0 0 0 / 75%);
}



.text-center {
    text-align: center;
}

/* flex and grid css */
.grid {
    display: grid;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.no-wrap {
    flex-wrap: nowrap;
}

.align-center {
    align-items: center;
}

.align-start {
    align-items: start;
}

.space-center {
    justify-content: center;
}

.space-between {
    justify-content: space-between;
}

.space-end {
    justify-content: end;
}

.grid-2 {
    grid-template-columns: auto auto;
}

.grid-3 {
    grid-template-columns: auto auto auto;
}

.grid-4 {
    grid-template-columns: auto auto auto auto;
}

.grid-5 {
    grid-template-columns: auto auto auto auto auto;
}

.grid-6 {
    grid-template-columns: auto auto auto auto auto auto;
}

.grid-8 {
    grid-template-columns: auto auto auto auto auto auto auto auto;
}

/* row-gap and column-gap css */

.gap-10 {
    gap: 10px 10px;
}

.gap-20 {
    gap: 20px 20px;
}

.gap-30 {
    gap: 30px 30px;
}

.gap-40 {
    gap: 40px 40px;
}

.gap-50 {
    gap: 50px 50px;
}

/* row-gap css */
.row-gap-10 {
    row-gap: 10px;
}

.row-gap-20 {
    row-gap: 20px;
}

.row-gap-30 {
    row-gap: 20px;
}

.row-gap-40 {
    row-gap: 40px;
}

.row-gap-50 {
    row-gap: 50px;
}

/* column-gap css */
.column-gap-10 {
    column-gap: 10px;
}

.column-gap-20 {
    column-gap: 20px;
}

.column-gap-30 {
    column-gap: 20px;
}

.column-gap-40 {
    column-gap: 40px;
}

.column-gap-50 {
    column-gap: 50px;
}

/* column css */


.col-half,
.col-6 {
    width: 48%;
}

.col-2 {
    width: 20%;
}

.col-3 {
    width: 32%;
}

.col-4 {
    width: 24%;
}

.col-5 {
    width: 30%;
}

.col-7 {
    width: 68%;
}

.col-55 {
    width: 55%;
}

.col-45 {
    width: 43%;
}


/* form css */
/* Chrome, Safari, Edge */
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

/* Firefox */
input[type="date"] {
    -moz-appearance: textfield;
}

/* Remove extra padding in Chrome/Safari */
input[type="date"] {
    padding-right: 0;
}

/* form css */

label {
    font-size: var(--x-small-font-size);
    margin-bottom: 6px;
    display: block;
    font-weight: var(--font-weight-400);
}

.form-group {
    width: 100%;
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    height: 42px;
    font-size: var(--x-small-font-size);
    padding: 12px 16px;
    color: #757575;
    background-color: var(--bg-white);
    border: var(--border-1);
    border-radius: var(--border-radius-10);
    outline: none;
    cursor: var(--cursor);
    transition: var(--transition-4);
}

input[type="date"] {
    width: 100%;
    display: block;
}

select option {
    width: 100%;
    display: block;
    color: var(--black-color);
}

.w-100 {
    width: 100%;
}

.w-90 {
    width: 88%;
}

.w-70 {
    width: 68%;
}

.w-50 {
    width: 48%;
}

.w-32 {
    width: 32%;
}

.w-30 {
    width: 30%;
}

.w-25 {
    width: 24%;
}

.w-20 {
    width: 19%;
}

.w-15 {
    width: 15%;
}

button {
    outline: none;
    border: none;
}

.bulit-list {
    padding-left: 30px;
    margin: 20px 0;
}

.number-list li {
    list-style: unset;
}

.bulit-list li {
    margin-bottom: 8px;
    list-style: disc;
    line-height: 1.6;
}

.bulit-list li:nth-last-of-type(1) {
    margin-bottom: 0;
}

.bulit-list li ol li {
    list-style: unset;
}

.number-list li ul li {
    list-style: disc;
}

/* common margin */
.mtb {
    margin: 100px 0;
}

.my {
    margin: 50px 0;
}

.my-20 {
    margin: 20px 0;
}

.mt-top-10 {
    margin-top: 10px;
}

.mt-top-20 {
    margin-top: 20px;
}

.mt-top-30 {
    margin-top: 30px;
}

.mt-top-40 {
    margin-top: 40px;
}

.mt-top-50 {
    margin-top: 40px;
}

.mb-bottom-10 {
    margin-bottom: 50px;
}

.mb-bottom-20 {
    margin-bottom: 20px;
}

.mb-bottom-30 {
    margin-bottom: 30px;
}

.mb-bottom-40 {
    margin-bottom: 40px;
}

.mb-bottom-50 {
    margin-bottom: 50px;
}

/* common padding css */
.ptb {
    padding: 100px 0;
}

.py {
    padding: 50px 0;
}

.py-20 {
    padding: 20px 0;
}

.px {
    padding: 0 20px;
}

.px-left {
    padding-left: 20px;
}

.px-right {
    padding-right: 20px;
}

.pt-top-10 {
    padding-top: 10px;
}

.pt-top-20 {
    padding-top: 20px;
}

.pt-top-30 {
    padding-top: 30px;
}

.pt-top-40 {
    padding-top: 40px;
}

.pt-top-50 {
    padding-top: 50px;
}

.pb-bottom-10 {
    padding-top: 10px;
}

.pb-bottom-20 {
    padding-top: 20px;
}

.pb-bottom-30 {
    padding-top: 30px;
}

.pb-bottom-40 {
    padding-top: 40px;
}

.pb-bottom-50 {
    padding-top: 50px;
}

/* common weight  css*/
.weight-100 {
    font-weight: var(--font-weight-100);
}

.weight-200 {
    font-weight: var(--font-weight-200);
}

.weight-300 {
    font-weight: var(--font-weight-300);
}

.weight-400 {
    font-weight: var(--font-weight-400);
}

.weight-500 {
    font-weight: var(--font-weight-500);
}

.weight-600 {
    font-weight: var(--font-weight-600);
}

.weight-700 {
    font-weight: var(--font-weight-700);
}

.weight-800 {
    font-weight: var(--font-weight-800);
}

/*  common border-radius  css*/
.round-10 {
    border-radius: var(--border-radius-10);
}

.round-20 {
    border-radius: var(--border-radius-20);
}

.round-30 {
    border-radius: var(--border-radius-30);
}

.round-40 {
    border-radius: var(--border-radius-40);
}

.round-50 {
    border-radius: var(--border-radius-50);
}

/*common table  css*/

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.table-responsive .common-table {
    width: 100%;
    border-collapse: collapse;
}

.table-responsive .common-table tr th,
.table-responsive .common-table tr td {
    border: 1px solid #dddd;
    padding: 10px;
}

.text-hide {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}

/* breadcrumb css */
.breadcrumb-sec {
    padding: 10px 0;
}

.breadcrumb-sec ul li {
    font-size: var(--x-small-font-size);
}

.breadcrumb-sec ul li:not(:nth-last-of-type(1)) {
    margin-right: 10px;
}

.breadcrumb-sec ul li a {
    color: var(--black-color);
    font-weight: var(--font-weight-500);
    transition: var(--transition-3);
}

.breadcrumb-sec ul li a:hover {
    color: var(--main-color);
}

/* header css */
.common--botton , .common--botton {
    width: 175px;
    height: 50px;
    transition: .5s ease-in-out;
    position: fixed;
    right: 0;
    bottom: 50px;
}
.common--botton.call_now {
        bottom: 110px
    }

    .common--botton.call_now a {
            background-color: #000000 !important;
    }

    .common--botton a {
		height:100%;
        background-color: #29a71a;
        border-radius: 30px;
        padding: 0 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: rgba(0, 0, 0, .15) 0 3px 12px 0
    }

    .common--botton.whatsapp-now a {
        animation: 1s linear infinite circle
    }
.common--botton a span{color:#fff;font-weight:600;}
.common--botton a img{width:30px;margin-right:10px;}
/* Cleaned and optimized header and responsive CSS */

header {
    width: 100%;
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
}

header.fixed-header {
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease-in-out;
    position: fixed;
    top: -1px;
    left: 0;
    animation: sticky1 0.35s ease-out;
    background-color: #fff;
    z-index: 5;
}

header .logo img {
    width: 222px;
}


header nav {
    width: 80%;
}

header nav ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: end;
}

header nav ul li {
    padding: 30px 10px;
    cursor: pointer;
    margin-bottom: 0;
    position: relative;
}

header nav ul li:not(:last-of-type) {
    margin-right: 0;
}

header nav ul li:nth-last-of-type(1) {
    padding-right: 0;
}

header nav ul .dropdown-list::after {
    content: "";
    position: absolute;
    left: 0;
    width: 0;
    height: 3px;
    border-radius: 6px;
    background-color: #da5508;
    bottom: 18px;
    transition: 0.5s ease-in-out;
}

header nav ul li .dorplink {
    display: flex;
    flex-wrap: wrap;
}

header nav ul li .dorplink img {
    width: 18px;
    transition: all 0.5s ease-in-out;
}

header nav ul .dropdown-list a {
    font-size: 14px;
    font-weight: 700;
    transition: 0.5s ease-in-out;
}

header nav ul .dropdown-list ul {
    display: unset;
    width: 205px;
    position: absolute;
    top: 80px;
    left: -20px;
    padding: 0;
    background-color: #fff;
    border-radius: 0 0 5px 5px;
    transition: 0.5s ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    z-index: 11;
}

header nav ul .dropdown-list ul li:hover .sub_dropdown_list,
header nav ul .dropdown-list:hover ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

header nav ul .dropdown-list:hover .dorplink img {
    transform: rotate(180deg);
}

header nav ul .dropdown-list ul li {
    padding: 7px 10px;
    border-bottom: 1px solid #2fb6bc;
    position: relative;
    transition: 0.5s ease-in-out;
}

header nav ul .dropdown-list ul li:hover {
    background-color: #cdcdcd61;
}

header nav ul .dropdown-list ul li:last-of-type {
    border-bottom: none;
}

header nav ul .dropdown-list ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header nav ul .dropdown-list ul li a i {
    transition: 0.5s ease-in-out;
}

header nav ul .dropdown-list ul li:hover a i {
    transform: rotate(-90deg);
}

header nav ul .dropdown-list ul .sub_dropdown_list {
    left: 100%;
    top: 0;
    transform: translateY(30px);
    transition: 0.5s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

header nav ul .dropdown-list ul li:hover ul {
    left: 100%;
    top: 0;
}

header .toggle-btn {
    width: 30px;
    display: none;
    flex-wrap: wrap;
    position: absolute;
    top: 30px;
    right: 20px;
    cursor: pointer;
    z-index: 11;
}

header .toggle-btn span {
    width: 26px;
    height: 3px;
    background-color: #000;
    margin-bottom: 4px;
    transition: 0.5s ease-in-out;
    z-index: 11;
}

.mobile-menu {
    display: none;
}

@media (max-width: 1280px) {
    header .logo {
        width: 20%;
    }

    header nav {
        width: 80%;
    }


}

/* footer css */
footer {
    width: 100%;
    padding-top: 350px;
    background-image: url(../images/footer-bg.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    background-color: #eaeaec;
}

footer .col-left {
    width: 30%;
}

footer .col-right {
    width: 55%;
}

footer .col-right .inner-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

footer .col-right .inner-col {
    width: 33.33%;
}

footer .office-address h4,
footer .col-right .inner-col h4 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: var(--font-weight-700);
}

footer .office-address ul li,
footer .col-right .inner-col ul li {
    font-size: 14px;
    margin-bottom: 16px;
}

footer .col-right .inner-col ul li:nth-last-of-type(1) {
    margin-bottom: 0;
}

footer .pay-currencies {
    border-top: 3px solid #cecece;
    margin-bottom: 15px;
    margin-top: 15px;
    padding-top: 15px;
}

footer .pay-currencies ul {
    display: flex;
    align-items: center;
    padding-top: 10px;
}

footer .pay-currencies ul li:not(:nth-last-of-type(1)) {
    margin-right: 10px;
}

footer .office-address {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 2px solid #cecece;
    border-bottom: 2px solid #cecece;
    padding: 20px 0;
    margin: 20px 0 0;
}

footer .office-address ul li {
    line-height: 1.8;
    margin-bottom: 10px;
}

.copy-right {
    padding: 10px 0;
}

.copy-right .social-icon li:not(:nth-last-of-type(1)) {
    margin-right: 10px;
}

.copy-right .text p {
    font-size: 13px;
}


@media (max-width: 1200px) {
    header nav ul li {
        padding: 30px 8px;
    }
}

@media (max-width: 1140px) {
    header nav ul li {
        padding: 30px 7px;
    }

    header nav ul .dropdown-list a {
        font-size: 13px;
    }
}

@media (max-width: 1100px) {}

@media (max-width: 1080px) {
    header .container {
        padding: 0 15px;
    }

    header nav ul .dropdown-list a {
        font-size: 12px;
    }

}

@media (max-width: 1024px) {

    header .toggle__button.active span:nth-of-type(2),
    header nav {
        display: none;
    }

    header .toggle-btn {
        display: flex;
    }

    header .logo {
        width: auto;
    }

    header .logo img {
        width: auto;
    }

    header .mobile-menu {
        width: 100%;
        height: 100vh;
        display: flex;
        position: absolute;
        top: 0;
        left: -100%;
        background-color: #fff;
        transition: .5s ease-in-out;
        z-index: 1;
    }

    header .toggle-btn.active {
        top: 22px;
        z-index: 11;
    }

    header .toggle-btn.active span {
        transform: rotate(45deg);
        margin: 5px 0 0;
    }

    header .toggle-btn.active span:nth-last-of-type(2) {
        display: none;
    }

    header .toggle-btn.active span:nth-last-of-type(1) {
        transform: rotate(-45deg);
        margin: -3px 0 0
    }

    .categories__list_item.active .subcategories,
    .subcategories.active,
    .subcategories_list.active .subcategories__link,
    header .mobile-menu.active {
        left: 0;
    }

    header .mobile-menu .menu-box {
        width: 100%;
        height: 100vh;
        overflow-y: auto
    }

    header .mobile-menu .menu-box .mobile-logo {
        padding: 0 15px 0 20px;
        border-bottom: 1px solid #2fb6bc
    }

    header .mobile-menu .menu-box .mobile-logo a {
        width: max-content;
        display: inline-block;
    }

    header .toggle__button.active span {
        transform: rotate(45deg);
        margin: 5px 0 0
    }

    header .toggle__button.active span:last-of-type {
        transform: rotate(-45deg);
        margin: -3px 0 0
    }

    .see__more {
        margin-top: 15px;
        display: block
    }

    .menu-categories__list .mobile-menu_list {
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: .5s ease-in-out
    }

    .menu-categories__list .mobile-menu_list:hover,
    .subcategories__link li:hover,
    .subcategories_list:hover {
        background-color: #cdcdcd61
    }

    .menu-categories__list .mobile-menu_list a,
    .subcategories_list a {
        display: flex;
        align-items: center;
        justify-content: space-between
    }

    .subcategories {
        top: 82px
    }

    .subcategories__link {
        top: 0
    }

    .back-menu {
        z-index: 11;
        cursor: pointer
    }

    .subcategories__link .back-menu {
        padding: 0;
        border-bottom: none
    }

    .back-menu i {
        margin-right: 4px
    }

    .subcategories__link li,
    .subcategories_list {
        transition: .5s ease-in-out
    }

    .back-menu,
    .menu-categories__list .mobile-menu_list,
    .subcategories__link li,
    .subcategories_list {
        padding: 10px 20px;
        border-bottom: 1px solid #2fb6bc
    }

    .subcategories,
    .subcategories__link {
        height: 100%;
        left: -100%;
        position: absolute;
        transition: .5s ease-in-out;
        background-color: #fff;
        width: 100%
    }


}

@media (max-width: 992px) {
    footer .col-right {
        width: 60%;
    }
}

@media (max-width: 767px) {
    footer {
        padding-top: 140px;
    }

    footer .row {
        row-gap: 30px;
    }

    footer .col-left {
        width: 100%;
    }

    footer .col-right {
        width: 100%;
    }

    footer .office-address h4 {
        margin-bottom: 12px;
    }

    .copy-right .social-icon {
        width: 30%;
    }

    .copy-right .text {
        width: 60%;
    }
}

@media (max-width: 560px) {
    .copy-right .social-icon {
        width: 40%;
    }

    .copy-right .text p {
        text-align: right;
    }
}

@media (max-width: 480px) {

    header .logo img,
    .mobile-logo img {
        width: 240px;
    }

    header .toggle-btn {
        top: 22px;
    }

    .copy-right .social-icon,
    .copy-right .text {
        width: 100%;
    }

    .copy-right .social-icon {
        margin-bottom: 10px;
    }
}

@media (max-width: 380px) {
    header .logo img {
        width: 200px;
    }

    header .toggle-btn {
        top: 18px;
    }
}
