@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    text-decoration: none;
    border:none;
    outline: none;
    scroll-behavior: smooth;
    font-family: "poppins" ,sans-serif;
}
:root{
    --bg--color:#fcfcfc;
    --second--bg--color:#f8f8f8;
    --text--color:black;
    --main--color:#e07714;
}

span{
  color: var(--main--color);
}
html{
    font-size:55%;
    overflow-x:hidden;
}
body{
    background: var(--bg--color);
    color:var(--text--color);

}
::-webkit-scrollbar{
    width:10px;
}
::-webkit-scrollbar-thumb{
    background-color: var(--main--color);
    border-radius: 3px;
}




.header{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    padding:3rem 5%;
    background:white;
    display:flex;
    align-items: center;
    justify-content:space-between;
    z-index:100;
}
.logo{
    font-size:3rem;
    color:var(--text--color);
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease;
    }
.logo:hover{
    scale:1.15;
}


    .navbar{
        margin-right: 3rem;
    }
    .navbar a{
        font-size: 1.5rem;
        color:black;
        margin-left: 3rem;
        font-weight: 600;
        transition:0.3s ease;
        border-bottom:3px solid transparent;
    }
    .navbar a:hover,
    .navbar a.active{
    /*color:var(--main--color);*/
    border-bottom:3px solid var(--main--color);
    } 
.menu-toggle {
    display: none;
}

 .ima{
    margin-top: 7.2rem;
    width:100%;
    }

    .loginBtn {
        box-sizing: border-box;
        position: relative;
        /* width: 13em;-apply for fixed size */
        margin: 0.2em;
        padding: 0 15px 0 46px;
        border: none;
        text-align: left;
        line-height: 34px;
        white-space: nowrap;
        border-radius: 0.2em;
        font-size: 16px;
        color: #FFF;
      }
      .loginBtn:before {
        content: "";
        box-sizing: border-box;
        position: absolute;
        top: 0;
        left: 0;
        width: 34px;
        height: 100%;
      }
      .loginBtn:focus {
        outline: none;
      }
      .loginBtn:active {
        box-shadow: inset 0 0 0 32px rgba(0,0,0,0.1);
      }
      
      
      /* Facebook */
      .loginBtn--facebook {
        background-color: #4C69BA;
        background-image: linear-gradient(#4C69BA, #3B55A0);
        /*font-family: "Helvetica neue", Helvetica Neue, Helvetica, Arial, sans-serif;*/
        text-shadow: 0 -1px 0 #354C8C;
      }
      .loginBtn--facebook:before {
        border-right: #364e92 1px solid;
        background: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/14082/icon_facebook.png') 6px 6px no-repeat;
      }
      .loginBtn--facebook:hover,
      .loginBtn--facebook:focus {
        background-color: #5B7BD5;
        background-image: linear-gradient(#5B7BD5, #4864B1);
      }
      
      
      /* Google */
      .loginBtn--google {
        /*font-family: "Roboto", Roboto, arial, sans-serif;*/
        background: #DD4B39;
      }
      .loginBtn--google:before {
        border-right: #BB3F30 1px solid;
        background: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/14082/icon_google.png') 6px 6px no-repeat;
      }
      .loginBtn--google:hover,
      .loginBtn--google:focus {
        background: #c25c4f;
      }

    .contact{
        background-color: var(--bg--color);
    
    }
    .split-layout__item h3{
      font-size: 2rem;
    }
    split-layout__item .contact .heading {
      font-size: 2rem;
    }
    .signup h3{
      font-size: 2rem;
    }
    .contact h2{
        margin-bottom: 3rem;
    
    }
    .contact form{
        max-width:70rem;
        margin:1rem auto;
        text-align:center;
        margin-bottom:3rem;
    
    }
    .contact form .input-box{
        display:flex;
        right-padding:2rem;
        margin-right:8rem;
        margin-left:7rem;
        justify-content: center;
        flex-wrap: wrap;
    }
 .heading{
     margin-left:7rem;
 }
    .contact form .input-box input{
        width:100%;
        padding:1.5rem;
        font-size:1.6rem;
        color:var(--text--color);
        background: var(--bg--color);
        border-radius: 1.4rem;
        border:3px solid var(--main--color);
        margin:1rem 0;
        resize:none;
    }
    
    .contact form .btn{
        margin-top: 2rem;
    }
    .split-layout {
        display: flex;
        flex-direction: column;
        margin-top:8rem;
        margin-left:10rem;
        
        @media screen and (min-width: 30em) {
          flex-direction: row;
          align-items: stretch;
        }
      }
      
      .split-layout__item  {
        flex: 1;
        
        @media screen and (min-width: 30em) {
          padding-left: 1em;
          
          &:first-child {
          padding: 0;
          }
        }
      }
      
      .split-layout__divider {
        display: flex;
        flex-direction: row;
        align-items: center;
        
        @media screen and (min-width: 30em) {
         flex-direction: column; 
        }
      }
      
      .split-layout__label {
        padding: 1em;
      }
      
      .split-layout__rule {
        flex: 1;
        border-style: solid;
        border-color: rgba(199, 58, 58, 0.3);
        border-width: 1px 0 0 0;
        
        @media screen and (min-width: 30em) {
         border-width: 0 1px 0 0;
        }
    }
      
      html {
        padding:auto 2em;
        background: #fefefe;
        color: #fff;
      }

      .footer {
        padding: 5rem auto;
        box-sizing: border-box;
        margin-top: 2rem;
        background:#3E4348;
      }
    
      .footer .box-container {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: (minmax(15rem, 1fr)) [auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
        gap:.5rem;
      }
      
      .footer .box-container .box h3 {
        font-size: 2rem;
        margin-left:10rem;
        padding: 8rem 0;
        color: #fff;
      }
      
      .footer .box-container .box a {
        display: block;
        font-size: 1.7rem;
        color: #fff;
        padding: 1rem 0;
      }
      .footer .box-container .box a:hover {
        color: var(--main--color);
      }
      
    
      
      .footer .credit {
        text-align: center;
        margin-top: 2.5rem;
        padding: 1rem;
        padding-top: 2.5rem;
        font-size: 2rem;
        color: #fff;
      }
      
      .footer .credit span {
        color: #dabb74;}

        .btn{
            display: inline-block;
            padding:1rem 2.8rem;
            background: var(--main--color);
            border-radius: 4rem;
            font-size:1.6rem;
            color:white;
            border:2px solid transparent;
            letter-spacing:0.1rem;
            font-weight: 600;
            transition: 0.3s ease;
            cursor:pointer;
        
        }
        .btn:hover{
            transform: scale(1.05);
            background: var(--bg--color);
            color:var(--main--color);
            border:2px solid var(--main--color); 
        }
    .signup{
        margin-top: 4rem;
        text-align: center;
        font-size:  1.4rem;
        align-items: center;
        justify-content: center;
    }
    .footer ul li a{
      color:white;
      border-bottom:3px solid transparent;
      transition:0.3s ease;
  }
  .footer ul li a:hover{
      border-bottom:3px solid white;
    /*  .footer .social{ ----------------
        text-align: center;
        padding-bottom: 25px;
        color:white;*/
    
    }
    .heading p{
      font-size: 3rem;
    }
 .footer .box-container .social-icons{
     margin-left:2rem;
 }
    .footer .box-container .social-icons a {
    font-size: 25px;
    color: white;
    border: 2px solid var(--bg--color);
    width: 42px;
    height: 42px;
    line-height: 42px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin: 64px 13px;
    transition: 0.3s ease;
}

.footer .box-container .social-icons a:hover {
    transform: scale(1.2) translateY(-10px);
    background-color: white;
    color: var(--main--color);
}

    
    .footer ul{
        margin-top: 0;
        padding:0;
        font-size: 18px;
        line-height: 1.6;
        margin-bottom:0;
    }
  }

  .wrapper .split-layout .split-layout__item{
    margin-left: 10rem;
   
  }

  split-layout__item .contact form{
    margin-right: 10rem;
  }
.credit{
    align-items:center;
    text-align:center;
}
/* Hamburger menu styles */
.menu-toggle {
    display: block;
    cursor: pointer;
    position: relative;
    z-index: 99;
}

.menu-toggle input {
    display: none;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #000;
    margin-bottom: 5px;
    position: relative;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.menu-toggle span:last-child {
    margin-bottom: 0;
}
@media screen and (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
    .navbar{
display:flex !important;
    }
}

.menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    width: 100%;
    padding: 20px;
    display: none;
    z-index: 98;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.menu li {
    list-style: none;
    margin-bottom: 10px;
}

.menu a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
}

/* Show menu when checkbox is checked */
.menu-toggle input:checked ~ .menu {
    display: block;
}

/* Hide checkbox */
.menu-toggle input:checked ~ .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle input:checked ~ .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.menu-toggle input:checked ~ .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
@media screen and (max-width: 768px) {
    .navbar {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: center;
    }

    .navbar.show-menu {
        display: flex;
    }

    .navbar a {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid #ccc;
        width: 100%;
        text-align: center;
    }
}
@media screen and (max-width: 768px) {
  .box {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media screen and (max-width: 576px) {
  .box {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
  
