/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
    overflow-x: hidden;
  }
  

  

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "Raleway", sans-serif;
  }

  a {
    text-decoration: none;
    outline: none;
}

a:hover {
    outline: none;
}
a:focus {
    outline: none;
}
  
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
  }
  
  #preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #009961;
    border-top-color: #fff;
    border-bottom-color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
  }
  
  @keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  




  /*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  #header.header-scrolled,
  #header.header-inner-pages {
    background: rgba(40, 40, 40, 0.9);
  }

  


  
  
  #header .logo {
    margin: 10px 0;
    padding: 10px 0;
   
  };
  
  #header .logo a {
    color: #fff;
  }
  
  #header .logo img {
    width: 100%;
  }
  
  @media (max-width: 992px) {
    #header {
      border: 0;
      padding: 15px 0;
    }
  }
  


  @media screen and (min-width:992px){
  
      #header .navbar-nav .nav-item{
        padding: .5em 1em;
      }
     
  }

  @media screen and (max-width:1000px){
    
    #icons{
      display: none;
    }
   
}

#header button.navbar-toggler{
  color: white;
  border-color:  white;

  
}

#header button.navbar-toggler:hover {
color:white;
border-color:white;
}




#headerpage {
    /*background: linear-gradient(45deg,#fff,#274ce0);  Gradient background */
    background: linear-gradient(45deg,#fff,#fff);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); /* Add a bottom shadow */
    position: fixed;
    width: 100%;
    margin: 0;
    padding: 0;
    top: 0px;
    left: 0;
    z-index: 5;
  }
  
#headerpage .navbar-nav .nav-link.active{

    font-weight: bolder;
}

#headerpage .navbar-nav .nav-item .nav-link{
    color: black;
    font-weight: bolder;


}

#headerpage .navbar-nav .nav-link:hover{
    font-weight: bolder;
    color: gray;
}

#headerpage button.navbar-toggler{
  color: gray;
  border-color:  gray;

  
}

#headerpage button.navbar-toggler:hover {
color:gray;
border-color:gray;
}

  /* Optionally, you can also increase the size of the icons themselves */
.navbar-nav .nav-link img {
    width: 30px; /* Adjust the width to make the icons bigger */
    height: 30px; /* Adjust the height to make the icons bigger */
  }

.navbar-brand img{
    width:200px;
    margin-left:50px;
}

#icons{
    flex-direction: row;
    margin-right:50px;
    
}

#icons .nav-link{
    padding-right: 1em;
}



@media screen and (min-width:992px){
    
  
    #headerpage .navbar-nav .nav-item{
      padding: .5em 1em;
    }
   
}

@media screen and (max-width:500px){
   .navbar-brand img{
        width:125px;
        margin-left:10px ;
    }
    

}



 #headerpage .navbar-nav .nav-link{
    color:black;
    font-size: 1.5em;
}

@media screen and (max-width:1304px){
    #headerpage .navbar-nav .nav-link{
        font-size: 1em;
    }
   
}

  
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /**
  * Desktop Navigation 
  */
/* Desktop Navigation */
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar > ul > li {
  position: relative;
  white-space: nowrap;
  margin: 0 20px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 3px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: lightgray;
}



.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.4);
  transition: 0.3s;
  border-top: 2px solid white;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

/* Mobile Navigation */
@media (max-width: 991px) {
  .navbar-nav {
    flex-direction: column;
    width: 100%;

  }

  .navbar-nav .nav-item {
    width: 100%;
    text-align: center;
  }

  .navbar-nav .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: none;
    box-shadow: none;
  }

  .navbar-nav .dropdown-menu .dropdown-item {
    color: #000;
    padding: 10px 20px;
  }

  .navbar-nav .dropdown-menu .dropdown-item:hover,
  .navbar-nav .dropdown-menu .dropdown-item:focus {
    color: #000;
    background-color: #f8f9fa;
  }
  /* Default header style */
  #header {
    background: transparent; /* or any other default background */
    
  }

  /* Header style when navbar is collapsed */
  #header.navbar-collapsed {
    background: rgba(40, 40, 40, 0.9);
  }

/* Header style when navbar is opened */
  #header.navbar-open {
    background: rgba(40, 40, 40, 0.9);
  }

}

  
  
 
  /*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
  #hero {
    width: 100%;
    height: 100vh;
    background: url("../images/home/video\ thumbnail.png") top center;
    background-size: cover;
    position: relative;
  }
  
  #hero:before {
    content: "";
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
  }
  
  #hero .container {
    padding-top: 72px;
    position:relative;
    text-align: left;
  }
  
  #hero h1 {
    margin: 0 0 0 0;
    font-size: 75px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
  }
  
/* Adjustments for play button */
.play-btn {
  width: 94px;
  height: 94px;
  background-image: url('../images/home/Image1.png');
  background-size: contain;
  border-radius: 50%;
  display: block;
  position: absolute;
  bottom: 20%; /* Adjust vertical position as needed */
  left: 60%;
  transform: translateX(-50%);
}


/* Extra small devices (phones, 600px and down) */
@media (max-width: 600px) {
  .play-btn {
    bottom: -55%; /* Adjust vertical position as needed */
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media (min-width: 600px) and (max-width: 767.98px) {
  .play-btn {
    bottom: -55%; /* Adjust vertical position as needed */
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Medium devices (landscape tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .play-btn {
    bottom: -40%; /* Adjust vertical position as needed */
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .play-btn {
    bottom: 30%; /* Adjust vertical position as needed */
    left: 60%;
    transform: translateX(-50%);
  }
}




  


  .btn-primary {
    background-color: white; /* Change background color */
    border-color: white; /* Change border color */
    color: black; /* Change text color */
    font-weight: 600; /* Change font weight */
    margin: 25px, 0;
    padding: 10px 0; /* Adjust padding */
    border-radius: 50px; /* Adjust border radius */
  }

  .btn-primary:hover {
    background-color: #f0f0f0; /* Slightly darken background color on hover */
    color: black; /* Ensure text color remains the same */
  }

  .btn-guide{
    background-color: black; /* Change background color */
    color: white; /* Change text color */
    font-weight: 600; /* Change font weight */
    margin: 30px, 30px;
    padding: 10px 30px; /* Adjust padding */
    border-radius: 50px; /* Adjust border radius */
    outline: none;
    text-decoration: none; /* Remove underline from text */

  }

  #subbtn {
    background-color: #28a745; /* Green background color */
    color: white; /* White text color */
    padding: 10px 20px; /* Padding for better spacing */
    border: none; /* Remove default border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
  }
  
  #subbtn:hover {
    background-color: #218838; /* Darker green on hover */
  }
  
  #subbtn:focus {
    outline: none; /* Remove focus outline */
    box-shadow: 0 0 5px #28a745; /* Add green shadow on focus */
  }
  
  @media (min-width: 1024px) {
    #hero {
      background-attachment: fixed;
    }
  }





  
  @media (max-width: 768px) {
    #hero h1 {
      font-size: 50px;
      line-height: 45px;
      text-align: center;
    }

    .btn-primary{
      max-width: 100%; /* Adjust to fill the width of the viewport */
      display: block; /* Ensure button takes full width */
      margin: 0 auto; /* Center align the button */
    }
  }
  
  @keyframes pulsate-btn {
    0% {
      transform: scale(0.6, 0.6);
      opacity: 1;
    }
  
    100% {
      transform: scale(1, 1);
      opacity: 0;
    }
  }

 /*--------------------------------------------------------------
# features
--------------------------------------------------------------*/

#features{
  background-color: black;
}


.feature-h1{
  color: white !important;
}

.feature-p{
  color: white !important;
}

.feature-h4{
  color: white !important;
}


 /*--------------------------------------------------------------
# Carousel
--------------------------------------------------------------*/

  /* Custom CSS for centering the product-carousel section vertically */
  .product-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh; /* Ensure section takes full viewport height */
  background-color: #f8f9fa;
}

#carousel-mobile {
  text-align: center;
}


.product-carousel img{
  border-radius: 30px;
}

.carousel-h1{
  font-weight: bold;
}

.img1{
  height: 300px;
  width: 400px;
  border-radius: 30px;
}
.img2{
  height: 450px;
  width: 400px;
}
.img3{
  height: 450px;
  width: 400px;
}
.img4{
  height: 450px;
  width: 400px;
}

.carousel-h1 {
  text-align: left;
  margin-top: 100px; /* Adjust top margin to lower the h1 */
}

/* Align items at the bottom */
.align-bottom {
  align-self: flex-end;
}

/* Small screen adjustments */
@media (max-width: 768px) {
  .carousel-h1 {
    margin-top: 0; /* Reset margin top on smaller screens */
  }
  #product-carousel {
    display: none;
  }
}


@media (min-width: 768px) {
  #carousel-mobile {
  }
  .carousel-h1 {
    text-align: center; /* Center the h1 on smaller screens */
    margin-left: 0; /* Remove left margin */
  }
}


/* Extra small devices (phones, 600px and down) */

  .owl1{
    height: auto;
    width: 400px;

  }
  .owl2{
    height: auto;
    width: 400px;
  
  }
  .owl3{
    height: auto;
    width: 400px;
   
  }
  .owl4{
    height: auto;

    width: 400px;
   
  }
  .carousel-h1{
    text-align: left;
    margin-left: 3rem;

  }

  /* Small devices (portrait tablets and large phones, 600px and up) */
@media (min-width: 300px) and (max-width: 599px) {
 
  .owl1{
    height: 400px;
    width: auto;
   
  }
  .owl2{
    height: 400px;
    width: auto;
    
  }
  .owl3{
    height: 400px;
    width: auto;
   
  }
  .owl4{
    height: 400px;
    width: auto;
    
  }
  .carousel-h1{
    text-align: left;

  }

}


/* Small devices (portrait tablets and large phones, 600px and up) */
@media (min-width: 600px) and (max-width: 768px) {
 
    .owl1{
      height: 300px;
      width: 250px;
     
    }
    .owl2{
      height: 300px;
      width: 250px;
      
    }
    .owl3{
      height: 300px;
      width: 250px;
     
    }
    .owl4{
      height: 300px;
      width: 250px;
      
    }
    .carousel-h1{
      text-align: left;
  
    }

  }
  


/* Medium devices (landscape tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 992px) {
  .owl1{
    height: 300px;
    width: 200px;
   
  }
  .owl2{
    height: 300px;
    width: 200px;
    
  }
  .owl3{
    height: 300px;
    width: 200px;
   
  }
  .owl4{
    height: 300px;
    width: 200px;
    
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1200px) {
  .owl1{
    height: 300px;
    width: 250px;
   
  }
  .owl2{
    height: 300px;
    width: 250px;
    
  }
  .owl3{
    height: 300px;
    width: 250px;
   
  }
  .owl4{
    height: 300px;
    width: 250px;
    
  }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1400px) {
  .owl1{
    height: 300px;
    width: 250px;
   
  }
  .owl2{
    height: 300px;
    width: 250px;
    
  }
  .owl3{
    height: 300px;
    width: 250px;
   
  }
  .owl4{
    height: 300px;
    width: 250px;
    
  }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media (min-width: 1401px) and (max-width: 1600px) {
  .owl1{
    height: 300px;
    width: 250px;
   
  }
  .owl2{
    height: 300px;
    width: 250px;
    
  }
  .owl3{
    height: 300px;
    width: 250px;
   
  }
  .owl4{
    height: 300px;
    width: 250px;
    
  }
}





  /*--------------------------------------------------------------
# Shoe cabinet
--------------------------------------------------------------*/

#shoe-cabinet{
  background-color: rgb(245, 239, 228)
}

@media (max-width: 576px) {
  .flex-lg-row-reverse {
    flex-direction: column-reverse !important; /* Reverse column order for small screens */
  }
  .align-items-center {
    align-items: center !important; /* Align items to center vertically */
  }
  .text-lg-start {
    text-align: center !important; /* Center text content */
  }
  .img-fluid {
    max-width: 100%;
    height: auto;
  }
}


 /*--------------------------------------------------------------
# footer
--------------------------------------------------------------*/
footer{
  background-color: #231f20;
  margin: 0;
  padding: 0;
  width: 100%;
}

footer .row li a{
  color:#ffffff !important;
}

footer h5{
  color: #d1d3d4;
}

footer p {
  color: #d1d3d4;
}




.footer-nav .nav-link {
  color: white !important;
}

.footer-wrapper{
  width: 100%;
  background-color: #231f20;
}

.footer-wrapper img{
  width: auto;
  margin-top: 25px;
  margin-left: 25px;
}



@media (min-width: 0px) and (max-width: 700px){
  footer .nav-foot { 
      display : none; 
      visibility : hidden; 
  }

  .footer-wrapper { 
      text-align:center; 
  }

  .footer-wrapper h5 { 
      font-size: xx-large;
      padding-bottom: 10px;
  }
  .footer-wrapper p { 
      font-size: large;
      padding-bottom: 10px;
      margin-bottom:25px;
  }

}

.jbuick-link{
  color: gray;
  text-decoration: none;
}


  /*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 80px 0;
    overflow: hidden;
  }
  
  .section-bg {
    background-color: #8fffd6;
  }
  
  .section-title {
    padding-bottom: 30px;
  }
  
  .section-title h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
  }
  
 
  
  .section-title p {
    margin-bottom: 0;
    color: #777777;
    font-size: 15px;
  }

 /*--------------------------------------------------------------
#Guides
--------------------------------------------------------------*/



  @media (min-width: 0px) and (max-width: 700px){
    footer .nav-foot { 
        display : none; 
        visibility : hidden; 
    }

    .footer-wrapper { 
        text-align:center; 
    }

    .footer-wrapper h5 { 
        font-size: xx-large;
        padding-bottom: 10px;
    }
    .footer-wrapper p { 
        font-size: large;
        padding-bottom: 10px;
        margin-bottom:25px;
    }
   
     .btn-secondary{
        background-color: #d1d3d4 !important;
        width:150px;
    }

    .guides-wrapper{
        text-align:center;
        align-items: center;
    }
    .guides-wrapper img{
        text-align:center;
        width: 10px;
    } 

   
     /* Contact form*/
     .thankGuide-wrapper .container{
        background-color: #F0F0F0;
    }

    .thankGuide-wrapper h1{
        padding:10px;
        text-align: center;
        font-size: xx-large;
        font-weight: bold;
    }

    .thankGuide-wrapper p{
        padding:10px;
        text-align: center;
        font-size: x-large;
        font-weight: normal;
    }

    /* Contact form*/
    .ourguide-wrapper .guides-gradient{
      background-color: rgb(245, 239, 228)  ;  
      margin: 5rem 0 ;
    }

    .ourguide-wrapper h1{
        margin: 3rem ;
        text-align: center;
        font-size: xx-large;
        font-weight: bold;
        color:black;
    }

    .ourguide-wrapper h2{
        padding:10px;
        text-align: center;
        font-weight: bold;
        font-size: x-large;
    }

    .ourguide-wrapper p{
        padding:10px;
        text-align: center;
        font-size: large;
        font-weight: normal;
    }

    .ourguide-wrapper img{
      height: auto;
      width: auto;
    }
}

@media(min-width: 700px) and (max-width: 1000px){
  .guides-wrapper{
      text-align:center;
      align-items: center;
  }
  .guides-wrapper img{
      text-align:center;
      align-items: center;
  }
  .thankGuide-wrapper .container{
      background-color: #F0F0F0;
  }

  .thankGuide-wrapper h1{
      margin: 3rem ;
      text-align: center;
      font-size: xxx-large;
      font-weight: bold;
  }

  .thankGuide-wrapper p{
      padding:50px;
      text-align: center;
      font-size: xx-large;
      font-weight: normal;
  }
  .ourguide-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
  }
  /* Contact form*/
  .ourguide-wrapper .guides-gradient{
    margin: 5rem 0 ;
    background-color: rgb(245, 239, 228)  ;     
  }

  .ourguide-wrapper h1{
      padding:10px;
      text-align: center;
      font-size: xx-large;
      font-weight: bold;
  }

  .ourguide-wrapper h2{
      padding:10px;
      text-align: center;
      font-weight: bold;
      font-size: x-large;
  }

  .ourguide-wrapper p{
      padding:10px;
      text-align: center;
      font-size: large;
      font-weight: normal;
  }


}

@media (min-width: 1000px){
  .guides-wrapper{
      text-align:center;
  }
  .guides-wrapper img{
      text-align:center;
  }

  .thankGuide-wrapper .container{
      background-color: #F0F0F0;
  }

  .thankGuide-wrapper h1{
      padding:10px;
      text-align: center;
      font-size: xx-large;
      font-weight: bold;
  }

  .thankGuide-wrapper p{
      padding:50px;
      text-align: center;
      font-size: xx-large;
      font-weight: normal;
  }
  .ourguide-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
  }
  /* Contact form*/
  .ourguide-wrapper .guides-gradient{
      background-color: rgb(245, 239, 228) ;
      margin-top: 5rem;  
  }

  .ourguide-wrapper h1{
      margin: 1rem;
      text-align: center;
      font-size: xxx-large;
      font-weight: bold;
      color:black
  }

  .ourguide-wrapper h2{
      padding:25px;
      text-align: center;
      font-weight: bold;
      font-size: xx-large;
  }

  .ourguide-wrapper p{
      padding:10px;
      text-align: center;
      font-size: x-large;
      font-weight: normal;
  }


}

 


#subscribeForm .newsletter1{
    border:2px solid #d1d3d4;
    border-radius: none;
    background-color: #231f20;
    color: white !important;
}

.newsletter1::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #d1d3d4;
}

.guides-wrapper{
    background-image: URL("../Images/Group\ 23-rotated.png");
    background-size: cover;
  
}


.btn-aligner {
    width: 100%; /* Make the btn-aligner div take up 100% of its container's width */
    margin: 0 auto; /* Center the btn-aligner horizontally */
}


.btn-aligner p {
    font-size:xx-large;
}



.guides{
    width: 80vw; /* Set the width to 75% of viewport width */
    margin: 0 auto; /* Add margin to the right side of the guides div */
    padding: 30px; /* Add padding to create spacing */
}
/* Center align the content within each column */
.guide-image, .btn-aligner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.guide-text {
  max-width: 250px; /* Set a maximum width */
  margin: 0 auto; /* Center the div horizontally */
  padding: 20px; /* Adjust padding as needed */
}


 /*--------------------------------------------------------------
# Shop
--------------------------------------------------------------*/


.shop-header h1{
  padding-top: 100px;
  text-align: center;
  font-size: xxx-large;
  font-weight: bold;
  color: black;

}

.cards-wrapper .card {
  justify-content: center;
  border: 1px solid rgb(245, 239, 228) ; 
  background-color: rgb(245, 239, 228) ;  ;/* Set the border style and color */
  border-radius: 10px; /* Set the border radius for rounded corners */
}

.cards-wrapper img{
  padding:15px;
  
}

.cards-wrapper h5{
  font-size: x-large;
  
}
.cards-wrapper p{
  padding-top:5px;
  font-weight: bold;
  font-size: xx-large;
  
}

@media  (max-width: 770px){
  .cards-wrapper .col {
      margin-bottom: 50px;
  }
  .shop-header h1{
    padding-top: 90px;
  
  } 
}



 /*--------------------------------------------------------------
# Shop - Shoe cabinet
--------------------------------------------------------------*/

#shoplisting{
  padding-top:10%;

}

.bold-with-colon {
  font-weight: bold;
}

@media  (max-width: 770px){

  #shoplisting{
    padding-top:25%;
  }
}

@media (min-width: 771px) and (max-width: 1000px){

  #shoplisting{
    padding-top:20%;
  }
}


@media (min-width: 1000px) and (max-width: 1200px){

  #shoplisting{
    padding-top:20%;
  }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5); /* Darker background color */
  border-radius: 100%; /* Optional: round the background */
  padding: 10px;
}

/* Additional styling to make sure icons are visible */
.carousel-control-prev-icon::before,
.carousel-control-next-icon::before {
  font-size: 1rem; /* Adjust size if needed */
  color: #fff; /* Color of the arrows */
}




 /*--------------------------------------------------------------
# Contact form
--------------------------------------------------------------*/

.contact-wrapper .container{
  background-color:  rgb(245, 239, 228);
}

.contact-wrapper h1{
  padding-top:100px;
  text-align: center;
  font-size: xxx-large;
  font-weight: bold;
  color: black;
}

.contact-wrapper .form-label{
  font-weight:lighter;
}

.thankyou-wrapper{
  padding:150px;

}


/* Contact form*/
.thankyou-wrapper .container{
  background-color: #F0F0F0;
  
}

.thankyou-wrapper h1{
  padding:10px;
  
  text-align: center;
  font-size: xxx-large;
  font-weight: bold;
}

.thankyou-wrapper p{
  padding:50px;
  text-align: center;
  font-size: xx-large;
  font-weight: normal;
}

