:root {
    /**
     * colors
     */
     --first-color: rgb(255, 255, 255);
     --second-color: rgb(0, 86, 159);
    --raisin-black-2: hsl(245, 16%, 16%);
    --raisin-black-1: hsl(244, 17%, 19%);
    --majorelle-blue: #194f90;
    --ghost-white-1: hsl(240, 100%, 99%);
    --ghost-white-2: hsl(228, 50%, 96%);
    --white-opacity: hsla(0, 19%, 74%, 0.5);
    --independence: hsl(245, 17%, 27%);
    --lavender-web: hsl(247, 69%, 95%);
    --eerie-black: hsl(210, 11%, 15%);
    --cool-gray: hsl(244, 17%, 61%);
    --sapphire: hsl(211, 100%, 35%);
    --white: hsl(0, 0%, 100%);
  
    /**
     * typography
     */
  
    --ff-quicksand: "Quicksand", sans-serif;
    --ff-mulish: "Mulish", sans-serif;
  
    --fs-1: 36px;
    --fs-2: 28px;
    --fs-3: 20px;
    --fs-4: 17px;
    --fs-5: 16px;
    --fs-6: 15px;
    --fs-7: 14px;
  
    --fw-500: 500;
    --fw-600: 600;
    --fw-700: 700;
  
    /**
     * transition
     */
  
    --transition: 0.25s ease;
  
    /**
     * spacing
     */
  
    --section-padding: 80px;
  
  }
  /*top nav boder*/
  a, a:hover{
    text-decoration: none;
    color: var(--eerie-black);
  }

  .nav-border {
    padding: 14px 20px;
    background-color: #154b8d;
  }
  
  .border {
    display: flex;
    align-items: left;
    justify-content: right;
    text-decoration: none ;
  }
  
  .border .spantxt {
    margin-right: 10px;
    color: white;
    font-size: small;
    
  }
  .nav-border a:hover {
    color: #00ffea;
  }
  
  .border .fi {
    color: var(--ghost-white-2);
    margin-left: 5px;
    margin-right: 5px;
  }
  
    /* end top nav --works without responsive*/
  
    /*header*/
  
    *,
    *:before,
    *:after {
      margin: 0;
      padding: 0;
      box-sizing: border-box; 
      margin-left: 0;
    }
  
    
  ul {
      list-style: none;
    }
    
    a {
      text-decoration: none;
      cursor: pointer;
      color: #000000;
    }
    
    input,
    textarea,
    button,
    select,
    a {
      -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    }
    
    section {
      padding: 5rem 0;
      width: 100%;
    }
  
    .container-nav{
      width: 100%;
      padding: 0 1.5rem;
      max-width: 144rem;
    }
    header {
      position: relative;
      z-index: 100;
    }
    nav{
      position: relative;
      margin-top: 20px;
      height: 20px;
      width: 100%;
      margin-bottom: -38px;
      background-color: white;
      z-index: 100;
    }
    
    body.dark nav{
      border: 1px var(--majorelle-blue);
    
    }
    
    nav .nav-bar{
      height: 100%;
      max-width: 1440px;
      width: 100%;
      background-color:white;
      margin: 0 auto;
      padding: 0 30px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    
    nav .nav-bar .sidebarOpen{
      color: black;
      font-size: 25px;
      padding: 5px;
      cursor: pointer;
      display: none;
    }
    
    nav .nav-bar .logo img{
      width: 150px;
     
      text-decoration: none;
      font-family: var(--body-font);
    }
    
    .menu .logo-toggle{
      display: none;
    }
    
    .nav-bar .nav-links{
      display: flex;
      align-items: center;
    }
    
    .nav-bar .nav-links li{
      /*margin: 0 20px;*/
      list-style: none;
      font-family: var(--ff-mulish);
      margin-left: 20px;
    }
    
    .nav-links li a{
      position: relative;
      font-size: 17px;
      font-weight: 600;
      font-family: var(--ff-mulish);
      color: black;
      text-decoration: none;
      padding: 10px;
    }
    
    .nav-links li a::before{
      content: '';
      position: absolute;
      width: 100%;
      height: 2px;
      border-radius: 4px;
      background-color: var(--first-color);
      bottom: 0;
      left: 0;
      transform-origin: right;
      transform: scaleX(0);
      transition: transform .3s ease-in-out;
    }
    
    .nav-links li:hover a::before{
      transform-origin: left;
      transform: scaleX(1);
    }
    
    .nav-bar .darkLight-searchBox{
      display: flex;
      align-items: center;
    }
    
    .darkLight-searchBox .dark-light,
    .darkLight-searchBox .searchToggle{
      height: 40px;
      width: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 5px;
    }
    
    .dark-light i,
    .searchToggle i{
      position: absolute;
      color: var(--text-color);
      font-size: 22px;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .dark-light i.sun{
      opacity: 0;
      pointer-events: none;
    }
    
    .dark-light.active i.sun{
      opacity: 1;
      pointer-events: auto;
    }
    
    .dark-light.active i.moon{
      opacity: 0;
      pointer-events: none;
    }
    
    .searchToggle i.cancel{
      opacity: 0;
      pointer-events: none;
    }
    
    .searchToggle.active i.cancel{
      opacity: 1;
      pointer-events: auto;
    }
    
    .searchToggle.active i.search{
      opacity: 0;
      pointer-events: none;
    }
    
    .searchBox{
      position: relative;
    }
    
    .searchBox .search-field{
      position: absolute;
      bottom: -85px;
      right: 5px;
      height: 50px;
      width: 300px;
      display: flex;
      align-items: center;
      background-color: white;
      padding: 3px;
      border-radius: 6px;
      box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
      opacity: 0;
      pointer-events: none;
      transition: all 0.3s ease;
    }
    
    .searchToggle.active ~ .search-field{
      bottom: -74px;
      opacity: 1;
      pointer-events: auto;
    }
    
    .search-field::before{
      content: '';
      position: absolute;
      right: 14px;
      top: -4px;
      height: 12px;
      width: 12px;
      background-color: var(--nav-color);
      transform: rotate(-45deg);
      z-index: -1;
    }
    
    .search-field input{
      height: 100%;
      width: 100%;
      padding: 0 45px 0 15px;
      outline: none;
      border: none;
      border-radius: 4px;
      font-size: 14px;
      font-weight: 400;
      color: var(--search-text);
      background-color: var(--search-bar);
    }
    
    body.dark .search-field input{
      color: var(--text-color);
    }
    
    .search-field i{
      position: absolute;
      color: var(--nav-color);
      right: 15px;
      font-size: 22px;
      cursor: pointer;
    }
    
    body.dark .search-field i{
      color: var(--text-color);
    }
    
    @media (max-width: 790px) {
      nav .nav-bar .sidebarOpen{
          display: block;
      }
    
      .menu{
          position: fixed;
          height: 100%;
          width: 320px;
          left: -100%;
          top: 0;
          padding: 20px;
          background-color:white;
          z-index: 100;
          transition: all 0.4s ease;
      }
    
      nav.active .menu{
          left: -0%;
      }
    
      nav.active .nav-bar .navLogo a{
          opacity: 0;
          transition: all 0.3s ease;
      }
    
      .menu .logo-toggle{
          display: block;
          width: 100%;
          display: flex;
          align-items: center;
          justify-content: space-between;
      }
    
      .logo-toggle .siderbarClose{
          color: var(--text-color);
          font-size: 24px;
          cursor: pointer;
      }
    
      .nav-bar .nav-links{
          flex-direction: column;
          padding-top: 30px;
      }
    
      .nav-links li a{
          display: block;
          margin-top: 20px;
      }
    }
    @media (min-width: 791px) and (max-width: 1024px) {
      
    
      .menu {
        width: 100%; /* Adjust as needed for your design */
      }
    
    
    }
  
  
  
  
  
  
  
  
  
  /*-----------------------------------*\
    #RESET
  \*-----------------------------------*/
  
  *, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  li { list-style: none; }
  
  a { text-decoration: none; }
  
  a,
  img,
  span,
  input,
  label,
  button,
  ion-icon,
  textarea { display: block; }
  
  button {
    border: none;
    background: none;
    font: inherit;
    cursor: pointer;
  }
  
  input,
  textarea {
    border: none;
    font: inherit;
    width: 100%;
  }
  
  html {
    font-family: var(--ff-quicksand);
    scroll-behavior: smooth;
  }
  
  body { background: var(--white); }
  
  
  
  
  
  /*-----------------------------------*\
    #REUSED STYLE
  \*-----------------------------------*/
  
  .container { padding-inline: 15px; }
  
  .h1,
  .h2,
  .h3 {
    color: var(--independence);
    font-family: var(--ff-mulish);
    line-height: 1.2;
  }
  
  .h1 { font-size: var(--fs-1); }
  
  .h2 { font-size: var(--fs-2); }
  
  .h3 { font-size: var(--fs-3); }
  
  .btn {
    font-size: var(--fs-6);
    font-weight: var(--fw-700);
    padding: 15px 30px;
    border-radius: 4px;
    transition: var(--transition);
  }
  
  .btn:is(:hover, :focus) { transform: translateY(-2px); }
  
  .btn-primary {
    background: var(--majorelle-blue);
    color: var(--white);
  }
  
  .btn-primary:is(:hover, :focus) {
    --majorelle-blue: hsl(245, 67%, 55%);
    box-shadow: 0 3px 10px hsla(245, 67%, 59%, 0.5);
  }
  
  .btn-outline { 
    border: 1px solid var(--majorelle-blue);
    color: var(--majorelle-blue);
  }
  
  .btn-outline:is(:hover, :focus) {
    background: var(--majorelle-blue);
    color: var(--white);
    box-shadow: 0 3px 10px hsla(245, 67%, 59%, 0.5);
  }
  
  .btn-secondary {
    background: hsla(245, 67%, 59%, 0.15);
    color: var(--majorelle-blue);
  }
  
  .section-title { text-align: center; }
  
  .section-text {
    color: var(--cool-gray);
    font-size: var(--fs-6);
    line-height: 1.7;
    text-align: center;
  }
  
  
  
  
  
  
  
  
  
  
  /*-----------------------------------*\
    #HERO
  \*-----------------------------------*/
  
  .hero-title { 
    margin-bottom: 25px;
     color:var(--first-color);
    }
  
  .hero-text {
    color: white;
    font-size: var(--fs-4);
    font-weight: var(--fw-500);
    line-height: 1.8;
    margin-bottom: 70px;
  }
  .form-text {
    color: var(--white);
    font-weight: var(--fw-500);
    line-height: 1.8;
    margin-bottom: 20px;
  }
  
  .form-text span {
    display: inline-block;
    font-size: 20px;
  }
  
  .email-field {
    background: var(--ghost-white-2);
    padding: 17px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
  }
  
  .email-field:focus { outline-color: var(--majorelle-blue); }
  
  .hero .btn-primary { margin-inline: auto; }
  
  
  
  
  
  
  /*-----------------------------------*\
    #ABOUT
  \*-----------------------------------*/
  
  .about { padding-block: var(--section-padding); }
  
  .about-content { margin-bottom: 30px; }
  
  .about-icon {
    width: 60px;
    height: 60px;
    background: var(--lavender-web);
    display: grid;
    place-items: center;
    color: var(--majorelle-blue);
    font-size: 40px;
    border-radius: 4px;
    margin-bottom: 20px;
  }
  
  .about-title { margin-bottom: 10px; }
  
  .about-text {
    color: var(--cool-gray);
    font-weight: var(--fw-500);
    line-height: 1.8;
    margin-bottom: 20px;
  }
  
  .about-list {
    display: grid;
    gap: 20px;
  }
  
  .about-card {
    padding: 20px;
    text-align: center;
    box-shadow: 0 3px 12px hsla(233, 77%, 10%, 0.06);
    border-radius: 4px;
    transition: var(--transition);
  }
  
  .about-card:hover {
    background: var(--majorelle-blue);
    transform: translateY(-5px);
    box-shadow: 0 5px 18px hsla(245, 67%, 59%, 0.4);
  }
  
  .about-card .card-icon {
    width: 60px;
    height: 60px;
    background: var(--lavender-web);
    display: grid;
    place-items: center;
    color: var(--majorelle-blue);
    font-size: 28px;
    border-radius: 50%;
    margin-inline: auto;
    margin-bottom: 20px;
    transition: var(--transition);
  }
  
  .about-card:hover .card-icon {
    background: hsla(0, 0%, 100%, 0.15);
    color: var(--white);
    box-shadow: 0 0 0 8px hsla(0, 0%, 100%, 0.05);
  }
  
  .about-card .card-title {
    margin-bottom: 10px;
    transition: var(--transition);
  }
  
  .about-card:hover .card-title { color: var(--white); }
  
  .about-card .card-text {
    color: var(--cool-gray);
    font-size: var(--fs-6);
    font-weight: var(--fw-500);
    line-height: 1.8;
    transition: var(--transition);
  }
  
  .about-card:hover .card-text { color: hsla(0, 0%, 100%, 0.5); }
  
  
  
  
  
  /*-----------------------------------*\
  
  
  
  
  
  
  
  /*-----------------------------------*\
    #BLOG
  \*-----------------------------------*/
  
  .blog { padding-block: var(--section-padding); }
  
  .blog .section-title { margin-bottom: 20px; }
  
  .blog .section-text { margin-bottom: 40px; }
  
  .blog-list {
    display: grid;
    gap: 30px;
  }
  
  .blog-banner { margin-bottom: 20px; }
  
  .blog-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
  }
  
  .blog-meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    font-size: var(--fs-6);
    text-transform: uppercase;
    color: var(--cool-gray);
    margin-bottom: 10px;
  }
  
  .blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .blog-title {
    font-size: var(--fs-3);
    color: var(--independence);
  }
  
  .blog-text {
    color: var(--cool-gray);
    font-size: var(--fs-6);
    line-height: 1.7;
    margin-bottom: 15px;
  }
  
  .blog-link-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--majorelle-blue);
    font-weight: var(--fw-600);
  }
  
  .blog-link-btn:is(:hover, :focus) { color: var(--sapphire); }
  
  
  
  /*-----------------------------------*\
    #ABOUT
  \*-----------------------------------*/
  
  .development { padding-block: var(--section-padding); }
  
  
  
  .development-icon {
    width: 60px;
    height: 60px;
    background: var(--lavender-web);
    display: grid;
    place-items: center;
    color: var(--majorelle-blue);
    font-size: 40px;
    border-radius: 4px;
    margin-bottom: 20px;
  }
  
  .development-title { margin-bottom: 10px; }
  
  .development-text {
    color: var(--cool-gray);
    font-weight: var(--fw-500);
    line-height: 1.8;
    margin-bottom: 20px;
  }
  
  .development-list {
    display: grid;
    gap: 20px;
  }
  
  .development-card {
    padding: 20px;
    text-align: center;
    box-shadow: 0 3px 12px hsla(233, 77%, 10%, 0.06);
    border-radius: 4px;
    transition: var(--transition);
  }
  
  .development-card:hover {
    background: var(--majorelle-blue);
    transform: translateY(-5px);
    box-shadow: 0 5px 18px hsla(245, 67%, 59%, 0.4);
  }
  
  .development-card .development-card-icon {
    width: 60px;
    height: 60px;
    background: var(--lavender-web);
    display: grid;
    place-items: center;
    color: var(--majorelle-blue);
    font-size: 28px;
    border-radius: 50%;
    margin-inline: auto;
    margin-bottom: 20px;
    transition: var(--transition);
  }
  
  .development-card:hover .development-card-icon {
    background: hsla(0, 0%, 100%, 0.15);
    color: var(--white);
    box-shadow: 0 0 0 8px hsla(0, 0%, 100%, 0.05);
  }
  
  .development-card .development-card-title {
    margin-bottom: 10px;
    transition: var(--transition);
  }
  
  .development-card:hover .development-card-title { color: var(--white); }
  
  .development-card .development-card-text {
    color: var(--cool-gray);
    font-size: var(--fs-6);
    font-weight: var(--fw-500);
    line-height: 1.8;
    transition: var(--transition);
  }
  
  .development-card:hover .development-card-text { color: hsla(0, 0%, 100%, 0.5); }
  
  
  
  
  
  /*-----------------------------------*\
  
  
  
  
  /*-----------------------------------*\
    #CONTACT
  \*-----------------------------------*/
  
  .contact {
    padding-block: var(--section-padding);
    background: var(--ghost-white-1);
  }
  
  .contact .section-title { margin-bottom: 15px; }
  
  .contact .section-text { margin-bottom: 60px; }
  
  .contact-form { margin-bottom: 50px; }
  
  .input-wrapper { margin-bottom: 20px; }
  
  .contact label {
    color: var(--independence);
    font-weight: var(--fw-500);
    margin-bottom: 10px;
  }
  
  .contact .input-field {
    background: transparent;
    color: var(--independence);
    font-size: var(--fs-7);
    padding: 10px 15px;
    border: 1px solid hsla(244, 17%, 67%, 0.3);
    border-radius: 4px;
  }
  
  .contact .input-field:focus {
    outline: none;
    background: var(--ghost-white-2);
  }
  
  .contact .input-field::placeholder { color: var(--cool-gray); }
  
  textarea.input-field {
    margin-bottom: 20px;
    resize: vertical;
    min-height: 50px;
    height: 100px;
    max-height: 200px;
  }
  
  .contact .btn-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  
  .contact .btn-primary ion-icon { --ionicon-stroke-width: 40px; }
  
  .contact-list li:not(:last-child) { margin-bottom: 25px; }
  
  .contact-link {
    color: var(--cool-gray);
    font-weight: var(--fw-500);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5px;
  }
  
  .contact-link ion-icon {
    font-size: 20px;
    --ionicon-stroke-width: 30px;
  }
  
  .contact-link :is(span, address) { width: calc(100% - 25px); }
  
  .contact-link address { font-style: normal; }
  
  
  
  
  
  /*-----------------------------------*\
    #FOOTER
  \*-----------------------------------*/
  
  footer {
    background: var(--raisin-black-1);
    color: var(--white-opacity);
    font-weight: var(--fw-500);
  }
  
  .footer-top { padding-block: var(--section-padding); }
  
  .footer-brand { margin-bottom: 60px; }
  
  footer .logo { margin-bottom: 25px;}
  
  .footer-brand .logo img{
    width: 150px;
  } 
   
  
  .footer-text {
    font-size: var(--fs-6);
    line-height: 1.8;
    margin-bottom: 25px;
  }
  
  .social-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
  }
  
  .social-link {
    color: var(--white-opacity);
    font-size: 25px;
    transition: var(--transition);
  }
  
  .social-link:is(:hover, :focus) { color: var(--white); }
  
  .footer-link-box {
    display: grid;
    gap: 50px;
  }
  
  .footer-list li:first-child { margin-bottom: 20px; }
  
  .footer-item-title {
    color: var(--white);
    font-family: var(--ff-mulish);
    font-weight: var(--fw-700);
  }
  
  .footer-link {
    color: var(--white-opacity);
    font-size: var(--fs-6);
    transition: var(--transition);
    padding-block: 10px;
  }
  
  .footer-link:is(:hover, :focus) {
    color: var(--white);
    transform: translateX(5px);
  }
  
  .footer-bottom {
    background: var(--raisin-black-2);
    padding-block: 20px;
    text-align: center;
  }
  
  .copyright a {
    display: inline-block;
    color: var(--white-opacity);
    transition: var(--transition);
  }
  
  .copyright a:is(:hover, :focus) { color: var(--white); }
  
  
  
  
  
  /*-----------------------------------*\
    #MEDIA QUERIES
  \*-----------------------------------*/
  
  /**
   * responsive for larger than 450px screen
   */
  

   @media (min-width: 375px) {
    .hero-content{
      position: absolute;
      top: 16%;
      left: 7%;
    }
    .hero-text{
      font-size: 10;
    }
   }


  @media (min-width: 450px) {
  
    /**
     * HERO
     */
  

     

    .hero-form { position: relative; }
  
    .email-field {
      margin-bottom: 0;
      padding-right: 155px;
    }
  
    .hero .btn-primary {
      position: absolute;
      top: 5px;
      right: 5px;
      padding-block: 12.5px;
    }
  
  
  
    /**
     * ABOUT
     */
  
    .about-card .card-text {
      max-width: 300px;
      margin-inline: auto;
    }
  
    
    /**
     * ABOUT
     */
  
     .development-card .development-card-text {
      max-width: 300px;
      margin-inline: auto;
    }
  
  
  }
  
  
  
  
  
  /**
   * responsive for larger than 576px screen
   */
  
  @media (min-width: 576px) {
  
    /**
     * CUSTOM PROPERTY
     */
  
    :root {
  
      /**
       * typography
       */
  
      --fs-1: 52px;
  
    }
  
  
  
    /**
     * REUSED STYLE
     */
  
    .container {
      max-width: 525px;
      margin-inline: auto;
    }
  
    .section-text {
      max-width: 460px;
      margin-inline: auto;
      margin-bottom: 80px;
    }
  
  }
  
  
  
  
  
  /**
   * responsive for larger than 768px screen
   */
  
  @media (min-width: 768px) {
  
    /**
     * REUSED STYLE
     */
  
    .container { max-width: 720px;  }
  
    .section-text { max-width: 645px; }
  
  
  
    /**
     * HERO
     */
  
    .hero :is(.hero-text, .form-text, .hero-form) { max-width: 520px; }
  
    .hero-banner {
      max-width: 600px;
      margin-inline: auto;
    }
  
  
  
    /**
     * ABOUT
     */
  
    .about-list { grid-template-columns: 1fr 1fr; }
  
  
  
      /**
     * development
     */
  
     .development-list { grid-template-columns: 1fr 1fr; }
  
  
  
    /**
     * CONTACT
     */
  
    .contact-form .wrapper-flex {
      display: flex;
      gap: 30px;
    }
  
    .wrapper-flex .input-wrapper { width: 50%; }
  
  
  
    /**
     * FOOTER
     */
  
    .footer-link-box { grid-template-columns: repeat(3, 1fr); }
  
  }
  
  
  
  
  
  /**
   * responsive for larger than 992px screen
   */
  
  @media (min-width: 992px) {
  
    /**
     * REUSED STYLE
     */
  
    .container { max-width: 900px; }
  
    .section-text { max-width: 450px; }
  
  
  
    /**
     * HEADER
     */
  
    .header {
      overflow: visible;
      padding-block: 0;
      height: unset;
    }
  
    .header.active { height: unset; }
  
    .menu-toggle-btn { display: none; }
  
    .navbar {
      position: static;
      visibility: visible;
      opacity: 1;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-inline: 0;
    }
  
    .navbar-list {
      display: flex;
      justify-content: center;
      align-items: center;
      width: max-content;
      gap: 40px;
      margin-inline: auto;
    }
  
    .header-actions {
      display: flex;
      align-items: center;
      gap: 40px;
    }
  
    .navbar-link,
    .header-action-link { padding-block: 25px; }
  
  
  
    /**
     * HERO
     */
  
    .hero .container {
      display: grid;
      grid-template-columns: 4fr 5fr;
      align-items: center;
      gap: 60px;
    }
  
    .hero-content { margin-bottom: 0; }
  
  
  
    /**
     * ABOUT
     */
     .about h2{
      text-align: center;
      margin-bottom: 50px;
     }
     .about p{
      text-align: center;
      margin-top: 30px;
     }
  
    .about .container {
      display: flex;
      align-items: center;
      gap: 50px;
    }
  
    .about-content {
      margin-bottom: 0;
      width: 40%;
    }
  
    .about-list {
      gap: 30px;
      padding-bottom: 50px;
    }
  
    .about-list li:nth-child(odd) { transform: translateY(50px); }
  
  
  
    /**
   
  
  
  
    /**
     * BLOG
     */
  
    .blog-list { grid-template-columns: repeat(3, 1fr); }
  
    .blog .section-text { margin-bottom: 50px; }
  
  
  
  
  
    /* ABOUT
    */
    .development h2{
     text-align: center;
     margin-bottom: 50px;
    }
    .development p{
     text-align: center;
     margin-top: 30px;
    }
  
   .development .container {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 50px;
   }
  
   
  
   .development-list {
     gap: 30px;
     padding-bottom: 50px;
   }
  
   .development-list li:nth-child(odd) { transform: translateY(50px); }
  
  
  
    /**
     * CONTACT
     */
  
    .contact-wrapper {
      display: grid;
      grid-template-columns: 3fr 2fr;
      gap: 80px;
      align-items: center;
    }
  
    .contact-form { margin-bottom: 0; }
  
  
  
    /**
     * FOOTER
     */
  
    .footer-top .container {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 50px;
    }
  
    .footer-brand {
      margin-bottom: 0;
      max-width: 300px;
    }
  
    .footer-list { width: 140px; }
  
  }
  
  
  
  
  
  /**
   * responsive for larger than 1200px screen
   */
  
  @media (min-width: 1200px) {
  
    /**
     * REUSED STYLE
     */
  
    .container { max-width: 1150px; }
  
  
  
    /**
     * HERO
     */
  
    .hero .container { gap: 150px; }
  
  
  
    /**
     * FOOTER
     */
  
     
  
    .footer-link-box { margin-right: 40px; }
  
    .footer-list { width: 170px; }
  
  }
  @media only screen and (max-width: 768px) {
    .nav label {
      overflow: hidden;
    }
  }
  @media only screen and  (max-width: 768px) {
    .slide img[alt="main"] {
      display: none;
    }
  }