@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
    box-sizing: border-box;
    margin: 0;
    font-family: 'Poppins',Helvetica, Brandon Text,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;
}
body{
    width: 100%;
    margin: 0;
}
.tint_body{
    background-color: #F1F1F1;
}
.flex_body{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.flex_main{
    flex: 1;
}
.flex_footer{
    min-height: 50px;
}
a{
    text-decoration: none;
}
.web_container{
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
    text-align: center;
}
.navbar{
    display: flex;
    flex-wrap: nowrap;
    min-height: 160px;
}
.navbar_left{
    flex: 20%;
    display: flex;
    justify-content: left;
    align-items: center;
}
.navbar_center{
    flex: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.navbar_right{
    flex: 20%;
    display: flex;
    justify-content: right;
    align-items: center;
}
.navbar_logo{
    width: 120px;
    margin-top: 4px;
}
.navbar_button {
    text-align: center;
    text-transform: uppercase;
    color: white;            
    border: 2px solid #0039A6;
    border-radius: 4px;
    width: 140px;
    cursor: pointer;
    padding: 10px;
    background-color: inherit;
    color: #0039A6;
}
.navbar_button:hover{
    background-color: #0039A6;
    color: white;
}
.navbar_center a{
    color: #0039A6;
    margin: 0px 12px;
}
.mobile_navbar_opener{
    display: none;
    font-size: 24px;
    color: #0039A6;
}
.web_slider{
    background-color: #191970;
    display: flex;
    flex-wrap: wrap;
    padding: 120px 0px;
}

.slider_content{
    display: flex;
    flex-wrap: wrap;
}
.slider_text_section{
    flex: 66%;
    max-width: 66%;
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: left;
}
.slider_image_section{
    flex: 34%;
    max-width: 34%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slider_text_large{
    font-size: 45px;
    font-weight: 700;
    color: white;
}
.slider_text_small{
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 21px;
    color: white;
}
#slider_blue_text{
    color: #191970;
}
.slider_image{
    width: 90%;
    max-width: 300px;
}

.inner_slider_container{
    position: relative;
    height: 600px;
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 0px 20px;
}
.slider_overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    background-color: rgba(0,0,0,0.5);
}
.search_form{
    background-color: rgba(0,0,0,0.7);
    padding: 16px;
    width: 90%;
    max-width: 800px;
    margin: auto;
    display: flex;
    flex-direction: column;
}
.search_form_row{
    display: flex;
    flex-direction: row;
    padding: 12px;
    text-align: center;
    flex-wrap: wrap;
}
.select_holder{
    width: 46%;
    margin-left: 2%;
    margin-right: 2%;
}
.search_button{
    width: 96%;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    padding: 12px 0px;
    border: none;
    border-radius: 0;
    outline: none;
    cursor: pointer;
    background-color: #191970;
    color: white;
    margin: 20px auto;
}
.search_button:hover{
    background-color: #191970;
    opacity: 0.8;
}
.banner{
    display: flex;
    height: 500px;
    position: relative;
    background-color: inherit;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../images/banner.jpg);
}
/*=============================================================*/
.slideshow-container{
    position: relative;
    height: 560px; 
    position: relative;
    background-color: #0039A6; 
 }
.mySlides{
    display: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
 }
.myslides_overlay, .banner_overlay{ 
  position: absolute; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%;
  background-color: rgba(0,0,0,0.4);
}
#first_slide{
  background-image: url(../images/slider1.jpg);
}
#second_slide{
  background-image: url(../images/slider2.jpg);
}
#third_slide{
  background-image: url(../images/slider3.jpg);
}
.text {
  padding: 8px 40px;
  position: absolute;
  text-align: center;
  width: 100%;
  top: 70%;
}
#ux_text{ 
  opacity: 1;
  transition: all 1500ms;
  top: 50%;
}
#ui_text{ 
  opacity: 0;
  transition: all 1500ms;
  top: 70%;
}
.big_text{
  font-size: 50px;
  font-weight: 700;
  color: white;
}
.small_text{
  font-size: 20px;
  font-weight: 400;
  color: white;
  line-height: 1.7;
  opacity: 1;
  margin: 12px auto;
  max-width: 600px; 
}
.text_btn{
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  padding: 12px 0px;
  border: 2px solid #0039A6;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  background-color: #0039A6;
  color: white;
  width: 160px;
  margin: 20px 10px 0px;
}
.text_btn:hover{ 
  background-color: white; 
  color: #0039A6;
}
.text_btn2{
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  padding: 12px 0px;
  border: 2px solid white;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  color: #0039A6;
  background-color: white;
  width: 160px;
  margin: 20px 10px 0px;
}
.text_btn2:hover{ 
  background-color: #0039A6; 
  color: white;
}
/*=============================================================*/
.theme_button {
    text-align: center;
    text-transform: uppercase;
    color: white;            
    border: 2px solid #FE6944;
    border-radius: 0px;
    min-width: 140px;
    cursor: pointer;
    padding: 10px 20px;
    background-color: #FE6944;
}
.theme_button:hover{
    background-color: #FFF;
    color: #FE6944;
}
.dodgerblue_button {
    text-align: center;
    text-transform: uppercase;
    color: white;            
    border: 2px solid #191970;
    border-radius: 4px;
    width: 140px;
    cursor: pointer;
    padding: 10px;
    background-color: #191970;
}
.dodgerblue_button:hover{
    background-color: #000;
    color: #FFF;
    border: 2px solid #000;
}
.red_button {
    text-align: center;
    text-transform: uppercase;
    color: white;            
    border: 2px solid #FF0000;
    border-radius: 4px;
    width: 140px;
    cursor: pointer;
    padding: 10px;
    background-color: #FF0000;
}
.red_button:hover{
    background-color: #FFF;
    color: #FF0000;
}
.white_button {
    text-align: center;
    text-transform: uppercase;
    color: #0039A6;            
    border: 2px solid white;
    border-radius: 4px;
    width: 140px;
    cursor: pointer;
    padding: 10px;
    background-color: white;
}
.white_button:hover{
    background-color: inherit;
    color: white;
}
.home_services_section{
    display: flex;
    flex-direction: column;
}
.home_services_top{
    font-size: 16px;
    font-weight: 600;
    color: rgba(255,200,150,0.6); 
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    padding: 100px 0px 0px;
}
.home_services_bottom{
    font-family: 'Cinzel';
    font-size: 48px;
    font-weight: 700;
    color: #FFF; 
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 20px 0px;
}
.highlights{
    display: flex;
    flex-direction: row;
    padding-bottom: 0px;
    padding-top: 0px;
    width: 100%;
    flex-wrap: wrap;
    background-color: white;
    margin-top: -40px;
    z-index: 3;
    box-shadow: 0 5px 6px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
}
.highlights_section{
    background-color: #fff;
    display: flex;
    align-items: center;
    padding: 0px 0px 0px;
}
.highlights_holder{
    display: flex;
    flex-direction: column;
}
.highlights_intro{
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    color: #0039A6;
}
.highlight{
    background-color: white;
    width: 31.33%;
    margin: 0px 1% 0px;
    display: flex;
    align-items: left;
    flex-direction: column;
    color: #333;
    border-radius: 6px;
    padding: 16px;
}
.highlight_text{
    color: #0039A6;
    font-size: 16px;
    font-weight: 600;
    padding: 0px 0px 10px;
}
.highlight p{
    font-size: 14px;
    margin-bottom: 12px;
    color: #999;
    line-height: 1.6;
}
.highlight_image{
    height: 80px; 
    width: 80px;
    margin: 20px 0px;
}
#highlight_first_icon{
    font-size: 30px;
    color: #FFFFFF;
    padding: 14px 14px;
    text-align: center;
    text-decoration: none;
    margin: 12px 0px;
    border-radius: 50%;
    background-color: #0039A6;
}
#highlight_second_icon{
    font-size: 30px;
    color: #FFFFFF;
    padding: 14px 14px;
    text-align: center;
    text-decoration: none;
    margin: 12px 0px;
    border-radius: 50%;
    background-color: #0039A6;
}
#highlight_third_icon{
    font-size: 30px;
    color: #FFFFFF;
    padding: 14px 21px;
    text-align: center;
    text-decoration: none;
    margin: 12px 0px;
    border-radius: 50%;
    background-color: #0039A6;
}
#highlight_fourth_icon{
    font-size: 30px;
    color: #FFFFFF;
    padding: 11px 11px;
    text-align: center;
    text-decoration: none;
    margin: 12px 0px;
    border-radius: 8px;
    background-color: #0039A6;
}
.general_button {
    text-align: center;
    text-transform: uppercase;
    color: white;            
    border: 2px solid #FF0000;
    border-radius: 20px;
    width: 140px;
    cursor: pointer;
    padding: 10px;
    background-color: white;
    color: #FF0000;
    margin: 20px 0px;
}
.general_button:hover{
    background-color: #FF0000;
    color: #FFFFFF;
}
.showcase_section{
    display: flex;
    padding: 100px 0px;
}
#blue_section{
    background-color: #191970;
}
.showcase{
    display: flex;
    flex-wrap: wrap;
}
#half_showcase{
    padding: 0;
}
#second_showcase{
    flex-direction: row-reverse;
}
.showcase_text_section{
    flex: 50%;
    display: flex;
    flex-direction: column;
}
.showcase_image_section{
    flex: 50%;
    display: flex;
    justify-content: left;
    align-items: center;
}
#half_text_showcase{
    flex: 50%;
    padding: 32px;
    background-color: #0039A6;
}
#half_image_showcase{
    flex: 50%;
}
#second_showcase_image{
    justify-content: right;
}
.showcase_image{
    width: 90%;
    border-radius: 0px;
}
#half_showcase_image{
    width: 100%;
    border-radius: 0;
}
.about_showcase_image{
    width: 90%;
    max-width: 400px;
}
.showcase_feature_section{
    flex: 50%;
    display: flex;
    justify-content: left;
    align-items: center;
}
.showcase_features{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.showcase_feature{
    flex: 1;
    display: flex;
    flex-direction: row;
    margin-bottom: 21px;
    padding-right: 36px;
}
.showcase_feature_icon_section{
    display: flex;
    justify-content: left;
    align-items: center;
    padding-left: 16px;
}
.showcase_feature_content_section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    padding-left: 21px;
    padding-right: 16px;
    text-align: left;
}
#feature_first_icon{
    font-size: 30px;
    color: #FFF;
    padding: 13px 14px;
    text-align: center;
    text-decoration: none;
    margin: 12px 0px;
    border-radius: 50%;
    background-color: #FF0000;
}
#feature_second_icon{
    font-size: 30px;
    color: #FFF;
    padding: 13px 11px;
    text-align: center;
    text-decoration: none;
    margin: 12px 0px;
    border-radius: 50%;
    background-color: #FF0000;
}
#feature_third_icon{
    font-size: 30px;
    color: #FFF;
    padding: 13px 15px;
    text-align: center;
    text-decoration: none;
    margin: 12px 0px;
    border-radius: 50%;
    background-color: #FF0000;
}
.feature_heading{
    font-size: 18px;
    color: white;
    font-weight: 600;
}
.feature_text{
    font-size: 15px;
    color: white;
}
.showcase_text_large{
    font-size: 40px;
    font-weight: 600;
    color: #191970;
    text-align: left;
}
#white_heading{
    color: white;
}
.showcase_text_small{
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 21px;
    color: #666666;
    text-align: left;
    margin: 20px 0px;
}
#left_aligned_text{
    text-align: left;
}
#white_description{
    color: white;
}
.green_line{
    height: 8px;
    width: 100px;
    background-color: #0039A6;
    margin: 16px 0px;
}
.white_line{
    height: 8px;
    width: 100px;
    background-color: white;
    margin: 16px 0px;
}
.showcase_small_top_heading{
    font-size: 17px;
    font-weight: 600;
    color: #000; 
    text-transform: uppercase;
    display: flex;
    justify-content: left;
}
.groove_section{
    width: 100%;
    padding: 80px 0px;
}
.groove_wrap{
    text-align: center;
}
.groove_text_large{
    font-size: 40px;
    font-weight: 600;
    color: #191970;
    text-align: center;
    padding-bottom: 40px;
}
.testimonials_section{
    display: flex;
    flex-direction: column;
    margin: 60px 0px;
}
.testimonials_small_heading{
    font-size: 16px;
    font-weight: 600;
    color: #FF0000; 
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    text-align: center;
}
.testimonials_large_heading {
    font-size: 40px;
    font-weight: 700;
    color: #0039A6;
    text-align: center;
    padding: 20px 0px 50px;
    text-transform: uppercase;
}
.testimonials{
    display: flex;
}
.testimonial{
    flex: 33.33%;
    display: flex;
    flex-direction: column;
    padding: 21px;
}
.testimonial_top{
    display: flex;
}
.testimonial_top_image{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 20px;
}
.testimonial_bottom{
    display: flex;
    color: #999;
    padding: 21px 0px;
}

.products_section{
    background-color: #f1f1f1;
    padding: 40px 0px;
}
.products_section_heading{
    font-size: 40px;
    font-weight: 600;
    color: #191970;
    text-align: left;
    margin: 20px 0px;
    text-align: left;
}
.products{
    display: flex;
    flex-wrap: wrap;
}
.product_holder{
    flex: 33.33%;
    max-width:33.33%;
    display: flex;
    justify-content: center;
    margin: 20px 0px;
}
.product{
    width: 90%;
    display: flex;
    flex-direction: column;
   background-color: white;
    border-radius: 4px;
}
.product_image{
    width: 100%;
}
.product_background{ 
    width: 100%; 
    height: 300px; 
    background-color: #191970; 
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
} 
.product_heading{
    font-size: 18px;
    font-weight: 500;
    color: #333;
    text-align: left;
    margin: 10px 0px 5px;
    text-align: center;
}
.product_price{
    font-size: 17px;
    font-weight: 400;
    color: #999; 
    text-transform: uppercase;
    text-align: center;margin: 5px 0px;
}
.button_holder{
    display: flex;
    justify-content: left;
    text-align: left;
}
.view_product_section{
    background-color: #F1F1F1;
}
.stars_rating{
    font-size: 16px;
    color: #0039A6; 
    text-align: center;
}
#star_icon{
    color: #0039A6;
    font-size: 16px;
    marging: 0px 5px;
}
.showcase_button_holder{
    padding: 20px 0px 20px;
    display: flex;
    justify-content: left;
}
.steps_section{
    background-color: #fff;
    text-align: center;
    padding: 60px 0px;
}
.steps_intro{
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    color: #0039A6;
    padding: 30px 0px;
}
.steps{
    display: flex;
    flex-wrap: wrap;
}
.step{
    flex: 33.33%;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.step_number{
    width: 100px;
    height: 100px;
    background-color: #0039A6;
    border-radius: 50%;
    margin: 21px auto;
    color: white;
    font-size: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step_text{
    color: #333;
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
    padding: 12px;
}
.gallery_section{
    padding: 40px 0px;
}
.gallery_items{
    display: flex;
    flex-wrap: wrap;
}
.gallery_item_holder{
    flex: 50%;
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}
.gallery_item_shell{
    width: 95%;
    position: relative;
}
.gallery_item{
    width: 100%;
    border-radius: 6px;
}
.gallery_item_overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 99%;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 4px;
}
.gallery_item_text_holder{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 3;
}
.gallery_item_text{
    color: white;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    width: 100%;
    background-color: orange;
    padding: 8px 0px;
    border-radius: 0px 0px 4px 4px;
}

.blog_section{
    width: 100%;
    margin: 40px auto;
}
.blogs{
    display: flex;
    flex-wrap: wrap;
}
.blog{
    flex: 33.33%;
    max-width: 33.33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 45px;
}
.adblog{
    flex: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;margin-top: 10px;
}
.adblog_image{
    width: 90%;
    height: 150px;
    background-color: #ff0000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 6px;
}
.blog_image{
    width: 90%;
    height: 300px;
    background-color: #ff0000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 6px;
}
.blog_heading{
    font-size: 21px;
    font-weight: 700;
    color: #333;
    width: 90%;
    text-align: left;
    margin: 8px auto 6px;
}
.blog_heading a{
  text-decoration: none;
  color: #333;
  font-size: 18px;
}
.blog_summary{
    font-size: 14px;
    color: #999;
    width: 90%;
    text-align: left;
    margin: 6px auto 12px;
    font-weight: 300;
}
.btn_holder{
    display: flex;
    justify-content: left;
    text-align: left;
    align-items: left;
    width: 90%;
}
.read_blog_section{
    margin: 60px auto;
}
.read_blog{
    display: flex;
}
.read_blog_blog{
    flex: 75%;
    max-width: 75%;
}
.read_blog_ads{
    flex: 25%;
}
.read_blog_heading{
    font-size: 28px;
    font-weight: 700;
    color: #333;
    width: 90%;
    text-align: left;
    margin: 8px auto 6px;
}
.read_blog_date{
    font-size: 15px;
    color: #999;
    width: 90%;
    text-align: left;
    margin: 12px auto 12px;
    font-weight: 400;
}
.read_blog_image_holder{
    width: 90%;
    display: flex;
    justify-content: left;
    margin: auto;
}
.read_blog_image{
    width: 100%;
    max-width: 600px;
}
.read_blog_summary{
    font-size: 15px;
    font-style: italic;
    color: #999;
    width: 90%;
    text-align: left;
    margin: 12px auto 12px;
    font-weight: 400;
}
.read_blog_content{
    font-size: 15px;
    color: #333;
    width: 90%;
    text-align: left;
    margin: 12px auto 12px;
    font-weight: 400;
}
.blog_button{
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  padding: 9px 0px;
  border: 2px solid #FE6944;
  border-radius: 20px;
  outline: none;
  cursor: pointer;
  color: white;
  background-color: #FE6944;
  width: 140px;
  margin: 20px 10px;
}
.blog_button:hover{ 
  background-color: white; 
  color: red;
}

.cart_section{
    padding: 100px 0px;
    background-color: #F1F1F1;
}
.cart_heading{
    color: #191970;
    font-weight: 600;
    font-size: 28px;
    text-align: left;
    margin-bottom: 40px;
}
.carts{
    display: flex;
    flex-direction: column;
}
.cart{
    display: flex;
    width: 100%;
    align-items: center;
    margin-bottom: 24px;
}
.cart_image_section{
    width: 180px;
}
.cart_image{
    width: 90%;
}
.cart_title{
    font-weight: 500;
    font-size: 19px;
    color: #000;
    justify-content: left;
    align-items: center;
    width: 20%;
}
.cart_price{
    font-size: 16px;
    font-weight: 500;
    color: #000;
    justify-content: left;
    align-items: center;
    width: 20%;
}
.cart_button_holder{
    justify-content: left;
    align-items: center;
    width: 20%;
}
.cart_delete_button {
    text-align: center;
    text-transform: uppercase;
    color: white;            
    border: 2px solid #FF0000;
    border-radius: 4px;
    width: 90px;
    cursor: pointer;
    padding: 7px;
    background-color: #FF0000;
}
.cart_delete_button:hover{
    background-color: #000;
    color: #FFF;
    border: 2px solid #000;
}
.cart_total{
    font-size: 24px;
    font-weight: 700;
    text-align: left;
}
.cart_section_action_buttons_holder{
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}
.cart_section_action_button {
    text-align: center;
    text-transform: uppercase;
    color: white;            
    border: 2px solid #191970;
    border-radius: 4px;
    cursor: pointer;
    padding: 10px 16px;
    background-color: #191970;
    min-width: 200px;
    margin-right: 16px;
}
.cart_section_action_button:hover{
    background-color: inherit;
    color: #191970;
}

.note_def{
    color: #333;
    font-size: 12px;
    text-align: center;
    background-color:rgba(0,0,0,0.05);
    border:1px solid rgba(0,0,0,0.2);
    padding:10px;
    border-radius:4px;
    width:90%;
    margin:10px auto 4px;
}
#yellow_note{
    background-color:rgba(255,255,0,0.3);
    border:1px solid rgba(255,255,0,0.7);
     margin-bottom: 8px;
}
#blue_note{
    background-color: rgba(0,0,255,0.3);
    border:1px solid rgba(0,0,255,0.7);
    margin-bottom: 8px;
}
#green_note{
    background-color:rgba(0,255,0,0.3);
    border:1px solid rgba(0,255,0,0.7);
    margin-bottom: 8px;
}
#red_note{
    background-color:rgba(255,0,0,0.3);
    border:1px solid rgba(255,0,0,0.7);
     margin-bottom: 8px;
}

.terms_section{
    padding: 40px 0px;
    background-color: #F1F1F1;
}
.lists_holder{
    display: flex;
    justify-content: left;
    text-align: left;
    color: #333;
}
.stock_message{
    color: #FF0000;
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
}

.footer_section{
    width: 100%;
    background-color: #191970;
    padding-top: 20px;
    padding-bottom: 20px;
}
.footer{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.footer_left{
    flex: 60%;
    padding: 24px 0px;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
}
.footer_item{
    display: flex;
    margin-bottom: 40px;
}
.footer_item_description{
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    text-align: left;
}
.footer_item_description_heading{
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: left;
}
.footer_right{
    flex: 40%;
    padding: 24px 0px;
    display: flex;
    flex-direction: column;
    align-items: right;
    justify-content: flex-start;
}
.footer_image_holder{
    display: flex;
    width: 100%;
    justify-content: left;
}
.footer_icons_holder{
    display: flex;
    justify-content: left;
    width: 100%;
}
.footer_image{
    width: 120px;
    margin-bottom: 20px;
}
.jconnect_image{
    width: 50px;
    margin-right: 12px;
}
.trademark_section{
    text-align: left;
    color: #fff;
    display: flex;
    justify-content: left;
    align-items: center;
}
.trademark_section a{
    color: #FF0000;
    margin-left: 5px;
    font-weight: 600;
}

.icons_col{
    width: 33.33%;
    float: left;
    text-align: center;
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}
#marker_icon{
    font-size: 28px;
    text-decoration: none;
    margin-right: 20px;
    border-radius: 50%;
    color: #fff;
}
#phone_icon{
    font-size: 28px;
    text-decoration: none;
    margin-right: 20px;
    border-radius: 50%;
    color: #fff;
}
#envelope_icon{
    font-size: 28px;
    text-decoration: none;
    margin-right: 20px;
    border-radius: 50%;
    color: #fff;
}
#facebook_icon{
    font-size: 20px;
    padding: 11px 15.5px;
    text-align: center;
    text-decoration: none;
    margin: 18px 4px 20px 0px;
    border-radius: 50%;
    color: #fff;
    background-color: inherit;
    border: 1px solid #fff;
}
#facebook_icon:hover{
    color: white;
    background-color: #3B5998; 
    border: 1px solid #3B5998;
}
#twitter_icon{
    font-size: 20px;
    padding: 11px 12px;
    text-align: center;
    text-decoration: none;
    margin: 18px 4px 20px;
    border-radius: 50%;
    color: #fff;
    background-color: inherit;
    border: 1px solid #fff;
}
#twitter_icon:hover{
    color: white;
    background-color: #55ACEE;
    border: 1px solid #55ACEE; 
}
#youtube_icon{
    font-size: 20px;
    padding: 11px 13px;
    text-align: center;
    text-decoration: none;
    margin: 18px 4px 20px;
    border-radius: 50%;
    color: #fff;
    background-color: inherit;
    border: 1px solid #fff;
}
#youtube_icon:hover{
    color: white;
    background-color: #bb0000; 
    border: 1px solid #BB0000;
}
#instagram_icon{
    font-size: 20px;
    padding: 11px 13px;
    text-align: center;
    text-decoration: none;
    margin: 18px 4px 20px;
    border-radius: 50%;
    color: #fff;
    background-color: inherit;
    border: 1px solid #fff;
}
#instagram_icon:hover{
    color: white;
    background-color: #dd4b39; 
    border: 1px solid #DD4B39;
}
table{
    width:100%;
    margin:12px auto;
    border:1px solid #1E90FF;
}
tr:nth-child(even){
    background: white;
    color: #1E90FF;
}
tr:nth-child(odd){
    background: #1E90FF;
    color: white;
}
th{
    text-align: left;
}
td{
   text-align:left;
   font-size: 14px;
   color:#333;
   padding:10px 2px;
}
.cart_table_image{
    width: 80px;
}

.disguised_button{
    margin: 0px 0px 16px;
    display: block;
    border: none;
    padding: 0;
    background-color: inherit;
    color: #191970;
    font-size: 17px;
    text-align: center;
    width: 100%;
    cursor: pointer;
}

.buy_form{
    width: 100%;
    max-width: 300px;
}
.buy_select{
    width: 90%;
    border-radius: 0;
    border: 1px solid #191970;
    color: #191970;
    min-height: 34px;
}
.buy_button{
    margin: 10px 0px;
    border: none;
    padding: 10px;
    background-color: #191970;
    color: #FFF;
    font-size: 15px;
    text-align: center;
    width: 90%;
    cursor: pointer;
    border-radius: 0px;
}
.tickets_error{
    font-size: 15px;
    font-weight: 400;
    text-align: left;
    color: #FE6944;
}


@media only screen and (max-width: 640px){
    .select_holder{
        width: 90%;
        margin-left: 5%;
        margin-right: 5%;
        margin-top: 12px;
    }
    .search_form_row{
        padding: 0px 12px;
    }
    .navbar_logo{
        width: 80px;
    }
    .slider_content{
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .slider_text_section{
        flex: 100%;
        justify-content: center;
        text-align: center;
        margin: 40px auto;
    }
    .slider_image_section{
        flex: 100%;
        justify-content: center;
        margin-top: 40px;
    }
    .slider_text_large{
        font-size: 28px;
        text-align: center;
        margin-bottom: 30px;
    }
    .groove_text_large{
        font-size: 24px;
    }
    .slider_text_small{
        text-align: center;
    }
    .typing-text{
        display: none;
    }
    .home_services_bottom{
        font-size: 28px;
    }
    .highlights{
        flex-wrap: wrap;
    }
    .highlight{
        flex: 100%;
    }
    .showcase_section{
        flex-wrap: wrap;
        padding-top: 40px;
    }
    .showcase_text_section{
        flex: 100%;
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .showcase_image_section{
        flex: 100%;
        justify-content: center;
    }
    .showcase_image{
        width: 100%;
        border-radius: 6px;
    }
    .showcase_text_large{
        text-align: left;
        font-size: 22px;
        margin-top: 16px;
    }
    .showcase_text_small{
        text-align: center;
    }
    .showcase_small_top_heading{
        padding: 40px 0px 16px;
        justify-content: center;
        text-align: center;
        flex: 100%;
        width: 100%;
    }
    .showcase_button_holder{
        justify-content: left;
    }
    .products_section_heading {
        font-size: 22px;
    }
    .steps_intro{
        font-size: 22px;
    }
    .testimonials_large_heading{
        font-size: 28px;
    }
    .testimonials{
        flex-wrap: wrap;
    }
    .testimonial{
        flex: 100%;
    }
    .blog{
        flex: 100%;
        max-width: 100%;
    }
    .step{
        flex: 100%;
        min-width: 100%;
        margin-bottom: 20px;
    }
    .product_holder{
        flex: 100%;
        max-width: 100%;
    }
    .gallery_item_holder{
        flex: 100%;
        min-width: 100%;
    }
    .banner{
        height: 300px;
    }
    .big_text, .general_heading, .about_heading, .banner_text{
        font-size: 30px;
    }
    .small_text{
        font-size: 14px;
    }
    .slideshow-container{
        height: 380px;
    }
    #ux_text{ 
       top: 30%;
    }
    #ui_text{ 
       opacity: 0;
       transition: all 1500ms;
       top: 50%;
    }
    .cart_section_action_button{
        margin-bottom: 16px;
    }
    .web_slider{
        padding: 50px 0px;
    }
    .slider_content{
        width: 100%;
        justify-content: center;
        flex-direction: column-reverse;
    }
    .slider_text_section{
        flex: 100%;
        max-width: 100%;
        justify-content: center;
        text-align: center;
    }
    .slider_image_section{
        flex: 100%;
        max-width: 100%;
        margin-bottom: 40px;
    }
}