/* // Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  * {
    font-family: "Source Sans Pro", sans-serif;
  }

  /* HEADER */
  .header-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 150px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    background-color: transparent;
  }

  .top-nav {
    display: flex;
    align-items: center;
    position: relative;
    width: unset;
  }

  /* THIS IS JUST FOR DESKTOP VIEW, OVERIDING THE INACTIVE FOR MOBILE */
  .top-nav ul.nav-inactive {
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    display: flex;
    flex-direction: row;
    list-style-type: none;
    overflow: hidden;
    padding: 0 40px 5px;
    column-gap: 30px;
    margin-bottom: 0;
    position: static;
    height: unset;
    padding-left: 150px;
  }

  .top-nav ul.nav-active {
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    display: flex;
    list-style-type: none;
    overflow: hidden;
    padding: 0 40px 5px;
    column-gap: 30px;
    margin-bottom: 0;
    position: static;
    height: unset;
  }

  .top-nav ul {
    list-style-type: none;
    overflow: hidden;
    display: block;
  }

  .top-nav ul li {
    text-align: left;
  }

  .top-nav ul li .nav-link {
    text-decoration: none;
    color: #fff;
    font-size: unset;
  }

  /* Toggle Btn*/

  .hamburger-bars {
    display: none;
  }

  .animated-icon1 {
    display: none;
  }

  /* BANNER SECTION -HOME PAGE */
  .banner-section {
    height: 100vh;
    min-height: unset;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: rgb(34, 29, 29);
  }

  .banner-section-inner {
    height: 100%;
    display: flex;
    align-items: center;
  }

  .banner-text {
    width: 68%;
    padding: 25px 150px;
    height: unset;
  }

  .banner-text .header-text {
    color: #fff;
    font-size: 40px;
    text-transform: capitalize;
    margin-bottom: 20px;
  }

  .banner-text .content-text {
    color: #fff;
    font-size: 22px;
  }

  .banner-section .banner-footer {
    /* height: 90px; */
    padding: 25px 150px;
    width: 100%;
    text-align: left;
    position: absolute;
    bottom: 0;
    z-index: 30;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .banner-section .banner-footer span {
    font-size: 20px;
  }

  .brand-logos-container .brand-logos {
    display: flex;
    list-style: none;
    gap: 40px;
    margin-bottom: 0;
    align-items: center;
  }

  /* COGART SERVICES- HOME PAGE */
  .services-section {
    padding: 60px 150px;
    background: #fff;
  }

  .services-section .services-section-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .services-section .services-section-inner .services-header-section {
    width: 100%;
    text-align: center;
  }

  .services-section .services-section-inner .services-header-section h1 {
    font-size: 26px;
  }

  .services-section .services-section-inner .services-header-section p {
    font-size: 16px;
  }

  .services-subcontent {
    /* border: solid 1px red; */
    padding: 45px 20px;
    display: flex;
    flex-direction: column;
  }

  .services-icon {
    display: flex;
    justify-content: center;
    flex: 25%;
    padding: 15px 0;
  }

  .services-icon .iconify {
    font-size: 40px;
  }

  .services-content .content-header,
  .services-content .content-description {
    text-align: center;
  }

  .services-content .content-header {
    text-transform: uppercase;
    font-size: 20px;
    flex: 25%;
  }

  .services-content .content-description {
    font-size: 16px;
    flex: 50%;
  }

  /* COGART ADVANTAGE HOME-PAGE */
  .advantage-section {
    padding: 75px 150px;
  }

  .advantage_header-section {
    width: 100%;
    text-align: center;
  }

  .advantage_header-section h2 {
    text-transform: uppercase;
  }

  .advantage_content-section {
    padding-top: 60px;
  }

  .advantage_content-section .card-container {
    padding: 15px 25px;
    display: flex;
    flex-direction: column;
  }

  .advantage_content-section .card-container h4 {
    text-align: left;
  }

  .advantage_content-section .card-container p {
    text-align: left;
  }

  /* CONTACT US */
  .contact-us_section {
    padding: 75px 150px;
  }

  .contact-us_inner-section .text-group {
    flex: 50%;
  }

  .contact-us_inner-section .text-group h1 {
    font-size: 40px;
  }

  .contact-us_inner-section .text-group p {
    font-size: 20px;
  }

  .contact-us_inner-section .img-section {
    flex: 50%;
    justify-content: flex-start;
  }

  .contact-us_section .img-section img {
    height: 350px;
  }
}
