* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: unset !important; /* Disable default smooth scrolling in Bootstrap */
}

@font-face {
    font-family: 'GothamHTF-Black';
    src: url('../fonts/GOTHAMHTF-BLACK.OTF') format('opentype');
}

@font-face {
    font-family: 'GothamHTF-Book';
    src: url('../fonts/GOTHAMHTF-BOOK.OTF') format('opentype');
}

@font-face {
    font-family: 'GothamHTF-Light';
    src: url('../fonts/GOTHAMHTF-LIGHT.OTF') format('opentype');
}

@font-face {
    font-family: 'GothamHTF-Medium';
    src: url('../fonts/GOTHAMHTF-MEDIUM.OTF') format('opentype');
}

@font-face {
    font-family: 'Montserrat-Medium';
    src: url('../fonts/MONTSERRAT-MEDIUM_0.TTF') format('truetype');
}

@font-face {
    font-family: 'Montserrat-Thin';
    src: url('../fonts/MONTSERRAT-THIN_0.TTF') format('truetype');
}

body {
    font-family: 'Montserrat-Medium', sans-serif;
    background-color: #000;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'GothamHTF-Black', sans-serif;
}

/* Navbar Start */
nav {
    padding: 0.7rem 0 !important;
    background: #000 !important;
    font-family: 'GothamHTF-Black', sans-serif !important;
    font-size: calc(0.2em + 1vw);
}
nav .navbar-brand img{
    width: calc(110px + 1vw);
}
.navbar-nav .nav-link,
.navbar-brand,
.navbar-toggler-icon {
    color: #f6f6f6 !important;
}
.navbar-nav .nav-link:hover {
    color: #fff !important;
}
.navbar-nav .nav-link.active {
    color: #fff !important;
    font-weight: 700 !important;
    border: none;
    outline: none;
}
/* Dropdown Styling */
.navbar-nav .dropdown-menu {
    background-color: #000;
    box-shadow: rgba(215, 215, 215, 0.453) 0px 3px 8px;
}
.navbar-nav .dropdown-item {
    color: #dadada !important;
}
.navbar-nav .dropdown-item:hover {
    background-color: #000;
    color: #fff !important;
}
.product-dropdown-menu{
    width: 10% !important;
    margin-left: -2rem !important;
}
.product-dropdown-menu a{
    font-family: 'Montserrat-Medium', sans-serif;
    font-size: calc(0.35rem + 0.5vw);
    font-weight: 700;
}

/* Custom dropdown menu width */
.custom-dropdown-menu {
    width: 17.5rem !important;
    margin-left: -4.7rem;
}
.custom-dropdown-menu h6 {
    font-size: calc(0.1em + 1vw);
}
.custom-dropdown-menu input {
    width: 100%;
    color: #fff !important;
    font-weight: 300 !important;
    background-color: #2e2e2e;
    font-size: calc(0.04em + 1vw);
    border: none;
    outline: none;
}
.custom-dropdown-menu input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
.custom-dropdown-menu button {
    background-color: #c9c9c9;
    font-weight: 500 !important;
    font-size: calc(0.04em + 1vw);
}
.custom-dropdown-menu button:hover {
    background-color: #f2f2f2;
}

.navbar-toggler{
    border: none;
}
.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none;
    box-shadow: none;
}

@media screen and (max-width: 768px) {
    nav {
        z-index: 100 !important;
        padding: 0.6rem 0 !important;
    }
    nav .navbar-brand img {
        width: 100px;
    }
    .navbar-nav .nav-link {
        font-size: calc(1.3em + 1vw);
        margin-left: 0.7rem;
    }
    /* .navbar-collapse {
        text-align: center;
    } */
    .navbar-nav .dropdown-menu {
        box-shadow: rgba(215, 215, 215, 0.489) 0px 2px 5px;
        margin-bottom: 0.5rem;
    }
    .custom-dropdown-menu {
        width: 100% !important;
        margin-left: 0;
    }
    .custom-dropdown-menu h6 {
        font-size: calc(0.7em + 1vw);
    }
    .custom-dropdown-menu input {
        font-size: calc(0.6em + 1vw);
    }
    .custom-dropdown-menu button {
        font-size: calc(0.6em + 1vw);
    }
    .product-dropdown-menu{
        width: 100% !important;
        margin-left: 0 !important;
    }
    .product-dropdown-menu a{
        font-size: calc(0.58rem + 0.5vw);
    }
}

@media screen and (min-width: 1400px) {
    .product-dropdown-menu{
        width: 11rem !important;
        margin-left: -2rem !important;
    }
    .product-dropdown-menu a{
        font-size: calc(0.37rem + 0.5vw);
    }
}
/* Navbar End */

/* Banner Start */
.banner{
    display: flex;
    justify-content: space-between;
    padding: 0rem 2% 2rem 2%;
}
.banner-left{
    width: 60%;
    padding: 1rem 0;
}
.banner-right{
    width: 35%;
    padding: 1rem 0;
}

.bannerImageSwiper {
    width: 100%;
    padding: 2rem 0 8rem 0;
}
.bannerImageSwiper .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 272px;
    height: 272px;
}
.bannerImageSwiper .swiper-slide img {
    display: block;
    width: 100%;
    filter: grayscale(100%);
    transition: all 0.2s ease;
}
.bannerImageSwiper .swiper-slide img:hover {
    filter: grayscale(0);
}
/* .bannerImageSwiper .swiper-slide img.grayscale {
    filter: grayscale(0);
} */
.bannerImageSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 3px;
    background-color: rgb(96, 96, 96);
    border-radius: 5px;
    opacity: 1;
    transition: all 0.4s ease-in-out;
}
.bannerImageSwiper .swiper-pagination-bullet-active {
    background-color: #fff;
    width: 25px;
}

.bannerTextSwiper{
    width: 100%;
    height: 100%;
}
.bannerTextSwiper .swiper-slide{
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}
.bannerTextSwiper .swiper-slide h1{
    font-family: 'Montserrat-Medium', sans-serif;
    font-size: calc(2.5rem + 1vw);
    margin: 0;
}
.bannerTextSwiper .swiper-slide h2{
    font-family: 'Montserrat-Thin', sans-serif;
    font-size: calc(2.5rem + 1vw);
    text-shadow: 1px 3px 5px rgb(255, 255, 255);
    margin: 0;
}
.bannerTextSwiper .swiper-slide p{
    font-family: 'GothamHTF-Light', sans-serif;
    font-size: calc(0.4rem + 0.5vw);
    margin-top: 2rem;
}
.bannerTextSwiper .swiper-slide .banner-text-head{
    position: relative;
}
.bannerTextSwiper .swiper-slide .banner-text-head .line{
    width: 45%;
    height: 2.5px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    right: 0;
}

/* For 110% in 15 inch screens */
@media screen and (min-width: 1260px) and (max-width: 1399px){
    .banner{
        padding: 2.5rem 2% 3.5rem 2%;
    }
    .bannerTextSwiper .swiper-slide .banner-text-head .line{
        width: 35%;
        right: 2px;
    }
}

/* For 100% in 15 inch screens */
@media screen and (min-width: 1400px) {
    .banner{
        padding: 2rem 1.5% 4rem 1.5%;
    }
    .bannerImageSwiper {
        padding: 2rem 0 9rem 0;
    }
    .bannerImageSwiper .swiper-slide {
        width: 325px;
        height: 325px;
    }
    .bannerTextSwiper .swiper-slide .banner-text-head .line{
        width: 35%;
        right: 2px;
        bottom: -5px;
    }
    .bannerTextSwiper .swiper-slide h1{
        font-size: calc(2.8rem + 1vw);
    }
    .bannerTextSwiper .swiper-slide h2{
        font-size: calc(2.8rem + 1vw);
    }
    .bannerTextSwiper .swiper-slide p{
        font-size: calc(0.4rem + 0.5vw);
        margin-top: 2rem;
    }
}
/* For small screens */
@media screen and (max-width: 768px) {
    .banner{
        flex-direction: column;
        padding: 0 1rem;
        overflow: hidden;
    }
    .banner-left{
        width: 100%;
        padding: 0;
    }
    .banner-right{
        width: 100%;
        padding: 1rem 0 2rem 0;
    }
    .bannerImageSwiper {
        padding: 1rem 0 2.5rem 0;
    }
    .bannerImageSwiper .swiper-slide {
        width: 38%;
        height: auto;
    }
    .bannerImageSwiper .swiper-pagination-bullet {
        width: 9px;
    }
    .bannerImageSwiper .swiper-pagination-bullet-active {
        width: 17px;
    }
    .bannerTextSwiper .swiper-slide h1{
        font-size: calc(2.1rem + 1vw);
    }
    .bannerTextSwiper .swiper-slide h2{
        font-size: calc(2.1rem + 1vw);
    }
    .bannerTextSwiper .swiper-slide p{
        font-size: calc(0.6rem + 0.5vw);
        margin-top: 1.8rem;
    }
    .bannerTextSwiper .swiper-slide .banner-text-head .line{
        width: 40%;
        bottom: -3px;
    }
}
/* Banner End */

/* About Start */
.about{
    position: relative;
    overflow: hidden;
}
.about #about-bg{
    width: 100%;
}
.about-layer{
    position: absolute;
    top: 0;
    width: 50%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    padding: 0 0 0 5%;
    overflow: hidden;
}
.about-layer .about-desc{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -1.2rem;
    position: relative;
}
.about-layer .about-desc-left{
    width: 20%;
}
.about-layer .about-desc-right{
    width: 78%;
}
.about-layer h1{
    font-family: 'Montserrat-Medium', sans-serif;
    font-size: calc(3.7rem + 1vw);
    margin: 0;
}
.about-layer h2{
    font-family: 'Montserrat-Thin', sans-serif;
    font-size: calc(4rem + 1vw);
    margin: 0;
}
.about-layer p{
    font-family: 'GothamHTF-Light', sans-serif;
    font-size: calc(0.3rem + 0.5vw);
    margin-top: 2rem;
}
.about-layer .about-desc .line{
    width: 25%;
    height: 2.5px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: -10%;
}
.about .about-lamp{
    position: absolute;
    right: -25px;
    top: 3rem;
    width: 100%;
}
.about .about-lamp img{
    width: 100%;
}
.about #lamp-2 img{
    margin-top: 1px;
}
.about .lamp-box.hide{
    display: none;
}

/* For 110% in 15 inch screens */
@media screen and (min-width: 1260px) and (max-width: 1399px){
    .about-layer{
        padding: 0 0 0 8%;
    }
    .about-layer .about-desc .line{
        width: 40%;
        left: -25%;
    }
    .about #lamp-2 img{
        margin-top: 1.5px;
    }
}

/* For 100% in 15 inch screens */
@media screen and (min-width: 1400px) {
    .about-layer{
        padding: 0 0 0 7.5%;
    }
    .about-layer .about-desc .line{
        width: 40%;
        left: -25%;
    }
    .about-layer p{
        font-size: calc(0.38rem + 0.5vw);
        margin-top: 2rem;
    }
    .about #lamp-2 img{
        margin-top: 1.5px;
    }
}

/* For small screens */
@media screen and (max-width: 768px) {
    .about-layer{
        width: 68%;
        padding: 0 0 0 1rem;
    }
    .about-layer .about-desc{
        margin-top: 0.2rem;
        align-items: start;
    }
    .about-layer .about-desc-left{
        width: 20%;
    }
    .about-layer .about-desc-right{
        width: 78%;
    }
    .about-layer h1{
        font-size: calc(2rem + 1vw);
        margin-top: 1rem;
    }
    .about-layer h2{
        font-size: calc(2rem + 1vw);
        margin-top: -0.7rem;
    }
    .about-layer p{
        font-size: calc(0.47rem + 0.5vw);
        margin-top: 0;
    }
    .about-layer .about-desc .line{
        bottom: 2.3rem;
        left: -9%;
    }
    .about .about-lamp{
        top: 0;
    }
    .about #lamp-2 img{
        margin-top: 0.5px;
    }
}
/* About End */

/* Our Mission Start */
.our-mission-bg{
    overflow: hidden;
    background-image: url('../images/mission-bg.webp');
    background-size: cover;
    width: 100%;
}
.mission-cards-row{
    padding: calc(7rem + 1vw) 2% calc(4.5rem + 1vw) 2%;
    color: #fff;
    display: flex;
    justify-content: space-between;
}
.mission-card{
    width: 26%;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.mission-card .card-body{
    background: linear-gradient(to right, #282727 10%, rgba(46, 46, 46, 0) 100%); 
    padding: 0 1.2rem 0 1.2rem;
    margin-top: -0.7rem;
}
.mission-card h1{
    font-family: 'Montserrat-Medium', sans-serif;
    font-size: calc(2.2rem + 1vw);
    margin: 0;
}
.mission-card h2{
    font-family: 'Montserrat-Thin', sans-serif;
    font-size: calc(2.2rem + 1vw);
    text-align: center;
    margin: 0;
    margin-top: -0.5rem;
}
.mission-card p{
    font-family: 'GothamHTF-Light', sans-serif;
    font-size: calc(0.4rem + 0.5vw);
    margin-top: 1.5rem;
    /* word-break: break-all; */
    text-align: justify;
    hyphens: auto;
}
.mission-card p b{
    font-family: 'GothamHTF-Book', sans-serif;
    font-size: calc(0.35rem + 0.5vw);
}

/* For 110% in 15 inch screens */
@media screen and (min-width: 1260px) and (max-width: 1399px){
    .mission-cards-row{
        padding: calc(6rem + 1vw) 2% calc(5rem + 1vw) 2%;
    }
}

/* For 100% in 15 inch screens */
@media screen and (min-width: 1400px) {
    .mission-cards-row{
        padding: calc(6rem + 1vw) 1.5% calc(6rem + 1vw) 1.5%;
    }
}

/* For small screens */
@media screen and (max-width: 768px) {
    .our-mission-bg{
        background-position: center;
    }
    .mission-cards-row{
        padding: calc(2.5rem + 1vw) 1rem;
        flex-direction: column;

    }
    .mission-card{
        width: 100%;
        margin-bottom: 1rem;
    }
    .mission-card .card-body{
        padding: 0.4rem 1rem 0 1rem;
        margin-top: -0.3rem;
    }
    .mission-card h1{
        font-size: calc(1.8rem + 1vw);
    }
    .mission-card h2{
        font-size: calc(1.8rem + 1vw);
    }
    .mission-card p{
        font-size: calc(0.55rem + 0.5vw);
        margin-top: 0.5rem;
    }
    .mission-card p b{
        font-size: calc(0.55rem + 0.5vw);
    }
}
/* Our Mission End */

/* Gallery Start */
.gallery{
    padding: 0 2%;
    color: #fff;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}
.gallery-text{
    width: 63%;
    padding: 0 0 0.5rem 0;
    position: relative;
}
.gallery-text h1{
    font-size: calc(6rem + 1vw);
    text-transform: uppercase;
    background: url('../images/texture.png') repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin: 0;
}
.gallery-text h1.hiddenText{
    background: none;
    color: #000;
}
.gallery-text .two-boxes{
    position: relative;
    height: 7rem;
    margin-top: 6rem;
}
.gallery-text .two-boxes .box{
    background-color: #1f1f1f9f;
    width: 5rem;
    height: 5rem;
    position: absolute;
    right: 5rem;
    top: 1.3rem;
}
.gallery-text .two-boxes #box-1{
    right: 6.3rem;
    top: 0;
}
.gallery-text .line{
    width: 30%;
    height: 3px;
    background-color: #b5b5b5;
    position: absolute;
}
.gallery-text #line-1{
    top: 4rem;
    right: 0;
    width: 58%;
}
.gallery-text #line-2{
    bottom: 6.5rem;
    left: 9px;
}
.gallery-text button{
    margin-top: 2.5rem;
    margin-left: 9px;
    border: none;
    background: linear-gradient(to right, #282727 10%, rgba(46, 46, 46, 0) 100%); 
    color: #fff;
    padding: 0.5rem 2rem 0.5rem 1rem;
    font-family: 'GothamHTF-Light', sans-serif;
    font-size: calc(0.4rem + 0.5vw);
    transition: background 0.3s ease;
}
.gallery-text button:hover{
    background: linear-gradient(to right, #484848d3 2%, rgba(46, 46, 46, 0) 100%); 
}
.gallery-text button i{
    transform: rotate(90deg);
    margin-left: 5px;
    font-size: calc(0.3rem + 0.5vw);
}

.gallery-images{
    width: 37%;
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-bottom: 2rem;
}
.gallery-images-left,
.gallery-images-right {
    width: 49%;
    display: flex;
    flex-direction: column;
}
.gallery-images .img-box {
    margin-bottom: 0.5rem;
}
.gallery-images .img-box:last-child {
    margin-bottom: 0;
}
.gallery-images img{
    width: 100%;
    object-fit: cover;
    height: auto;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.gallery-images img.dark{
    filter: grayscale(100%);
}

/* For 110% in 15 inch screens */
@media screen and (min-width: 1260px) and (max-width: 1399px){
    .gallery-text #line-2{
        bottom: 6rem;
    }
}

/* For 100% in 15 inch screens */
@media screen and (min-width: 1400px) {
    .gallery-text{
        width: 59%;
    }
    .gallery-images{
        width: 41%;
    }
    .gallery-text .text-content{
        margin-top: 3rem;
    }
    .gallery-text h1{
        font-size: calc(6.5rem + 1vw);
    }
    .gallery-text #line-2{
        bottom: 10rem;
    }
    .gallery-text button{
        margin-top: 4rem;
        font-size: calc(0.45rem + 0.5vw);
    }
}

/* For small screens */
@media screen and (max-width: 768px) {
    .gallery{
        padding: 0 1rem;
        flex-direction: column;
    }
    .gallery-text{
        width: 100%;
        padding: 0;
    }
    .gallery-text .text-content{
        margin-top: -0.5rem;
    }
    .gallery-text h1{
        font-size: calc(3.2rem + 1vw);
        margin-top: -0.7rem;
    }
    .gallery-text .two-boxes{
        height: 3rem;
        margin-top: 2.5rem;
    }
    .gallery-text .two-boxes .box{
        width: 2.5rem;
        height: 2.5rem;
        right: 0;
        top: 0.5rem;
    }
    .gallery-text .two-boxes #box-1{
        right: 0.5rem;
        top: 0;
    }
    .gallery-text #line-1{
        top: 1.5rem;
    }
    .gallery-text #line-2{
        bottom: 2.9rem;
        left: 3px;
    }
    .gallery-text button{
        margin-top: 1.5rem;
        margin-left: 3px;
        padding: 0.4rem 1.5rem 0.4rem 0.8rem;
        font-size: calc(0.55rem + 0.5vw);
    }
    .gallery-text button i{
        font-size: calc(0.4rem + 0.5vw);
    }
    .gallery-images{
        width: 100%;
        margin-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    .gallery-images-left .img-box{
        margin-bottom: 0.45rem;
    }
}
/* Gallery End */

/* Contact Start */
.contact-bg{
    background-image: url('../images/contact-bg.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 4rem;
}
.contact{
    padding: 2.5rem 2% 5rem 2%;
}
.contact h3,
.contact h1,
.contact p{
    text-align: center;
    color: #fff;
}
.contact h3{
    font-family: 'GothamHTF-Book', sans-serif;
    font-size: calc(0.8rem + 1vw);
}
.contact h1{
    font-family: 'GothamHTF-Medium', sans-serif;
    font-size: calc(1.1rem + 1vw);
}
.contact p{
    font-family: 'GothamHTF-Book', sans-serif;
    font-size: calc(0.05rem + 1vw);
}
.contact form{
    width: 30%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
}
.contact form input,
.contact form textarea{
    width: 100%;
    padding: 0.7rem 1rem;
    color: #fff;
    margin-bottom: 1rem;
    background-color: #2727277a;
    border: none;
    outline: none;
    font-family: 'Montserrat-Thin', sans-serif;
    font-weight: 600 !important;
    font-size: calc(0.45rem + 0.5vw);
    transition: all 0.2s ease-in-out;
}
.contact form #nameInp{
    text-transform: capitalize;
}
.contact form input:focus,
.contact form textarea:focus{
    background-color: #3939397a;
}
.contact form input::placeholder,
.contact form textarea::placeholder{
    color: #9a9a9a;
}
.contact form textarea{
    min-height: 8rem;
    max-height: 8rem;
}
.contact form textarea::-webkit-scrollbar{
    display: none !important;
}
.contact form button{
    padding: 0.6rem 0;
    border: none;
    color: #fff;
    background-color: #25252566;
    transition: all 0.2s ease-in-out;
    font-size: calc(0.4rem + 0.5vw);
}
.contact form button:hover{
    background-color: #41414166;
}

/* For 100% in 15 inch screens */
@media screen and (min-width: 1400px) {
    .contact form button{
        font-size: calc(0.47rem + 0.5vw);
    }
}

/* For small screens */
@media screen and (max-width: 768px) {
    .contact-bg{
        margin-top: 0;
        background-position: bottom;
    }
    .contact{
        padding: 2.5rem 0 3rem 0;
    }
    .contact h3{
        font-size: calc(0.9rem + 1vw);
    }
    .contact h1{
        font-size: calc(1rem + 1vw);
    }
    .contact p{
        font-size: calc(0.6rem + 1vw);
    }
    .contact form{
        width: 85%;
    }
    .contact form input,
    .contact form textarea{
        padding: 0.7rem 0.8rem;
        margin-bottom: 0.7rem;
        font-size: calc(0.65rem + 0.5vw);
    }
    .contact form textarea{
        min-height: 6rem;
        max-height: 6rem;
    }
    .contact form button{
        font-size: calc(0.68rem + 0.5vw);
    }
}
/* Contact End */

/* Footer Start */
.footer-bg{
    background: linear-gradient(to right, #232323 1%, rgba(46, 46, 46, 0) 100%); 
}
footer{
    padding: 2rem 2%  1rem 2% !important;
    color: #fff;
}
.footer-top{
    display: flex;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #616161;
}
.footer-top-left{
    width: 70%;
}
.footer-top-left img{
    width: 100px;
}
.footer-top-left p{
    font-family: 'GothamHTF-Book', sans-serif;
    font-size: calc(0.04rem + 1vw);
    margin-top: 1rem;
}
.footer-top-right{
    width: 27%;
}
.footer-top-right h3{
    font-family: 'GothamHTF-Medium', sans-serif;
    font-size: calc(0.3rem + 1vw);
    margin-top: 1.2rem;
    margin-bottom: 1.5rem;
}
.contact-box{
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.3rem;
}
.contact-box .contact-icon{
    width: 6%;
}
.contact-box .contact-icon i{
    margin-top: 6px;
    font-size: 0.9rem;
}
.contact-box .contact-desc{
    width: 92%;
}
.contact-box .contact-desc p{
    font-family: 'Montserrat-Thin', sans-serif;
    font-weight: 600 !important;
    font-size: calc(0.4rem + 0.5vw);
    margin: 0;
}
.contact-box .contact-desc a{
    font-family: 'Montserrat-Thin', sans-serif;
    font-weight: 600 !important;
    font-size: calc(0.4rem + 0.5vw);
    text-decoration: none;
    color: #fff;
}
#contact-box-1 i{
    margin-top: 8px;
}
#contact-box-2 i{
    margin-top: 8px;
}
#contact-box-3 p{
    margin-top: 3px;
}

.footer-bottom{
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}
.footer-bottom .copyright{
    width: 50%;
}
.footer-bottom .copyright p{
    font-family: 'Montserrat-Thin', sans-serif;
    font-weight: 600 !important;
    font-size: calc(0.3rem + 0.5vw);
    margin: 0;
}
.footer-bottom .social-icons{
    width: 50%;
    display: flex;
    justify-content: end;
    gap: 10px;
}
.footer-bottom .social-icons a{
    color: #d5d5d5;
    border: 1px solid #fff;
    width: 2rem;
    height: 2rem;
    border-radius: 5px;
    line-height: 1.85rem;
    text-align: center;
    transition: all 0.1s ease-in-out;
}
.footer-bottom .social-icons a:hover{
    color: #fff;
}
.footer-bottom .social-icons i{
    font-size: calc(0.5rem + 0.5vw);
}

/* For 110% in 15 inch screens */
@media screen and (min-width: 1260px) and (max-width: 1399px){
    footer{
        padding: 2rem 0  1rem 0 !important;
    }
    #contact-box-1 i{
        margin-top: 7px;
    }
}

/* For 100% in 15 inch screens */
@media screen and (min-width: 1400px) {
    footer{
        padding: 3rem 1.5%  2rem 1.5% !important;
    }
    #contact-box-1 i{
        margin-top: 5px;
    }
}

/* For small screens */
@media screen and (max-width: 768px) {
    footer{
        padding: 1.2rem 1rem  1rem 1rem !important;
    }
    .footer-top{
        flex-direction: column;
        padding-bottom: 1.5rem;
    }
    .footer-top-left{
        width: 100%;
    }
    .footer-top-left p{
        font-size: calc(0.5rem + 1vw);
    }
    .footer-top-right{
        width: 100%;
    }
    .footer-top-right h3{
        font-size: calc(0.8rem + 1vw);
        margin-top: 0.9rem;
        margin-bottom: 1rem;
    }
    .contact-box .contact-icon i{
        margin-top: 0;
        font-size: 0.9rem;
    }
    .contact-box .contact-desc p{
        font-size: calc(0.6rem + 0.5vw);
    }
    .contact-box .contact-desc a{
        font-size: calc(0.6rem + 0.5vw);
    }
    #contact-box-1 i{
        margin-top: 9px;
    }
    #contact-box-2 i{
        margin-top: 9px;
    }
    #contact-box-3 p{
        margin-top: 4px;
    }
    
    .footer-bottom{
        margin-top: 0.6rem;
    }
    .footer-bottom .copyright{
        width: 70%;
    }
    .footer-bottom .copyright p{
        font-size: calc(0.55rem + 0.5vw);
    }
    .footer-bottom .social-icons{
        width: 30%;
    }
    .footer-bottom .social-icons a{
        width: 1.7rem;
        height: 1.8rem;
        line-height: 1.7rem;
    }
    .footer-bottom .social-icons i{
        font-size: calc(0.8rem + 0.5vw);
    }
}
/* Footer End */

/* Back to Top Start */
.back-to-top #progress {
    position: fixed;
    bottom: -50px;
    right: 10px;
    height: 30px;
    width: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    background: conic-gradient(#fff 0%, #000 0%);
}
.back-to-top #progress.show {
    bottom: 15px;
}
.back-to-top #progress-value {
    display: block;
    height: 25px;
    width: 25px;
    background-color: #000;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 35px;
    color: #000000;
    margin-top: 2.5px;
    margin-left: 0.1px;
}
.back-to-top #progress-value i{
    font-size: calc(0.3rem + 0.5vw);
    color: #fff;
}

/* For 110% in 15 inch screens */
@media screen and (min-width: 1260px) and (max-width: 1399px){
    .back-to-top #progress-value {
        margin-top: 2.35px;
        margin-left: 0;
    }
}

/* For 100% in 15 inch screens */
@media screen and (min-width: 1400px) {
    .back-to-top #progress-value {
        margin-top: 2.82px;
        margin-left: 0.4px;
    }
}

/* For small screens */
@media screen and (max-width: 768px) {
    .back-to-top {
        display: none;
    }
}
/* Back to Top End */