/* 
---------------------------------------------
banner
--------------------------------------------- 
*/

#bg-video {
    display: block;
    max-width: 100%;
    margin-top: 70px;
    filter: drop-shadow(2px 4px 6px black);
}
/* @media(max-width:800px){
    #bg-video{
        margin-top: 6%;
    }
} */
#bg-video::-webkit-media-controls {
    display: none !important;
}

.video-overlay {
    position: absolute;
    background-color: rgba(31, 39, 43, 0.75);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
}




@media (max-width: 1200px) {

    .main-banner .caption h6 {
        font-weight: 500;
    }

    .main-banner .caption h2 {
        font-size: 36px;
    }

}


* {
    font-weight: bold;
    margin: 0;
    padding: 0;
    height: auto;
     width:auto ; 

}

body {
    min-height: 100vh;
    place-items: center;
    background: white;
    font-size: 20px;
    width: fit-content;
}
html{
    height: fit-content;
    overflow: scroll;
    width: auto;
}


/* 
---------------------------------------------
NavBar Start
--------------------------------------------- 
*/
#logo {
    margin: 0px 10px;
}

.container-fluid {
    box-shadow: 0px 5px 10px black;
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
    background-color: whitesmoke;
    position: fixed;
    top: inherit;
}

.navbar-nav {
    color: white;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    font-size: 40px;
    color: #b50dd1;
    cursor: not-allowed;
}

#navbarSupportedContent li a:hover {
    color: red;
}

.navbar {
    position: fixed;
    z-index: 11;
    top: 0;
    margin: 0px;
    padding: 0px;
    width: -webkit-fill-available;
    left: 0;
}

.nav-item {
    padding: 0px 25px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: white;
}

#topbotton {
    margin: 0px 20px;
}

/* 
---------------------------------------------
NavBar End
--------------------------------------------- 
*/
/*
---------------------------------------------
Containt Start
---------------------------------------------
*/
.containts {
    text-align: center;
    font-size: medium;
    top: 20px;
    justify-items: center;
    display: grid;
}

.containts p {
        margin-top: 0;
    margin-bottom: 1rem;
    text-align: center;
    padding: 10px 20px;
    width: auto;
    font-size: 20px;
}

.containts h2 {
    font-size: 3rem;
    font-family: fantasy;
    filter: drop-shadow(2px 4px 6px #c38f4a);
    color: #005051;
}

.articles {
   width: auto;
    text-align: center;
    display: block;
    font-size: 10px;
}

/* 
---------------------------------------------
Services Start
--------------------------------------------- 
*/
.services {
    padding: 0;
    margin-top: auto;
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
}

.newcards h2 {
    font-size: 3rem;
    font-family: fantasy;
    filter: drop-shadow(2px 4px 6px #c38f4a);
    color: #005051;
}

.container {
    display: table;
    grid-template-columns: 3fr 3fr 2fr;
    grid-template-rows: 1fr 1fr 1fr;
    table-layout: auto;
}

/* 
---------------------------------------------
Services End
--------------------------------------------- 
*/
/* 
---------------------------------------------
Card Start
--------------------------------------------- 
*/
@import url("https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&subset=devanagari,latin-ext");

.cardes {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin: auto;
    width: 1200px;
    text-align: center;
}

.newcards {
    display: contents;
    width: 1200px;
}

@media (min-width:300px) and (max-width:1200px) {
    .cardes {
        width: -webkit-fill-available;
        display: grid;
        grid-template-columns: 0fr;
        justify-items: center;
        justify-content: center;
    }
}

.single-card {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 40px;
    transition: all 0.5s;
    background: #010615;
    display: inline-block;
}

.single-card:hover {
    height: 400px;
}

.single-card:hover .content {
    opacity: 1;
}

.single-card:hover .card-img img {
    opacity: 1;
}

.single-card::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: white;
    z-index: -1;
    background: linear-gradient(45deg, #ff05ac 0%, #ff05ac 18%, aqua 100%);

}

.single-card::after {
    content: "#";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: white;
    z-index: -2;
    filter: blur(40px);
    background: linear-gradient(45deg, #ff05ac 0%, #ff05ac 18%, aqua 100%);
    /* w3c */
}

.single-card .card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: fit-content;
    padding: 10px;
    box-sizing: border-box;
}

.single-card .card-img img {
    max-width: 100%;
    transition: 0.5s;
    height: 280px;
}

.single-card .content {
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transition: 0.5s;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0px 0px 0px 0px;
    color: white;
    background-color: #005051;
    width: inherit;
}

.single-card .content .title {
    font-size: 24px;
}

.title button {
    width: -webkit-fill-available;
    margin-bottom: 5px;
    margin: 3px;
}

@media only screen and (max-width: 1200px) {

    .card-img {
        width: 100%;

    }

}

/* 
---------------------------------------------
Card End
--------------------------------------------- 
*/
/* cards  */
.card {
    float: left;
    width: 30%;
    padding: 10px;
    margin: 10px;
    height: fit-content;
}

.card-img-top {
    border-radius: 100% 100% 100%;
}

@media only screen and (max-width: 1200px) {
    .card {
        width: 100%;

    }

}




.card button {
    width: -webkit-fill-available;
    margin-bottom: 5px;
}

h1 {
    text-align: center;
    font-family: Broadway;
    color: bisque;
}

.article p {
    padding: 10px 10px;
}


/* 
---------------------------------------------
AboutUs  Start
--------------------------------------------- 
*/
.about {
    padding: 130px 0;
    background-image: url(images/aboutus/aboutimg4.png);
    background-size: cover;
    aspect-ratio: 3/2;
    color: black;
    filter: drop-shadow(2px 4px 6px black);
    width: 100vw;
}
@media(min-width:300px)and(max-width:500px)
{
    .about{
        height: fit-content;
    }
}
.about .heading h2 {
    font-size: 45px;
    font-weight: 700;
    margin: 0;
    padding: 0;

}

.about .heading h2 span {
    color: #F24259;
}

.about .heading p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
    color: white;
    margin: 20px 0 60px;
    padding: 0;
}

.about h3 {
    font-size: xx-large;
    font-weight: 700;
    margin: 0;
    padding: 0;
    margin-top: revert;
    margin-bottom: 40px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.about p {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.7;
    color: white;
    margin: 20px 0 15px;
    padding: 0;
}

.about h4 {
    font-size: 15px;
    font-weight: 500;
    margin: 8px 0;
}

.about h4 i {
    color: #F24259;
    margin-right: 10px;
}


/* 
---------------------------------------------
AboutUs  End
--------------------------------------------- 
*/


    .image {
        height: 100vh;
        border-radius: none;
    }

    .content {
        height: 100vh;
        border-radius: none;
    }

    .content h2 {
        font-size: 20px;
        margin-top: 50px;
    }

    .content span {
        margin: 20px 0;
    }

    .content p {
        font-size: 14px;
    }

    .links li a {
        font-size: 14px;
    }

    .links {
        margin: 5px 0;
    }

    .links li {
        padding: 6px 10px;
    }

    .icons li i {
        font-size: 15px;
    }


.credit {
    text-align: center;
    color: #000;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.credit a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}


/* The element to apply the animation to */
.carousel-item p {
    position: absolute;
    color: white;
    z-index: 5;
    top: 150px;
    left: 150px;
}


/* 
---------------------------------------------
Gallary Start
--------------------------------------------- 
*/

.container {
    height: 100%;
    width: 100%;
}

.p {
    position: absolute;
    font-size: 2rem;
    font-family: sans-serif;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: wrap;
}

@media  (min-width: 300px) {
    .p {
        font-size: 3rem;
    }
}

@media only screen and (min-width: 300px) {
    .p {
        font-size: 5rem;
    }
}

.p1 {
    text-shadow: 1px 1px 1px black, -1px -1px 1px black;
    color: white;
}

.p2 {
    color: #005051;
    filter: drop-shadow(2px 4px 6px #c38f4a);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    animation: text-animation 3s ease-in-out forwards alternate infinite;
    text-shadow: 1px 1px 1px black, -1px -1px 1px black;
}

.p3 {
    height: 20%;
    color: transparent;
}

@keyframes text-animation {
    from {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }

    to {
        clip-path: polygon(0 0, 0% 1%, 0% 100%, 0% 100%);
    }
}


/* end new h1 gallary  */

.gallary {
    background-color: darkslategray;
    border-radius: 21px;
    height: fit-content;
    width: fit-content;
}

#Gallary h2 {
    font-size: 3rem;
    font-family: fantasy;
    filter: drop-shadow(2px 4px 6px #c38f4a);
    color: #005051;
    text-align: center;
}

figure {
    position: sticky;
    top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
}

figure:nth-child(1) img {
    transform: scale(0.6) rotate(-12.5deg);
}

figure:nth-child(2) img {
    transform: scale(0.6) rotate(-9.7222222222deg);
}

figure:nth-child(3) img {
    transform: scale(0.6) rotate(-6.9444444444deg);
}

figure:nth-child(4) img {
    transform: scale(0.6) rotate(-4.1666666667deg);
}

figure:nth-child(5) img {
    transform: scale(0.6) rotate(-1.3888888889deg);
}

figure:nth-child(6) img {
    transform: scale(0.6) rotate(1.3888888889deg);
}

figure:nth-child(7) img {
    transform: scale(0.6) rotate(4.1666666667deg);
}

figure:nth-child(8) img {
    transform: scale(0.6) rotate(6.9444444444deg);
}

figure:nth-child(9) img {
    transform: scale(0.6) rotate(9.7222222222deg);
}

figure:nth-child(10) img {
    transform: scale(0.6) rotate(12.5deg);
}

figure img {
    width: 100vmin;
    height: 100vmin;
    border-radius: 3px;
}

/* 
---------------------------------------------
Gallary End
--------------------------------------------- 
*/

/* 
---------------------------------------------
ContactUs 1 Start
--------------------------------------------- 
*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800,900|Rubik:300,400,500,700,900');
/* 
* {

    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
} */

div {
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: -webkit-center;
}
.button {
    display: inline-block;
    background: #3692e5;
    border-radius: 5px;
    height: 48px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.button a {
    display: block;
    font-size: 18px;
    font-weight: 400;
    line-height: 48px;
    color: #FFFFFF;
    padding-left: 35px;
    padding-right: 35px;
}

.button:hover {
    opacity: 0.8;
}

.contact_info {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 80px;
    text-align-last: justify;
    filter: drop-shadow(2px 4px 6px black);
}

.contact_info_item {
    width: calc((100% - 60px) / 3);
    height: 100px;
    border: solid 1px #e8e8e8;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
    padding-left: 32px;
    padding-right: 15px;
}

.contact_info_image {
    width: 35px;
    height: 35px;
    text-align: center;
}

.contact_info_image img {
    max-width: 100%;
}

.contact_info_content {
    padding-left: 17px;
}

.contact_info_title {
    font-weight: 500;
}

.contact_info_text {
    font-size: 11px;
    color: rgba(0, 0, 0, 0.5);
    text-align: left;
}

#cnt {

    justify-content: flex-start !important;
    background-color: white;
    color: black;
}

/* 
---------------------------------------------
ContactUs 1 End
--------------------------------------------- 
*/

/* 
---------------------------------------------
ContactUs 2 Start
--------------------------------------------- 
*/

.contact_form {
    padding-top: 85px;
}

.contact_form_title {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 37px;
}

.contact_form_inputs {
    margin-bottom: 30px;
}

.input_field {
    width: calc((100% - 60px) / 2);
    height: 50px;
    padding-left: 25px;
    border: solid 1px #e5e5e5;
    border-radius: 5px;
    outline: none;
    color: #0e8ce4;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.input_field:focus,
.text_field:focus {
    border-color: #b2b2b2;
}

.input_field:hover,
.text_field:hover {
    border-color: #b2b2b2;
}

.input_field::-webkit-input-placeholder,
.text_field::-webkit-input-placeholder {
    font-size: 16px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.3);
}

.input_field:-moz-placeholder,
.text_field:-moz-placeholder {
    font-size: 16px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.3);
}

.input_field::-moz-placeholder,
.text_field::-moz-placeholder {
    font-size: 16px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.3);
}

.input_field:-ms-input-placeholder,
.text_field:-ms-input-placeholder {
    font-size: 16px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.3);
}

.input_field::input-placeholder,
.text_field::input-placeholder {
    font-size: 16px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.3);
}

.text_field {
    width: 100%;
    height: 160px;
    padding-left: 25px;
    padding-top: 15px;
    border: solid 1px #e5e5e5;
    border-radius: 5px;
    color: #0e8ce4;
    outline: none;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.contact_submit_button {
    padding-left: 35px;
    padding-right: 35px;
    color: #FFFFFF;
    font-size: 18px;
    border: none;
    outline: none;
    cursor: pointer;
    margin-top: 24px;
}

.panel {
    width: 100%;
    height: 50px;
    background: #fafafa;
    margin-top: 120px;
}


@media (max-width: 1200px) {

    .contact_info_item {
        width: 100%;
        margin-bottom: 30px;
    }

    .contact_info_item:last-child {
        margin-bottom: 0px;
    }

}

@media (max-width: 1200px) {

    .input_field {
        margin-bottom: 30px;
        width: 100%;
    }

    .input_field:last-child {
        margin-bottom: 0px;
    }
}


@media (max-width: 1200px) {

    .contact_submit_button {
        font-size: 13px;
        padding-left: 25px;
        padding-right: 25px;
    }

}

/* 
---------------------------------------------
ContactUs 2  End 
--------------------------------------------- 
*/
/* *************************** */
/* Footer  */
/* *************************** */

.my-5 {
    margin-top: 0rem !important;
    margin-bottom: 3rem !important;

}


/** end footer **/


/*- - ener page css--*/

.inner_page header {
    box-shadow: 0 -3px 12px 0px #26cc35;
    position: inherit;
    background: #fff;
}

.inner_page .testimonial {
    margin-top: 90px;
}

/* New Gallary  */


#Gallary1{
    display: flex;
    overflow: hidden;
    height: 70vh;
    background: #111;
    margin-top: 65px;
    filter: drop-shadow(2px 4px 6px black);
}
/* @media(max-width:500px){
    #Gallary1{
        display: inline-flex;
    overflow: hidden;
    height: 26vh;
    background: #111;
    margin-top: 65px;
    filter: drop-shadow(2px 4px 6px black);
    } 
} */
@media(min-width:300px) and (max-width:800px){
    #Gallary1{
    display: inline-flex;
    overflow: hidden;
    height: 26vh;
    background: #111;
    margin-top: 65px;
    filter: drop-shadow(2px 4px 6px black);
    }
}

header:hover img {
    opacity: 0.5;
}

header img {
    max-width: 100%;
    vertical-align: middle;
    border: 1px solid black;
    box-sizing: border-box;
    transition: opacity 0.2s;
}

header img:hover {
    opacity: 1;
}

header .column {
    -webkit-animation: var(--animation, none) 16s infinite linear;
    animation: var(--animation, none) 16s infinite linear;
}

header .column:hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

header .column:nth-of-type(odd) {
    align-self: flex-end;
    --direction: 50%;
}

@-webkit-keyframes slide {
    to {
        transform: translateY(var(--direction, -50%));
    }
}

@keyframes slide {
    to {
        transform: translateY(var(--direction, -50%));
    }
}

h1 {
    color: #000;
}

/* 

  /* ----------------------------OR New Naviga button -------------------------------- */

/* 
========================
      BUTTON ONE
========================
*/
.btn-one {
    color: #0c0c0b;
    transition: all 0.3s;
    position: relative;
}

.btn-one span {
    transition: all 0.3s;
}

.btn-one::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: all 0.3s;
    border-top-width: 2px;
    border-bottom-width: 2px;
    border-top-style: solid;
    border-bottom-style: solid;
    border-top-color: rgba(240, 24, 24, 0.5);
    border-bottom-color: rgba(228, 48, 48, 0.5);
    transform: scale(0.1, 1);
}

.btn-one:hover span {
    letter-spacing: 2px;
    color: #c38f4a;
}

.btn-one:hover::before {
    opacity: 1;
    transform: scale(1, 1);
}

.btn-one::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 0.3s;
}

.btn-one:hover::after {
    opacity: 0;
    transform: scale(0.1, 1);
}

.btn {
    width: auto;
    font-size: medium;
    height: auto;
    color: #c38f4a;
    cursor: pointer;
    margin: 2px
}

@import 'https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300';



/* chat box code */


@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');


#click {
    display: none;
}

label {
    position: fixed;
    right: 30px;
    bottom: 20px;
    height: 55px;
    width: 55px;
    background: -webkit-linear-gradient(left, #1d4081, #3256dd);
    text-align: center;
    line-height: 55px;
    border-radius: 50px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;

}

label i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

label i.fas {
    opacity: 0;
    pointer-events: none;
}

#click:checked~label i.fas {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) rotate(180deg);
}

#click:checked~label i.fab {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) rotate(180deg);
}

.wrapper {
    z-index: 1000;
    position: fixed;
    right: 30px;
    max-width: 500px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}




#click:checked~.wrapper {
    opacity: 1;
    bottom: 85px;
    pointer-events: auto;
}

.wrapper .head-text {
    line-height: 60px;
    color: #fff;
    border-radius: 15px 15px 0 0;
    padding: 0 20px;
    font-weight: 500;
    font-size: 20px;
    background: -webkit-linear-gradient(left, #3451a0, #3256dd);
}

.wrapper .chat-box {
    padding: 20px;
    width: 100%;
}

.chat-box .desc-text {
    color: #515365;
    text-align: center;
    line-height: 25px;
    font-size: 17px;
    font-weight: 500;
}

.chat-box form {
    padding: 10px 15px;
    margin: 20px 0;
    border-radius: 25px;
    border: 1px solid lightgrey;
}

.chat-box form .field {
    height: 50px;
    width: 100%;
    margin-top: 20px;
}

.chat-box form .field:last-child {
    margin-bottom: 15px;
}

form .field input,
form .field button,
form .textarea textarea {
    width: 100%;
    height: 100%;
    padding-left: 20px;
    border: 1px solid lightgrey;
    outline: none;
    border-radius: 25px;
    font-size: 16px;
    transition: all 0.3s ease;
}

form .field input:focus,
form .textarea textarea:focus {
    border-color: #3256dd;
}

form .field input::placeholder,
form .textarea textarea::placeholder {
    color: silver;
    transition: all 0.3s ease;
}

form .field input:focus::placeholder,
form .textarea textarea:focus::placeholder {
    color: lightgrey;
}

.chat-box form .textarea {
    height: 70px;
    width: 100%;
}

.chat-box form .textarea textarea {
    height: 100%;
    border-radius: 50px;
    resize: none;
    padding: 15px 20px;
    font-size: 16px;
}

.chat-box form .field button {
    border: none;
    outline: none;
    cursor: pointer;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    background: -webkit-linear-gradient(left, #101652, #3256dd);
    transition: all 0.3s ease;
}

.chat-box form .field button:active {
    transform: scale(0.97);
}





/* **************New Contact Us ****************** */

.contact_us_6 * {
    font-family: Nunito, sans-serif;
}

.contact_us_6 .text-blk {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    line-height: 25px;
}

.contact_us_6 .responsive-cell-block {
    min-height: 75px;
}

.contact_us_6 input:focus,
.contact_us_6 textarea:focus {
    outline-color: initial;
    outline-style: none;
    outline-width: initial;
}

.contact_us_6 .container-block {
    min-height: 75px;
    width: 100%;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    display: block;
}

.contact_us_6 .responsive-container-block {
    min-height: 75px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
}

.contact_us_6 .responsive-container-block.big-container {
    padding-top: 10px;
    padding-right: 30px;
    width: 35%;
    padding-bottom: 10px;
    padding-left: 30px;
    background-color: #03a9f4;
    position: absolute;
    height: 950px;
    right: 0px;
}

.contact_us_6 .responsive-container-block.container {
    position: relative;
    min-height: 75px;
    flex-direction: row;
    z-index: 2;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    padding-top: 0px;
    padding-right: 30px;
    padding-bottom: 0px;
    padding-left: 30px;
    max-width: 1320px;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
}

.contact_us_6 .container-block.form-wrapper {
    background-color: white;
    max-width: 450px;
    text-align: center;
    padding-top: 50px;
    padding-right: 40px;
    padding-bottom: 50px;
    padding-left: 40px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 20px 7px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    margin-top: 90px;
    margin-right: 0px;
    margin-bottom: 60px;
    margin-left: 0px;
}

.contact_us_6 .text-blk.contactus-head {
    font-size: 36px;
    line-height: 52px;
    font-weight: 900;
}

.contact_us_6 .text-blk.contactus-subhead {
    color: #9c9c9c;
    width: 300px;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
    display: none;
}

.contact_us_6 .responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12 {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 26px;
    margin-left: 0px;
    min-height: 50px;
}

.contact_us_6 .input {
    width: 100%;
    height: 50px;
    padding-top: 1px;
    padding-right: 15px;
    padding-bottom: 1px;
    padding-left: 15px;
    border-top-width: 2px;
    border-right-width: 2px;
    border-bottom-width: 2px;
    border-left-width: 2px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: #eeeeee;
    border-right-color: #eeeeee;
    border-bottom-color: #eeeeee;
    border-left-color: #eeeeee;
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    font-size: 16px;
    color: black;
}

.contact_us_6 .textinput {
    width: 98%;
    min-height: 150px;
    padding-top: 20px;
    padding-right: 15px;
    padding-bottom: 20px;
    padding-left: 15px;
    border-top-width: 2px;
    border-right-width: 2px;
    border-bottom-width: 2px;
    border-left-width: 2px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: #eeeeee;
    border-right-color: #eeeeee;
    border-bottom-color: #eeeeee;
    border-left-color: #eeeeee;
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    font-size: 16px;
}

.contact_us_6 .submit-btn {
    width: 98%;
    background-color: #03a9f4;
    height: 60px;
    font-size: 20px;
    font-weight: 700;
    color: white;
    border-top-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 0px;
    border-left-width: 0px;
    border-top-style: outset;
    border-right-style: outset;
    border-bottom-style: outset;
    border-left-style: outset;
    border-top-color: #767676;
    border-right-color: #767676;
    border-bottom-color: #767676;
    border-left-color: #767676;
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
}

.contact_us_6 .form-box {
    z-index: 2;
    margin-top: 0px;
    margin-right: 48px;
    margin-bottom: 0px;
    margin-left: 0px;
}

.contact_us_6 .text-blk.input-title {
    text-align: left;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 10px;
    font-size: 14px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
    color: #9c9c9c;
}

.contact_us_6 ::placeholder {
    color: #dadada;
}

.contact_us_6 .mob-text {
    display: block;
    text-align: left;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 25px;
    margin-left: 0px;
}

.contact_us_6 .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-12.wk-ipadp-12 {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-left: 0px;
    width: -webkit-fill-available;
}

.contact_us_6 .text-blk.contactus-subhead.color {
    color: white;
}

.contact_us_6 .map-box {
    max-width: 800px;
    max-height: 520px;
    width: 100%;
    height: 520px;
    background-size: cover;
    background-position-x: 50%;
    background-position-y: 50%;
}

.contact_us_6 .map-part {
    width: 100%;
    height: 100%;
}

.contact_us_6 .text-blk.map-contactus-head {
    font-weight: 900;
    font-size: 22px;
    line-height: 32px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
    color: #03a9f4;
}

.contact_us_6 .text-blk.map-contactus-subhead {
    max-width: 300px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-left: 0px;
    color: black;
    font-weight: 400;
}

.contact_us_6 .social-media-links.mob {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
    width: 230px;
    display: flex;
    justify-content: flex-start;
}

.contact_us_6 .link-img {
    width: 30px;
    height: 30px;
    margin-top: 0px;
    margin-right: 25px;
    margin-bottom: 0px;
    margin-left: 0px;
}

.contact_us_6 .link-img.image-block {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
}

.contact_us_6 .social-icon-link {
    margin: 0 25px 0 0;
    padding: 0 0 0 0;
}

#ContactUs h2 {
    font-size: 3rem;
    font-family: fantasy;
    filter: drop-shadow(2px 4px 6px #c38f4a);
    color: #005051;
    text-align: center;
}

@media (min-width:300px) {
    .iframe {
        width: auto;
        height: 70vh;
    }
}

@media (min-width:300px) and (max-width: 1024px) {
    .contact_us_6 .responsive-container-block.container {
        justify-content: center;
    }

    .contact_us_6 .map-box {
        /* position: absolute; */
        top: 0px;
        /* max-height: 320px; */
    }

    .contact_us_6 .map-box {
        max-width: 100%;
        width: 100%;
    }

    .contact_us_6 .responsive-container-block.container {
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
    }

    .iframe .contact_us_6 .map-part {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact_us_6 .container-block.form-wrapper {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
    }

    .contact_us_6 .mob-text {
        display: block;
    }

    .contact_us_6 .form-box {
        margin-top: 200px;
        margin-right: 60px;
        margin-bottom: 40px;
        margin-left: 0px;
    }

    .contact_us_6 .link-img {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
        display: flex;
        justify-content: space-evenly;
    }

    .contact_us_6 .social-media-links.mob {
        justify-content: space-evenly;
    }

    .contact_us_6 .responsive-cell-block.wk-desk-7.wk-ipadp-12.wk-tab-12.wk-mobile-12 {
        text-align: center;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        flex-direction: row;
    }

    .contact_us_6 .text-blk.contactus-subhead {
        display: block;
    }

    .contact_us_6 .mob-text {
        text-align: center;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
    }

    .contact_us_6 .responsive-container-block.container {
        flex-wrap: wrap;
    }

    .contact_us_6 .form-box {
        margin-top: 200px;
        margin-right: 0px;
        margin-bottom: 40px;
        margin-left: 0px;
    }
}
.contact_us_6 .form-box:hover{
    filter: drop-shadow(2px 4px 6px black);
}
#mapping{
    height: -webkit-fill-available;
    /* display: flex; */
}
@media (max-width: 1200px) {
    .contact_us_6 .submit-btn {
        width: 100%;
    }

    .contact_us_6 .input {
        width: 100%;
    }

    .contact_us_6 .textinput {
        width: 100%;
    }

    .contact_us_6 .container-block.form-wrapper {
        margin-top: 80px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
    }

    .contact_us_6 .text-blk.input-title {
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
    }

    .contact_us_6 .form-box {
        padding-top: 0px;
        padding-right: 20px;
        padding-bottom: 0px;
        padding-left: 20px;
    }

    .contact_us_6 .container-block.form-wrapper {
        padding-top: 50px;
        padding-right: 15px;
        padding-bottom: 50px;
        padding-left: 15px;
    }

    .contact_us_6 .mob-text {
        display: block;
    }

    .contact_us_6 .responsive-container-block.container {
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        display: block;
    }

    .contact_us_6 .form-box {
        margin-top: 200px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
    }

    .contact_us_6 .container-block.form-wrapper {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
    }

    .contact_us_6 .form-box {
        margin-top: 220px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
    }

    .contact_us_6 .form-box {
        margin-top: 220px;
        margin-right: 0px;
        margin-bottom: 50px;
        margin-left: 0px;
    }

    .contact_us_6 .text-blk.contactus-head {
        font-size: 32px;
        line-height: 40px;
    }
}

@media (max-width: 1200px) {
    .contact_us_6 .container-block.form-wrapper {
        padding-top: 50px;
        padding-right: 15px;
        padding-bottom: 50px;
        padding-left: 15px;
    }

    .contact_us_6 .container-block.form-wrapper {
        margin-top: 60px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
    }

    .contact_us_6 .responsive-cell-block.wk-ipadp-6.wk-tab-12.wk-mobile-12.wk-desk-6 {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 15px;
        margin-left: 0px;
    }

    .contact_us_6 .responsive-container-block {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 35px;
        margin-left: 0px;
    }

    .contact_us_6 .text-blk.input-title {
        font-size: 12px;
    }

    .contact_us_6 .text-blk.contactus-head {
        font-size: 26px;
        line-height: 35px;
    }

    .contact_us_6 .input {
        height: 45px;
    }
}






/* ****************Whatsaap bottom btn *********************** */

.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 35px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    z-index: 1200;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

.btn-whatsapp-pulse-border {
    bottom: 120px;
    right: 20px;
    animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 25px;
    border: 5px solid #25d366;
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }

    75% {
        padding: 50px;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}


/* --------------------Offer slider----------------- */
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #0970CF;
}

.owl-item > div img {
  align-self: center !important;
  transform: scale(0.9);
}
@media (max-width: 575.98px) {
  .owl-item > div img {
    transform: none;
  }
}

.owl-item.active.center > div img {
  align-self: center !important;
  transform: scale(1);
  border-radius: 10px;
}
@media (max-width: 575.98px) {
  .owl-item.active.center > div img {
    transform: none;
  }
}









/* ************************offer slide new end******************* */
/* @media(min-width:300px) and (max-width:1200px)
{
    .card5{
        display: grid;
    }
}

@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
@media(min-width:300px) and (max-width:1200px){
    .owl-item-active{
        width: 100px;
    }
}
@media(min-width:300px)and(max-width:500px)
{
    .owl-carousel .owl-stage-outer{
        position: relative;
        overflow: hidden;
        width: 100px;
        height: 450px;
    }
}
.cards3{
    display: grid;
    grid-template-columns:3fr;
}
@media(min-width:300px)and(max-width:500px){
    .cards3{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        width: 100%;
    }
}
.slider {
    max-width: 1100px;
    display: flex;
}

.slider .card5 {
    flex: 1;
    margin: 0 10px;
    background: #fff;
}

.slider .card5 .img {
    height: 200px;
    width: 100%;
}
@media(min-width:300px) and (max-width:1200px){
    .slider .card5 .img {
        width: 100%;
    }

}

.slider .card5 .img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.slider .card5 .content {
    padding: 10px 20px;
}

.card5 .content .title {
    font-size: 25px;
    font-weight: 600;
}

.card5 .content .sub-title {
    font-size: 20px;
    font-weight: 600;
    color: #e74c3c;
    line-height: 20px;
}

.card5 .content p {
    text-align: justify;
    margin: 10px 0;
}

.card5 .content .btn {
    display: block;
    text-align: left;
    margin: 10px 0;
}

.card5 .content .btn button {
    background: #e74c3c;
    color: #fff;
    border: none;
    outline: none;
    font-size: 17px;
    padding: 5px 8px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.2s;
}

.card5 .content .btn button:hover {
    transform: scale(0.9);
}

.owl-carousel .owl-stage-outer {
    height: 550px;
}


.container10offer {
    height: auto;
    width: auto;
    margin: 0;
    padding: 0;
} */

/* inside offer head  */
@import url("https://fonts.googleapis.com/css?family=Sacramento&display=swap");

h4 {
    font-size: calc(7px + 8vh);
    text-shadow: 0 0 5px #ffa500, 0 0 15px #ffa500, 0 0 20px #ffa500,
        0 0 40px #ffa500, 0 0 60px #ff0000, 0 0 10px #ff8d00, 0 0 98px #ff0000;
    color: #fff6a9;
    font-family: "Sacramento", cursive;
    text-align: center;
    animation: blink 9s infinite;
    -webkit-animation: blink 8s infinite;
}

@-webkit-keyframes blink {

    20%,
    24%,
    55% {
        color: #111;
        text-shadow: none;
    }

    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
        color: #fccaff;
        text-shadow: 0 0 5px #f562ff, 0 0 15px #f562ff, 0 0 25px #f562ff,
            0 0 20px #f562ff, 0 0 30px #890092, 0 0 80px #890092, 0 0 80px #890092;
        text-shadow: 0 0 5px #ffa500, 0 0 15px #ffa500, 0 0 20px #ffa500,
            0 0 40px #ffa500, 0 0 60px #ff0000, 0 0 10px #ff8d00, 0 0 98px #ff0000;
        color: #fff6a9;
    }
}

@keyframes blink {

    20%,
    24%,
    55% {
        color: #111;
        text-shadow: none;
    }

    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
        color: #fccaff;
        text-shadow: 0 0 5px #f562ff, 0 0 15px #f562ff, 0 0 25px #f562ff,
            0 0 20px #f562ff, 0 0 30px #890092, 0 0 80px #890092, 0 0 80px #890092;
        text-shadow: 0 0 5px #ffa500, 0 0 15px #ffa500, 0 0 20px #ffa500,
            0 0 40px #ffa500, 0 0 60px #ff0000, 0 0 10px #ff8d00, 0 0 98px #ff0000;
        color: #fff6a9;
    }
}

/* ***************new offer ****************** */


.col-carousel {
	margin: 70px 0;
}

/* owl nav */
.owl-prev span,
.owl-next span {
	color: #fff;
}

.owl-prev span:hover,
.owl-next span:hover {
	color: #8199a3;
}

.owl-prev,
.owl-next {
	position: absolute;
	top: 0;
	height: 100%;
}

.owl-prev {
	left: 7px;
}

.owl-next {
	right: 7px;
}

/* removing blue outline from buttons */
button:focus,
button:active {
	outline: none;
}
.c-img{
    display: flex;
    width: fit-content;
    height: inherit;
}
@media(max-width:1200px){
    .c-img{
        image-resolution: 1;
        height: 300px;
        width: 300px;
    }
}
.owl-item-active{
    width: 100%;
}
@media(max-width:500px){
.owl-item-active{
    width: 270px;
}

}
@media(max-width:500px){
.owl-carousel .owl-stage-outer{
    width: 58vw;
}

}



/* *******************call button last -------------------------------------------- */

.call-buton .cc-calto-action-ripple {
    z-index: 99999;
    position: fixed;
    right: 25px;
    bottom: 8rem;
    background: #ec8b00;
    width: 4rem;
    height: 4rem;
    padding: 1rem;
    border-radius: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #ffffff;
    -webkit-animation: cc-calto-action-ripple 0.6s linear infinite;
    animation: cc-calto-action-ripple 0.6s linear infinite;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
  }
  .call-buton .cc-calto-action-ripple i {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    font-size: 2.2rem;
  }
  .call-buton .cc-calto-action-ripple:hover i {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  
  @-webkit-keyframes cc-calto-action-ripple {
    0% {
      -webkit-box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2),
        0 0 0 0 rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2),
        0 0 0 10px rgba(236, 139, 0, 0.2);
      box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2),
        0 0 0 0 rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2),
        0 0 0 10px rgba(236, 139, 0, 0.2);
    }
    100% {
      -webkit-box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2),
        0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2),
        0 0 0 20px rgba(236, 139, 0, 0);
      box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2),
        0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2),
        0 0 0 20px rgba(236, 139, 0, 0);
    }
  }
  
  @keyframes cc-calto-action-ripple {
    0% {
      -webkit-box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2),
        0 0 0 0 rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2),
        0 0 0 10px rgba(236, 139, 0, 0.2);
      box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2),
        0 0 0 0 rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2),
        0 0 0 10px rgba(236, 139, 0, 0.2);
    }
    100% {
      -webkit-box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2),
        0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2),
        0 0 0 20px rgba(236, 139, 0, 0);
      box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2),
        0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2),
        0 0 0 20px rgba(236, 139, 0, 0);
    }
  }
  
  span.num {
    position: absolute;
    color: #ec8b00;
    left: -30%;
    bottom: -50%;
  }
  @media(max-width:500px)
  {
    .call-buton .cc-calto-action-ripple{
    z-index: 99999;
    position: fixed;
    left: 25px;
    bottom: 2rem;
    background: #ec8b00;
    width: 4rem;
    height: 4rem;
    padding: 1rem;
    border-radius: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #ffffff;
    -webkit-animation: cc-calto-action-ripple 0.6s linear infinite;
    animation: cc-calto-action-ripple 0.6s linear infinite;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    }
  }

  /* ----------offer hide &seek ---------------------- */
  .hidden{
    display: none
  }
  
  .sliderContainer{
    /* display: flex; */
    width: fit-content;
    justify-content: center;
    box-sizing: border-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;

  }
  
  .sliderContainer>div{
    width: auto;
    height: 500px;
    background-color: #333;
    color: #fff;
    font-size: 25px;
    text-transform: capitalize
  }
  
  
  .magicStartLoop{
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    animation: op 200ms linear
  }
  
  @keyframes op{
    0%{
      opacity: 0
    }
  
    100%{
      opacity: 1
    }
  }
  .container10offer{
    width: auto;
    height: fit-content;
  }
  @media(max-width:1200px){
    .magicStartLoop{
        width: 100%;
        height: 50vh;
    }
    .c-img{
        width: 100%;
        height: 60vh;
    }
  }