@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');
:root{
    --primary-bg-color: #ffffff;
    --secondary-bg-color: #f9f9f9;
    --navbar-bg-color: #ffffffa8;
    --primary-text-color: #1f1f1f;
    --secondary-text-color: #6f6f6f;
    --text-bg-color: #121212;
    --box-shadow-color: #0000001a;
    --svg-color: #1f1f1f;
    --accent-color: #d60017;
    --share-bg-color: #e1e1e1a8;
    --border-color: #eeeeee;
}
.dark-mode{
    --primary-bg-color: #1f1f1f;
    --secondary-bg-color: #262626;
    --navbar-bg-color: #1f1f1fa8;
    --primary-text-color: #ededed;
    --secondary-text-color: #ababab;
    --box-shadow-color: #00000052;
    --svg-color: #ededed;
    --share-bg-color: #363636a8;
    --border-color: #333;
}
/*Scrollbar stylize begin*/
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--accent-color);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}
/*Scrollbar stylize end*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: var(--primary-text-color);
    transition: color 0.4s ease;
}
html{
    overflow-y: overlay;
    scrollbar-width: thin;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
html:focus {
    outline: none !important;
}
body{
    background: var(--primary-bg-color);
    transition: background 0.4s ease;
}
strong{
    font-weight: 700;
    color: var(--accent-color);
}
main{
    min-height: calc(91.7vh - 130px);
}
nav{
    width: 100%;
    height: 80px;
    padding: 0 50px;
    position: fixed;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10000;
    background: var(--navbar-bg-color);
    backdrop-filter: blur(25px) saturate(250%);
    box-shadow: 0 10px 20px 0 var(--box-shadow-color);
    transition: all 0.4s ease;
}
.logo{
    width: 200px;
    margin-left: -18px;
}
a{
    text-decoration: none;
}
.nav-icons{
    display: inline-flex;
    margin-right: -9px;
}
.theme-icon{
    width: 40px;
    height: 40px;
    margin-right: 20px;
    background: var(--accent-color);
    -webkit-mask: url("/images/sun.svg") center / contain;
    mask: url("/images/sun.svg") center / contain;
    cursor: pointer;
}
.search-icon{
    width: 40px;
    height: 40px;
    margin-right: 20px;
    background: var(--accent-color);
    -webkit-mask: url("/images/search.svg") center / contain;
    mask: url("/images/search.svg") center / contain;
    cursor: pointer;
}
.menu-icon{
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    -webkit-mask: url("/images/menu.svg") center / contain;
    mask: url("/images/menu.svg") center / contain;
    cursor: pointer;
}
.close-icon{
    background: var(--accent-color);
    -webkit-mask: url("/images/close.svg") center / contain;
    mask: url("/images/close.svg") center / contain;
}
.search, .menu{
    width: 100vw;
    height: 100%;
    background: var(--primary-bg-color);
    position: fixed;
    top: -100vh;
    left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 50px;
    justify-content: center;
    transition: all 0.4s ease;
    transition-property: background, top;
}
.menu-items{
    margin: 10px 0;
    /*border-bottom: 2px solid var(--accent-color);*/
    width: calc(100vw - 100px);
}
.menu-items h1{
    margin-bottom: 20px;
    letter-spacing: -2px;
    font-weight: 700;
}
.show{
    top: 0;
}
.search input{
    width: calc(100vw - 100px);
    height: 80px;
    font-size: 60px;
    border: none;
    border-bottom: 2px solid var(--accent-color);
    outline: none;
    background: transparent;
    letter-spacing: -3px;
    background: url("/images/search.svg") no-repeat right;
    background-size: 40px 40px;
    color: var(--primary-text-color);
    transition: color 0.4s ease;
}
.accordian{
    width: calc(100vw - 100px);
    cursor: pointer;
}
.accordian h1{
    display: contents;
}
.districts-close{
    float: right;
    width: 20px;
    height: 20px;
    transform: rotate(-45deg);
    background: var(--accent-color);
    -webkit-mask: url(/images/close.svg) no-repeat center / contain;
    mask: url(/images/close.svg) no-repeat center / contain;
}
.acc-close{
    transform: rotate(0deg)!important;
}
.menu-districts{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin: 10px 0;
}
.menu-districts a{
    display: inline-block;
    width: 150px;
    padding: 4px;
    margin: 4px 0 8px;
    /*border: 2px solid var(--accent-color);
    border-radius: 15px;*/
}
.submitplace{
    background: var(--accent-color);
    color: white!important;
    display: inline-block;
    padding: 10px 40px;
    border-radius: 6px;
}
.social-media{
    position: absolute;
    bottom: 20px;
    right: 50px;
    display: flex;
}
.social-media div{
    width: 16px;
    height: 16px;
    margin-left: 10px;
    background: var(--svg-color);
    transition: background-color 0.4s ease;
}
.social-media div:hover{
    background: var(--accent-color);
}
.facebook{
    -webkit-mask: url(/images/facebook.svg) no-repeat center / contain;
    mask: url(/images/facebook.svg) no-repeat center / contain;
}
.instagram{
    -webkit-mask: url(/images/instagram.svg) no-repeat center / contain;
    mask: url(/images/instagram.svg) no-repeat center / contain;
}
.youtube{
    -webkit-mask: url(/images/youtube.svg) no-repeat center / contain;
    mask: url(/images/youtube.svg) no-repeat center / contain;
}
.version p{
    position: absolute;
    left: 50px;
    bottom: 20px;
    font-size: 10px;
}
.colored-dot{
    color: var(--accent-color);
    font-size: 16px;
}
.heading{
    padding-bottom: 10px;
    margin: 50px 50px 20px;
    border-bottom: 2px solid var(--accent-color);
}
.heading h1{
    font-weight: 700;
    letter-spacing: -2px;
    font-size: 28px;
    line-height: 28px;
    /*text-align: right;*/
}
.heading span{
    font-size: 17px;
    line-height: 10px;
    letter-spacing: -1px;
    padding-right: 4px;
}
.container{
    margin-top: 130px;
}
.container h2{
    margin: 30px 50px 10px;
    font-weight: 700;
    letter-spacing: -1px;
    font-size: 17px;
}
.heroSwiper{
    width: calc(100vw - 100px);
    height: calc(100vh - 180px);
    /*margin: auto;*/
    border-radius: 6px;
    background: center / cover;
    box-shadow: 0 10px 20px 0 var(--box-shadow-color);
    transition: box-shadow 0.4s ease;
}
.hero-slide{
    background: center / cover;
}

.hero-texts{
    position: absolute;
    bottom: 50px;
    padding: 0 50px;

}

.hero-texts p{
    color: white;
    /*letter-spacing: -1px;*/
}

.hero-texts h3{
    font-size: 60px;
    letter-spacing: -5px;
    line-height: 50px;
    color: white;
    font-weight: 700;
}

.index-heading{
    width: calc(100vw - 100px);
    margin: 30px auto 10px!important;
}

.districts-grid {
    padding: 0 50px;
    margin: auto;
    border-radius: 6px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 50px 50px;
    grid-auto-flow: row;
    grid-template-areas:
        "gr0 gr1 gr4"
        "gr2 gr3 gr4"
        "gr5 gr5 gr6"
        "gr7 gr8 gr9"
        "gr7 gr10 gr11"
        "gr12 gr13 gr13";
}

.gr0 { grid-area: gr0; }

.gr1 { grid-area: gr1; }

.gr2 { grid-area: gr2; }

.gr3 { grid-area: gr3; }

.gr4 { grid-area: gr4; height: calc((2 * (100vw - 200px) / 3) + 50px)!important }

.gr5 { grid-area: gr5; }

.gr6 { grid-area: gr6; }

.gr7 { grid-area: gr7; height: calc((2 * (100vw - 200px) / 3) + 50px)!important }

.gr8 { grid-area: gr8; }

.gr9 { grid-area: gr9; }

.gr10 { grid-area: gr10; }

.gr11 { grid-area: gr11; }

.gr12 { grid-area: gr12; }

.gr13 { grid-area: gr13; }

.gr{
    height: calc((100vw - 200px) / 3);
    background: center / cover;
    border-radius: 6px;
    box-shadow: 0 10px 20px 0 var(--box-shadow-color);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.4s ease;
}

.gr h3{
    position: absolute;
    bottom: 32px;
    left: 72px;
    color: white;
    font-size: 32px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -2px;
}

.gr h4 {
    position: absolute;
    left: 20px;
    bottom: 20px;
    font-size: 32px;
    border-right: 1px solid white;
    height: 50px;
    padding-right: 8px;
    font-weight: 700;
    letter-spacing: -3px;
    color: white;
}

.gr h4 span {
    font-size: 12px;
    letter-spacing: 0px;
    position: absolute;
    margin-top: -8px;
    color: white;
}

.kerala-part{
    color: white;
    position: absolute;
    bottom: 23px;
    left: 72px;
    font-size: 12px;
}

.distSwiper{
    width: calc((100vw - 130px) / 2);
    height: calc((100vw - 130px) / 2);
    flex-shrink: 0;
}
.distSwiperText{
    font-size: 60px!important;
    letter-spacing: -5px!important;
    line-height: 50px!important;
    font-weight: 700;
}

.thumbSwiper {
  height: 200px;
  padding-bottom: 40px;
  flex-shrink: 100 !important;
}
.swiper-slide-thumb{
    width: 160px;
    height: 160px;
    position: relative;
    border-radius: 6px;
    margin-bottom: 40px;
    background: center / cover;
    box-shadow: 0 10px 20px 0 var(--box-shadow-color);
    transition: box-shadow 0.4s ease;
}
.swiper-slide-districts{
    width: 340px;
    height: 160px;
    border-radius: 6px;
    background: center / cover;
    box-shadow: 0 10px 20px 0 var(--box-shadow-color);
    transition: box-shadow 0.4s ease;
}
.swiper-slide-districts:first-child{
    margin-left: 50px;
}
.swiper-slide-districts:last-child{
    margin-right: 50px;
}
.swiper-slide-thumb:first-child{
    margin-left: 50px;
}
.swiper-slide-thumb:last-child{
    margin-right: 50px;
}
.swiper-slide-thumb h3{
    font-size: 14px;
    font-weight: 400;
    margin-top: 6px;
    letter-spacing: -0.5px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: all 0.4s ease;
    transition-property: color, text-decoration-color;
}
.swiper-slide-thumb p{
    font-size: 12px;
    color: var(--secondary-text-color);
    transition: color 0.4s ease;
}
.swiper-slide-districts h3{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -1px;
}
.overlay{
    background: #00000020;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.1s;
}
.overlay-district{
    background: #00000020;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    opacity: 1;
}
.swiper-slide-thumb:hover .overlay{
    opacity: 1;
}
.gr:hover .overlay{
    opacity: 1;
}
.swiper-slide-thumb:hover h3{
    text-decoration-color: var(--secondary-text-color);
}

.content-container{
    padding: 0 50px;
    display: flex;
}
.image-container{
    position: relative;
    width: 340px;
    height: 340px;
    flex-shrink: 0;
    background: center / cover;
    box-shadow: 0 10px 20px 0 var(--box-shadow-color);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: box-shadow 0.4s ease;
}
.image-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s linear;
    position: absolute;
    left: 0;
    top: 0;
}
.image-container img.loaded{
    opacity: 1;
}
#image-placeholder{
    filter: blur(25px);
    transform: scale(1.1);
}
.favourite{
    width: 40px!important;
    height: 40px!important;
    background: var(--share-bg-color);
    border-radius: 50%;
    position: absolute;
    opacity: 1!important;
    left: calc(100% - 60px)!important;
    top: calc(100% - 60px)!important;
    cursor: pointer;
    transition: background 0.4s ease!important;
    backdrop-filter: blur(25px) saturate(250%);
}
.text-container{
    margin-left: 50px;
    width: 100%;
}
.title{
    padding: 0 0 10px;
    border-bottom: 2px solid var(--accent-color);
    margin-bottom: 20px;
}
.title h1{
    font-weight: 700;
    letter-spacing: -2px;
    font-size: 34px;
    line-height: 28px;
    text-align: right;
}
.title span{
    font-size: 17px;
    line-height: 10px;
    letter-spacing: 0;
    padding-right: 4px;
}
.text-container h2{
    margin: 0;
}
.text-container p{
    font-size: 14px;
    color: var(--secondary-text-color);
    /*letter-spacing: -0.5px;*/
    margin: 10px 0 0;
    transition: color 0.4s ease;
    line-height: 24px;
    /*text-align: justify;*/
}

.other-places a{
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.4s;
}

.other-places a:hover{
    text-decoration-color: #000000e0;
}

.information{
    display: flex;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 10px;
}
.information p, .information a{
    background: var(--accent-color);
    color:  white;
    padding: 6px;
    border-radius: 6px;
    color: white;
    font-size: 12px;
    display: flex;
    align-items: center;
    transition: background-color 0.4s ease;
}
.information p{
    margin: 0;
    background: var(--text-bg-color);
    transition: background 0.4s ease;
}
.information a:hover{
    background: var(--text-bg-color);
    transition: background 0.4s ease;
}
.information img{
    height: 20px;
    margin-right: 6px;
}
.information a img{
    margin-right: 0;
}
.transition-fade {
  transition: 1s;
  opacity: 1;
}

html.is-animating .transition-fade {
  opacity: 0;
}

.error404{
    font-size: 150px;
    text-align: center;
    letter-spacing: -20px;
}

.error{
    font-weight: 400!important;
}
.error a{
    font-weight: 700;
    text-decoration: underline;
}

.social-footer{
    font-size: 11px;
    margin: 0 50px 10px;
    color: var(--secondary-text-color);
    display: flex;
    transition: color 0.4s ease;
}

.social-footer span{
    display: block;
    width: 16px;
    height: 16px;
    margin: 0 10px;
    background: var(--svg-color);
    transition: background 0.4s ease;
}

.social-footer span:hover{
    background-color: var(--accent-color);
}

.privacy{
    font-size: 11px;
    margin: 0 50px 10px;
    color: var(--secondary-text-color);
    transition: color 0.4s ease;
}

.privacy a{
    color: var(--primary-text-color);
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: all 0.4s ease;
}

.privacy a:hover{
    text-decoration-color: var(--secondary-text-color);
}

.copyright{
    font-size: 11px;
    margin: 0 50px 40px;
    color: var(--secondary-text-color);
    transition: color 0.4s ease;
}

.copyright a{
    color: var(--primary-text-color);
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: all 0.4s ease;
}

.copyright a:hover{
    text-decoration-color: var(--secondary-text-color);
}

.swiper-pagination-bullet-active{
    background: white!important;
}

.search-container{
    display: flex;
    flex-wrap: wrap;
    margin: 0 50px;
    justify-content: left;
    gap: 24px;
}
.search-results{
    flex: 0 0 calc(10% - 10px);
    margin-right: 20px;
}
.search-img{
    border-radius: 6px;
    width: 160px;
    height: 160px;
    box-shadow: 0 10px 20px 0 var(--box-shadow-color);
    transition: box-shadow 0.4s ease;
}
.search-h3{
    font-size: 14px;
    font-weight: 400;
    margin-top: 6px;
    letter-spacing: -0.5px;
    width: 160px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: all 0.4s ease;
    transition-property: color, text-decoration-color;
}
.search-h3:hover {
    text-decoration-color: var(--secondary-text-color);
}
.search-p{
    font-size: 12px;
    color: var(--secondary-text-color);
}
.share-button{
    width: 40px;
    height: 40px;
    background: var(--share-bg-color);
    border-radius: 50%;
    position: fixed;
    right: 30px;
    bottom: 25px;
    z-index: 1;
    backdrop-filter: blur(25px) saturate(250%);
    cursor: pointer;
    transition: background 0.4s ease;
}
/*::-webkit-scrollbar{
    display: none;
}*/

::placeholder {
  color: var(--secondary-text-color);
  transition: color 0.4s ease;
}

.privacy-container{
    padding: 0 50px;
}

.privacy-container h1 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 20px;
    letter-spacing: -1px;
}

.privacy-container h2{
    margin: 0;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 700;
}
.privacy-container h3{
    margin: 0;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 700;
}
.privacy-container p, .privacy-container li{
    font-size: 12px;
}

.modal {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: white;
    padding: 20px 40px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
    justify-content: space-between;
    align-items: center;
    border-radius: 6px;
}

.modal p {
    color: white;
    font-size: 14px;
}

#install-button{
    background: white;
    padding: 10px;
    color: #1f1f1f;
    font-size: 14px;
    margin-left: 30px;
    border-radius: 6px;
    font-weight: bold;
    white-space: nowrap;
    cursor: pointer;
    outline: none;
    border: none;
}

#modal-close-button {
    width: 20px;
    position: absolute;
    top: 4px;
    right: 4px;
    border: none;
    cursor: pointer;
    filter: invert(95%) sepia(100%) saturate(0%) hue-rotate(326deg) brightness(111%) contrast(101%);
}

/* clears the ‘X’ from Internet Explorer */
input[type=search]::-ms-clear { display: none; width : 0; height: 0; }
input[type=search]::-ms-reveal { display: none; width : 0; height: 0; }
/* clears the ‘X’ from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { display: none; }

.features-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    padding: 0 50px;
}
.feature{
    padding: 50px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
}
.feature h3{
    margin-top: 10px;
    font-weight: 700;
    letter-spacing: -1px;
    font-size: 17px;
    color: var(--primary-text-color);
}
.feature p{
    font-size: 14px;
    color: var(--secondary-text-color);
    margin: 10px 0 0;
    transition: color 0.4s ease;
    line-height: 24px;
}
.home-heading{
    font-weight: 700;
    letter-spacing: -2px;
    line-height:28px;
    font-size: 34px;
    margin: 75px 0 20px 50px;
}

@media only screen and (max-width: 768px) {
    nav{
        height: 60px;
        padding: 0 30px;
    }
    .logo{
        width: 150px;
        margin-left: -14px;
    }
    .nav-icons{
        margin-right: -6px;
    }
    .theme-icon, .search-icon, .menu-icon{
        width: 30px;
        height: 30px;
        margin-right: 0
    }
    .menu, .search{
        padding: 0 30px;
    }
    .search input{
        font-size: 40px;
        width:  calc(100vw - 60px);
        letter-spacing: -2px;
    }
    .menu-items{
        width:  calc(100vw - 60px);
    }
    .menu-items h1{
        font-size: 18px;
        letter-spacing: -1px;
    }
    .menu-districts a{
        width: 110px;
        font-size: 12px;
        padding: 2px
    }
    .social-media{
        right: 30px;
    }
    .version p{
        left: 30px
    }
    .colored-dot{
        color: var(--accent-color);
        font-size: 12px;
    }
    .heading {
        margin: 50px 30px 20px;
    }
    .empty-list {
        margin-left: 30px!important;
        margin-right: 30px!important;
    }
    .mylist-places{
        margin-left: 30px!important;
    }
    .container{
        margin-top: 90px;
    }
    .heroSwiper{
        width: calc(100vw - 60px);
        height: calc(100vw * 5 / 4);
    }
    .hero-texts{
        padding: 0 30px;
    }
    .hero-texts h3{
        font-size: 60px;
        letter-spacing: -5px;
        line-height: 50px;
    }
    .index-heading{
        width: calc(100vw - 60px);
    }
    .districts-grid{
        padding: 0 30px;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
        gap: 30px 30px;
        grid-template-areas:
            "gr0 gr2"
            "gr1 gr2"
            "gr3 gr3"
            "gr4 gr5"
            "gr4 gr6"
            "gr7 gr9"
            "gr8 gr9"
            "gr10 gr10"
            "gr11 gr12"
            "gr11 gr13";
    }
    .gr, .gr7{
        height: calc((100vw - 90px) / 2)!important;
    }
    .gr2, .gr4, .gr9, .gr11{
        height: calc((2 * (100vw - 90px) / 2) + 30px)!important;
    }
    .gr h3{
        font-size: 16px;
        left: 20px;
        bottom: 32px;
        letter-spacing: -1px;
    }
    .gr h4{
        bottom: 64px;
        border-right: none;
        border-bottom: 1px solid white;
    }
    .kerala-part{
        font-size: 9px;
        letter-spacing: 0;
        left: 20px;
        bottom: 20px;
    }
    .district-row a{
        font-size: 14px;
    }
    .container h2{
        margin-left: 30px;
    }
    .swiper-slide-thumb:first-child {
        margin-left: 30px;
    }
    .swiper-slide-thumb:last-child{
        margin-right: 30px;
    }
    .swiper-slide-districts:first-child {
        margin-left: 30px;
    }
    .swiper-slide-districts:last-child{
        margin-right: 30px;
    }
    .content-container{
        padding: 0 30px;
        flex-direction: column;
        align-items: center;
    }
    .distSwiper, .image-container{
        width: calc(100vw - 60px);
        height: calc(100vw - 60px);
    }
    .distSwiperText {
        font-size: 60px!important;
        letter-spacing: -5px!important;
        line-height: 50px!important;
    }
    .title h1{
        text-align: left;
    }
    .text-container h2{
        margin-left: 0;
    }
    .text-container{
        margin-left: 0;
        margin-top: 20px;
    }
    .search-container{
        margin: 0 30px;
    }
    .social-footer{
        margin-left: 30px
    }
    .privacy{
        margin-left: 30px
    }
    .copyright{
        margin-left: 30px
    }
    .share-button{
        right: 10px;
    }
    .privacy-container{
        padding: 0 30px;
    }
    .privacy-container h2{
        margin-left: 0
    }
    .modal {
        width: calc(100vw - 60px);
        padding: 20px 20px
    }
    .features-grid{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: auto;
        grid-column-gap: 30px;
        grid-row-gap: 30px;
        padding: 0 30px;
    }
    .feature{
        padding: 30px;
    }
    .home-heading{
        margin: 50px 0 20px 30px;
    }
}



