
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
font-family: "Open Sans", sans-serif;
color: #000000;
}

a {
color: #106eea;
}

a:hover {
color: #3b8af2;
text-decoration: none;
}

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

.card-body {
    padding-top: 5px;
  }
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
width: 100%;
height: 100%;
background: url("/static/images/bg_images/website-design-brisbane.jpeg") top left;
background-size: cover;
position: relative;
}

#hero:before {
content: "";

position: absolute;
bottom: 0;
top: 0;
left: 0;
right: 0;
}

#hero .container {
position: relative;
padding-top: 50px;
}

@media (max-width: 992px) {
#hero .container {
    padding-top: 20px;
}
}

#hero h1 {
margin: 0;
font-size: 48px;
font-weight: 700;
line-height: 56px;
color: #ffffff;
font-family: "Poppins", sans-serif;
}

#hero h1 span {
color: #fbfbfb;
}

#hero h2 {
color: #ffffff;
margin: 5px 0 30px 0;
font-size: 220%;
font-weight:bold;
}

#hero .btn {
font-family: "Roboto", sans-serif;
text-transform: uppercase;
font-weight: bold;
font-size: 120%;
letter-spacing: 1px;
display: inline-block;
padding: 10px 28px;

transition: 0.5s;
color: #fff;
background: #106eea;
}

#hero .btn:hover {
background: #3187f7;
}



@media (min-width: 1024px) {
#hero {
    background-attachment: fixed;
}
}

@media (max-width: 768px) {
#hero {
    height: 100vh;
}
#hero h1 {
    font-size: 28px;
    line-height: 36px;
}
#hero h2 {
    font-size: 160%;
    line-height: 24px;
    margin-bottom: 30px;
}
#hero .btn-get-started {
    font-size: 13px;
}
}

@media (max-height: 500px) {
#hero {
    height: 120vh;
}
}

/* about Section */
#about .about-img img {
    width: 100%;
    border: 8px solid #fff;
    transition: .5s;
}
#about .about-img {
    position: relative;
    margin: 30px 30px 30px 30px;
}
#about .about-img::after {
    position: absolute;
    right: -31px;
    bottom: -30px;
    width: 90%;
    height: 92%;
    z-index: -1;
    content: '';
    background-color: #ebf1fa;
    transition: .5s;
}
#about .about-img::after {
    position: absolute;
    right: -31px;
    bottom: -30px;
    width: 90%;
    height: 92%;
    z-index: -1;
    content: '';
    background-color: #ebf1fa;
    transition: .5s;
}
.abt-us{
    font-size: 28px;
    font-weight: 700;
    color: #010483;
    margin-top: 25px;
}
.dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(2, 84, 161, 0.91); 
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown-content a:hover {background-color: #ddd;}
  
  .dropdown:hover .dropdown-content {display: block;}
  
  .dropdown:hover .dropbtn {background-color: #3e8e41;}

  