@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&amily=Ubuntu:wght@400;500;700&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
}

 

body {
  margin: 0;
  font-family: "Ubuntu", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #6c757d;
  text-align: left;
  background-color: #ffffff;
}
 
a {
  color: #0BCEAF;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #078571;
  text-decoration: underline;
}
 
h1,h2,h3,h4,h5,h6,p{
  color: #020202 !important;
} 


/* ================ Navigation Menu ====================*/


.navbar-light {
    /* position: fixed; */
    background-color: crimson !important;
    width: 100%;
}

.navbar-nav a{
    margin-left:10px;
    margin-right:10px;
}
  
.navbar-light .navbar-nav .nav-link {
    padding: 25px 10px;
    color: #fff;
    font-weight: 500;
    outline: none;
}
  
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #000;
}
  
@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
      padding: 10px 0;
    }
}



.about-img{
    margin-left: -100px;
    right: -60px;
}



/*===================== Progress Bar ====================*/

.progress {
    border-radius: 10px;
    
}
  
.progress .progress-bar {
    width: 0px;
    border-radius: 10px;
    transition: 2s;
}

.skills-content {
    margin: 85px 0;
}


/* =================== Service Section ==================*/ 

.certification-h4{
    padding-bottom: 30px;
}

.certification-box{
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1);  
    margin-left: 20px;
    padding: 15px;
    padding-left: 30px;
    padding-right: 30px;
    margin: 80px 0;
}
.certification-box:hover{
    box-shadow: 0px 1px 13px rgba(27, 27, 27, 0.705); 
}  


/* =================== Contact Us =================== */
.contact-form .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.contact-content {
    margin: 80px 0;
}


/* Media Query Of Image */
@media (max-width: 700px) {
    .about-img{
      margin-left: 20px;
      right: 0px;
      top: 30px;
    }
}



@media (max-width: 400px) {
  body {
    width: 400px;
  }
}