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

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
html{
    scroll-behavior: smooth;
}

/* custom scroll bar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* all similar content styling codes */
section{
    padding: 100px 0;
}
.max-width{
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}
.home, .about, .education, .experience, .skills, .projects, .contact, footer{
    font-family: 'Poppins', sans-serif;

}
.home .home-content,
.about .about-content,
.experience .serv-content,
.projects .serv-content,
.education .serv-content,
.skills .skills-content,
.contact .contact-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.projects .serv-content{
    display: flex;
    flex-direction: column;
}
/*.education .serv-content{
    display: flex;
    flex-direction: column;
}*/
/*the above to make the boxes in edu section to come one below other*/
section .title{
    color: Black;
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
}
/*section .title::before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 180px;
    height: 3px;
    background: Black;
    transform: translateX(-50%);
}Underline Section*/
section .title::after{
    position: absolute;
    bottom: -8px;
    left: 50%;
    font-size: 20px;
    color: Black;
    padding: 0 5px;
    background: #fff;
    transform: translateX(-50%);
}

/* navbar styling */
.navbar{
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 30px 0;
    font-family: 'Ubuntu', sans-serif;
    transition: all 0.3s ease;
}
.navbar.sticky{
    padding: 15px 0;
    background:  -webkit-linear-gradient(left,  #0f182b 0%,#2a3b53 33%,#2a3b53 66%,#0f182b 100%)!important/*#1d522d*/;
    /*background: crimson;*/
    /*background: -webkit-linear-gradient(left,  #0f182b 0%,#2a3b53 33%,#2a3b53 66%,#0f182b 100%)!important;*/    
}
.navbar .max-width{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar .logo a{
    color: #000000;
    font-size: 35px;
    font-weight: 600;
    font-family: Didot, serif;
}
.navbar .logo a span{
    color: rgb(0, 0, 0);
    transition: all 0.3s ease;
}
.navbar.sticky .logo a span{
    color: #ffffff;
}
.navbar.sticky .logo a{
    color: #ffffff;
}
.navbar .menu li{
    list-style: none;
    display: inline-block;
}
.navbar .menu li a{
    display: block;
    color: Black;
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    transition: color 0.3s ease;
}
/*.navbar .menu li a:hover{
    color: white;
}*/
.navbar.sticky .menu li a:hover{
    color: #fff;
}
.navbar.sticky .menu li a{
    color: #fff;
}

.navbar.sticky .menu-btn{
    color: #fff;
}

/* menu btn styling */
.menu-btn{
    color: #000000;
    font-size: 23px;
    cursor: pointer;
    display: none;
}
.scroll-up-btn{
    position: fixed;
    height: 45px;
    width: 42px;
    background:  -webkit-linear-gradient(left,  #0f182b 0%,#2a3b53 33%,#2a3b53 66%,#0f182b 100%)!important/*#1d522d*/;
    right: 30px;
    bottom: 10px;
    text-align: center;
    line-height: 45px;
    color: #fff;
    z-index: 9999;
    font-size: 30px;
    border-radius: 6px;
    border-bottom-width: 2px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
.scroll-up-btn.show{
    bottom: 30px;
    opacity: 1;
    pointer-events: auto;
}
.scroll-up-btn:hover{
    filter: brightness(90%);
}
/*###################################################################################################*/
body {
    margin: 0;
    padding: 0;
    width: 100%;
    /*font-family: 'Raleway', sans-serif;*/
    
    font-family: Didot, serif;
    font-size: 16px;
    background-color: #ffffff;
    /*background-color: #baae98;*/
    color: #38401D;
}

.wrapper {
    width: 80%;
    margin: auto;
    max-width: 1200px;
}

/* HEADER .gallery */

.header {
    overflow: hidden;
}

header h1 {
    /* float: left; */
    font-size: 160%; 
    
    font-family: Didot, serif;
    display: inline-block;     
}

/* END HEADER .gallery */

/* NAVIGATION */

nav {
    float: right;
}

nav ul li {
    list-style: none;
    float: left;
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    font-size: 130%;
    font-weight: 600;
    color: #544333;  
}

nav ul li a:hover {
    color: #C0B6A8;
}

/* END NAVIGATION */

.gallery:after {
    content: " ";
    display: block;
    clear: both;
}

.gallery div.container img {
    width: 33.33%;
    float: left;
    box-sizing: border-box;
    border: 1px solid transparent;
    opacity: 1;
    transition: opacity .5s;
}

.gallery div.container img:hover {
   opacity: 0.65; 
}

.gallery {
    margin-bottom: 3%;
    margin-left: 15%;
    margin-right: 15%;
}

.gallery h2 {
    text-align: center;
}

/* END OF .galleryS */

/* FOOTER .gallery */
.footer {
    overflow: hidden;
    text-align: center;
    padding-bottom: 10px;
}

.footer p {
    font-weight: 700;
}
/* END FOOTER .gallery */

/* MEDIA QUERIES/RESPONSIVE */
@media only screen and (max-width: 768px) {
    .wrapper {
        width: 100%;
    }
    
    header h1 {
        margin-left: 3%;
    }
    #menu-icon {
        width: 30px;
        height: 26px;
        background: url(images/menu.png) no-repeat center;
        position: absolute;
        top: 2%;
        right: 5%;
        z-index: 100;
    }
    nav ul {
        display: none;
        position: absolute;
        right: 5%;
        top: 0%;
        padding: 3% 7%;
        background: #C0B6A8;
        width: 200px;
        text-align: center;
        z-index: 10;
    }
    nav ul li {
        width: 90%;
        padding: 5%;
        margin: auto;
    }
    nav ul li a {
        padding: 5% 20%;
    }
    nav ul li a:hover {
        border-bottom: 1px solid #aaa;
    }

    nav:hover ul {
        display: block;
    }
    .gallery div.container img {
        display: block;
        float: none;
        width: 100%;
        height: auto;
    }
}

@media only screen and (min-width: 768px) and
(max-width: 1024px) {
    .wrapper {
        width: 100%;
    }
    header h1 {
        margin-left: 3%; 
    }
    nav {
        margin-right: 3%;
    }
}

/* Scroll to Top */
/* https://www.w3schools.com/howto/howto_js_scroll_to_top.asp */
#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 10px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: inherit; /* Set a background color */
    color: inherit; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 3px 5px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 14px; /* Increase font size */
}

#myBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
}

/*##################################################################################################*/

/* home section styling */
.home{
    display: flex;

    flex-direction: column;
    background: whitesmoke;
    /*background: -webkit-linear-gradient(left,  rgb(15, 15, 15) 0%,rgb(37, 37, 37) 33%,rgb(37, 37, 37) 66%,rgb(15, 15, 15) 100%)!important;
    /*background: url("images/ban.jpeg") no-repeat center;*/
    height: 100vh;
    color: Black;
    height: 100%;
    min-height: 500px;
    background-size: cover;
    font-family: 'Ubuntu', sans-serif;
}
.home .max-width{
  width: 100%;
  display: flex;
}
.home .max-width .row{
  width: 100%;
  
  display: flex;
  margin-right: 0;
}



.home .home-content .text-1{
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    /*font-family: Didot, serif;*/
    Text-align: justify;
}
.home .home-content .text-2{
    font-size: 50px;
    font-weight: 550;
    margin-left: -3px;
    
    font-family: Didot, serif;
}
.home .home-content .text-3{
    font-size: 40px;
    margin: 5px 0;
}
.home .home-content .text-3 span{
    color: Black;
    font-weight: 500;
}
.home .home-content a{
    display: inline-block;
    background:  -webkit-linear-gradient(left,  #0f182b 0%,#2a3b53 33%,#2a3b53 66%,#0f182b 100%)!important/*#1d522d*/;
    color: #fff;
    font-size: 25px;
    padding: 12px 36px;
    margin-top: 20px;
    font-weight: 400;
    border-radius: 6px;
    border: 2px solid Black;
    transition: all 0.3s ease;
}
.home .home-content a:hover{
    color: Black;
    background: none;
}
.myButton{
    display: inline-block;
    background:  -webkit-linear-gradient(left,  #0f182b 0%,#2a3b53 33%,#2a3b53 66%,#0f182b 100%)!important/*#1d522d*/;
    color: #fff;
    font-size: 15px;
    height: 48px;
    /*padding: 12px 36px;*/
    display: flex; /* Enable flexbox */
    align-items: center; /* Center content vertically */
    justify-content: center; /* Center content horizontally */
    min-width: 170px; /* Set minimum width */
    margin-top: 20px;
    font-weight: 400;
    border-radius: 6%;
    border: 2px solid Black;
    transition: all 0.3s ease;
}



/* about section styling */
.about .title::after{
    background: none;
    font-family: Didot, serif;
   /* content: "*****";*/
}
.about .about-content .left{
    flex-basis: 30%;
    width: 45%;
}
.about .about-content .left img{
    height: 200px;
    width: 200px;
    object-fit: cover;
    /*border: 2px solid rgb(185, 200, 181);*/
    border-radius: 50%;
}

.about .about-content .left .nn img{
    height: 300px;
    width: 300px;
    object-fit: cover;
    /*border: 2px solid rgb(185, 200, 181);*/
    border-radius: 0%;
}

.about .about-content .right{
    flex-basis: 70%;
    width: 55%;
    
}
.about .about-content .right .text{
    color: Black;
    font-size: 25px;
    font-weight: 880;
    margin-bottom: 10px;
    margin-left: 20px;
    font-family: Didot, serif;
}
.about .about-content .right .text span{
    color: Black;
    margin-left: 20px;
}
.about .about-content .right p{
    color: Black;
    text-align: justify;
    margin-left: 20px;
}
.about .about-content .right a{
    display: inline-block;
    background:  -webkit-linear-gradient(left,  #0f182b 0%,#2a3b53 33%,#2a3b53 66%,#0f182b 100%)!important/*#1d522d*/;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid Black;
    transition: all 0.3s ease;
    margin-left: 20px;
}
.about .about-content .right a:hover{
    color: Black;
    background: none;
}

/* education section styling */
.education, .projects, .contact, .skills, .about, .experience{
    color:#fff;
    background: whitesmoke;
    /*background: -webkit-linear-gradient(left,  #0f182b 0%,#2a3b53 33%,#2a3b53 66%,#0f182b 100%)!important;*/
    /*background: -webkit-linear-gradient(left,  rgb(15, 15, 15) 0%,rgb(37, 37, 37) 33%,rgb(37, 37, 37) 66%,rgb(15, 15, 15) 100%)!important
    /*background: url('images/ban.jpeg');*/
}

.education .title::after,
.projects .title::after{
    background: none;
    /*content: "*****";*/
}
.education .serv-content .card{
    width: calc(33% - 20px);
    background: url('images/ban2.jpeg');
    background-size: cover; 
    opacity: 1.0;
    text-align: center;
    border-radius: 6px;
    padding: 50px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}



/*.education .serv-content .card:hover{
    background: Black;
}*/
.education .serv-content .card .box{
    transition: all 0.3s ease;
}
.education .serv-content .card:hover .box{
    transform: scale(1.05);
}
.education .serv-content .card i{
    font-size: 50px;
    color: Black;
    transition: color 0.3s ease;
}
.education .serv-content .card img{
    height: 100px;
    width: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid rgb(30, 65, 169);
    transition: all 0.3s ease;
}
.education .serv-content .card p{
    text-align: justify;
}
.education .serv-content .card p span{
    color: rgb(50, 120, 167);
    font-size: 22px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.education .serv-content .card:hover i{
    color: #fff;
}
.education .serv-content .card .text{
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 7px 0;
}

/* experience section styling 
.experience, .projects{
    color:#fff;
    background: #111;
}*/

.experience .title::after,
.projects .title::after{
    background: none;
    /*content: "*****";*/
}
.experience .serv-content .card{
    width: 100%;
    background: url('images/dan.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    /*background: whitesmoke;*/
    opacity: 0.9;
    /*background: #222;*/
    text-align: center;
    border-radius: 6px;
    padding: 50px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid Black;
}
/*.experience .serv-content .card:hover{
    background: Black;
}*/
.experience .serv-content .card .box{
    transition: all 0.3s ease;
}
.experience .serv-content .card:hover .box{
    transform: scale(1.05);
}
.experience .serv-content .card i{
    font-size: 50px;
    color: Black;
    transition: color 0.3s ease;
}
.experience .serv-content .card img{
    height: 100px;
    width: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid rgb(30, 65, 169);
    transition: all 0.3s ease;
}
.experience .serv-content .card p{
    color: Black;
    text-align: justify;
    margin: 10px 15px 7px 15px;
}
.experience .serv-content .card p span{
    color: Black;
    font-size: 22px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.experience .serv-content .card:hover i{
    color: #fff;
}
.experience .serv-content .card .text1{
    color: Black;
    text-align: left;
    font-size: 25px;
    font-weight: 500;
    margin: 10px 15px 7px 15px;
}
.experience .serv-content .card .text{
    color: Black;
    font-size: 25px;
    font-weight: 500;
    margin: 10px 15px 7px 15px;
}

/* projects section styling */

.projects .serv-content .card{
    /*width: calc(33% - 20px);*/
    width: 80%;
    background: url('images/dan.jpeg');
    /*background: whitesmoke;*/
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.9;
    text-align: center;
    border-radius: 6px;
    padding: 50px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid Black;
}
/*.projects .serv-content .card:hover{
    background: Black;
}*/
.projects .serv-content .card .box{
    transition: all 0.3s ease;
}
.projects .serv-content .card:hover .box{
    transform: scale(1.05);
}
.projects .serv-content .card i{
    font-size: 50px;
    color: Black;
    transition: color 0.3s ease;
}
.projects .serv-content .card img{
    height: 100px;
    width: 100px;
    object-fit: cover;
    border: 5px solid rgb(30, 65, 169);
    transition: all 0.3s ease;
}

.projects .serv-content .card .responsive{
    height: auto;
    width: 60%;
    object-fit: cover;
    border: 5px solid rgb(0, 0, 2);
    transition: all 0.3s ease;
}

.projects .serv-content .card p{
    color: Black;
    text-align: justify;
    margin: 10px 15px 7px 15px;
}
.projects .serv-content .card p span{
    color: Black;
    font-size: 22px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 10px; 
}
.projects .serv-content .card p a{
    color: blue;
    text-decoration: underline;
    font-style: italic;
}
.projects .serv-content .card:hover i{
    color: #000000;
}
.projects .serv-content .card .text{
    color: Black;
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 7px 0;
}


/* skills section styling */

.skills .title::after{
    background: none;
    /*content: "*****";*/
}
.skills .skills-content .column{
    width: calc(50% - 30px);
}
.skills .skills-content .left .text{
    color: Black;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.skills .skills-content .left p{
    color: Black;
    text-align: justify;
}
.skills .skills-content .left a{
    display: inline-block;
    background:  -webkit-linear-gradient(left,  #0f182b 0%,#2a3b53 33%,#2a3b53 66%,#0f182b 100%)!important/*#1d522d*/;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 16px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid Black;
    transition: all 0.3s ease;
}
.skills .skills-content .left{
    flex-basis: 35%;
}
.skills .skills-content .right{
    flex-basis: 60%; 
}
.skills .skills-content .left a:hover{
    color: Black;
    background: none;
}
/*.skills .skills-content .right .card:hover{
    background: silver;
    
}*/
.skills .skills-content .right .bars{
    margin-bottom: 15px;
}
.skills .skills-content .right .card{
    width: 100%;
    background: url('images/d1.jpeg');
    background-size: cover;
    text-align: center;
    border-radius: 50px;
    padding: 50px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid Black;
}
.skills .skills-content .right .bars .row{
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.skills .skills-content .right .bars .row img{
    margin-right: 10px;
    width: 30; 
    height: auto;
}

.skills .skills-content .right .info{
    display: flex;
    margin-bottom: 5px;
    align-items: center;
    justify-content: space-between;
}
.skills .skills-content .right span{
    font-weight: 500;
    font-size: 18px;
}
.skills .skills-content .right .line{
    height: 5px;
    width: 100%;
    
    background: whitesmoke;
    position: relative;
}
.skills .skills-content .right .line::before{
    content: "";
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    background: Black;
}
.skills-content .right .html::before{
    width: 90%;
}
.skills-content .right .css::before{
    width: 60%;
}
.skills-content .right .js::before{
    width: 80%;
}
.skills-content .right .php::before{
    width: 50%;
}
.skills-content .right .mysql::before{
    width: 70%;
}

.owl-dots{
    text-align: center;
    margin-top: 20px;
}
.owl-dot{
    height: 13px;
    width: 13px;
    margin: 0 5px;
    outline: none!important;
    border-radius: 50%;
    border: 2px solid Black!important;
    transition: all 0.3s ease;
}
.owl-dot.active{
    width: 35px;
    border-radius: 14px;
}
.owl-dot.active,
.owl-dot:hover{
    background: Black!important;
}

/* contact section styling */
.contact .title::after{
    background: none;
    /*content: "*****";*/
}
.contact .contact-content .column{
    width: calc(50% - 30px);
}
.contact .contact-content .text{
    color: Black;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.contact .contact-content .left p{
    text-align: justify;
}
.contact .contact-content .left .icons{
    margin: 10px 0;
}
.contact .contact-content .row{
    color: Black;
    display: flex;
    height: 65px;
    align-items: center;
}
.contact .contact-content .row .info{
    margin-left: 30px;
}
.contact .contact-content .row i{
    font-size: 25px;
    color:  -webkit-linear-gradient(left,  #0f182b 0%,#2a3b53 33%,#2a3b53 66%,#0f182b 100%)!important/*#1d522d*/;
}
.contact .contact-content .info .head{
    font-weight: 500;
}
.contact .contact-content .info .sub-title{
    color: Black;
}
.contact .right form .fields{
    display: flex;
}
.contact .right form .field,
.contact .right form .fields .field{
    height: 45px;
    width: 100%;
    margin-bottom: 15px;
}
.contact .right form .textarea{
    height: 80px;
    width: 100%;
}
.contact .right form .name{
    margin-right: 10px;
}
.contact .right form .field input,
.contact .right form .textarea textarea{
    height: 100%;
    width: 100%;
    border: 1px solid whitesmoke;
    border-radius: 6px;
    outline: none;
    padding: 0 15px;
    font-size: 17px;
    
    font-family: Didot, serif;
    transition: all 0.3s ease;
}
.contact .right form .field input:focus,
.contact .right form .textarea textarea:focus{
    border-color: #b3b3b3;
}
.contact .right form .textarea textarea{
  padding-top: 10px;
  resize: none;
}
.contact .right form .button-area{
  display: flex;
  align-items: center;
}
.right form .button-area button{
  color: #fff;
  display: block;
  width: 160px!important;
  height: 45px;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  flex-wrap: nowrap;
  background: Black;
  border: 2px solid Black;
  transition: all 0.3s ease;
}
.right form .button-area button:hover{
  color: Black;
  background: none;
}
.contact .right .social__media--wrap .social__icon--link {
    text-decoration: none;
    color: rgb(0, 0, 0); /* Icon color */
    transition: color 0.3s ease; /* Smooth color transition on hover */
    width: 30px; 
    height: 30px; 
    margin: 0 20px 15px 0;
}


/* footer section styling */
footer{
    background: #111;
    padding: 15px 23px;
    color: #fff;
    text-align: center;
}
footer span a{
    color: Black;
    text-decoration: none;
}
footer span a:hover{
    text-decoration: underline;
}


/* responsive media query start */
@media (max-width: 1104px) {
    .about .about-content .left img{
        height: 350px;
        width: 350px;
    }
}

@media (max-width: 991px) {
    .max-width{
        padding: 0 50px;
    }
}
@media (max-width: 947px){
    .menu-btn{
        display: block;
        z-index: 999;
    }
    .menu-btn i.active:before{
        content: "\f00d";
    }
    .navbar .menu{
        position: fixed;
        height: 100vh;
        width: 100%;
        left: -100%;
        top: 0;
        background: #111;
        text-align: center;
        padding-top: 80px;
        transition: all 0.3s ease;
    }
    .navbar .menu.active{
        left: 0;
    }
    .navbar .menu li{
        display: block;
    }
    .navbar .menu li a{
        display: inline-block;
        margin: 20px 0;
        font-size: 25px;
    }
    .home .home-content .text-4{
        font-size: 200px;
        color: Black;
        text-align: justify;
        margin-left: 20px;
    }
    .home .home-content .text-2{
        font-size: 70px;
        
        font-family: Didot, serif;

    }
    .home .home-content .text-3{
        font-size: 35px;
    }
    .home .home-content a{
        font-size: 23px;
        padding: 10px 30px;
    }
    .max-width{
        max-width: 930px;
    }
    .about .about-content .column{
        width: 100%;
    }
    .about .about-content .left{
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
    }
    .about .about-content .right{
        flex: 100%;
    }
    .experience .serv-content .card{
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }
    .projects .serv-content .card{
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }

    .skills .skills-content .column,
    .contact .contact-content .column{
        width: 100%;
        margin-bottom: 35px;
    }
    .skills .skills-content .left{
        flex: 100%;
    }


}

@media (max-width: 690px) {
    .max-width{
        padding: 0 23px;
    }
    .home .home-content .text-2{
        font-size: 60px;
    }
    .home .home-content .text-3{
        font-size: 32px;
    }
    .home .home-content a{
        font-size: 20px;
    }
    .education .serv-content .card{
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }
    .experience .serv-content .card{
        width: 100%;
        
    }
    .projects .serv-content .card{
        width: 100%;
    }
}

@media (max-width: 500px) {
    .home .home-content .text-2{
        font-size: 50px;
    }
    .home .home-content .text-3{
        font-size: 27px;
    }
    .skills .skills-content .left .text{
        font-size: 19px;
    }
    .contact .right form .fields{
        flex-direction: column;
    }
    .contact .right form .name,
    .contact .right form .email{
        margin: 0;
    }
    .right form .error-box{
       width: 150px;
    }
    .scroll-up-btn{
        
        right: 15px;
        bottom: 15px;
        height: 38px;
        width: 35px;
        font-size: 23px;
        line-height: 38px;
    }
}
