* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    /* transition: background 150ms ease-in-out, color 100ms ease; */

}

:root {
    --body-color: rgb(253, 253, 255);
    --nav-color: rgb(250, 254, 255);
    --side-nav: rgb(248, 254, 255);
    --cards-color:rgb(253,253,255);
    --tags-color:#555 ;
    --text-color: rgb(41, 41, 41);
    --search-bar: rgb(219, 217, 217);
    --search-text: rgb(37, 26, 26);
    --hover-color: rgb(31, 32, 32);
    --section-color: rgb(250, 254, 255);;
    --btn-link-color:  rgb(255, 255, 255);
    --border-color: rgb(9, 5, 65);
    --box-shadow: 0 4px 12px 0 rgba(221, 218, 218, 0.4);
    --border-color:1px solid rgb(211, 211, 211);
    --common-color: rgb(248, 214, 214);
    --footer-color: rgb(250, 254, 255);;
    --code-color: rgb(236, 235, 235);
    --button-colors: rgb(16, 151, 135);
    --hover-common: rgb(236, 235, 235);
    --comment-color: rgb(250, 254, 255);
    --category-color: teal;
    --bread-color:rgb(55, 0, 255);

}
html {
    scroll-behavior: smooth;
}

body {

    height: 100vh;
    background-color: var(--body-color);
    color: var(--text-color);
    line-height: 1.4;
    /* transition: background 300ms ease-in-out, color 400ms ease-in-out; */

}
body::before {
    display: block;
    content: '';
    height: 80px;
}

body.dark {
    --body-color: rgb(13,17,23);  
    /* #18191A */
    --nav-color:rgb(24,38,52);
    /* #242526 */
    --side-nav: rgb(15,20,27);
    /* #242525 */
    --cards-color:rgb(22,27,34);
    /* rgb(36, 37,38) */
    --tags-color:rgb(80, 80, 112) ;
    --text-color: rgb(228,230,235);
    --search-bar: #242526;
    --search-text: #CCC;
    --hover-color: rgb(5, 12, 14);
    --section-color:rgb(24,38,53);
    /* black */
    --btn-link-color:  rgb(255, 117, 24);
    --border-color: #fff;
    --box-shadow: 0 8px 8px 0 rgba(7, 3, 3, 0.6);
    --border-color:1px solid rgb(255, 102, 0);
    --common-color:#555;
    --footer-color: rgb(11,21,24);
    /* rgb(13,13,26) */
    --code-color: #18191A;
    --button-colors: rgb(35,116,225);
    --hover-common: rgb(5,12,14);
    --comment-color: rgb(58,59,60);
    --category-color: rgb(8,253,216);
    --bread-color:rgb(8,253,216);

}


#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 18px;
    width: 50px;
    height: 50px;
    border: none;
    outline: none;
    background-color: var(--button-colors);
    color: whitesmoke;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
  }
  
  #myBtn:hover {
    background-color: var(--hover-color);
  }

.items {
    border: none; /* Remove borders */
    color: var(--text-color); /* Add a text color */
    padding: 14px 28px; /* Add some padding */
    cursor: pointer; /* Add a pointer cursor on mouse-over */
}

.success {background-color: #4CAF50;} /* Green */
.success:hover {background-color: #46a049;}

.info {background-color: #2196F3;} /* Blue */
.info:hover {background: #0b7dda;}

.warning {background-color: #ff9800;} /* Orange */
.warning:hover {background: #e68a00;}

.danger {background-color: #f44336;} /* Red */
.danger:hover {background: #da190b;}

.default {background-color: #e7e7e7; color: black;} /* Gray */
.default:hover {background: #ddd;}

p {
    font-size: 18px;
    font-weight: 450; 
}

.custom {
    padding-left: 5px;
    font-size: 12px;
}
.blue {
    background-color: blue;
    color: white;
}
.green {
    background-color: green;
    color: white;
}

img {
    width: 100%;
    height: auto;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
}

/* width */
::-webkit-scrollbar {
    width: 2px;
}



/* Track */
::-webkit-scrollbar-track {
    /* background: #f1f1f1; */
    background: var(--body-color);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

#preloader {
    background: #fff url(/static/images/Ripple3.gif) no-repeat center;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 100;
}

.icon_items {
    font-size:20px;
}
nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 80px;
    width: 100%;
    background-color: var(--nav-color);
    z-index: 100;
    box-shadow:var(--box-shadow);
    /* transition: background 500ms ease-in-out, color 1000ms ease-in-out; */

}

nav .navigation-bar .logo img {
    display: block;
    padding-top: 10px;
    margin: auto;
}
nav .navigation-bar .sidebarOpen {
    color: var(--text-color);
    font-size: 25px;
    padding: 5px;
    cursor: pointer;
    display: none;
}
/* nav .navigation-bar .logo a::before {
    content: '';
    position: absolute;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background-color: var(--text-color);
} */


nav .navigation-bar {
    position: relative;
    height: 100%;
    max-width: 1000px;
    width: 100%;
    background-color:var(--nav-color);
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}
.menu .logo-toggle {
    display: none;
}
.logo a:hover {
    animation: color-rotate 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
.navigation-bar .nav-links {
    display: flex;
    align-items: center;
    

}

.nav-links li {
    margin: 0 5px;
    list-style: none;

}

.nav-links li a {
    position: relative;
    text-decoration: none;
    font-size: 24px;
    font-weight: 400;
    color: var(--text-color);
    padding: 10px;

}
.nav-links a::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 2px;
    width: 45px;
    border-radius: 50%;
    background-color: var(--text-color);
    opacity: 0;
    transition: all 0.2s ease;
}
.nav-links li:hover a::before{
    opacity: 1;
    background: blueviolet;
}
.navigation-bar .darkLight-searchBox{
    display: flex;
    align-items: center;

}
.darkLight-searchBox .dark-light,
.darkLight-searchBox .search-toggle {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: red; */
    margin: 0 5px;
}

.dark-light i,
.search-toggle i {     
    position: absolute;
    color: var(--text-color);
    font-size: 22px;
    cursor: pointer;

}
.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;
}

.search-toggle i.cancel {
    opacity: 0;
    pointer-events: none;
}

.search-toggle.active i.cancel {
    opacity: 1;
    pointer-events: auto;
}

.search-toggle.active i.search {
    opacity: 0;
    pointer-events: none;
}

.search-box .search-field{
    position: absolute;
    bottom: -85px;
    right: 5px;
    height: 50px;
    width: 300px;
    display: flex;
    align-items: center;
    background-color: var(--nav-color);
    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;
}

.search-toggle.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: var(--search-bar);
}
.search-field i {
    position: absolute;
    color: var(--nav-color);
    right: 15px;
    font-size: 22px;
}

.stuff {
    background-color: rgb(21,44,63);
}

.featured {
    width: 100%;
    height: auto;
    background-image: url(/static/images/comp.jpg);
    background-color: var(--section-color);
    background-position: center;
    background-size: cover;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 3s ease;
}


.featured:hover {
    cursor: pointer;
    animation: color-rotate 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
@keyframes color-rotate {
    from {
        filter: hue-rotate(0deg);
    }
    to {
        filter: hue-rotate(360deg);
    }
}


.cards {
   
    padding: 30px;
    margin: 30px 0;
    border-radius: 8px;
    /* border: 0.2px solid green; */
    backdrop-filter: saturate(180%) blur(25px);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 80%;
    color: var(--text-color);

    
}

@supports not (backdrop-filter: blur()){
    .cards {
        background-color: var(--body-color);
    }
}
.cards h1 {
    line-height: 1.2;
    margin-bottom: 8px;
    font-size: 38px;
}
.cards p {
    margin: 20px 0;
    line-height: 1.4;
}
.btn-link {
    display: inline-block;
    margin: 20px 0;
    border: none;
    padding: 8px 15px;
    border-radius: 3px;
    cursor: pointer;
    transition: 300ms ease;
    background: var(--button-colors);
    
}
.cards a {
    text-decoration: none;
    color: white;
}
.btn-link:hover {
    background-color: var(--hover-color);
}
.profile {
    height: auto;
    padding-right: 20px;
}
.content {
    margin: 20px;
    font-size: 18px;
    color: whitesmoke;
    /* background-color: teal; */

}
.profile img {
    width: 200px;
    border-radius: 50%;
    margin: 20px 0;
    /* border: 2px solid var(--border-color); */
}
.highlight {
    color: var(--btn-link-color);
}
.main-content {
    max-width: 1000px;
    width: 100%;
    padding: 30px;
    width: 95%;
}

.icon__set {
    text-align: center;
    margin: 5px;
}
.grid .card {
    border: 1px solid red;
    width: 100%;
    height: auto;
    margin-bottom: 10px; 
}
.grid .card {
    
    text-align: center;
    padding: 20px 0;
    font-size: 30px;
    /* color: var(--text-color); */
}
.card-content {
    margin: 20px 8px;
}
.card img {
    width: 100%;
    height: auto;
}
.image img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -100;
}
/* responisive */
body.dark .search-field i {
    color: var(--text-color);
}

/* socials start */

.icon-bar {
    position: fixed;
    top: 50%;
    left: 0%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
  }
  
  /* Style the icon bar links */
  .icon-bar a {
    display: block;
    text-align: center;
    padding: 12px;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
  }
  
  /* Style the social media icons with color, if you want */
  .icon-bar a:hover {
    background-color: #000;
  }
  
  .facebook {
    background: #3B5998;
    color: white;
  }
  
  .twitter {
    background: #55ACEE;
    color: white;
  }
  
  
  .linkedin {
    background: #007bb5;
    color: white;
  }
  
  .github {
      background: #01447e;
      color: white;
  }
  .ig {
      background-color:#4582ad;
      color: white;
  }

  .whatsapp {
      width: 50px;
      height: 50px;
      position: fixed;
      left: 5%;
      bottom: 5%;
  }
/* socials end */
/* hero header section start*/
.hero-header {
    padding: 22px;
    font-size: 16px;
    text-align: center;
    background: var(--section-color);
    color: var(--text-color);
}

/* Style the list */
ul.breadcrumb {
    padding: 10px 16px;
    list-style: none;
    /* background-color: #eee; */
}

/* Display list items side by side */
ul.breadcrumb li {
    display: inline;
    font-size: 18px;
}



/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li+li:before {
    padding: 8px;
    color: orangered;
    content: "\003E";
    /* content: "/\00a0"; */
}

/* Add a color to all links inside the list */
ul.breadcrumb li a {
    color:var(--bread-color);
    text-decoration: none;
}

/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
    color: red;
    text-decoration: underline;
}
/* hero header ends */

/* Home conttent */
.code-pre {
    border: 1px solid rgb(211, 211, 211);
    border-radius: 5px;
    margin: 20px 0;
    padding: 8px 10px;
    width: 50%;
    border: var(--border-color);
    background-color: var(--code-color);
    font-size: 24px;
    font-weight: 500;
}
.root {
    color: red;
    
}

.about-profile {
    /* margin: 20px; */
    padding-top: 20px;
}
.about-profile img {
    width: 300px;
    /* width: 100%; */
    border-radius: 10px;    
    height: auto;
}

.container {
    max-width: 1000px;
    width: 100%;
    margin: auto;
    padding: 5px 15px;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: minmax(200px, auto);
    grid-gap: 10px;
    justify-content: center;
    align-content: center;
    margin: 20px 0;     
}


.grid-about--container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    grid-gap: 30px;
    justify-content: center;
    align-content: center;
    margin: 20px 0;  

}
.grid-tech--container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    grid-gap: 10px;
    justify-content: center;
    align-content: center;
    margin: 20px 0;  

}

.about-info {
    padding: 20px 0;
}
.grid-footer--container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    grid-auto-rows: minmax(200px, auto);
    grid-gap: 10px;
    justify-content: center;
    align-content: center;
    margin: 20px 0;     
}
.grid-card {
    width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 5px;
    /* box-shadow: 0 8px 12px 0 rgba(7, 3, 3, 0.6); */
    box-shadow: var(--box-shadow);
    background: var(--cards-color);
    color: var(--text-color);
}

.grid-footer--area {
    width: 100%;
    height: auto;
    margin: 20px 0;
    background: var(--footer-color);
    color: var(--text-color);
}
.blog-main--card {
    margin: 20px 0;
    background-color: var(--cards-color);
    box-shadow: var(--box-shadow);   
    border-radius: 5px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    
}
.blog-main--image {
    padding-right:20px;
}
.blog-main--image img {
    width: 250px;
    /* width: 100%; */
    height: auto;
    border-radius: 5px;
}
.blog-main--content h2 {
    line-height: 1.2;
    margin-bottom: 8px;
    font-size: 28px;
}
.blog-main--links {
    display: flex;
    flex-direction: row;
    align-items:center;
    justify-content: space-between;
}
.blog-main--comment {
    margin-top: 30px;
}
.category-links {
    color: var(--category-color);
    font-size: 20px;
}
.category-links:hover {
    color: red;
}
.blog-options {
    margin: 15px 0;
    padding: 20px;
    /* border: 1px solid red; */
}
.blog--list {
    display: flex;
    flex: column;
    justify-content: space-between;
}
.blog--options-list {
    line-height: 35px;
  
}
.blog-single--image img {
    border-radius: 5px;
}
.blog-options--comment {
    padding: 20px;
    margin-bottom:20px;
}
.comment-section {
    height: 70vh;
    overflow-y: scroll;
    scroll-behavior: smooth;
}

/* search results */
.search-results {
    display: grid;
    place-items: center;
    font-size: 30px;
    color: red;
}
.action-btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}

.row::after {
    content: "";
    clear: both;
    display: table;
}
[class*="col-"] {
    float: left;
}
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}
.col-m-3 {width: 25%;}
.border {
    border: var(--border-color);
    border-radius: 5px;
    margin: 5px 0;
    padding: 3px;
}

.learn__items {
    display: flex;
    justify-content: center;
    align-items: center;
}
.program__item {
    display: flex;
    justify-content: flex-end;
}
.border-top {
    border-top: var(--border-color);
    margin: 5px 0;
    padding: 8px 0;
    /* height: 2px; */
}
.horizontal {
    width: 120px;
    margin: 10px 0 20px 0;
    border-width: 1px;
    border-style: solid;
    border-color: #dd4b39;
}
.hr {
    margin: 10px 0 20px 0;
    border: 1px solid lightgray;
}
/* form styles start */
.heading {
    text-align: center;
    margin: 20px 0;
}

.comment-post {
    border-left: 4px solid green;
    padding:3px 2px;
    /* font-size: 10px; */
    background-color:var(--comment-color);
    border-radius: 5px;
    color: var(--text-color);

}
.tags {
    display: inline-block;
    background-color: var(--tags-color);
    color: whitesmoke;
    margin: 3px 0;
    padding: 2px 5px;
    border-radius: 5px;
}
/* form styles start */
input[type=text],textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    background-color: var(--body-color);
    color: var(--text-color);
}
input[type=email] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    background-color: var(--body-color);
    color: var(--text-color);
}
input[type=submit] {
    background-color: var(--body-color);
    color: var(--text-color);
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
input[type='submit']:hover {
    background-color: var(--hover-bg);
    color: var(--secondary-color);
}
/* form styles end */

.button-links {
    display: inline-block;
    margin: 8px 0;
    border: none;
    padding: 8px 15px;
    border-radius: 3px;
    cursor: pointer;
    transition: 300ms ease;
    /* background: var(--side-nav); */
    background-color: var(--button-colors);
    /* color: var(--text-color); */
    color: #f5f5f5;
}
.button-links:hover{
    background-color: var(--hover-color);
    color: white;
    
}
.a-link {
    text-decoration: none;
    /* color: var(--text-color); */ 
    color: white;
}
.a-link:hover{
    color: orangered;
}
/* footer start */

span.topic__items {
    align-items: flex-end;
    font-size: inherit;
    font-weight: 700;
}
.pagination-container {
    text-align: center;
}
.pagination {
    display: inline-block;
    margin: 0;
    padding: 0;
    
}

.pagination li {
    display: inline;
}

.pagination a {
    color: var(--text-color);
    text-decoration: none;
    padding: 7px 14px;
    float: left;
    border-right: 1px solid #0076ff;
    transition-duration: 0.3s;
}
.pagination a:hover {
    background-color:var(--button-colors);
    color: white;
}
.pagination li:last-child > a {
    border: none;
}
.active-li {
    color: white !important;
    background-color: teal;
}
footer {
    position: scroll;
    margin: 20px 0;
    /* left: 0; */
    bottom: 5px;
    width: 100%;
    background-color: var(--footer-color);
    color: var(--text-color);
}
.footer-layout {
    font-size: 19px;
    
}
.underlined {
    text-decoration: underline;
}
.contact-info {
    padding-right: 30px;
}
.button-btn-link {
    color: #f5f5f5;
}


.copyright {
    margin: 20px 0;
    background-color: var(--side-nav);
    /* font-weight: 300; */
    text-align: center;
}


/* footer ends */


/* Accordion starts */
.accordion {
    background-color: var(--body-color);
    color: var(--text-color);
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 19px;
    font-weight: 500;
    transition: 0.4s;
}

.active, .accordion:hover {
    background-color: var(--hover-common);
}

.accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2212";
}

.panel {
    padding: 0 18px;
    background-color: var(--body-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
/* accordion ends */

.post-extra {
    margin: 20px 0;
   
}
.post-extra  p{
    font-size: 14px;
   
}
@media (max-width: 538px){
    .grid-blog {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .grid-filter {
        display: flex;
        flex-direction: column;
        padding: 0;
        /* align-items: center;
        justify-content: center; */
    }
    .blog-image {
        padding-right: 0;
    }
  
    
}

@media (max-width: 595px) {
    .blog-main--card {
        
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
    }

    .blog-main--image {
       
        padding-right: 0;
        
    }
    .blog-main--image img {
        width: 100%;
        
    }
    .blog-options {
        padding: 0;
    }

    .col-m-3 {width: 100%;
    }

    
   

}
@media (max-width: 636px) {
    .about-profile img {
      
        width: 100%;
        
    }
}

@media (max-width: 790px) {

    /*  */
    
    nav .navigation-bar .sidebarOpen {
        display: block;
    }
    .menu {
        position: fixed;
        height: 100%;
        width: 320px;
        left: -100%;
        top: 0;
        padding: 20px;
        background-color: var(--side-nav);
        z-index: 100;
        transition: all .4s ease-in-out;
    }
    nav.active .menu {
        left: -0%;

    }

    nav.active .navigation-bar .nav-logo 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 .sidebar-close {
        color: var(--text-color);
        font-size: 24px;
        cursor: pointer;
       
    }
    .navigation-bar .nav-links {
        flex-direction: column;
        padding-top: 60px;
    }
    .nav-links li a {
        display: block;
        margin-top: 20px;
        cursor: pointer;
    }
    .nav-links li a:hover {
        background: var(--button-colors);
    }


    nav .navigation-bar .logo img {
        width: 90%;
        height: auto;
    }
    .featured {
        width: 100%;
        height: auto;
        background-image: none;  
    }

    .featured:hover {
        cursor: default;
        animation:none;
    }
    .cards {
        backdrop-filter: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;   
        margin: 0;
        padding: 0;
    }
    .profile {
        padding: 0;
    }
    .content {
        margin-top: 12px;
        text-align: center;
        color: var(--text-color);
    }

    .code-pre { 
        width: 100%;
    }
    .corousel {
        scroll-snap-type: x mandatory;
        scroll-padding: 0 20px;
    }
    
    .corousel .grid-card {
        scroll-snap-align: start;
    }
    .grid-blog {
        width: 100%;
    }
    .col-10{width: 100%;}
    .col-9 {width: 100%;}
    .col-8 {width: 100%;}
    .col-4 {width: 100%;}
    .col-3 {width: 100%;}
    .col-m-3 {width: 50%;}
    .icon-bar {
       display: none;
      }
}













