.float-container
{
  height: 100px;
}


.float-child {
  float: left;
  padding: 20px;
}  


.float-child .float-container
{
  float: left;
  width: 200px;
}

.navbar {
    background-color:#0D6094;
    overflow: hidden;
    text-align: center;
    height: 40px;
    margin-top: 85px;
}

.navbar a:hover {
    background-color: #ddd;
    color: black;
}

.dropdown {
    display: inline-block;
}

.dropbtn {
    color: white;
    padding: 14px 16px;
    font-size: 16px;
    border: none;
    background-color: inherit;
    border-right: 1px solid white;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    z-index: 100;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    display: block;
    text-decoration: none;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}


.navbar a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 18px;
    text-decoration: none;
}

body
{
    width: 100%;
    background-color: white;
}





@mixin aspect-ratio($width, $height) {
    position: relative;
      
    &:before {
      display: block;
      content: "";
      width: 100%;
      padding-top: ($height / $width) * 100%;
    }
      
    > img {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          width: 100%;
          height: 100%;
    }
  }
  

  
  section {
      background: #F4F4F4;
      padding: 50px 0;
  }
  
  .container {
      max-width: 1500px;
      margin: 0 auto;
      padding: 0 20px;
  }
  
  .carousel {
      display: block;
      text-align: left;
      position: relative;
      width: 100%;
      margin-bottom: 22px;
      
      > input {
          clip: rect(1px, 1px, 1px, 1px);
          clip-path: inset(50%);
          height: 1px;
          width: 1px;
          margin: -1px;
          overflow: hidden;
          padding: 0;
          position: absolute;
          
          &:nth-of-type(6):checked ~ .carousel__slides .carousel__slide:first-of-type { margin-left: -500%; }
          &:nth-of-type(5):checked ~ .carousel__slides .carousel__slide:first-of-type { margin-left: -400%; }
          &:nth-of-type(4):checked ~ .carousel__slides .carousel__slide:first-of-type { margin-left: -300%; }
          &:nth-of-type(3):checked ~ .carousel__slides .carousel__slide:first-of-type { margin-left: -200%; }
          &:nth-of-type(2):checked ~ .carousel__slides .carousel__slide:first-of-type { margin-left: -100%; }
          &:nth-of-type(1):checked ~ .carousel__slides .carousel__slide:first-of-type { margin-left: 0%; }
          
          &:nth-of-type(1):checked ~ .carousel__thumbnails li:nth-of-type(1) { box-shadow: 0px 0px 0px 5px rgba(0,0,255,0.5); }
          &:nth-of-type(2):checked ~ .carousel__thumbnails li:nth-of-type(2) { box-shadow: 0px 0px 0px 5px rgba(0,0,255,0.5); }
          &:nth-of-type(3):checked ~ .carousel__thumbnails li:nth-of-type(3) { box-shadow: 0px 0px 0px 5px rgba(0,0,255,0.5); }
          &:nth-of-type(4):checked ~ .carousel__thumbnails li:nth-of-type(4) { box-shadow: 0px 0px 0px 5px rgba(0,0,255,0.5); }
          &:nth-of-type(5):checked ~ .carousel__thumbnails li:nth-of-type(5) { box-shadow: 0px 0px 0px 5px rgba(0,0,255,0.5); }
          &:nth-of-type(6):checked ~ .carousel__thumbnails li:nth-of-type(6) { box-shadow: 0px 0px 0px 5px rgba(0,0,255,0.5); }
      }
  }
  
  .carousel__slides {
      position: relative;
      z-index: 1;
      padding: 0;
      margin: 0;
      overflow: hidden;
      white-space: nowrap;
      box-sizing: border-box;
      display: flex;
  }
  
  .carousel__slide {
      position: relative;
      display: block;
      flex: 1 0 100%;
      width: 100%;
      height: 100%;
      overflow: hidden;
      transition: all 300ms ease-out;
      vertical-align: top;
      box-sizing: border-box;
      white-space: normal;
      
      figure {
          display: flex;
          margin: 0;
      }
      
      div {
          @include aspect-ratio(3, 2);
          width: 100%;
      }
      
      img {
          display: block;
          flex: 1 1 auto;
          object-fit: cover;
      }
      
      figcaption {
          align-self: flex-end;
          padding: 20px 20px 0 20px;
          flex: 0 0 auto;
          width: 25%;
          min-width: 150px;
      }
      
      .credit {
          margin-top: 1rem;
          color: rgba(0, 0, 0, 0.5);
          display: block;        
      }
      
      &.scrollable {
          overflow-y: scroll;
      }
  }
  
  .carousel__thumbnails {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      
      margin: 0 -10px;
      
      .carousel__slides + & {
          margin-top: 20px;
      }
      
      li {        
          flex: 1 1 auto;
          max-width: calc((100% / 6) - 20px);  
          margin: 0 10px;
          transition: all 300ms ease-in-out;
      }
      
      label {
          display: block;
          @include aspect-ratio(1,1);
          
                    
          &:hover,
          &:focus {
              cursor: pointer;
              
              img {
                  box-shadow: 0px 0px 0px 1px rgba(0,0,0,0.25);
                  transition: all 300ms ease-in-out;
              }
          }
      }
      
      img {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
      }
  }


  *{
    box-sizing: border-box;
  }
  
  .home{
    height: 100vh;
    overflow:hidden;
    position: relative;
  }
  
  .home .slide{
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index:1; 
    display:none;
    padding:0 15px;
    animation: slide 10s ease;
  }
  .home .slide.active{
    display: flex;
  }
  @keyframes slide{
    0%{
      transform:scale(1.1);
    }
    100%{
      transform: scale(1);
    }
  }
  .container{
    max-width: 1170px;
    margin:auto;
    
  }
  
  .home .container{
     flex-grow: 1;
  }
  .home .caption{
    width:50%;
    background-color: #0D6094;
    border-radius: 10px;
    padding-left: 5%;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
  }
  .home .caption h1{
    font-size:20px;
    color: white;
    margin:0;
    
  }
  .home .slide.active .caption h1{
    opacity:0;
    animation: captionText 3s ease forwards;
    animation-delay:2s;
  }
  .home .caption p{
    font-size: 18px;
    margin:15px 0 30px;
    color: white;
  }
  .home .slide.active .caption p{
    opacity:0;
    animation: captionText .5s ease forwards;
    animation-delay:1.2s;
  }
  .home .caption a{
   display: inline-block;
   padding:10px 30px;
   background-color: #000000;
   text-decoration: none;
   color:#ffffff;
  }
  
  .home .slide.active .caption a{
    opacity:0;
    animation: captionText .5s ease forwards;
    animation-delay:1.4s;
  }
  
  @keyframes captionText{
    0%{
      opacity:0; transform: translateX(-100px);
    }
    100%{
     opacity:1; transform: translateX(0px);	
    }
  }
  
  .home .controls .prev,
  .home .controls .next{
   position: absolute;
   z-index:2;
   top:50%;
   height:40px;
   width: 40px;
   margin-top: -20px;
   color:#ffffff;
   background-color: #FF5722;
   text-align: center;
   line-height: 40px;
   font-size:20px;
   cursor:pointer;
   transition: all 3s ease;
  }
  .home .controls .prev:hover,
  .home .controls .next:hover{
    background-color: #000000;
  }
  .home .controls .prev{
   left:0;
  }
  .home .controls .next{
   right:0;
  }
  
  .home .indicator{
    position: absolute;
    left:50%;
    bottom:30px;
    z-index: 2;
    transform: translateX(-50%);
  }
  
  .home .indicator div{
    display: inline-block;
    width:25px;
    height: 25px;
    color:#ffffff;
    background-color: #FF5722;
    border-radius:50%;
    text-align: center;
    line-height: 25px;
    margin:0 3px;
  }
  
  .home .indicator div.active{
   background-color: #000;
  }
  
  /*responsive*/
  @media(max-width: 767px){
    .controls{
      display: none;
    }
  }

.ind-nav-item
{
  float: left; 
  border-right: 0.01px solid black;
  height: inherit;
  padding-bottom: 40px;
}
  
.navitemeleft
{
    margin-left: 15%;
}
.navitem{
    width: 900px; /* Adjust the width as needed */
    margin: 0 auto; /* This centers the div horizontally */
    color: #7d0707;
    text-align: center;
    border-radius: 2px;
    height: 35px;
    color: inherit;
    font-family: Arial, Helvetica, sans-serif;
    height: inherit;
}

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  position: relative;
  margin: auto;
  /* background-color: #0088cc; */
  height: 300px;
}

/* Hide the images by default */
.mySlides {
  display: none;
}
.mySlides .fade->img{
    border: solid black;
    border-radius: 10px;
}

.container-marquee
{
    height: 80px;
    background-color: white;
    /* border: 1px solid red; */
    border-radius: 8px;
}
.marquee { 
    width: 100%; 
    overflow: hidden; 
    white-space: nowrap;
    margin: auto ;
} 
   
.marquee span { 
    display: inline-block; 
    padding-left:100%;
    animation: marquee 20s linear infinite; 
} 
   
@keyframes marquee {
    to {
      transform: translateX(-100%);
    }
  }


.product-list-navbar{
    overflow: hidden;
    background-color: #0D6094;
    text-align: center;
    font-size: medium;
    width: 100%;
    font-family:Arial, Helvetica, sans-serif;
    border: 2px solid white
   
} 



.product-list-navbar a {
    float: left;
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }

.dropdown-list
{
    float: left;
    overflow: hidden;
    border-right: 1px solid white;
}

.dropbtn1
{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
}
.dropdown-list .dropbtn1
{
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit; /* Important for vertical align on mobile phones */
    margin: 0; /* Important for vertical align on mobile phones */
    
}

.product-list-navbar a:hover, .dropdown-list:hover .dropbtn1 {
    background-color: rgb(252, 68, 68);
}


.product-list-dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 99;
    border-left: 4px solid red;
}
.product-img
{
  box-shadow: 0px 4px 4px 0 rgba(0, 0, 0, 0.2);
}

.product-card:hover
{
  transform: scale(1.1);
}
.product-information
{
  height: 100%
}
.product-card
{
  height: 20px;
}
.product-list-dropdown-content a{
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}


.product-list-dropdown-content a:hover {
    background-color: #ddd;
}


.dropdown-list:hover .product-list-dropdown-content {
    display: block;
  }

/* .prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: black;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next .product-button" to the right */
/* .next {
  right: 0;
  border-radius: 3px 0 0 3px;
} */

/* On hover, add a black background color with a little bit see-through */
/* .prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
} */ 

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

.intro_about
{
    border-radius: 8px;
    width: 1500px;
    z-index: 2;
    height: 250px;
    background-color: rgb(213, 239, 247);
}

.intro
{
    border-radius: 2px;
    color:black;
    margin-left: 5%;
    background-color: rgb(213, 239, 247);
}
/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}


.alternative-font, a, .color-primary
{
    color:#000000;
}

p{
    font-family:Roboto;
    font-weight:normal;
    color:#0a0a0a;
}

#footer,#footer p
{
    font-family:Roboto;
    line-height:15px;
    font-weight:400;
    color:#ffffff;
    font-size:13px;
}

#footer h1,#footer h2,#footer h3,#footer h4,#footer h5,#footer h6,#footer .widget-title,#footer .widget-title a,.footer-top .widget-title
{
    font-family:Roboto;
    font-weight:normal;
}
#header
{
  position:fixed;
  background-color: #f9f8f8;
  margin: 0;
  padding: 0;
  top: 0;
  width: 100%;
  z-index: 4;
}
.header-wrapper
{
    background-color:#ffffff;
}

#header .header-main
{
    background-color:#ffffff;
}

#header, #header .header-main .header-contact .nav-top > li > a, #header .top-links > li.menu-item:before
{
    color:#0a0a0a;
    height: 20px;
}

#header .header-top, .header-top .top-links>li.menu-item:after
{
    color:#0a0a0a;
}

.page-top
{
    background-color:#2cc1d2;
}

#footer
{
    background-color:#0e0e0e;
}

#footer .footer-bottom
{
    background-color:#257583;
}

#footer .footer-bottom, #footer .footer-bottom p, #footer .footer-bottom .widget > div > ul li, #footer .footer-bottom .widget > ul li
{
    color:#555555;
}

#mini-cart .cart-subtotal, #mini-cart .minicart-icon
{
    color:#0088cc;
}

#mini-cart .cart-items, #mini-cart .cart-items-text
{
    color:#ffffff;
}

#mini-cart
{
    background:#ffffff;
}


.contain-to-grid
{
    width:100%;background:#00547d
}
.contain-to-grid .top-bar
{
    margin-bottom:0
}



.left
{
    float:left !important
}

.right{
    float:right !important
}

.has-dropdown{
    position:relative
}


.carousel {
    display: block;
    text-align: left;
    position: relative;
    margin-bottom: 22px;
    
    > input {
        clip: rect(1px, 1px, 1px, 1px);
        clip-path: inset(50%);
        height: 1px;
        width: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        
        &:nth-of-type(6):checked ~ .carousel__slides .carousel__slide:first-of-type { margin-left: -500%; }
        &:nth-of-type(5):checked ~ .carousel__slides .carousel__slide:first-of-type { margin-left: -400%; }
        &:nth-of-type(4):checked ~ .carousel__slides .carousel__slide:first-of-type { margin-left: -300%; }
        &:nth-of-type(3):checked ~ .carousel__slides .carousel__slide:first-of-type { margin-left: -200%; }
        &:nth-of-type(2):checked ~ .carousel__slides .carousel__slide:first-of-type { margin-left: -100%; }
        &:nth-of-type(1):checked ~ .carousel__slides .carousel__slide:first-of-type { margin-left: 0%; }
        
        &:nth-of-type(1):checked ~ .carousel__thumbnails li:nth-of-type(1) { box-shadow: 0px 0px 0px 5px rgba(0,0,255,0.5); }
        &:nth-of-type(2):checked ~ .carousel__thumbnails li:nth-of-type(2) { box-shadow: 0px 0px 0px 5px rgba(0,0,255,0.5); }
        &:nth-of-type(3):checked ~ .carousel__thumbnails li:nth-of-type(3) { box-shadow: 0px 0px 0px 5px rgba(0,0,255,0.5); }
        &:nth-of-type(4):checked ~ .carousel__thumbnails li:nth-of-type(4) { box-shadow: 0px 0px 0px 5px rgba(0,0,255,0.5); }
        &:nth-of-type(5):checked ~ .carousel__thumbnails li:nth-of-type(5) { box-shadow: 0px 0px 0px 5px rgba(0,0,255,0.5); }
        &:nth-of-type(6):checked ~ .carousel__thumbnails li:nth-of-type(6) { box-shadow: 0px 0px 0px 5px rgba(0,0,255,0.5); }
    }
  }
  
  .carousel__slides {
    position: relative;
    z-index: 1;
    padding: 0;
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    display: flex;
  }
  
  .carousel__slide {
    position: relative;
    display: block;
    flex: 1 0 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: all 300ms ease-out;
    vertical-align: top;
    box-sizing: border-box;
    white-space: normal;
    
    figure {
        display: flex;
        margin: 0;
    }
    
    div {
        @include aspect-ratio(3, 2);
        width: 100%;
    }
    
    img {
        display: block;
        flex: 1 1 auto;
        object-fit: cover;
    }
    
    figcaption {
        align-self: flex-end;
        padding: 20px 20px 0 20px;
        flex: 0 0 auto;
        width: 25%;
        min-width: 150px;
    }
    
    .credit {
        margin-top: 1rem;
        color: rgba(0, 0, 0, 0.5);
        display: block;        
    }
    
    &.scrollable {
        overflow-y: scroll;
    }
  }
  
  .carousel__thumbnails {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    
    margin: 0 -10px;
    
    .carousel__slides + & {
        margin-top: 20px;
    }
    
    li {        
        flex: 1 1 auto;
        max-width: calc((100% / 6) - 20px);  
        margin: 0 10px;
        transition: all 300ms ease-in-out;
    }
    
    label {
        display: block;
        @include aspect-ratio(1,1);
        
                  
        &:hover,
        &:focus {
            cursor: pointer;
            
            img {
                box-shadow: 0px 0px 0px 1px rgba(0,0,0,0.25);
                transition: all 300ms ease-in-out;
            }
        }
    }
    
    img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
  }
  
  
  @mixin aspect-ratio($width, $height) {
    position: relative;
      
    &:before {
      display: block;
      content: "";
      width: 100%;
      padding-top: ($height / $width) * 100%;
    }
      
    > img {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          width: 100%;
          height: 100%;
    }
  }
  
  
  section {
      background: #F4F4F4;
      padding: 50px 0;
  }


  .product-window-home
{
    margin-left: 5%;
    display: grid;
    width: 1000px;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 0.5px;
    row-gap:10px;
    grid-auto-rows: minmax(100px, auto);
}

.marquee-item
{
  float: left;
  width: 2%
}

.moving-text:hover{
  animation-play-state: paused;
} 

/* The animation */
/* @keyframes marquee{
  0%{transform: translateX(100%);}
  100%{transform: translateX(-100%);}
} */

/* media query to enable animation for only those who want it */
/* @media (prefers-reduced-motion: no-preference) {
  .moving-text{
      animation: marquee 25s linear infinite;
  }
} */

.brands-and-companies
{
      display: grid;
      margin-left: 5%;
      grid-template-columns: repeat(7,1fr);
      row-gap:30px;
}

#more
{
  display: none;
}
.comp
{
  width: 150px;
  height: 80px;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 2px 4px 0 #b0afaf;
}

.comp-hidden-init
{
  width: 150px;
  height: 80px;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 2px 4px 0 #b0afaf;
  height:80px
}

#readmore-btn
{
  cursor:pointer;
  text-decoration: underline;
  color: rgb(129, 205, 230);
  margin-top: 10px;
}


/* Style tab links */
.tablink {
  background-color: white;
  color: black;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: medium;
  height: 100%;
  align-items: center;
  
  margin-left: 4%;
  border: 1px solid grey;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;

}

.tablink:hover {
  background-color: #777;
}

/* Style the tab content (and add height:100% for full page content) */
.tabcontent {
  color: white;
  display: none;
  padding: 100px 20px;
  height: 800px;
}

#Home {background-color: white;
}
#News {background-color: white;}
#Contact {background-color: white;}
#About {background-color: white;}





@import url('https://fonts.googleapis.com/css2?family=Oxygen+Mono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300&display=swap');

/* Variables */
:root {
  --bg-selected: rgba(0,0,0,0.03);
  --bt-text: #3F1D35;
  --bt-text-selected: #663399;
  --bt-focus: rgba(0,0,0,0.06);
  --text: #454746;
  --border-color: grey;
    box-sizing: border-box;
}

/* Global */



/* TABS */
.wrapper {
  margin: 4rem auto;
  padding-left: 4%;
}

.tabs {
  display: grid;
  position: relative;
}

[role="tablist"] {
  display: grid;
  grid-template-columns: repeat(4, minmax(100px, 1fr));
  width: 35%;
}

[role="tabpanel"] {
  min-height: 50vh;
}

.product-button {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  padding: 1rem;
  background: transparent;
  border: 0;
  border-radius: 5px 5px 0 0;
  border-bottom: 2px solid var(--border-color);
  cursor: pointer;
  margin: 0;
}

.product-button[aria-selected="true"] {
  background: var(--bg-selected);
  color: var(--bt-text-selected);
  border-top: 2px solid var(--border-color);
  border-left: 2px solid var(--border-color);
  border-right: 2px solid var(--border-color);
  border-bottom: 0;
	outline: 0;
}

.product-button[aria-selected="false"]:hover {
  font-size: 1.2rem;
}

/* replace the dotted outline for tab users with a semi-transparent background */
.product-button:focus {
  outline: 0;
  background: var(--bt-focus);
}
.product-button::-moz-focus-inner {
  border:0;
  background: var(--bt-focus);
}

/* Media queries */
@media (max-width: 660px) {
  .wrapper {
    margin: 4rem auto;
    padding: 1rem;
  }

  .product-button {
    border: 0;
    border-radius: 5px 5px 5px 5px;
  }

  .product-button[aria-selected="true"] {
		border: 2px solid var(--border-color);
  }

  [role="tablist"] {
    grid-template-columns: repeat(1, minmax(200px, 1fr));
  }

  [role="tabpanel"] {
    margin-top: 10px;
    border: 2px solid var(--border-color);
  }
}


.footer
{
  width: 100%;
  height: 350px;
  background: rgb(15, 85, 94);
  color: #efefef;
  display: flex;
  padding-right: 100px;
}

.footer div{
  text-align: center;
}

.col-1
{
  float: left;
  margin-left: 5%;
  margin-top: 5%;
  width: 25%;
  height: 70%;
}

.col-2
{
  float: left;
  margin-top: 5%;
  width: 50%;
  height: 70%;
}

.col-3
{
  float: left;
  margin-top: 5%;
  width: 25%;
  height: 70%;
}
.col-1 a{
  display: block;
  text-decoration: none;
  color:#efefef;
  margin-bottom: 10px;
  font-size: 16px;
}
.col-1 a:hover
{
  color:purple;
}

form input
{
  width: 400px;
  height: 35px;
  border-radius: 20px;
  text-align:center;
  margin-top: 20px;
  margin-bottom: 40px;
  outline: none;
  border: none;
}

form button
{
  background:transparent;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 30px;
  padding: 10px 30px;
  font-size: 15px;
  cursor: pointer;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
}
