* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

 body {
    background-color: black;
  }
  :root{
    --color-1: black;
  }
  body{
    line-height: 1.5;
    font-family: sans-serif;
  }
  *{
    box-sizing: border-box;
    margin:0;
    padding:0;
  }
  a{
    text-decoration: none;
  }
  ul{
    list-style: none;
  }
  .container{
    max-width: 1170px;
    margin: auto;
  }
  .row{
    display: flex;
    flex-wrap: wrap;
  }
  .align-items-center{
    align-items: center;
  }
  .justify-content-between{
    justify-content: space-between;
  }

  img{
    width: 200px;
    height: auto;
  }
  /*header*/
  .header{
    background-color: var(--color-1);
    padding:12px 0;
    position: relative;
  }
  .header .logo,
  .header .nav{
    padding:0 15px;
  }
  .header .nav ul li{
    display: inline-block;
    margin-left: 40px;
  }
  .header .nav ul li a{
    display: block;
    font-size: 14px;
    padding: 10px 0;
    color: rgba(255,255,255,0.7);
    text-transform: capitalize;
    transition: all 0.5s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }
  .header .nav ul li a:hover,
  .header .nav ul li a.active{
    color: #AE002B;
  }
  .header #nav-check{
    position: absolute;
    opacity:0;
    pointer-events: none;
  }
  .nav-toggler{
    height: 34px;
    width: 44px;
    background-color: #ffffff;
    border-radius: 4px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
  }
  .nav-toggler span{
    display: block;
    height: 2px;
    width: 20px;
    background-color: var(--color-1);
    position: relative;
  }
  .nav-toggler span::before,
  .nav-toggler span::after{
     content: '';
     position: absolute;
     width: 100%;
     height: 100%;
     background-color: var(--color-1);
     left:0;
  }
  .nav-toggler span::before{
    top: -6px;
  }
  .nav-toggler span::after{
    top: 6px;
  }
  @media(max-width: 991px){
      .nav-toggler{
        display: flex;
      }
      .header .nav{
        position: absolute;
        left:0;
        top:100%;
        width: 100%;
        background-color: var(--color-1);
        border-top: 1px solid rgba(255,255,255,0.2);
        opacity:0;
        visibility: hidden;
      text-align: center;
      }
      .header .nav ul li{
        display: block;
        margin:0;
  
      }
      .header #nav-check:checked ~ .nav{
         opacity: 1;
         visibility: visible;
      }
      .header #nav-check:focus ~ .nav-toggler{
        box-shadow: 0 0 15px #000000;
      }
      .header #nav-check:checked ~ .nav-toggler span{
        background-color: transparent;
      }
      .header #nav-check:checked ~ .nav-toggler span::before{
        top:0;
        transform: rotate(45deg);
      }
      .header #nav-check:checked ~ .nav-toggler span::after{
        top:0;
        transform: rotate(-45deg);
      }
      img{
        width: 100px;
        height: auto;
      }
  }
       /* ---------------------------section-------------------------------------- */

    /* .image{
        background: url("../pictures/about-us.jpg") center/cover no-repeat;
        
    } */

     .image{
        width: 90%;
        height: auto;
    }
    .content{
        background: black !important;
        display: flex !important;
        flex-direction: column !important;
        margin-left: 10px;
    }
    .content h2{
        text-transform: uppercase;
        font-size: 36px;
        letter-spacing: 4px;
        opacity: 0.9;
        text-align: center;
        color: #ffffff;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-weight: 300;
        opacity: 0.7;
        width: 100%;
    }
    .content span{
        height: 0.5px;
        width: 80px;
        background: black;
        margin: 30px 0;
        word-wrap: break-word;
    }
    .content p{
        font-weight: 300;
        opacity: 0.7;
        width: 100%;
        margin: 0 auto;
        line-height: 1.7;
        color: #ffffff;
        font-size: medium;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 15px;
    line-height: 1.8em;
    text-transform: none;
    text-decoration: none;
    font-weight: 300;
    font-style: normal;
    margin: 0 0 1em;
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    margin-left: 10px;
      }
      div ul li{
        text-align: -webkit-match-parent;
        margin-left: 30px;
        color: #ffffff;
        font-size: large;
      }

      .headingtop{
        display: block;
        margin-block-start: 1em;
        margin-block-end: 1em;
        margin-inline-start: 0px;
        margin-inline-end: 0px;
        color: #ffffff;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-weight: 300;
        opacity: 0.7;
        width: 100%;
        margin: 0 auto;
        line-height: 1.7;
      }


    
       /*****************/
    
    @media(max-width: 992px){
        section{
            grid-template-columns: 1fr;
            width: 100%;
        }
        .image{
            height: auto;
        }
        .content{
            height: 100vh;
        }
        .content h2{
            font-size: 20px;
            margin-top: 50px;
        }
        .content span{
            margin: 20px 0;
        }
        .content p{
            font-size: 14px;
        }
    }
              /* -------------------section---------------------------- */

              .content1{
                position: relative;
                margin: 130px auto;
                text-align: center;
                padding: 0 20px;
              }
              .content1 .text{
                font-size: 2.5rem;
                font-weight: 600;
                color: #ccc7c7;
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
                opacity: 0.7;
                width: 100%;
              }
              .content1 .p{
                font-size: 2.1875rem;
                font-weight: 600;
                color: white;
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
                opacity: 0.7;
                width: 100%;
              }

              .main-content{
                display: flex;
              }
              .main-content .box{
                flex-basis: 40%;
                padding: 10px 20px;
              }
              .box h2{
                font-size: 1.125rem;
                font-weight: 600;
                text-transform: uppercase;
                color: #ffffff;
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
                opacity: 0.7;
                width: 100%;
              }
              .box .content{
                margin: 20px 0 0 0;
                position: relative;
                color: #ffffff;
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
                font-weight: 300;
                opacity: 0.7;
                width: 100%;
              }
              .box .content:before{
                position: absolute;
                content: '';
                top: -10px;
                height: 2px;
                width: 100%;
                background: #1a1a1a;
              }
              .box .content:after{
                position: absolute;
                content: '';
                height: 2px;
                width: 15%;
                background: 	#AE002B;
                top: -10px;
              }
              .left .content p{
                text-align: justify;
              }
              .center .content .fas{
                font-size: 1.4375rem;
                background: #aa7676;
                height: 45px;
                width: 45px;
                line-height: 45px;
                text-align: center;
                border-radius: 50%;
                transition: 0.3s;
                cursor: pointer;
              }
              .center .content .fas:hover{
                background: #f12020;
              }
              .center .content .text{
                font-size: 1.0625rem;
                font-weight: 500;
                padding-left: 10px;
              }
              .bottom center{
                padding: 5px;
                font-size: 0.9375rem;
                background: #151515;
              }
              .bottom center span{
                color: #656565;
              }
              .bottom center a{
                color: 	#AE002B;
                text-decoration: none;
              }
              .bottom center a:hover{
                text-decoration: underline;
              }
              @media screen and (max-width: 900px) {
                .main-content{
                  flex-wrap: wrap;
                  flex-direction: column;
                }
                .main-content .box{
                  margin: 5px 0;
                }
              }





         /* ------------------------footer-------------------------- */

    .footer{
        background-color: black;
          padding: 70px 0;
    }
    .footer-col{
         width: 50%;
         padding: 0 35px;
      
    }
    .footer-col p{
        font-size: 18px;
        color: #ffffff;
        text-transform: capitalize;
        margin-bottom: 35px;
        font-weight: 500;
        position: relative;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-weight: 300;
        opacity: 0.7;
        width: 100%;
        margin: 0 auto;
        line-height: 1.7;
    }
    .footer-col ul li:not(:last-child){
        margin-bottom: 10px;
    }
    .footer-col .social-links a{
        display: inline-block;
        height: 40px;
        width: 40px;
        background-color: rgba(255,255,255,0.2);
        margin:0 10px 10px 0;
        text-align: center;
        line-height: 40px;
        border-radius: 50%;
        color: #ffffff;
        transition: all 0.5s ease;
    }
    .footer-col .social-links a:hover{
     color: #24262b;
        background-color: #ffffff;
    }
      
      /*responsive*/
    @media(max-width: 767px){
        .footer-col{
          width: 100%;
          margin-bottom: 30px;
    }
    }
    @media(max-width: 574px){
        .footer-col{
          width: 100%;
      }
      }

      @media(max-width: 574px){
        .logo-subtitle{
          font-size: large;
         margin-left: 15px;
        }

        .content-navbar img{
          width: 20%;
          height: auto;
        }
      }



     