/* color variables */
:root {
    --primary-color:#FD21CA;
    --primary-gradient-color:  linear-gradient(to right, #971ADE, rgb(233, 19, 179));
    --secondary-color: #971ADE;
    --secondary-gradient-color: linear-gradient(to left, rgb(53, 5, 97), rgb(80, 5, 151));
    --secondary-gradient-color-light: linear-gradient(to left, rgba(120, 69, 168, 0.75), rgba(80, 5, 151, .75));
    --secondary-color-dark:#340541;
    --secondary-color-gradient-dark:radial-gradient(#340541, black);
    --secondary-color-light:rgba(151, 26, 222, .5);
    --secondary-color-lighter:#ebdff3;
    --color-dark: grey;
    --color-darker:black; /*default*/
    --color-light:rgb(245, 245, 245);
    --color-lighter:white;
    --danger-color: #e74c3c;
    --border-color: rgba(138, 43, 226, .25);
  }


/* default styles config */
  html,body{
    position: relative;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    font-size: 18px;
    background-color: var(--color-light);
    z-index: -1;
}
h1,h2,h3,h4{
    
}
.title{
    margin: 0;
}
/* button submit styles */ 


button,
input[type="submit"] {
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    margin: .25em;
    transition: all ease .5s;
    background-color: var(--color-lighter);
}

button:hover,
input[type="submit"]:hover {
    border: none;
    padding: 8.75px 16.75px;
    background-image: var(--primary-gradient-color);
    transition: all ease .5s;
    color: var(--color-lighter);
}

button:hover a,
input[type="submit"]:hover {
    color: var(--color-lighter)!important;
}
.primary-btn{
    border: none;
    padding: 9px 17px;
    background-image: var(--primary-gradient-color);
    transition: all ease .5s;
    color: var(--color-lighter)!important;
}
.cta-btn {
    border: none;
    padding: 9px 17px;
    background-image: var(--primary-gradient-color);
    transition: all ease .5s;
    color: var(--color-lighter)!important;
    cursor: pointer;
}

.cta-btn:hover {
    opacity: .85;
}


/* end button submit styles */

.color-white {
    color: white;
}

.color-black {
    color: black;
}

.color-pink {
    color: #FD21CA;
}

.color-purple {
    color: #971ADE;
}

.h1-45 {
    text-transform: capitalize;
}

.p-20 em {
    text-shadow: 0 2px 0 var(--primary-gradient-color);
}

body .msg-alert-container,
body .msg-alert-container-1 {
    display: flex;
    justify-content: flex-end;
    position: fixed;
    top: 7em!important;
    left: unset;
    right: 0;
    margin-right: .5em;
    z-index: 100!important;
    opacity: 1!important;
}

body .msg-alert-container-1 {
    display: none;
}

body .msg-alert-container-1 {
    display: none;
}

body .msg-alert {
    display: flex;
    justify-content: space-between;
    padding: .5em;
    border-radius: 15px 15px 0 15px;
    color:var(--color-lighter);
    background-image: var(--primary-gradient-color);
}

body .msg-alert .close-msg-alert {
    margin-left: 1em;
    transition: all .25s ease;
}

body .msg-alert .close-msg-alert:hover {
    transform: scale(1.25);
    transition: all .25s ease;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}



main {
    position: relative;
}

.get-quote-form-container {
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 3;
    background-color: var(--secondary-color-light);
    /* z-index: 0; */
}

.get-quote-form {
    background-color: rgb(236, 197, 228);
    color: var(--color-dark);
    border-radius: 10px;
    width: 50%;
    margin: auto;
    padding: .5em;
    margin-top: 7em;
    display: none;
}

.quote-header {
    background-color: var(--primary-color);
    color: var(--color-lighter);
    display: flex;
    justify-content: space-between;
    margin: -.5em;
    padding: .5em;
    border-radius: 10px 10px 0 0;
}

.cancel-get-quote {
    transition: all .25s ease;
}

.cancel-get-quote:hover svg {
    transform: scale(1.25);
    transition: all .25s ease;
}

.get-quote-form form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.get-quote-form input,
.get-quote-form select {
    width: 98%;
    border-radius: 5px;
    height: 2em;
    border: none;
    background-color: var(--color-light);
    padding: .25em;
}

.get-quote-form select {
    color: var(--color-dark);
}

.get-quote-form p textarea {
    top: 15%;
    width: 98%;
    border-radius: 5px;
    padding: .25em;
    background-color: var(--color-light);
    border: none;
}

.get-quote-form #get_quote {
    border: .5px solid var(--primary-color);
    color: var(--primary-color);
    background-color: var(--color-lighter);
    font-weight: bold;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.get-quote-form #get_quote:hover {
    background-image: var(--primary-gradient-color);
    border: none;
    color: var(--color-lighter);
    /* padding: 1.15em 0 2.15em 0; */
}

.comming-soon {
    color: var(--color-dark);
    text-align: center!important;
    margin-bottom: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.key-navs-container {
    display: none;
}

@media screen and (max-width:992px) {
    body {
        font-size: large;
    }
    .get-quote-form {
        width: 65%;
    }
}

@media screen and (max-width:600px) {
    
    .get-quote-form {
        width: 85%;
    }
    body {
        font-size: medium;
    }
    .key-navs-container {
        display: inline-block;
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 4;
    }
    .key-navs {
        display: flex;
        justify-content: space-evenly;
        z-index: 10;
        bottom: 0;
        list-style-type: none;
        margin: 0;
        padding: 0;
    }
    .key-nav svg {
        fill: var(--color-lighter);
        /* rgb(51, 48, 48); */
        width: 1.5em;
        height: auto;
    }
    .key-nav:hover svg {
        fill: var(--primary-color);
    }
    .key-nav a {
        background-color: var(--secondary-color-light);
        width: 3em;
        height: 3em;
        border-radius: 50%;
        padding .5em;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        list-style-type: none;
    }
    .key-navs .dropdown {
        display: none;
    }
    .key-nav .count {
        top: -30%;
    }
}

/* @media screen and (max-width:600px) {
    button,
    input[type="submit"] {
        font-size: small;
    }
    .key-navs {
        bottom: 0;
        /* top: -100%; 
    }
} */

  
  /* @media (max-width: 768px) {
    
  }
  
  @media (max-width: 480px) {
   
  } */
  