@import url("https://fonts.googleapis.com/css2?family=Asap:wght@400;500;700;800;900&display=swap");

html, body {
    height: 100%;
}

html {
    font-size: 62.5%;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

ul{
    list-style-type: none;
}

a{
    text-decoration: none;
    cursor: pointer;
}

body {
    color: #4a4a4a;
    font-family: "Asap", sans-serif;
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
    font-weight: normal;
    line-height: 1.5;
}

.contact-page-bg {
    background-image: url(../images/contact-bg.jpg);
    background-size: cover;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.container {
    max-width: 1366px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 0 69px;
}

.header-wrapper {
    position: relative;
    width: 100%;
}

header{
    padding: 42px 0 18px;
}

.header--middle-left {
    display: grid;
    grid-template-areas: "heading navigation icons";
    grid-template-columns: auto auto 1fr;
    column-gap: 55px;
    align-items: center;
}

.header__inline-menu {
    margin: 6px 0px;
}

nav > ul{
    font-weight: 500;
    display: inline-flex;
    gap: 18px;
}

nav ul a{
    color: #fff;
    padding: 1.2rem;
    display: inline-block;
}

nav li.open{
    position: relative;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

nav li.open > a{
    background: #000;
}

nav .icon-caret{
    height: .6rem;
    margin-left: 5px;
}
.mega-menu{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    height: 420px;
    gap: 32px;
}

.mega-menu-sub{
    display: none;
    color: #fff;
    border-radius: 0px 0px 5px 5px;
    font-size: 1.4rem;
    background: #000;
    padding: 18px 12px;
    position: absolute;
    z-index: 1;
    left: 0px;
    top: 100%;
    width: 750px;
}

.open .mega-menu-sub{
    display: block;
}

.open .icon-caret{
    transform: rotate(-180deg);
}

.mega-menu .title{
    font-weight: 700;
    padding-bottom: 5px;
}

.mega-menu ul li a{
    padding: 5px 0px;
    line-height: 1;
}

.header--middle-left .icon-search{
    fill: #fff;
    height: 2rem;
    width: 2rem;
    margin-left: auto;
    display: none;
}

.contact-wrap {
    color: #fff;
    padding: 0px;
}
.contact-wrap.flexnone{
    display: block;
}

.contact-wrap h1{
    font-size: 4rem;
    margin-bottom: 20px;
}

.contact-wrap .content{
    display: flex;
    flex-direction: column;
    gap: 80px;
}

#post .content {
    display: block;
}

.contact-wrap .content p{
    line-height: 1.8;
}

.contact-wrap .content.center{
    text-align: center;
}

.contact-wrap .form-content{
    padding: 0;
}

.contact-wrap .form-wrapper{
    width: 100%;
    /* padding: 24px; */
}

.loopify-form{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.form-wrapper .loopify-form .form-group{
    position: relative;
    flex: 0 0 calc((100% - 40px) / 3);
    margin-bottom: 20px;
}

.form-wrapper .loopify-form .form-group.wid100{
    flex: 0 0 100%;
}

.form-wrapper .loopify-form .button-wrap{
    width: 100%;
    display: block;
}

.loopify-form .button-wrap button{
    width: auto;
    min-width: 150px;
    border-radius: 30px;
}

.form-wrapper .form-group.mrg0{
    margin-bottom: 0px;
}

.form-wrapper .info {
    display: block;
    font-size: 1rem;
    color: #FF0000;
    padding-left: 5px;
}

form h2{
    color: #121212;
    font-size: 2.2rem;
    padding-bottom: 30px;
    line-height: 26px;
}

form input,
form textarea,
form select{
    width: 100%;
    border: 0px;
    border-radius: 5px;
    padding: 22px 15px 8px 15px;
    font-family: "Asap", sans-serif;
    background: #2A7A64;
    color: #fff;
}

form input:focus,
form select:focus,
form textarea:focus {
    outline: none;
}

form textarea {
    display: block;
}

form select{
    padding: 15px;
    color: #fff;
    font-family: "Asap", sans-serif;
    appearance: none;
    /*background-image: url("../images/dw-arrow-bl.svg");*/
    background-repeat: no-repeat;
    background-position: right 14px top 50%;
    background-size: 10px auto;
}

#userGift:focus option:checked {
    color: green;
}

form label{
    color: #fff;
    font-size: 1.4rem;
    position: absolute;
    left: 15px;
    top: 12px;
    pointer-events: none;
    transition: all 0.3s ease;
}

form .select label{
    color: #121212;
    display: block;
    position: relative;
    top: 0px;
    left: 0px;
    padding-bottom: 4px;
}

form input:focus + label,
form input:not(:placeholder-shown) + label,
form textarea:focus + label,
form textarea:not(:placeholder-shown) + label {
  top: 5px;
  font-size: 1.2rem;
}

form button{
    font-family: "Asap";
    width: 100%;
    border: none;
    outline: none;
    padding: 15px;
    font-size: 1.4rem;
    color: #fff;
    background: #00b29a;
    border-radius: 5px;
}

form .infotxt{
    display: flex;
    color: #121212;
    font-size: 1rem;
    padding-top: 10px;
}

.infotxt a{
    padding-left: 5px;
    color: #121212;
    text-decoration: underline;
}

.success-msg{
    color: #121212;
    min-height: 125px;
    display: none;
    text-align: center;
}

.success-msg h2{
    font-size: 2.4rem;
}
.success-msg p{
    font-size: 1.4rem;
}

.iti{
    display: block;
}
.iti__selected-dial-code,
.iti__country-name{
    color: #121212;
    font-size: 1.2rem;
}

.loader{
    color: #121212;
    font-size: 1.2rem;
}

.d-none{
    display: none;
}

/* Mobile menus */

.hambuger-menu{
    padding: 10px;
    width: 40px;
    display: none;
}

.closeMenu{
    width: 40px;
    padding: 10px;
    position: absolute;
    z-index: 10;
    top: 20px;
    right: 20px;
    cursor: pointer;
    display: none;
}

/* Logos ticker  */

.ticker p{
    font-size: 20px;
    margin-bottom: 20px;
}

.address h3 {
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 20px;
}

@keyframes slide{
    from{
      transform:translateX(0) ;
      
    }
    to{
      transform:translateX(-100%) ;
    
    }
  }
  .logos{
    overflow:hidden;
    white-space:nowrap;
    position:relative;
    max-width: 650px;
  }
  
  .logos:hover .logos-slide{
    animation-play-state:paused;
  }
  .logos-slide{
    display:inline-block;
    animation: 55s slide infinite linear;
  }
  .logos-slide img{
    vertical-align: middle;
    width: 125px;
    margin: 0 35px;
  }

  /* End */


/* Responsive */

@media only screen and (max-width : 1024px) {
    .header--middle-left{
        display: flex;
        column-gap: 5px;
        justify-content: space-between;
    }
    
    .header__inline-menu{
        margin: 0px;
    }
    
    nav > ul{
        gap: 10px;
    }
    
    .mega-menu-sub{
        width: 550px;
    }
}

@media only screen and (max-width : 767px) {
    header a.logo{
        margin-right: calc(50% - 50px);
    }
    
    .container{
        padding: 0px 24px;
    }
    .hambuger-menu{
        display: block;
        cursor: pointer;
    }
    .closeMenu{
        display: block;
    }
    .header__heading-logo {
        max-width: 100px;
    }
    .header__inline-menu{
        position: fixed;
        top: 0px;
        left: -100%;
        margin: 0px;
        height: 100%;
        z-index: 1;
        width: 85%;
        background: #000;
        padding: 4rem 0;
        overflow-x: hidden;
        overflow-y: scroll;
        appearance: none;
        transition: ease all 0.5s;
    }

    .header__inline-menu.mobileopen{
        left: 0%;
    }

    nav > ul{
        display: block;
        margin: 0 12px;
    }

    nav ul li{
        border-bottom: solid 1px #525252;
    }

    nav li li{
        border-bottom: none;
    }

    nav ul a{
        display: block;
        padding: 1.8rem 1.4rem;
    }

    .header--middle-left{
        display: flex;
        justify-content: space-between;
    }
    .header--middle-left .icon-search{
        margin-left: initial;
    }

    .contact-wrap{
        display: block;
        /* padding-top: 20px; */
    }

    .contact-wrap .content{
        padding-bottom: 40px;
        gap: 40px;
    }

    .contact-wrap .form-content{
        padding: 0px;
    }

    .contact-wrap .form-wrapper{
        width: 100%;
        /* padding: 24px; */
    }

    .mega-menu-sub{
        position: relative;
        width: auto;
    }

    .mega-menu{
        height: auto;
        gap: 24px;
    }

    .logos-slide img{
        width: 100px;
    }
}

@media only screen and (max-width : 1024px){
    .form-wrapper .loopify-form .form-group{
        flex: 0 0 calc((100% - 40px) / 2);
    }
}

@media only screen and (max-width : 657px){
    .form-wrapper .loopify-form .form-group{
        flex: 0 0 100%;
        margin-bottom: 0px;
    }
}

