/* .mainBg{
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 100vh;
} */
body {
    direction: rtl;
}

body * {
    font-family: 'Almarai', sans-serif;
    letter-spacing: -1px;
    word-spacing: 3px;

}

.navbar {
    padding: 1.25rem 0;
    /* border-bottom: 0.25rem solid #ffd9868f; */
    background-color: #fff;
    position: sticky;
    top: 0;
}

.navbar .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-nav li a {
    color: #0b1962;
    font-size: 1.25rem;
    font-weight: 700;

}

.navbar-nav li a.active {
    color: #1D7DED !important;
}

.firstSection {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3.125rem 0;
    background-image: url('assets/images/digital.avif');
    height: 100vh;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}
.firstSection-contianer{
    width: 50%;
}

.firstSection h1 {
    font-size: 4.5rem;
    line-height: 6rem;
    font-weight: 700;
    /* width: 50%; */
    color: white;
}

.firstSection h1 span {
    color: #86cde2;
    font-size: inherit;
}

.firstSection p {
    margin: 2.5rem 0;
    font-size: 1.5rem;
    color: white;
    font-weight: 400;
    /* width: 50%; */
}

.firstSection button {
    border: 0.0625rem solid #E4E1E1;
    padding: 1.25rem 1.875rem;
    border-radius: 0.75rem;
    background-color: #E4E1E1;
    color: #03308f;
    font-size: 1.25rem;
    font-weight: 700;
}

.firstSection button:hover {
    border: 0.0625rem solid #03308f;
    background-color: #03308f;
    color: #0b1962;
    transition: all 0.5s;
}
.secondSection{
    min-height: 50vh;
    padding: 4.375rem 0;
    text-align: center;
    background-color: #f0ecec;
}
.secondSection h1{
    margin-bottom: 1.875rem;
    color: white;
    font-weight: 700;
}
.secondSection p{
    color: #496871;
    font-weight: 400;
    font-size: 1.25rem;
}

.thirdSection {
    background-image: url('assets/images/secondsection1.jpg');
    min-height: 60vh;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 2;
}
.thirdSection .mainContainer{
    padding: 3.125rem 0;

}
.thirdSection h1{
    font-size: 4.5rem;
    line-height: 6rem;
    font-weight: 700;
    width: 80%;
    color: #0b1962;
}
.thirdSection::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color:rgb(31 34 143 / 80%);
    z-index: -1;
}


  .login-box {

    width: 25rem;
    padding: 2.5rem;
    background: rgba(0,0,0,.5);
    box-sizing: border-box;
    box-shadow: 0 0.9375rem 1.5625rem rgba(0,0,0,.6);
    border-radius: 0.625rem;
    direction: rtl;
  }
  
  .login-box h2 {
    margin: 0 0 1.875rem;
    padding: 0;
    color: #fff;
    text-align: center;
  }
  
  .login-box .user-box {
    position: relative;
  }
  
  .login-box .user-box input,.login-box .user-box textarea {
    width: 100%;
    padding: 0.625rem 0;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 1.875rem;
    border: none;
    border-bottom: 0.0625rem solid #fff;
    outline: none;
    background: transparent;
  }
  .login-box .user-box textarea {
    min-height: 6.6875rem;
  }
  .login-box .user-box label {
    position: absolute;
    top:0;
    right: 0;
    padding: 0.625rem 0;
    font-size: 1rem;
    color: #fff;
    pointer-events: none;
    transition: .5s;
  }
  
  .login-box .user-box input:focus ~ label,
  .login-box .user-box input:valid ~ label ,.login-box .user-box textarea:focus ~ label,.login-box .user-box textarea:valid ~ label{
    top: -1.25rem;
    left: 0;
    color: #03e9f4;
    font-size: 0.75rem;
  }
  
  .login-box form a {
    position: relative;
    display: inline-block;
    padding: 0.625rem 1.25rem;
    color: #03e9f4;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    transition: .5s;
    margin-top: 2.5rem;
  }
  
  .login-box a:hover {
    background: #03e9f4;
    color: #fff;
    border-radius: 0.3125rem;
    box-shadow: 0 0 0.3125rem #03e9f4,
                0 0 1.5625rem #03e9f4,
                0 0 3.125rem #03e9f4,
                0 0 6.25rem #03e9f4;
  }
  
  .login-box a span {
    position: absolute;
    display: block;
  }
  
  .login-box a span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 0.125rem;
    background: linear-gradient(90deg, transparent, #03e9f4);
    animation: btn-anim1 1s linear infinite;
  }
  
  @keyframes btn-anim1 {
    0% {
      left: -100%;
    }
    50%,100% {
      left: 100%;
    }
  }
  
  .login-box a span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 0.125rem;
    height: 100%;
    background: linear-gradient(180deg, transparent, #03e9f4);
    animation: btn-anim2 1s linear infinite;
    animation-delay: .25s
  }
  
  @keyframes btn-anim2 {
    0% {
      top: -100%;
    }
    50%,100% {
      top: 100%;
    }
  }
  
  .login-box a span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 0.125rem;
    background: linear-gradient(270deg, transparent, #03e9f4);
    animation: btn-anim3 1s linear infinite;
    animation-delay: .5s
  }
  
  @keyframes btn-anim3 {
    0% {
      right: -100%;
    }
    50%,100% {
      right: 100%;
    }
  }
  
  .login-box a span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 0.125rem;
    height: 100%;
    background: linear-gradient(360deg, transparent, #03e9f4);
    animation: btn-anim4 1s linear infinite;
    animation-delay: .75s
  }
  
  @keyframes btn-anim4 {
    0% {
      bottom: -100%;
    }
    50%,100% {
      bottom: 100%;
    }
  }
  

.mainContainer {
    width: 80%;
    margin: auto
}
@media screen and  (max-width: 992px)  {
    .firstSection-contianer{
        width: 100%;
    }
    .thirdSection .mainContainer{
        flex-direction: column;
    }
    .thirdSection h1{
        width: 100%;
        text-align: center;
        margin-bottom: 50px;
    }
}
@media screen and  (max-width:1600px) {
    .mainContainer {
        width: 87.44%;
    }
}
@media screen and  (max-width:1440px) {
    .mainContainer {
        width: 94.44%;
    }
}
@media screen and  (max-width:1400px) {
    * {
        font-size: 16px;
    }
}

@media screen and  (max-width:1300px) {
    * {
        font-size: 14.5px;
    }
}

@media screen and  (max-width:1200px) {
    * {
        font-size: 14px;
    }
}

@media screen and  (max-width:1000px) {
    * {
        font-size: 13.5px;
    }

    .mainContainer {
        width: 95%;
    }
}

@media screen and  (max-width:800px) {
    * {
        font-size: 12px;
    }
 
}

@media screen and  (max-width:500px) {
    * {
        font-size: 11.5px;
    }
}
