/* 🌍 ===== Global Styles 🌍 ===== */

@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@200;300;400;500;600;700;800;900;1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800;900;1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nova+Square:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');

@font-face {
    font-family: 'Tesla';
    src: url(../fonts/TESLA.ttf);
}
@font-face {
    font-family: 'Drupadi';
    src: url(../fonts/Drupadi.ttf);
}
@font-face {
    font-family: 'Abnes';
    src: url(../fonts/abnes.ttf);
}
@font-face {
    font-family: 'Neonfuture';
    src: url(../fonts/Neonfuture.ttf);
}
@font-face {
    font-family: 'BahuausStd';
    src: url(../fonts/BauhausStd.ttf);
}
/* 🔄 Browser Default Style Reset 🔄 */
html {
  box-sizing: border-box;
  font-size: 15px;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Mulish', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

a {
  text-decoration: none;
}

ol,
ul {
  list-style: none;
  padding: 0;
}

img {
  width: 100%;
  height: auto;
}


/* 🔗 Global Variables Setup 🔗 */
:root {

    /* 🌈 Colors */
  --p-colr: #FF9304;
  --s-colr: #FFBD0E;
}


/*! Index Styling Starts Here !*/

body {
    background: #000000;
    /* background-image: url(../images/phyche02.jpg); */
    background-size: cover;
    background-position: center;
    color: #fff;
    /* border: 1px solid greenyellow; */
}
body::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}
body::-webkit-scrollbar-track {
    width: 10px;
    background: transparent;
}
body::-webkit-scrollbar-thumb {
    width: 10px;
    background: transparent;
}
/* Header Start */

header {
    /* border: 1px solid #ffffff80; */
    width: 100%;
    height: 12vh;
    display: flex;
    align-items: center;
    position: relative;
    /* overflow: hidden; */
    /* background-color: #12121280; */
    backdrop-filter: blur(5px);
}
header .logo_box {
    width: 20%;
    height: 100%;
    display: flex;
}
header .logo_box a {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* border: 1px solid red; */
}
header .logo_box a img {
    width: 80%;
}
header .logo_box a p {
    /* border: 1px solid red; */
    color: #ffffffbf;
    font-size: 1vw;
    padding-left: 1vw;
    /* font-weight: 800; */
    letter-spacing: 3px;
    font-family: 'Nova Square';
    text-transform: uppercase;
}

header .middle_box {
    /* border: 1px solid #ffffff80; */
    border-top: 0;
    border-bottom: 0;
    width: 80%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
header .middle_box .box {
    /* border: 1px solid red; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.7vw 1.2vw;
    border-radius: 0.7vw;
    color: #fff;
    font-size: 1.1vw;
    font-weight: 700;
    overflow: hidden;
    position: relative;
    margin: 0 1vw 0 0.25vw;
}
header .middle_box .box.call_btn {
    background-image: radial-gradient( circle farthest-corner at 10% 20%,  rgba(7,121,222,1) 0%, rgba(20,72,140,1) 90% );
}
header .middle_box .box.call_btn:hover {
    box-shadow: 0 0 15px rgb(7, 139, 255);
}

header .middle_box .box.email_btn {
    background-image: linear-gradient( 111.2deg,  rgba(232,5,5,1) 1.7%, rgba(245,49,191,1) 98.7% );
}
header .middle_box .box.email_btn:hover {
    box-shadow: 0 0 15px rgba(232,5,5,1);
}

header .middle_box .box.wp_btn {
    background-image: linear-gradient( 73.1deg,  rgba(34,126,34,1) 8%, rgba(99,162,17,1) 86.9% );
}
header .middle_box .box.wp_btn:hover {
    box-shadow: 0 0 15px rgb(31, 202, 31);
}

header .middle_box .box:before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    
}
header .middle_box .box:nth-child(1):before {
    animation: shiny-btn1 3s ease-in-out infinite;
}
header .middle_box .box:nth-child(2):before {
    animation: shiny-btn1 3s ease-in-out infinite;
    animation-delay: 0.5s;
}
header .middle_box .box:nth-child(3):before {
    animation: shiny-btn1 3s ease-in-out infinite;
    animation-delay: 1s;
}
@keyframes shiny-btn1 {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
header .middle_box .box img {
    width: 1.5vw;
    margin-right: 1vw;
}





header .menu_box .menu_btn:hover > span::after {
    width: 30px;
}
header .menu_box .menu_btn:hover > span::before {
    width: 40px;
}

header  .side_menu {
    border: 1px solid greenyellow;
    background-color: #1d1d1d80;
    backdrop-filter: blur(5px);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: 99;
    transition: 0.3s ease-in-out all;
}
header  .side_menu.closed {
    left: 100%;
    opacity: 0;
}
header  .side_menu.open {
    left: 0%;
    opacity: 1;
}
.close_btn_box {
    border: 1px solid red;
    width: 5vw;
    height: 3vw;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    margin: 2vw;
}
/* Header End */

/* Main Start */
main {
    /* border: 1px solid red; */
    width: 100%;
}
main .cards_container {
    width: 100%;
    display: flex;
    padding: 1vw 0.5vw;
  }
  
main .cards_container .card {
    /* border: 1px solid magenta; */
    width: 25%;
    height: 88vh;
    border-radius: 1vw;
    margin: 0 0.5vw;
    transition: 0.3s ease all;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

main .cards_container .card.expand{
    width: 85%;
}

/* main .cards_container .card:hover > .overlay {
    opacity: 0;
    display: none;
} */

main .cards_container .card .overlay {
    position: absolute;
    left: 0;
    top: 0;
    /* background-color: #1d1d1d; */
    height: 100%;
    width: 100%;
    z-index: 3;
    transition: all 0.35s ease-in-out;
    user-select: none;
    padding: 1vw;
    /* background: linear-gradient(45deg, #02ebad80 0%, #5a57fb80 50%); */
}
main .cards_container .card .overlay p {
    /* font-family: 'Manrope', sans-serif; */
    /* font-family: 'Tesla', sans-serif; */
    /* font-family: 'Drupadi', sans-serif; */
    /* font-family: 'Abnes', sans-serif; */
    /* font-family: 'Neonfuture', sans-serif; */
    font-family: 'Righteous';
    color: #ffffffef;
    /* font-size: 4vw;
    font-weight: 900; */
    font-size: 2.1vw;
    letter-spacing: 2px;
    font-weight: 600;
    position: absolute;
    top: 24.5vw;
    left: 8%;
    transform: translate(-50%, 0%) rotate(90deg);
    width: 50vw;
    /* border: 1px solid red; */
}
main .cards_container .card .overlay h1 {
    font-size: 10vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px #ffffffbf;
    font-family: 'Manrope', sans-serif;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-0%, 25%);
}
main .cards_container .card.expand .overlay {
    opacity: 0 !important;
    display: none;
}
main .cards_container .card.expand .overlay h1 {
    animation: down 0.3s ease;
}

@keyframes down {
    0% {
        transform: translate(-0%, 25%);
    }
    100% {
        transform: translate(-0%, 100%);
    }
}

main .cards_container .card .content {
    width: 100%;
    height: 100% ;
    background-size: cover;
    background-position: center;
    z-index: 1;
    position: relative;
    display: flex;
    align-items: flex-end;
}
/* main .cards_container .card:hover > .content .text_box {
    opacity: 1;
    z-index: 5;
} */
main .cards_container .card .content .text_box {
    /* border: 1px solid magenta; */
    width: 100%;
    height: 50%;
    /* background-color: #000000bf; */
    padding: 3vw;
    background: linear-gradient( to top,#000 10%, transparent );
    opacity: 0;
}
main .cards_container .card .content .text_box h2 {
    font-size: 4vw;
    font-weight: 400;
    font-family: 'BahuausStd';
}
main .cards_container .card .content .text_box p {
    font-size: 1.5vw;
    margin-bottom: 1vw;
}
main .cards_container .card .content .text_box img {
    width: 8%;
    border-radius: 50%;
    animation: wobble 0.8s infinite linear;
}
@keyframes wobble {
    0% {
    -webkit-transform: none;
    transform: none;
    }

    15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }

    30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }

    45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }

    60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }

    75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }

    100% {
    -webkit-transform: none;
    transform: none;
    }
}
/* main .cards_container .card .content .text_box img:hover {
    box-shadow: rgba(255, 255, 255, 0.933) 0px 0px 10px, rgba(255, 255, 255, 0.733) 0px 0px 15px, rgba(255, 255, 255, 0.433) 0px 0px 20px;
} */

main .cards_container .card.expand .text_box {
    opacity: 1;
}




/* main .cards_container .card#one .content {
    background-image: url(../images/img_01.jpg);
}
main .cards_container .card#two .content {
    background-image: url(../images/img_02.jpg);
}
main .cards_container .card#three .content {
    background-image: url(../images/img_03.jpg);
}
main .cards_container .card#four .content {
    background-image: url(../images/img_04.jpg);
} */


main .cards_container .card#one .overlay {
    background: linear-gradient(45deg, #02ebaddf 0%, #5a57fbdf 50%);
}
main .cards_container .card#two .overlay {
    background-image: linear-gradient(90deg, #FF9A8Baf 0%, #FF6A88af 55%, #FF99ACaf 100%);
}
main .cards_container .card#three .overlay {
    background-image: linear-gradient(180deg, #A9C9FFaf 0%, #FFBBECaf 100%);

}
main .cards_container .card#four .overlay {
    background-image: linear-gradient(45deg, #85FFBDaf 0%, #FFFB7Daf 100%);
}

/* Main End */


/* Modal Start*/
.modal_container {
    /* border: 1px solid red; */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1d1d1ddf;
    backdrop-filter: blur(4px);
    color: #fff;
    z-index: 999;
    display: none;
    /* display: flex; */
}
.modal_container.open {
    display: flex;
}
.modal_container .modal_box {
    width: 90%;
    height: 40vw;
    background-color: #121212;
    border-radius: 1vw;
    overflow-y: auto;
    position: relative;
}
.modal_container .modal_box .close_btn {
    /* border: 1px solid red; */
    width: 2.5vw;
    height: 2.5vw;
    border-radius: 50%;
    color: #1d1d1d;
    background-color: #fff;
    display: flex;
    padding-bottom: 0.2rem;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 1.5vw;
    right: 4vw;
    cursor: pointer;
    box-shadow: none;
    transition: 0.3s ease all;
}
.modal_container .modal_box .close_btn:hover {
    box-shadow: rgba(255, 255, 255, 0.933) 0px 0px 10px,
    rgba(255, 255, 255, 0.733) 0px 0px 15px,
    rgba(255, 255, 255, 0.433) 0px 0px 20px;
}
.modal_container .modal_box::-webkit-scrollbar {
    width: 5px;
}
.modal_container .modal_box::-webkit-scrollbar-track {
    width: 5px;
    background: transparent;
}
.modal_container .modal_box::-webkit-scrollbar-thumb {
    width: 4px;
    border-radius: 0.5vw;
    background: rgb(195, 0, 255);
}

.modal_body_about {
    /* border: 1px solid magenta; */
    width: 100%;
    padding: 1vw;
}
.modal_body_about .banner {
    /* border: 1px solid blue; */
    width: 100%;
    height: 30vw;
    border-radius: 0.7vw;
    overflow: hidden;
}
.modal_body_about .banner img {
    width: 100%;
    height: 100%;
}
.modal_body_about .description {
    /* border: 1px solid red; */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.modal_body_about .description .heading {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal_body_about .description h1 {
    text-align: center;
    display: flex;
    margin: 1vw 0;
    font-size: 2.5vw;
    font-weight: 800;
    background-image: linear-gradient( to right, #7b43ff 10%, #60ff6d 50%, #00ffff 80% );
    /* background: radial-gradient( circle farthest-corner at 10% 20%, rgba(255, 94, 247, 1) 17.8%, rgba(2, 245, 255, 1) 100.2% ); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'BahuausStd';
}
.modal_body_about .description p {
    font-size: 1.2vw;
    color: #ffffffbf;
    margin-bottom: 1vw;
    /* font-family: 'Drupadi'; */
}

.btns_box {
    /* border: 1px solid green; */
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 1vw;
}


.btn_d {
    background-image: linear-gradient(115deg, #4fcf70, #fad648, #a767e5, #12bcfe, #44ce7b);
    padding: 0.25vw;
    display: flex;
    border-radius: 0.25vw;
    cursor: pointer;
    color: #ffffffbf;
    transition: 0.3s ease all;
    animation: play 1.6s linear infinite; 
}
.btn_d:hover {
    color: #ffffff;
    animation: none;
}
.btn_d span {
    background-color: #121212;
    padding: 0.5vw 1vw;
    border-radius: 0.25vw;
}
.btn_d span h5 {
    font-size: 1.1vw;
    font-weight: 700;
}
@keyframes play {
    0% {
        background-position: 0px;
    }
    20% {
        background-position: -110px;
    }
    35% {
        background-position: -180px;
    }
    50% {
        background-position: -210px;
    }
    80% {
        background-position: -350px;
    }
    100% {
        background-position: -390px;
    }
}
/* Modal End*/


/* Gallery Modal Start  */
.modal_body_gallery {
    /* border: 1px solid red; */
    width: 100%;
}
.modal_body_gallery .tab_con {
    /* border: 1px solid greenyellow; */
    display: flex;
    flex-direction: column;
    align-items: center;
}
.modal_body_gallery .tabs {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 1vw;
} 
.modal_body_gallery .tablinks {
    cursor: pointer;
    padding: 0.5vw 1vw;
    border: 3px solid #21ff51bf;
    color: #21ff51;
    font-size: 1vw;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    border-radius: 0.3vw;
    margin: 0 0.5vw;
    background-color: #121212;
    outline: none;
}

.modal_body_gallery .tablinks.active {
    background-color: #21ff51;
    color: #121212;
}
  
.modal_body_gallery .tab-content {
    /* border: 1px solid magenta; */
    width: 100%;
    padding: 1vw;
    display: flex;
    flex-wrap: wrap;
}
.modal_body_gallery .tab-content a {
    /* border: 1px solid blue; */
    width: 23.8%;
    height: 14vw;
    border-radius: 0.3vw;
    margin: 0.5vw;
    overflow: hidden;
}
.modal_body_gallery .tab-content a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.modal_body_gallery .tab-content .youtube-link {
    /* border: 2px solid yellow; */
    position: relative;
    cursor: pointer;
    transition: 0.3s ease all;
}
.modal_body_gallery .tab-content .youtube-link:hover:after {
    content: '';
    width: 100%;
    height: 100%;
    background: #00000080;
    background-image: url(../images/play.png);
    background-size: 40%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}
.grtyoutube-popup {
    /* border: 1px solid greenyellow; */
    display: flex;
    justify-content: center;
    align-items: center;
}
.grtyoutube-popup .grtyoutube-popup-content {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
}
.grtyoutube-popup .grtyoutube-popup-content .grtyoutube-popup-close {
    /* border: 1px solid red; */
    background: url(../images/close.png);
    background-size: contain;
} 
/* Gallery Modal End */

.modal_body_about .btns_box iframe {
    height: 31vw;
    border-radius: 0.7vw;
}

/* Contact Modal Start */
.modal_body_contact {
    /* border: 1px solid red; */
}
.modal_body_contact .heading {
    /* border: 1px solid green; */
    width: 80%;
    padding: 0 1vw;
    margin-top: -1vw;
}
.modal_body_contact .heading h1 {
    font-size: 7vw;
    font-weight: 900;
    font-family: 'Mulish', sans-serif;
    text-shadow: 0 0 10px #ee00ce,
    0 0 15px #ee00ce80,
    0 0 25px #ee00ce10;
    -webkit-text-stroke: 2px #fff2fd;
    -webkit-text-fill-color: #121212;
}
.modal_body_contact .description {
    /* border: 1px solid magenta; */
    width: 100%;
    display: flex;
    padding: 0 1.5vw;
}
.modal_body_contact .description .left {
    /* border: 1px solid blue; */
    width: 40%;
    height: 31vw;
    border-radius: 0.5vw;
    overflow: hidden;
}
.modal_body_contact .description .left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.modal_body_contact .description .right {
    /* border: 1px solid red; */
    width: 60%;
    padding-top: 5vw;
}
.modal_body_contact .description .right .box {
    /* border: 1px solid yellow; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0vw;
}
.modal_body_contact .description .right .box a img {
    /* border: 1px solid red; */
    width: 3vw;
}
.modal_body_contact .description .right .box a {
    color: #fff;
    font-size: 1.5vw;
    margin-left: 1vw;
    font-weight: 700;
    margin-bottom: 0.25vw;
    transition: 0.3s ease all;
}
.modal_body_contact .description .right .box a:hover {
    text-shadow: 0 0 5px #ff00f2, 
    0 0 15px #ff00f2a8,
    0 0 25px #ff00f263;
}
.modal_body_contact .description .right .box a:hover ~  i {
    text-shadow: 0 0 5px #ff00f2, 
    0 0 15px #ff00f2a8,
    0 0 25px #ff00f263;
}

.modal_body_contact .description .right .box2 {
    /* border: 1px solid green; */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1vw;
}
.modal_body_contact .description .right .box2 p {
    font-size: 1.3vw;
    margin-bottom: 1vw;
}
.modal_body_contact .description .right .box2 .icons_box {
    /* border: 1px solid red; */
    width: 100%;
    display: flex;
    justify-content: center;
}
.modal_body_contact .description .right .box2 .icons_box a {
    width: 3vw;
    height: 3vw;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-content: center;
    transition: 0.3s ease all;
    margin: 0 0.5vw;
    cursor: pointer;
}
.modal_body_contact .description .right .box2 .icons_box a:hover {
    box-shadow: 0 0 5px #ff00f2, 
    0 0 15px #ff00f2a8,
    0 0 25px #ff00f263;
}

.chat-icon{
    position: fixed;
    bottom: 6vw;
    right: 10vw;
    animation: radar 3s linear infinite;
    z-index: 100;
    border-radius: 100%;
    display: flex;
    cursor: pointer;
  }
  .chat-icon .chat{
    display: flex;
    align-items: center;
  }
  .chat-icon .chat #icon{
    height: 4rem;
    width: 4rem;
  }
  @keyframes radar {
    0% {
    box-shadow: 0 0 #01d28e,0 0 #01d28e
    }

    40% {
    box-shadow: 0 0 0 50px #ff6d4a00,0 0 #01d28e
    }

    80% {
    box-shadow: 0 0 0 50px #ff6d4a00,0 0 0 30px #ff6d4a00
    }

    to {
    box-shadow: 0 0 #ff6d4a00,0 0 0 30px #ff6d4a00
    }
}



footer {
    /* border: 1px solid red; */
    display: flex;
    justify-content: center;
    padding: 0.5vw;
    backdrop-filter: blur(5px);
}
footer h1 {
    font-size: 1vw;
    color: #ffffffaf;
    font-weight: 400;
}
footer h1 a {
    font-size: 1vw;
    color: #ffffffaf;
    font-weight: 400;
    font-family: 'Tesla';
}
footer h1 a:hover {
    color: #ffffff;
}

/* Contact Modal End */

@media only screen and (max-width: 480px) {

    header {
        flex-direction: column;
        align-items: center;
    }
    header .logo_box {
        width: 100%;
    }
    header .logo_box a img {
        width: 40%;
    }
    header .logo_box a p {
        font-size: 2vw;
        padding-left: 3vw;
    }

    header .middle_box {
        /* border: 1px solid red; */
        /* visibility: hidden; */
        display: none;
        width: 95%;
        justify-content: space-between;
    }
    header .middle_box .box {
        /* border: 1px solid red; */
        padding: 2vw 2.5vw;
        border-radius: 1vw;
        color: #fff;
        font-size: 2.5vw;
        font-weight: 600;
        margin: 0;
    }
    header .middle_box .box img {
        width: 3vw;
        margin-right: 2vw;
    }


    main .cards_container .card .content .text_box {
        /* border: 1px solid magenta; */
        width: 100%;
        height: 50%;
        /* background-color: #000000bf; */
        padding: 3vw;
        background: linear-gradient( to top,#000000ef 10%,#000000bf 50%, #00000080 70%, transparent );
        opacity: 0;
    }
    main .cards_container .card.expand .text_box {
        opacity: 1;
    }
    main .cards_container .card .content .text_box h2 {
        font-size: 8vw;
    }
    main .cards_container .card .content .text_box p {
        font-size: 4vw;
        margin-top: 1vw;
        margin-bottom: 3vw;
    }
    main .cards_container .card .content .text_box img {
        width: 15%;
    }




    main .cards_container {
        /* border: 1px solid red; */
        flex-direction: column;
        align-items: center;
        padding: 2vw;
        padding-bottom: 0;
        height: 88vh;
    }

    main .cards_container .m-card {
        width: 100%;
        height: 21vh;
        border-radius: 1vw;
        margin-bottom: 2vw;
    }
    main .cards_container .m-card.expand {
        width: 100%;
        height: 80vh;
        border-radius: 1vw;
    }

    main .cards_container .card .overlay p {
        font-size: 6vw;
        line-height: 8vw;
        font-weight: 600;
        letter-spacing: 2px;
        top: 5vw;
        left: 5vw;
        transform: translate(0%, 0%) rotate(0deg);
        width: 50%;
        /* border: 1px solid red; */
    }
    main .cards_container .card .overlay h1 {
        font-size: 20vw;
        font-weight: 900;
        bottom: 0;
        left: 75%;
        transform: translate(-0%, 25%);
    }


    /* .modal_container {
        border: 1px solid red;
    } */
    .modal_container .modal_box {
        width: 95%;
        height: 90vh;
        border-radius: 2vw;
    }
    .modal_container .modal_box::-webkit-scrollbar {
        width: 2px;
    }
    .modal_container .modal_box .close_btn {
        /* border: 1px solid red; */
        width: 6vw;
        height: 6vw;
        top: 8vw;
        right: 2vw;
    }

    .modal_body_about {
        width: 100%;
        padding: 2vw;
    }
    .modal_body_about .description h1 {
        margin: 3vw 0;
        font-size: 5vw;
    }
    .modal_body_about .description p {
        font-size: 4vw;
        color: #ffffffbf;
        margin-bottom: 2vw;
        padding: 3vw;
    }
    .btn_d {
        background-image: linear-gradient(115deg, #4fcf70, #fad648, #a767e5, #12bcfe, #44ce7b);
        padding: 0.25vw;
        display: flex;
        border-radius: 1vw;
        cursor: pointer;
        color: #ffffffbf;
        transition: 0.3s ease all;
        animation: play 1.6s linear infinite; 
    }
    .btn_d span {
        background-color: #121212;
        padding: 2vw 3vw;
        border-radius: 1vw;
    }
    .btn_d span h5 {
        font-size: 3vw;
    }




    .modal_body_gallery .tabs {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 3vw;
    } 
    .modal_body_gallery .tablinks {
        padding: 2vw 3vw;
        font-size: 3vw;
        border-radius: 1vw;
        margin: 0 2vw;
    }
    .modal_body_gallery .tab-content {
        padding: 2vw;
    }
    .modal_body_gallery .tab-content a {
        /* border: 1px solid blue; */
        width: 32%;
        height: 20vw;
        border-radius: 0.3vw;
        margin: 0.5vw;
        overflow: hidden;
    }
    #lightbox {
        top: 30% !important;   
    }
    .modal_body_about .btns_box iframe {
        height: 80vh;
    }


    .modal_body_contact .heading {
        /* border: 1px solid green; */
        width: 100%;
        padding: 3vw;
        margin-top: 0vw;
    }
    .modal_body_contact .heading h1 {
        font-size: 9vw;
        text-align: center;
    }
    .modal_body_contact .description {
        /* border: 1px solid magenta; */
        width: 100%;
        display: flex;
        flex-direction: column;
        padding: 0 3vw;
    }
    .modal_body_contact .description .left {
        /* border: 1px solid blue; */
        width: 100%;
        height: 60vw;
        border-radius: 1vw;
        /* order: 2; */
    }
    .modal_body_contact .description .right {
        width: 100%;
        padding: 5vw 0;
    }
    .modal_body_contact .description .right .box {
        padding: 5vw 3vw;
    }
    .modal_body_contact .description .right .box a img {
        /* border: 1px solid red; */
        width: 7vw;
        padding-top: 1.4vw;
    }
    .modal_body_contact .description .right .box a {
        color: #ffffffdf;
        font-size: 5vw;
        margin-left: 3vw;
    }
    .modal_body_contact .description .right .box2 {
        /* border: 1px solid red; */
        margin-top: 10vw; 
    }
    .modal_body_contact .description .right .box2 p {
        font-size: 4vw;
        margin-bottom: 2vw;
    }
    .modal_body_contact .description .right .box2 .icons_box a {
        width: 10vw;
        height: 10vw;
        margin: 0 3vw;
    }

    .chat-icon{
        position: fixed;
        bottom: 20vw;
        right: 14vw;
        animation: radar 3s linear infinite;
        z-index: 100;
        border-radius: 100%;
        display: flex;
        cursor: pointer;
    }



    
    footer h1 {
        /* border: 1px solid greenyellow; */
        padding: 1vw 15vw;
        font-size: 3vw;
        text-align: center;
    }
    footer h1 a {
        font-size: 3vw;
    }
}



















