*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
:root{
    --hero-background-color:#F6F5FC;
    --social-icon:rgb(53, 187, 120, .2);
    --fa-brands-color:#1c55f2;
    --bd-color:rgb(59, 235, 220);
    --about-me-background-color:#D5D7D6;
    --black-color:#222427;
    --hover-color:#a9a9a9;
    --education-background-color:#E7E9EB;
    --white-color:#ffffff;
}
.container-container{
    width: 90%;
    margin: auto;
}
.btn-light {
    --bs-btn-border-color: black;
}
.d-flex{
    display: flex;
}
ul{
    margin: 0;
}
ol, ul {
    padding-left: 0rem;
}
ul li{
    list-style-type: none;
}
a{
    text-decoration: none;
    display: inline-block;
}
.btn-info ul li{
    display: inline-block;
}
.btn-info {
    --bs-btn-bg: var(--primary-color); 
    --bs-btn-border-color: #fff; 
    --bs-btn-hover-bg:var(--primary-color); 
    --bs-btn-hover-border-color: #fff;
    --bs-btn-active-bg: #fff;
    --bs-btn-active-border-color: #fff;
}
.btn-lg {
    --bs-btn-padding-x: 2.75rem;
    --bs-btn-padding-y: 0.100rem;
    --bs-btn-font-size: 1rem;
}
/* common code ending here */
/* hero section starts here */
.hero{
    border: 1px solid black;
}
.hero .container-hero{
    width: 80%;
    background-color: var(--hero-background-color);
    margin: auto;
    padding: 150px 0px;
    border-radius: 20px;
}
.hero .content-area{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 50px;
    height: 100%;
    padding:0px 100px;
}
.hero .content-area p{
    font-size: 20px;
    line-height: 1.2;
    padding-top: 60px;
}
.hero .content-area h2{
    font-size: 30px;
    font-weight: 500;
    display: inline-block;
}
.hero .content-area h3{
    font-size: 25px;
    font-weight: 500;
    display: inline-block;
}
.social-communication ul li{
    display: inline-block;
}
.hero-poster{
    display: flex;
    justify-content: center;
    height: 100%;
}
.hero-poster img{
    height: 300px;
    width: 300px;
    border-radius: 50%;
}
.social-communication{
    margin-top: 100px;
}
.download{
    background-color: var(--bd-color);
}
.download:hover{
    background-color: var(--white-color);
}
.download a{
    border: 1px solid black;
    padding: 10px 20px 10px 20px;
}
.fa-download{
    padding-left: 15px;
}
.fa-brand{
    padding: 10px;
    
    font-size: 15px;
    color: var(--black-color);
    border-radius: 50%;
    background-color: var(--bd-color);
}
.fa-brand:hover{
    background-color: var(--hover-color);
}
/* hero section ending here */
/* navbar section starts here  */
.nav-item{
    padding: 10px;
}
.navbar-brand span{
    color: rgb(76, 76, 202);
}
.nav-item a{
    font-size: 18px;
}
/* navbar section ending here */
/* about me section starts here */
.about-me{
    background-color: var(--about-me-background-color);
    box-sizing: border-box;
}
.about-me .title{
    letter-spacing: 25px;
    
}
.about-me-contact{
    width: 750px;
    display: flex;
    justify-content: space-between;
}
.about-me-phone-image{
    height: 150px;
    width: 300px;
}
.about-me-address{
    height: 150px;
    width: 400px;
    background-color: var(--bd-color);
    padding: 20px;
}
.about-me-poster{
    transition: all 2s;
}
.about-me-poster:hover{
    transform: scale(1.3);
}
.about-me-phone-image{
    transition: all 2s;
}
.about-me-phone-image:hover{
    transform: scale(1.3);
}
.about-me-address{
    transition: all 2s;
}
.about-me-address:hover{
    transform: scale(1.3);
}
/* about me section ending here */
/* education section starts here  */
.myjourney{
    background-color: #D9EEE1;
}
.education{
    background-color: var(--education-background-color);
} 
.journey{
    letter-spacing: 10px;
}
.high-school-image{
    transition: all 2s;
}
.high-school-image:hover{
    transform: scale(1.4);
}
.college-image{
    transition: all 2s;
}
.college-image:hover{
    transform: scale(1.4);
}
.versity-image{
    transition: all 2s;
}
.versity-image:hover{
    transform: scale(1.4);
}
.education-content{
    background-color: #fff;
}
.last-col{
    background-image: linear-gradient(to bottom, #24e253, #67e97e, #93efa5, #bbf4c8, #e3f7e8);
}
.school{
    border: 1px solid black;
    margin-top:55px !important
}
.versity{
    border: 1px solid black;
}

/* education section ending here  */
/* skills section starts here */
.skills{
    padding: 100px;
   background-color: #ffffff;
}
.skills .content{
    padding: 30px 0px 50px 0px;
}
.skills .content h1{
    letter-spacing: 10px;
}
/* skills section ending here */
/* my protfolio section starts here */
.protfolio{
    background-color: #FFF4A3;
}
.protfolio .content-area{
    position: relative;
}
.protfolio .content-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(235, 223, 221, 0.5);
    transform: scale(0);
    transition: 4s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.protfolio .content-area:hover .content-overlay{
    transform: scale(1);
}
.protfolio .content-overlay a{
    text-decoration: none;
    color: #212721;
    font-size: 20px;
    font-weight: 500;
    transition: 4s;
}
.protfolio .content-overlay a:hover{
    color: rgb(56, 45, 201);
}
/* my protfolio section ending here */
/* service section starts here */
.content:hover i,
.content:hover h4,
.content:hover p{
    color:aqua;
}
.title p{
    font-size: 25px;
}
/* service section ending here */
/* address section starts here */
.address{
    background-color:#282A35;
    color: #fff;
}
.contact-heading{
    position: relative;
    padding-bottom: .2rem;
}
.contact-heading::before{
    content: '';
    position: absolute;
    height: .2rem;
    width: 10%;
    background: var(--white-color);
    top: 100%;
    left: 45%;
}
.address p, .address a{
    line-height: 28px;
    letter-spacing: .5px;
    font-size: 16px;
    color: var(--white-color);
    transition: var(---transition);
}
.address a:hover{
    color: var(--dark-color);
}
.icon span{
    color: #30c39e;
}
.map iframe {
    width: 100%;
    max-height: 260px;
    border: 5px solid #d6d6d6 !important;
}
.contact-right input[type="text"], .contact-right input[type="email"], .contact-right textarea{
    outline: none;
    width: 83%;
    padding: .9em 1.3em;
    font-size: 15px;
    letter-spacing: 1px;
    color: var(--white-color);
    border: none;
    border: 1px solid #ccc;
    background: none;
    margin-bottom: 1.5em;
	border-radius: 5px;
}
.contact-right .message{
    color: var(--white-color);
}

.contact-right button[type="submit"] {
    padding: 11px 35px;
    color: #fff;
    background: #0a8ea0;
	border: 2px solid #0a8ea0;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    -ms-border-radius: 4px;
    float: right;
	cursor: pointer;
}
.contact-right button[type="submit"]:hover {
    color: #222;
    background: none;
	border: 2px solid #222;
}
.contact label {
    width: 17%;
    float: left;
    color: var(--white-color);
    font-weight: 600;
}
.contact label span {
    color: #30c39e;
}
.contact-right textarea {
    min-height: 120px;
    resize: none;
}
/* address section ending here */
/* footer section starts here */
.footer{
    background-color: var(--bd-color);
}
.footer .content{
    border: none;
}
.social-icon{
    padding: 10px;
    margin-left: 5px;
    font-size: 15px;
    color: var(--black-color);
    border-radius: 50%;
    background-color: var(--white-color);
}
.social-icon:hover{
    background-color: var(--hover-color);
}
.footer .social-communication{
    margin-top: 50px;
    margin-bottom: 50px;
}
/* footer section ending here */
/* little footer section starts here */
.little-footer{
    background-color: rgb(252, 221, 221);
}
/*little footer section ending here*/








