@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@300;400;500;600;700&family=Inter:wght@900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

:root {
    --default-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC",
        "Hiragino Sans GB", "Microsoft Yahei UI", "Microsoft Yahei",
        "Source Han Sans CN", sans-serif;
    --default-background-color: #111111;
    --default-text-color: #f0f0f0;
    --default-font-weight: 600;
    --default-button-text-size: 24px;
    --default-font-size: 32px;
}

a {
    text-decoration: none;
}


h1,
h2,
h3,
h4,
h5,
h6,
ul,
a,
p {

    margin: 0;
    padding: 0;
    font-size: unset;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    position: relative;
    background: #000 url(../assets/images/About/dot-bg.png) no-repeat center fixed;
    background-size: 220%;
}

body::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
}


body::-webkit-scrollbar {
    display: none;
}

.wrapper {
    /* background-color: rgb(0 0 0); */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-container {
    /* background-color: rgb(0 0 0); */
    color: #f0f0f0;
    display: flex;
    flex-direction: column;
    padding: 0 12px;
    margin: 10rem 0 auto;
    align-items: center;
}

.main-content {
    width: 100%;
}


.blog-heading {
    display: flex;
    justify-content: center;
    font-size: 25px;
    font-family: Chakra petch;
    font-weight: 300;
    margin-bottom: 8px;
}

.blog-subtitle {
    display: flex;
    justify-content: center;
    font-size: 46px;
    font-family: Chakra petch;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

/* Header/Navigation Bar */



.nav {
    width: 100%;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 3;
}

.sticky {
    position: fixed !important;
    top: 0;
    width: 100%;
}

.navbar-brand {
    margin: 0;
    padding: 1.5% 1%;
}

header.navbar.bg-black {
    margin: 0;
    padding: 0;
    height: 0px;
}


header.navbar.bg-black {
    margin: 0;
    padding: 0;
    height: 0px;
}

img.navbar-logo-size-sm {
    width: 100%;
    transform: rotate(90deg);
}

.logo {
    padding: 1.9%;
}

.logo,
.content {
    color: #fafafa;
}


#hamburger {
    padding: 1%;
}

.logo {
    padding: 1.9%;
}

#hamburger {
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.25s linear;
    /* width: clamp(1.5rem, 2vw + 1.1rem, 6rem); */
    height: clamp(2rem, 1.4vw + 1.7rem, 5rem);
    display: flex;
    align-items: center;
}

#hamburger:hover {
    opacity: 1;
}

#hamburger div,
#hamburger div:after,
#hamburger div:before {
    background-color: #fafafa;
    border-radius: 10px;
    width: clamp(1.5rem, 2vw + 1.1rem, 6rem);
    height: clamp(0.2rem, 0.3vw + 0.1rem, 0.8rem);
    transition: all 0.15s linear;
}

#hamburger div:before,
#hamburger div:after {
    content: "";
    position: absolute;
}

#hamburger div:before {
    transform: translateY(-200%);
}

#hamburger div:after {
    transform: translateY(200%);
}

#overlay ul.menu li span {
    font-family: 'Chakra Petch';
    font-size: 20px;
    font-weight: 700;
    color: #5b5b5b;
}

.SMN_effect-15 a:before {
    display: inline-block;
    opacity: 0;
    margin-right: 10px;
    content: '[';
    transition: transform 0.3s, opacity 0.2s;
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    transform: translateX(20px);
}

.SMN_effect-15 a:after {
    display: inline-block;
    opacity: 0;
    margin-left: 10px;
    content: ']';
    transform: translateX(0px);
    transition: transform 0.3s, opacity 0.2s;
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    transform: translateX(-20px);
}

.SMN_effect-15 a:hover:before {
    opacity: 1;
    transform: translateX(0px);
}

.SMN_effect-15 a:hover:after {
    opacity: 1;
    transform: translateX(0px);
}

#overlay {
    position: fixed;
    width: 100%;
    min-height: 100%;
    background-color: #000;
    z-index: 2;
    transform: translateY(-100%);
    transition: all 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 0;
    opacity: 1;
}

#overlay ul.menu {
    list-style: none;
    text-align: center;
    width: 100%;
    padding: 0;
    overflow: auto;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.social-logos-in-hamburger {
    position: absolute;
    bottom: 5rem;
    display: none;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    color: rgba(255, 255, 255, 0.5);
    z-index: 2;
}

.social-logos-in-hamburger a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
}


#overlay ul.menu::-webkit-scrollbar {
    display: none;
}


#overlay ul.menu li {
    padding: 6px;
    width: 100%;
}

#overlay.menu {
    transform: translateY(0%);
}

#overlay ul.menu li a {
    text-decoration: none;
    color: #fafafa;
    font-size: clamp(1rem, 2.1vw + 2.2rem, 10rem);
    margin: 0%;
    opacity: 0.5;
    transition: 0.3s linear;
    font-family: 'Chakra Petch';
    font-weight: 600;
    transform: translateY(-100%);
}

#overlay ul.menu li a:hover {
    opacity: 1;
    margin: 2%;

}

#overlay ul.menu li span {
    transition: 0.3s linear ease-in-out;
}

.blog-header_and_crumblist {
    margin-top: 24px;
}

.breadcrumb-list-list ul {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
}

.animation-section {
    position: relative;
}

.line-with-animation {
    position: relative;
    height: 14px;
    background-color: #222426;
    overflow: hidden;
    width: 200px;
    margin: 10px auto 50px auto;
}


@keyframes moveBox {

    0%,
    100% {
        left: 0;
    }

    50% {
        left: 100%;
    }
}

.animation-box {
    width: 15px;
    height: 10px;
    background-color: #FFFFFF;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    animation: moveBox 7s linear infinite;
}

/* breadcrumb-list items */
.breadcrumb-list li {
    display: inline;
    font-size: 16px;
}

.divider {
    display: block;
    /* background-color: #F0F0F040; */
    border-bottom: 1px solid #F0F0F040;
    width: 100%;
    margin: 20px 0 22px 0;
}



.card-divider {
    display: block;
    border-bottom: 1px solid #F0F0F040;
}

/* Links */
.breadcrumb-list a {
    text-decoration: none;
    color: #f0f0f0;
    padding: 2px;
    transition: color 0.3s;
}

/* Change color on hover */
.breadcrumb-list a:hover {
    color: hsla(0, 0%, 94%, 0.5);
}

/* Separator (›) between items */
.breadcrumb-list li:not(:last-child)::after {
    content: "›";
    margin: 0 8px;
    color: #999;
}

/* Active breadcrumb-list (last item) */
.breadcrumb-list .active {
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
    text-decoration: underline;
}

/* blog-cards section */

.featured_blog {
    display: flex;
}

.blog-cards {
    margin-top: 42px;
    margin-bottom: 10rem;
}

/* cards image */

.row>* {
    margin-top: unset;
}

.blog-cards-row {
    margin-top: 24px;
    row-gap: 42px;
}

.blog-cards article {
    /* background-color: #181818; */
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Featured Image */
.blog-cards article figure {
    margin: 0;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.blog-cards article img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.blog-cards article a:hover img {
    transform: scale(1.02);
}

/* Header and Title */
.blog-cards article header {
    padding: 0.75rem;
    font-family: Chakra Petch;
}

.blog-cards article h2 {
    font-size: 1.25rem;
    line-height: 1.4;
    margin: 0.5rem 0 0;
    font-family: Chakra Petch;
}

.blog-cards article h2 a {
    color: white;
    text-decoration: none;
    font-family: Chakra Petch;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* Description Section */
.blog-cards article section {
    padding: 0 1rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-cards article section p {
    font-family: Chakra Petch;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    line-height: 1.6;
    margin-top: 0.5rem;
}

/* Footer */
.blog-cards article footer {
    font-family: Chakra Petch;
    padding: 0 0.75rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.blog-cards article footer time {
    font-family: Chakra Petch;
    color: #585858;
}

/* our service section start */
.our-service-section h2 {
    font-family: Chakra Petch, var(--default-font-family);
}

.bulletpoints {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: Chakra Petch, var(--default-font-family);

}

.bulletpoint-elements {
    font-family: Chakra Petch, var(--default-font-family);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-decoration: none;
    color: #f0f0f0;
    justify-content: space-between;
}

.bulletpoint-elements:hover {
    color: #f0f0f0;
}

.bulletpoint-span {
    align-items: baseline;
    display: flex;
    gap: 24px;
}

.numbers {
    color: #b0b0b0;
    font-family: Chakra Petch, var(--default-font-family);
    font-size: 20px;
    font-weight: var(--default-font-weight);
    line-height: 26px;
}

.lottie-animation {
    width: 40px;
    aspect-ratio: 4/3;
}


/* ------------------- shimmer animation ---------------------- */
.hidden {
    display: none;
}

.shimmer-loader {
    background: linear-gradient(100deg, #111 20%, #333 50%, #111 80%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
}

.img-loader {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 4px;
}

.text-loader {
    width: 100%;
    height: 40px;
    margin: 10px 0;
    border-radius: 4px;
}

.author-loader {
    width: 100%;
    height: 20px;
    margin: 10px 0;
    border-radius: 4px;
}

/* Shimmer Effect */
@keyframes shimmer {

    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}



/* Footer Section */


input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.error {
    color: red;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.success-message {
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: black;
    margin-top: 3%;
    text-align: center;
    display: none;
}

.whatsapp-icon {
    position: fixed;
    right: 0;
    transform: translate(-25%);
    font-size: 25px;
    top: 90%;
}

/* main site footer ---starts---- */

.reveal {
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: 1s all ease;
}

.row.section-22 {
    padding-top: 15%;
    display: flex;
    width: 100%;
}

.row.section-22-mb {
    padding-top: 15%;
    display: none;
}

h1.heading-block {
    font-weight: 600;
    font-size: 30px;
    font-family: 'Chakra Petch';
    color: #fff;
    font-style: normal;
    padding: 0;
    margin: 0;
}

img.heding-block-animation-barcod-at-gun {
    width: 100%;
}


/* main site footer -------starts------- */


.grid-container-contact-us {
    display: grid;
    grid-template-columns: auto 35% 30% auto;
    grid-gap: 0%;
    padding: 10px;
}

.grid-container-contact-us-mb {
    display: none;
    grid-template-columns: auto 35% 30% auto;
    grid-gap: 0%;
}


.col-item1-ct-us {
    padding: 0;
}

.contact-us-title-grid-content-heading {
    font-size: 90px;
    font-family: 'Inter' !important;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.5);
    font-style: normal;
    padding: 0;
    margin: 0;
    margin-top: -3%;
}

.contact-us-titletw-grid-content-heading {
    font-size: 90px;
    font-family: 'Inter';
    font-weight: 900;
    color: #fff;
    font-style: normal;
    padding: 0;
    margin: 0;
}

.contact-us-grid {
    display: grid;
    grid-template-columns: auto auto;
}


input#email-filed,
input#email-filed-mb {
    width: 100%;
    padding: 12px;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 0px;
    color: #fff;
    outline: none;
}

input#email-filed:focus,
input#email-filed-mb:focus {
    border-radius: 0px;
    outline: none;
}

input#email-filed:focus:after,
input#email-filed-mb:focus:after {
    border-radius: 0px;
    outline: none;
}

input#name-filed,
input#name-filed-mb {
    padding: 12px;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 0px;
    color: #fff;
    width: 100%;
    outline: none;
}

input#message-filed,
input#message-filed-mb {
    padding: 12px;
    width: 100%;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 0px;
    color: #fff;
    outline: none;
}

input.submit-now {
    width: 100%;
    padding: 12px;
    -webkit-text-fill-color: #000;
    color: #000;
    background-color: #fff;
    outline: none;
    border: 1px solid #fff;
    transition: background-color 0.4s ease, color 0.4s ease;
}

input.submit-now:hover {
    color: var(--default-text-color);
    background-color: var(--default-background-color);
    -webkit-text-fill-color: var(--default-text-color);
}

#successMessage>i {
    color: green;
}

.success-message {
    font-size: 18px;
    display: none;
    font-weight: 500;
    color: #ffffff;
    margin-top: 5%;
}

.error-message {
    color: red;
    font-size: 12px;
    font-weight: 600;
}

ul.contact-icon-ul-list {
    list-style: none;
    padding: 0;
}

li.ct-icon-list {
    text-decoration: none;
    padding-bottom: 10%;
    font-size: 18px;
    font-weight: 300;
    font-family: 'Chakra Petch';
    color: #fff;
    font-style: normal;
}

a.contct-icon-list-link {
    text-decoration: none;
    color: #fff;
}

a.contct-icon-list-link:hover>.tooltip-text {
    visibility: visible;
}

a.contct-icon-list-link {
    position: relative;
}


.tooltip-text {
    visibility: hidden;
    position: absolute;
    z-index: 1;
    width: 100px;
    color: #000;
    font-size: 12px;
    background-color: #fff;
    border-radius: 10px;
    padding: 4px 15px 4px 15px;
}

a.contct-icon-list-link:hover>.tooltip-text {
    visibility: visible;
}

#toptooltip {
    top: -30px;
    left: 0;
}

ul.contact-social-icon-ul-list {
    list-style: none;
    padding: 0;
}

li.ct-social-icon-list {
    text-decoration: none;
    padding-bottom: 43px;
    font-size: 18px;
    font-weight: 300;
    font-family: 'Chakra Petch';
    color: #fff;
    font-style: normal;
}

a.contct-social-icon-list-link {
    text-decoration: none;
    color: #fff;
}

i.icon-space {
    padding-right: 4%;
}

i.fa-solid.fa-phone.icon-space {
    padding-right: 7%;
}

.row.section-23 {
    padding-top: 5%;
    /* padding-bottom: 10%; */
    width: 100%;
}

.grid-container-two-contact-us-mb-two {
    display: none;

}

.error-messagemb {
    color: red;
    font-size: 10px;
}

.success-message.for_home_page {
    font-size: 16px;
    display: none;
    font-weight: 500;
    color: #ffffff;
    margin-top: 3%;
    text-align: center;
}

div#successMessagemobile i,
div#successMessage i {
    color: green;
}

.success-message.for_home_pag_mobile {
    font-size: 12px;
    display: none;
    font-weight: 500;
    color: #ffffff;
    margin-top: 3%;
    text-align: left;
}

/* main site footer -------ends------- */

/* @media (max-height: 852px) {
    #overlay ul.menu {
        justify-content: unset;
        height: 80vh;
    }
} */

@media (max-height: 600px) {
    #overlay ul.menu {
        height: 60vh;
        justify-content: unset;
        /*smallest screen size iphone se */
    }

    .social-logos-in-hamburger {
        bottom: 2rem;
    }
}


@media only screen and (max-width:1440px) {
    .nav {
        background-color: rgb(0 0 0);
    }
}


@media only screen and (min-width:320px) and (max-width:992px) {
    .nav {
        width: 100%;
        background-color: transparent;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: sticky;
        top: 0;
        z-index: 3;
    }

    .logo {
        padding: 2%;
    }
}

@media screen and (min-width:320px) and (max-width:767px) {

    .social-logos-in-hamburger {
        display: flex;
    }

    .navbar-brand {
        margin: 0;
        padding: 4% 1%;
    }

    img.navbar-logo-size-sm {
        width: 70%;
    }

    div#myHeader {
        padding-bottom: 2%;
    }

    .logo {
        padding: 1.9%;
        padding-left: 3%;
    }
}

@media screen and (min-width: 320px) and (max-width: 576px) {
    .container {
        padding: 0 20px;
    }

    .logo {
        padding: 3% 4% !important;
    }

    #hamburger {
        padding: 4% 4% !important;
    }
}

@media screen and (min-width: 300px) and (max-width: 992px) {}

/* just for main site footer section ---starts---*/


@media only screen and (max-width:1399px) {

    li.ct-icon-list {
        text-decoration: none;
        padding-bottom: 14%;
        font-size: 17px;
        font-weight: 300;
        font-family: 'Chakra Petch';
        color: #fff;
        font-style: normal;
    }

    li.ct-social-icon-list {
        text-decoration: none;
        padding-bottom: 42px;
        font-size: 17px;
        font-weight: 300;
        font-family: 'Chakra Petch';
        color: #fff;
        font-style: normal;
    }
}


/* just for main site footer section ---ends---*/

@media only screen and (max-width: 1200px) {
    .main-container {
        margin: 7rem 0 auto;
    }

    .grid-container-contact-us {
        grid-template-columns: auto 28% 30% auto;
    }


}

@media only screen and (max-width:1199px) {

    li.ct-icon-list {
        text-decoration: none;
        padding-bottom: 19%;
        font-size: 14px;
        font-weight: 300;
        font-family: 'Chakra Petch';
        color: #fff;
        font-style: normal;
    }
}

@media only screen and (max-width:1023px) {

    /* .main-container {
        max-width: 720px;
        padding: 0 12px;
    } */

}

/* just for main site footer section ---starts---*/

@media only screen and (max-width:992px) {

    .row.section-22 {
        padding-top: 15%;
        display: none;
    }

    .row.section-22-mb {
        padding-top: 15%;
        display: block;
    }

    /* main site footer ----starts----- */

    .grid-container-contact-us {
        display: none;
        grid-template-columns: auto 35% 30% auto;
        grid-gap: 0%;
        padding: 10px !important;
    }

    .grid-container-contact-us-mb {
        display: grid;
        grid-template-columns: auto;
        grid-gap: 0%;
    }

    .col-item1-ct-us {
        padding: 1% 0 3% 0;
    }

    .col-item1-ct-us {
        padding: 1% 2% 3% 1%;
    }

    .col-item3-ct-us {
        padding: 2% 2%;
    }

    ul.contact-icon-ul-list {
        display: flex;
        flex-wrap: wrap;
        row-gap: 14px;
    }

    li.ct-icon-list {
        width: 100%;
        padding-bottom: 0;
    }

    li.ct-icon-list:not(:last-child, :nth-last-child(2)) {
        width: 50%;
        text-align: left;
    }

    li.ct-icon-list:nth-child(2) {
        text-align: left;
    }

    li.ct-icon-list:nth-child(3) {
        text-align: left;
    }

    li.ct-icon-list:last-child {
        text-align: left;
    }

    li.ct-icon-list {
        text-decoration: none;
        padding-bottom: 1%;
        font-size: 20px;
        font-weight: 300;
        font-family: 'Chakra Petch';
        color: #fff;
        font-style: normal;
    }

    ul.contact-social-icon-ul-list {
        display: flex;
        justify-content: space-evenly;
        padding: 0;
        margin: 0px;
    }

    li.ct-social-icon-list {
        text-decoration: none;
        padding: 1% 4% 5% 4%;
    }

    i.fa-solid.fa-phone.icon-space {
        padding-right: 10px;
    }

    i.icon-space {
        padding-right: 10px;
    }

    .grid-container-two-contact-us-mb-two {
        display: grid !important;
        grid-template-columns: auto;
        grid-gap: 0%;
        padding: 10px;
        padding-top: 5%;
        width: 100%;
    }

    /* main site footer -----ends----- */
}

/* just for main site footer section ---ends---*/



@media only screen and (max-width:767px) {

    .blog-cards-row {
        margin-top: unset;
    }

    .blog-subtitle {
        font-size: 28px;
    }

    /* overlay for hamburger menu */

    #overlay ul.menu li a {
        text-decoration: none;
        color: #fafafa;
        font-size: clamp(1rem, 7vw, 10rem);
        margin: 0%;
        opacity: 0.5;
        transition: opacity 0.2s linear;
        font-family: 'Chakra Petch';
        font-weight: 600;
        transform: translateY(-100%);
    }

    #overlay ul.menu li span {
        font-family: 'Chakra Petch';
        font-size: 12px;
    }

    h1 {
        font-size: 18px;
    }

    .author {
        gap: 5px;
        margin: 10px 0;
    }

    .author img {
        border-radius: 50%;
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }

    .meta {
        font-size: 12px;

    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    /* main site footer -----starts---- */

    li.ct-icon-list {
        text-decoration: none;
        padding-bottom: 1%;
        font-size: 15px;
    }

    li.ct-social-icon-list {
        text-decoration: none;

        font-size: 18px;
    }

    i.icon-space {
        padding-right: 10px;
    }

}


/* just for main site footer section ---starts---*/


@media only screen and (max-width:579px) {
    li.ct-icon-list {
        text-decoration: none;
        padding-bottom: 1%;
        font-size: 10px;
    }

    .col-item3-ct-us {
        padding: 2% 0%;
    }

    li.ct-social-icon-list {
        text-decoration: none;
        font-size: 14px;
    }

    i.icon-space {
        padding-right: 10px;
    }
}

@media only screen and (max-width:449px) {
    .contact-us-title-grid-content-heading {
        font-size: 65px;
    }

    .col-item2-ct-us {
        padding: 1%;
    }

    li.ct-icon-list.text-left-end {
        text-align: end;
    }

    li.ct-icon-list:not(:last-child, :nth-last-child(2)) {
        width: 50%;
        text-align: left;
    }

    li.ct-icon-list:last-child {
        text-align: left;
    }

    li.ct-icon-list:nth-child(3) {
        text-align: left;
    }

    li.ct-icon-list:nth-child(2) {
        text-align: left;
    }
}


@media only screen and (min-width:320px) and (max-width:992px) {
    .nav {
        width: 100%;
        background-color: transparent;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: sticky;
        top: 0;
        z-index: 3;
    }

    .logo {
        padding: 2%;
    }
}

@media screen and (min-width:320px) and (max-width:767px) {
    .navbar-brand {
        margin: 0;
        padding: 4% 1%;
    }

    img.navbar-logo-size-sm {
        width: 70%;
    }

    div#myHeader {
        padding-bottom: 2%;
    }

    .logo {
        padding: 1.9%;
        padding-left: 3%;
    }
}

@media screen and (min-width: 320px) and (max-width: 576px) {
    .container {
        padding: 0 20px;
    }

    .logo {
        padding: 3% 4% !important;
    }

    #hamburger {
        padding: 4% 4% !important;
    }
}

@media screen and (min-width: 300px) and (max-width: 992px) {
    li.ct-icon-list:nth-child(2) {
        text-align: left;
    }

    li.ct-icon-list {
        text-decoration: none;
        padding-bottom: 1%;
        font-size: 20px;
        font-weight: 300;
        font-family: 'Chakra Petch';
        color: #fff;
        font-style: normal;
    }

    .nav {
        background-color: #000 !important;
    }

    body.contact .nav {
        background-color: #0000004f !important;
    }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
    li.ct-icon-list {
        text-decoration: none;
        padding-bottom: 1%;
        font-size: 15px;
    }
}

@media screen and (min-width: 320px) and (max-width: 576px) {
    li.ct-icon-list {
        text-decoration: none;
        padding-bottom: 1%;
        font-size: 10px;
    }
}



@media only screen and (max-width:424px) {
    /* .main-container {
        max-width: 400px;
        padding: 0 27px;
    } */

    .contact-us-title-grid-content-heading {
        font-size: 65px;
    }

    li.ct-icon-list {
        text-decoration: none;
        padding-bottom: 1%;
        font-size: 9px;
    }

    li.ct-social-icon-list {
        text-decoration: none;
        font-size: 12px;
    }

    .grid-container-two-contact-us-mb-two {
        padding: 5% 0 0 0;
    }
}

@media screen and (min-width:320px) and (max-width:418px) {
    img.cst-mobile-anms-sm-img {
        width: 50%;
        padding-top: 8px;
    }

    .row.section-16-mobile {
        padding-top: 5%;
    }

    .contact-us-title-grid-content-heading {
        font-size: 65px;
    }

    li.ct-icon-list {
        text-decoration: none;
        padding-bottom: 1%;
        font-size: 9px;
    }

    li.ct-social-icon-list {
        text-decoration: none;
        font-size: 12px;
    }

    .grid-container-two-contact-us-mb-two {
        padding: 5% 0 0 0;
    }

    .col-item5-ct-us {
        padding: 0 2%;
    }

}

@media only screen and (max-width:320px) {}