@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cabin+Sketch&display=swap');
:root{
    --black: #0f0f19;
    --light-black: #333;
    --light-black-hover: #33333333;
    --gray: #7a7b7f;
    --light-gray: #ddd;
    --white: #fff;  
    --primary: rgb(204,0,0);
    --green: #9decd6;
    --green-30: #9decd630;
    --red: #fbbcbc;
    --red-30: #fbbcbc30;
    --blue: #049be5;
    --blue-30: #049ae530;
    --yellow: #fdb400;
    --yellow-30: #fdb40030;
}
*{
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}
a{
    text-decoration: none;
    color:var(--black);
}
.nav_logo{
    position: fixed;
    top: 0;
    height: 75px;
    width: 100vw;
    background-color: #eace09;
    z-index: 99;
    display: flex;
    justify-content: space-around;
}
.nav_contact{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nav_contact_heading{
    font-size: 14px;
    font-weight: bold;
}
.nav_heading_contact_number a{
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    color: var(--white);
    border: 2px solid transparent;
    transition: all .25s ease-in-out;
}
.nav_heading_contact_number a:hover{
    background-color: var(--white);
    border: 2px solid var(--primary);
    color: var(--primary);
}
.navbar{
    width: 100vw;
    height: 45px;
    /* height: 75px; */
    background: var(--light-black);
    display:flex;
    justify-content:space-evenly;
    position:fixed;
    top: 75px;
    left: 0;
    z-index: 99;
   
}
.navbar menu{
    display: flex;
}
.navbar a, .navbar span{
    display: flex;
    padding: 5px 10px;
    line-height: 40px;
    color: var(--white);
    font-size: 14px;
    transition: all .25s ease-in-out;
    /* border-bottom: 5px solid rgba(180, 3, 3,0); */
}
.navbar menu a:hover{
    border-bottom: 5px solid rgb(204 0 0);
    box-shadow: inset 0px 0px 30px 0px var(--light-black);
}
.mobile_nav{
    display: none;
}
.navbar + *{
    margin-top:120px;
}
.show_inner_menu{
    display: block !important;
}

.navbar menu li{
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.navbar menu li a,.navbar menu li span{
    z-index: 100;
    cursor: pointer;
}
.navbar .menu menu{
    display: none;
    /* display: block !important; */
    z-index: 99;
    background-color: var(--light-black);
    position: absolute;
    top: 100%;
}

.navbar .menu li a,.navbar .menu li span{
    width: 100%;
    display: block;
    text-align: center;
    gap: 5px;
    padding: 5px 20px;
}
.login-btn{
    background-color: var(--primary);
    border-radius: 10px;
    padding: 0px 20px !important;
    margin: 5px 10px !important;
    transition: all .25s ease-in-out;
}
.login-btn:hover{
    box-shadow: inset 0 0 15px 10px #00000033;
}
.login-btn a:hover{
    box-shadow: 0 0 0 #000 !important;
    border-bottom: none !important;
}
























/* other component css */
.section_heading{
    width: 100%;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.section_heading .home_heading_tagline{
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
    font-size: 14px;
}
.section_heading h2{
    font-size: 36px;
}


@media screen and (max-width: 768px) {
    .navbar{
        backdrop-filter: unset;
        width: 100vw;
        border-radius: 0;
        margin: 0;
    }
    .mobile_nav{
        display: block;
        position: fixed;
        right: 24px;
        top: 8px;
    }
    .navbar menu{
        width: calc(100% - 20px);
        margin: 0 10px;
        position: fixed;
        left: 0;
        bottom: -60%;
        display: flex;
        flex-direction: column;
        background-color: var(--light-black);
        line-height: 30px;
        border-radius: 30px 30px 0 0;
        padding: 10px;
        transition: bottom .25s ease-in-out;
    }
    .mobile_nav{
        font-size: 24px;
        color: var(--white);
    }
    .active{
        bottom: 0 !important;
    }
    .navbar .menu menu{
        padding-bottom: 100px;
        display: none;
        /* display: block !important; */
        z-index: 101;
        background-color:  rgb(204 0 0);
        position: fixed;
        bottom: -100%;
        transition: all .5s ease-in-out;
        max-height: 300px;
        overflow: scroll;
        top:unset !important;
    }
    .translate_mobile_nav{
        bottom: 0 !important;
    }
}

/* floating buttons code below*/

.floating_buttons{
    padding: 1rem;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 0 10px 0 var(--light-black-hover);
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 2;
}
.floating_buttons.whatsapp{
    bottom:20px;
}


/* footer code below */

.footer {
    background-color: #2a2a2a;
    color: #fff;
}
.footer-wave-svg {
    background-color: transparent;
    display: block;
    height: 30px;
    position: relative;
    top: -1px;
    width: 100%;
}
.footer-wave-path {
    fill: #fffff2;
}

.footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 450px;
    position: relative;
}

.footer-content-column {
    box-sizing: border-box;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    color: #fff;
}

.footer-content-column ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-logo-link {
    display: inline-block;
}
.footer-logo-link img{
    width: 200px;
}
.footer-menu {
    margin-top: 30px;
}

.footer-menu-name {
    color: #fffff2;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
}
.footer-menu-list {
    list-style: none;
    margin-bottom: 0;
    margin-top: 10px;
    padding-left: 0;
}
.footer-menu-list li {
    margin-top: 1rem;
}

.footer-call-to-action-description {
    color: #fffff2;
    margin-top: 10px;
    margin-bottom: 20px;
}
.footer-call-to-action-button:hover {
    background-color: #fffff2;
    color: #00bef0;
}
.button:last-of-type {
    margin-right: 0;
}
.footer-call-to-action-button {
    background-color: var(--primary);
    border-radius: 21px;
    color: #fffff2;
    display: inline-block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    padding: 12px 30px;
    margin: 0 10px 10px 0;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color .2s;
    cursor: pointer;
    position: relative;
}
.footer-call-to-action {
    margin-top: 30px;
}
.footer-call-to-action-title {
    color: #fffff2;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
}
.footer-call-to-action-link-wrapper {
    margin-bottom: 0;
    margin-top: 10px;
    color: #fff;
    text-decoration: none;
}
.footer-call-to-action-link-wrapper a {
    color: #fff;
    text-decoration: none;
}





.footer-social-links {
    bottom: 0;
    height: 54px;
    position: absolute;
    width: 236px;
}

.footer-social-amoeba-svg {
    height: 54px;
    left: 0;
    display: block;
    position: absolute;
    top: 0;
    width: 236px;
}

.footer-social-amoeba-path {
    fill: var(--primary);
}
.footer-social-link > svg{
    width: 25px;
    height: 30px;
}
.footer-social-link.linkedin {
    height: 26px;
    left: 3px;
    top: 11px;
    width: 26px;
}

.footer-social-link {
    display: block;
    padding: 10px;
    position: absolute;
}

.hidden-link-text {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px,1px,1px,1px);
    -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
    clip-path: inset(0px 0px 99.9% 99.9%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
    top: 50%;
}

.footer-social-icon-svg {
    display: block;
}

.footer-social-icon-path {
    fill: #fffff2;
    transition: fill .2s;
}

.footer-social-link.instagram {
    height: 28px;
    left: 60px;
    top: 0px;
    width: 28px;
    font-size: 2rem;
    color: var(--white,#fff);
}

.footer-social-link.youtube {
    height: 24px;
    left: 122px;
    top: 12px;
    width: 24px;
}

.footer-social-link.facebook {
    height: 34px;
    left: 177px;
    top: -9px;
    width: 34px;
}

.footer-copyright {
    background-color: var(--primary);
    color: #fff;
    padding: 15px 30px;
  text-align: center;
}

.footer-copyright-wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}

.footer-copyright-text {
  color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
}

.footer-copyright-link {
    color: #fff;
    text-decoration: none;
}







/* Media Query For different screens */
@media (min-width:320px) and (max-width:479px)  { /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 900px;
    position: relative;
  }
}
@media (min-width:480px) and (max-width:599px)  { /* smartphones, Android phones, landscape iPhone */
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 900px;
    position: relative;
  }
}
@media (min-width:600px) and (max-width: 800px)  { /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 900px;
    position: relative;
  }
}
@media (min-width:801px)  { /* tablet, landscape iPad, lo-res laptops ands desktops */

}
@media (min-width:1025px) { /* big landscape tablets, laptops, and desktops */

}
@media (min-width:1281px) { /* hi-res laptops and desktops */

}




@media (min-width: 760px) {
  .footer-content {
      margin-left: auto;
      margin-right: auto;
      max-width: 1230px;
      padding: 40px 15px 450px;
      position: relative;
  }

  .footer-wave-svg {
      height: 50px;
  }

  .footer-content-column {
      width: 24.99%;
  }
}
@media screen and (max-width: 548px) {
    .nav_contact{
        display: none;
    }
}