@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600');




/*General */

.btn1 {
    background-color: #ce3232;
}

.btn1:hover {
    background-color: #1d0000;    
    color: #ffffff;   
}

.btn2 {
    background-color: transparent;
    border: 2px solid #f9f9f9;
    color: #f9f9f9;
    margin-right: 20px;
} 

.btn2:hover, .btn2:focus {
    background-color: #ce3232;
    border-color: transparent;
    color: #ffffff;   
}

h1 {
    margin: 20px 0px 30px;
    font-size: 2.3em;
    color: #ffffff;
}

.text-container {
    width: 100%;
    gap: 45px;  
}

.text-center {
    flex: 30%;
    text-align: justify; 
      
}

section {
    padding: 80px;
    width: 100%;
}

            /* Header section    */
.container {    
    width: 100%;
    position: fixed;
    z-index: 100;
}

.header {      
    padding: 0 80px;    
    position: relative;   
    background: transparent;
       
}

nav {
    display: flex;
    justify-content: space-between;    
    width: 88%;
    padding: 25px 0;   
    position: absolute;   
    top: 10px;
    z-index: 100;    
}

.logo-box {
   flex-basis: 100px;   
}

.logo {
    color: #ffffff;
}

.navlinks {
    flex: 2;
}

.navlinks ul {   
    justify-content: space-between
}

.navlinks li a {
    color: #ffffff;
}

.navlinks li a:hover {
    color: red;
}

.social { 
    flex: 2; 
    justify-content: space-between;    
}

.social i {
    padding: 15px 0;
}

.links .logo {   
    font-size: 1.3rem;
    font-weight: bolder;
    margin-right: 50px;
}


/* Home Section */

#home {
    padding-top: 100px;
    background-image: url('../images/home-bg.jpg');
    background-size: cover;
    vertical-align: middle;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;    
    min-height: 100vh;
}

.home-container {
    margin-top: 100px;
    position: relative;    
    align-items: center;           
    padding-top: 10px;  
    
}

.overlay {     
    background: linear-gradient(to right, #0575E6, #00F260); 
    opacity: 0.7;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;   
  }

/* Hero Section */

.hero {
    position: relative;
    /* width: 100%; */
    gap: 20px;
    /* margin: auto; */
}

.hero-text {
    flex: 50%;
    margin-top: 50px;   
}

.hero-video {
    flex: 50%;
    /* width: 100%; */
    height: 300px;    
} 
 
.hero-video iframe {
    width: 100%;
    height: 100%;
}

span {
    color: #ffffff;
}
small {
    font-size: 70%;
    font-weight: bold;
    color: #ffffff;   
}

/* About Section */
#about {
    padding: 80px 20px 0 20px;
}
.about-info, .text-center {
    margin-top: 20px;
}

.skill {    
    padding: 15px 0;
}

.skill-level {
    flex: 20%;
}


.about-image {
    flex: 26%;
}

.text-center > p {
    padding-top: 20px;
}

.line-dots {
    font-size: 60px;
    padding-top: 5px;
    color: #827373;
    line-height: 2px;
}

.skill > div{
    margin-top: 20px;
}

.skil-level > div {
    margin-top: 20px;
}

strong {
    margin-right: 50px;
}

.progress {
    border: 2px solid #414141;
    margin: 10px 0;      
}

.skil-1 {
    width: 85%;   
}

.skil-2 {
    width: 90%;   
}

.skil-3 {
    width: 75%;   
}

.skil-4 {
    width: 70%;   
}

.skill-1-level {
    margin-left: 48px;
}

.skill-2-level {
    margin-left: 40px;
}

.skill-3-level {
    margin-left: 5px;
}

.skill-4-level {
    margin-left: 50px;
}

.flex-box img {   
    max-width: 100%;
    height: 292px;
}

.image-box img{   
    max-width: 100%;
    height: auto;
}


/* Blog Section */

#blog {   
    padding: 80px 0; 
    background-color: #f0f0f0;   
    height: auto;    
}

.blog-container { 
    background-color: #d7d5d5;
    gap: 30px;    
    padding: 0 80px;
    flex-wrap: wrap;    
}

.heading {
    text-align: center;
    margin-bottom: 30px;
}

.flex-box {
    flex: 40%;
    height: 380px;    
    background-color: #ffffff;   
}

.blog-image {
    width: 239px;    
    height: 359px;
}

.blog-info {
    padding: 75px 25px;
}



.blog-info > .btn {
    background-color: #e2dfdf;
    color: #252525;
    font-size: 14px;
}

.blog-info .btn:hover {
    background: linear-gradient(to right, #0575E6, #00F260);
    background-color: #00F260;
}

/* work Section*/
#work {   
    padding: 80px; 
    background-color: #ffffff;   
    height: auto;    
}

.work-container {   
    justify-content: center;  
    
}

.image-body {   
    width: 25%;
    padding: 0;
    /* margin: auto; */
}

.image-box {
    margin: 20px 0 0;
    background-color: #ce3232;
    color: #ffffff;    
}

.work-image {
    width: 100%;
    height: auto;
}

.work-info{
    color: #ffffff;
    transition: 0.5s;
    text-align: center;    
}

/* contact sectin */

#contact {
    background: linear-gradient(to right, #0575E6, #00F260); 
}

.contact-center {
    justify-self: center;
    /* background-color:  #00F260; */
      
}

.form-filed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 20px;
}

form {
    flex: 2;
    gap: 20px;
}

.contact-center {
    padding: 80px;
}

.contact {
    gap: 20px;
}

input, select, textarea {
    padding: 6px 12px 6px 8px;
    width: 100%;  
    height: 55px;
    border-radius: 5px;
    border: none;
    background-color: #ffffff;
    font-size: 15px;
    color: #565555;
}

textarea {    
    height: 132px;    
}

.textarea {
    grid-column: 1 / 3;
    margin-bottom: 10px;    
}

.map {
    flex: 1;
    margin: auto;
}

.map-frame {
    border-radius: 50%;
    height: 300px;
    border: none;
}

.btn-box {
    width: 150px;
}

/* footer */
.footer {
    padding: 80px;
    background-color: #0b0909;
    /* background: linear-gradient(to right, #434343, #000000) */
    color: #ffffff; 
    justify-content: space-evenly;  
}

.footer-container {
    margin-bottom: 60px;
}

footer h2 {
    margin: 20px 0 10px;
    font-size: 1.5rem;
}
footer h2, footer p {
    color: #ffffff;
} 

footer li {
    margin: 5px 10px 5px 0;    
}

footer li a {    
    font-size: 0.8rem;
    color: #ffffff;
}

.footer-box1 {
    width: 38%;
    padding: 0 15px;
}
.footer-box2 {
    width: 16%;
    padding: 0 15px;
}
.footer-box3 {
    width: 16%;
    padding: 0 15px;
}
.footer-box4 {
    /* width: 350px; */
    padding: 0 15px;
}

.footer-bottom {
    margin: 42px 0 0;
    justify-content: space-between;
}

.copyright {
    width: 50%;
}

.call {
    width: 50%;
    justify-content: space-evenly;
}
.call ul > li > div {
   margin-right: 30px;
}

