@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.9.1/font/bootstrap-icons.css");

/* fonts */

/* PlayfairDisplay font */
@font-face {
    src: url("../fonts/PlayfairDisplay/PlayfairDisplay-Regular.ttf");
    font-family: "main-PlayfairDisplay";
}

/* Medium Fonts */

@font-face {
    src: url("../fonts/PlayfairDisplay/PlayfairDisplay-Medium.ttf");
    font-family: "medium-PlayfairDisplay";
}

/* bold Fonts */

@font-face {
    src: url("../fonts/PlayfairDisplay/PlayfairDisplay-Bold.ttf");
    font-family: "bold-PlayfairDisplay";
}
/* PlayfairDisplay font */


/* Montserrat font */
@font-face {
    src: url("../fonts/Montserrat/Montserrat-Regular.ttf");
    font-family: "main-Montserrat";
}

/* Medium Fonts */

@font-face {
    src: url("../fonts/Montserrat/Montserrat-Medium.ttf");
    font-family: "medium-Montserrat";
}

/* bold Fonts */

@font-face {
    src: url("../fonts/Montserrat/Montserrat-Bold.ttf");
    font-family: "bold-Montserrat";
}
/* Montserrat font */

/* fonts */



/* general */
:root {
    --main-color: #0FBF61;
    --font-color1: #151D41;
}
* {
    box-sizing: border-box;
}
body , html {
    margin: 0;
    padding: 0;
}
.container {
    width: 96%;
    margin: 0 auto;
    padding-left: 5px;
    padding-right: 5px;
}
.col-1 {
    width: 8%;
}
.col-2 {
    width: 16%;
}
.col-3 { 
    width: 24%;
}
.col-4 {
    width: 32%;
}
.col-5 {
    width: 40%;
}
.col-6 { 
    width: 48%;
}
.col-7 {
    width: 56%;
}
.col-8 {
    width: 64%;
}
.col-9 {
    width: 72%;
}
.col-10 {
    width: 80%;
}
.col-12 {
    width: 100%;
}
.cover-img {
    width: 100%;
    height: 100%;
}
figure {
    overflow: hidden;
    margin: 0;
}
.text-mute {
    color: #707070;
}
.row , .d-flex {
    display: flex;
}
.button {
    font-family: "main-Montserrat", sans-serif;
    font-size: 25px;
    display: inline-block;
    padding: 30px 60px;
    text-transform: capitalize;
    border-radius: 5px;
    margin-right: 25px;
    margin-top: 50px;
    text-decoration: none;
    background-color: var(--main-color);
    color: white;
    cursor: pointer;
    transition: 400ms;
}
.button:hover {
    transform: scale(1.2);
    background-color: green;
}
.text-mute {
    color: #707070;
}

/* general */
.fixed-button figure {
    width: 70px;
    height: 70px;
    background-color: var(--main-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 30px;
    bottom: 50px;
    transition: 400ms;
}
.fixed-button figure:hover {
    transform: scale(1.2);
    background-color: green;
}
/* main header */
.main-header {
    padding-top: 15px;    
    font-family: "main-Montserrat", sans-serif;
    margin-bottom: 50px;
}
.main-header .row {
    justify-content: center;
    align-items: center;
}
.main-header figure {
    height: 70px;
}
.main-header figure img {
    display: inline-block;
    margin-left: -40px;
}
.main-header .col-8 ul {
    display: flex;
    align-items: center;
    list-style-type: none;
    position: relative;
}
.main-header .col-8 ul li {
    margin-left: 60px;
    transition: 400ms;
}
.main-header .col-8 ul li:last-child {
    position: absolute;
    right: 0;
}
.main-header .col-8 ul li:last-child a {
    color: var(--main-color);
    font-size: 25px;
}
.main-header .col-8 ul li a {
    text-decoration: none;
    color: var(--font-color1);
    text-transform: capitalize;
}
.main-header .col-8 ul a {
    padding-bottom: 10px;
    font-size: 20px;
    position: relative;
}
.main-header .col-8 ul a::after {
    content: '';
    width: 0;
    height: 3px;
    background-color: var(--main-color);
    position: absolute;
    left: -8px;
    bottom: -5px;
    transition: 400ms;
}
.main-header .col-8 ul li:hover a::after {
    width: 80px;
}
.main-header .col-8 ul li:nth-child(2):hover a::after {
    width: 120px;
}
.main-header .col-8 ul li:nth-child(3):hover a::after {
    width: 140px;
}
.main-header .col-8 ul li:nth-child(4):hover a::after {
    width: 70px;
}
.main-header .col-8 ul li:nth-child(5):hover a::after {
    width: 110px;
}
.main-header .col-8 ul li:nth-child(6):hover a::after {
    width: 140px;
}
.main-header .col-8 ul li:last-child:hover a::after {
    width: 130px;
}
/* .main-header .col-8 ul li:hover {
    color: var(--main-color);
    font-size: 22px;
    font-weight: bold;
    border-bottom: 3px solid var(--main-color);
} */
/* main header */

/* main-content */

/* hero section */
.main-content .hero {
    font-family: "main-PlayfairDisplay", sans-serif;
    margin-bottom: 200px;
}
.main-content .hero .row {
    justify-content: center;
    align-items: center;
}
.main-content .hero .row .col-5 p:first-child {
    font-family: "main-Montserrat", sans-serif;
    display: inline-block;
    padding: 20px 40px;
    text-transform: capitalize;
    background-color: #0fbf6145;
    border-radius: 5px;
    color: var(--main-color);
    font-size: 20px;
    font-weight: bold;
}
.main-content .hero .row .col-5 h1 {
    color: var(--font-color1);
    font-size: 60px;
    font-weight: bold;
    margin: 20px 0 10px 0;
    text-transform: capitalize;
}
.main-content .hero .row .col-5 h1 + p {
    font-family: "main-Montserrat", sans-serif;
    font-size: 20px;
    color: var(--font-color1);
    margin: 0 0 50px 0;
    text-transform: capitalize;
}
.main-content .hero .row .col-5 p:last-child {
    font-family: "main-Montserrat", sans-serif;
    color: var(--font-color1);
    margin: 0;
}
/* .main-content .hero .row .col-5 a {
    font-family: "main-Montserrat", sans-serif;
    font-size: 25px;
    display: inline-block;
    padding: 30px 60px;
    text-transform: capitalize;
    border-radius: 5px;
    margin-right: 25px;
    margin-top: 50px;
    text-decoration: none;
} */
/* .main-content .hero .row .col-5 a {
    background-color: var(--main-color);
    color: white;
} */
.main-content .hero .row .col-5 a:last-child {
    background-color: transparent;
    color: var(--font-color1);
    border: 2px solid var(--font-color1);
}
.main-content .hero .row .col-5 a:last-child:hover {
    transform: scale(1.2);
    background-color: #EEE;
}
.main-content .hero .row .col-5 figure img {
    display: inline-block;
    margin-left: 80px;
}
/* hero section */

/* about me section */
.main-content .about-me {
    margin-bottom: 200px;
    font-family: "main-Montserrat", sans-serif;
}
.main-content .about-me .row {
    justify-content: center;
    /* align-items: center; */
}
.main-content .about-me .col-5 p:first-child {
    display: inline-block;
    padding: 20px 40px;
    text-transform: capitalize;
    background-color: #0fbf6145;
    border-radius: 5px;
    color: var(--main-color);
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}
.main-content .about-me .col-5 h3 {
    font-family: "main-PlayfairDisplay", sans-serif;
    font-size: 40px;
    font-weight: bold;
    color: var(--font-color1);
    margin: 50px 0 50px 0 ;
}
.main-content .about-me .col-5 h3 + p {
    font-size: 18px;
    color: var(--font-color1);
    margin: 0 0 60px 0;
}
/* .main-content .about-me .col-5 a {
    font-family: "main-Montserrat", sans-serif;
    font-size: 25px;
    display: inline-block;
    padding: 30px 60px;
    text-transform: capitalize;
    border-radius: 5px;
    margin-right: 25px;
    margin-top: 50px;
    text-decoration: none;
    background-color: var(--main-color);
    color: white;
} */
.main-content .about-me .col-5:last-child {
    margin-left: 80px;
}
/* about me section */

/* scale section */
.main-content .scale {
    margin-bottom: 200px;
}
.main-content .scale .row {
    justify-content: space-evenly;
}
.main-content .scale .row .col-2 {
    margin-left: 40px;
}
.main-content .scale .row .col-2 .cir {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient( var(--main-color) 50% , transparent 50%);
    transform: rotate(90deg);
}
.main-content .scale .row .col-2 .cir .cir-1 , 
.main-content .scale .row .col-2 .cir .cir-2 , 
.main-content .scale .row .col-2 .cir .cir-3 {
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background-color: white;
    z-index: 10000;
    transform: rotate(-90deg);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid var(--main-color);
}
.main-content .scale .row .col-2 .cir .cir-1 number , 
.main-content .scale .row .col-2 .cir .cir-2 number , 
.main-content .scale .row .col-2 .cir .cir-3 number {
    font-family: "main-PlayfairDisplay", sans-serif;
    font-weight: bold;
    font-size: 70px;
    color: var(--font-color1);
}
.main-content .scale .row .col-2 .cir .cir-1 p , 
.main-content .scale .row .col-2 .cir .cir-2 p , 
.main-content .scale .row .col-2 .cir .cir-3 p {
    font-family: "main-Montserrat", sans-serif;
    font-size: 20px;
    color: var(--font-color1);
    text-transform: uppercase;
}
.main-content .scale .row .col-2:nth-child(2) .cir {
    background-image: linear-gradient( var(--main-color) 75% , transparent 25%);
    transform: rotate(127deg);
}
.main-content .scale .row .col-2:nth-child(2) .cir .cir-2{
    transform: rotate(-127deg);
}
.main-content .scale .row .col-2:nth-child(3) .cir {
    background-image: linear-gradient( var(--main-color) 20% , transparent 0);
    transform: rotate(45deg);
}
.main-content .scale .row .col-2:nth-child(3) .cir .cir-3 {
    transform: rotate(-45deg);
} 
.main-content .scale .row .col-2 .box-shadow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 300px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 4px 16px 0 rgb(0 0 0 / 10%);
    transition: 400ms;
}
.main-content .scale .row .col-2 .box-shadow:hover {
    /* box-shadow: none; */
    transform: scale(1.2);
    /* background-color: #EEE; */
}
/* scale section */

/* my services section */
.main-content .my-services {
    margin-bottom: 200px;
}
.main-content .my-services .sec-header {
    text-align: center;
}
.main-content .my-services .sec-header p {
    font-family: "main-Montserrat", sans-serif;
    display: inline-block;
    padding: 20px 40px;
    text-transform: uppercase;
    background-color: #0fbf6145;
    border-radius: 5px;
    color: var(--main-color);
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}
.main-content .my-services .sec-header h3 {
    font-size: 40px;
    font-weight: 40px;
    color: var(--font-color1);
    margin: 30px 0;
    text-transform: capitalize;
    font-family: "main-PlayfairDisplay", sans-serif;
    font-weight: bold;
}
.main-content .my-services .row {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.main-content .my-services .row .col-3 {
    margin-right: 50px;
    margin-bottom: 50px;
}
.main-content .my-services .row article {
    box-shadow: 0 4px 16px 0 rgb(0 0 0 / 10%);
    padding: 25px;
    border-radius: 5px;
}
.main-content .my-services .row article figure {
    width: 100px;
    height: 100px;
    border: 2px solid var(--main-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main-content .my-services .row article h3 {
    font-family: "main-PlayfairDisplay", sans-serif;
    font-size: 33px;
    font-weight: bold;
    color: var(--font-color1);
    text-transform: capitalize;
    margin: 30px 0;
    position: relative;
}
.main-content .my-services .row article h3::before {
    content: "";
    width: 22px;
    height: 3px;
    border-radius: 2px;
    background-color: var(--main-color);
    position: absolute;
    bottom: -15px;
    left: 40px;
}
.main-content .my-services .row article h3::after {
    content: "";
    width: 22px;
    height: 3px;
    border-radius: 2px;
    background-color: var(--main-color);
    position: absolute;
    bottom: -15px;
    left: 0;
}
.main-content .my-services .row article p {
    font-family: "main-Montserrat", sans-serif;
    color: var(--font-color1);
    position: relative;
    line-height: 2;
}
.main-content .my-services .row article p::before {
    content: "";
    width: 22px;
    height: 3px;
    border-radius: 2px;
    background-color: var(--main-color);
    position: absolute;
    top: -18px;
    left: 80px;
}
.main-content .my-services .row article .button {
    font-family: "main-PlayfairDisplay", sans-serif;
    padding: 15px 20px;
}
.main-content .my-services .row .col-3:nth-child(2) article {
    background-color: var(--main-color);
}
.main-content .my-services .row .col-3:nth-child(2) article figure {
    border: 2px solid white;
}
.main-content .my-services .row .col-3:nth-child(2) article .button {
    background-color: white;
    border: 1px solid var(--main-color);
    color: var(--font-color1);
}
.main-content .my-services .row .col-3:nth-child(2) article .button:hover {
    transform: scale(1.2);
    background-color: #EEE;
}
.main-content .my-services .row  .col-3:nth-child(2) article h3 ,
.main-content .my-services .row  .col-3:nth-child(2) article p {
    color: white;
}
.main-content .my-services .row  .col-3:nth-child(2) article h3::before {
    background-color: white;
}
.main-content .my-services .row  .col-3:nth-child(2) article h3::after {
    background-color: white;
}
.main-content .my-services .row  .col-3:nth-child(2) article p::before {
    background-color: white;
}
.main-content .my-services .row  .col-3:nth-child(4) figure img {
    width: 56px;
    height: 56px;
}
/* my services section */
.main-content .my-services .row  .col-3:nth-child(5) figure img {
    width: 56px;
    height: 56px;
}
/* my services section */

/* skills section */
.main-content .skills {
    margin-bottom: 200px;
}
.main-content .skills .sec-header {
    margin-bottom: 70px;
}
.main-content .skills .sec-header .d-flex {
    justify-content: center;
    align-items: flex-end;
}
.main-content .skills .sec-header .d-flex .col-8 p {
    font-family: "main-Montserrat", sans-serif;
    display: inline-block;
    padding: 20px 40px;
    text-transform: uppercase;
    background-color: #0fbf6145;
    border-radius: 5px;
    color: var(--main-color);
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}
.main-content .skills .sec-header .d-flex .col-8 h3 {
    font-family: "main-PlayfairDisplay", sans-serif;
    font-size: 36px;
    color: var(--font-color1);
    margin: 20px 0 0 0;
    text-transform: capitalize;
    font-weight: bold;
}
.main-content .skills .sec-header .d-flex .col-2 {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.main-content .skills .sec-header .d-flex .col-2 .button {
    padding: 15px 20px;
}
.main-content .skills .row {
    justify-content: center;
    flex-wrap: wrap;
}
.main-content .skills .row .col-3 {
    margin-right: 50px;
    margin-bottom: 50px;
}
.main-content .skills .row .col-3 article number {
    font-family: "main-PlayfairDisplay", sans-serif;
    display: block;
    font-size: 45px;
    color: var(--font-color1);
    font-weight: bold;
    margin-bottom:20px;
}
.main-content .skills .row .col-3 article .full-width {
    width: 100%;
    height: 4px;
    background-color: #0fbf6145;
    margin: 0;
    display: block;
}
.main-content .skills .row .col-3 article .custom-width {
    width: 95%;
    height: 6px;
    background-color: var(--main-color);
    z-index: 55555556;
    display: block;
}
.main-content .skills .row .col-3 article h4 {
    font-family: "main-PlayfairDisplay", sans-serif;
    font-size: 26px;
    color: var(--font-color1);
    text-transform: capitalize;
    margin: 20px 0 10px 0;
}
.main-content .skills .row .col-3:nth-child(2) article .custom-width {
    width: 85%;
}
.main-content .skills .row .col-3:nth-child(3) article .custom-width {
    width: 70%;
}
.main-content .skills .row .col-3:nth-child(4) article .custom-width {
    width: 90%;
}
.main-content .skills .row .col-3:nth-child(5) article .custom-width {
    width: 80%;
}
.main-content .skills .row .col-3:last-child article .custom-width {
    width: 65%;
}
/* skills section */

/* PORTFOLIO section */
.main-content .portfolio {
    margin-bottom: 200px;
}
.main-content .portfolio .sec-header {
    text-align: center;
    margin-bottom: 50px;
}
.main-content .portfolio .sec-header p {
    font-family: "main-Montserrat", sans-serif;
    display: inline-block;
    padding: 20px 40px;
    text-transform: uppercase;
    background-color: #0fbf6145;
    border-radius: 5px;
    color: var(--main-color);
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}
.main-content .portfolio .sec-header h3 {
    font-family: "main-PlayfairDisplay", sans-serif;
    font-size: 36px;
    color: var(--font-color1);
    margin: 20px 0 0 0;
    text-transform: capitalize;
    font-weight: bold;
}
.main-content .portfolio .row {
    justify-content: center;
    flex-wrap: wrap;
}
.main-content .portfolio .row .col-3 {
    margin-right: 50px;
    margin-bottom: 50px;
    transition: 400ms;
}
.main-content .portfolio .row .col-3:hover {
    transform: scale(1.2);

}
.main-content .portfolio .row .col-3:nth-child(5) figure {
    width: 436.047px;
    height: 497px;
}
.main-content .portfolio .row .col-3:nth-child(5) img {
    width: 100%;
    height: 100%;
}
.main-content .portfolio .last {
    /* display: block; */
    text-align: center;
}
/* PORTFOLIO section */

/* TESTIMONIALS section */
.main-content .testimonials {
    margin-bottom: 200px;
}
.main-content .testimonials .sec-header {
    text-align: center;
    margin-bottom: 50px;
}
.main-content .testimonials .sec-header p {
    font-family: "main-Montserrat", sans-serif;
    display: inline-block;
    padding: 20px 40px;
    text-transform: uppercase;
    background-color: #0fbf6145;
    border-radius: 5px;
    color: var(--main-color);
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}
.main-content .testimonials .sec-header h3 {
    font-family: "main-PlayfairDisplay", sans-serif;
    font-size: 36px;
    color: var(--font-color1);
    margin: 20px 0 0 0;
    text-transform: capitalize;
    font-weight: bold;
}
.main-content .testimonials .row {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.main-content .testimonials .swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
}
.main-content .testimonials .swiper-slide article {
    width: 1000px;
    box-shadow: 0px 0px 16px 0px rgb(0 0 0 / 10%);
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 30px;
}
.main-content .testimonials .swiper-slide p:first-child {
    font-size: 200px;
    color: var(--main-color);
    transform: rotate(180deg);
    display: block;
    margin: 0;
}
.main-content .testimonials .swiper-slide p:nth-child(2) {
    font-family: "main-Montserrat", sans-serif;
    color: var(--font-color1);
    margin-top: -100px;
}
.main-content .testimonials .swiper-slide h4 {
    font-family: "main-PlayfairDisplay", sans-serif;
    color: var(--font-color1);
    font-size: 30px;
    font-weight: bold;
}
.main-content .testimonials .swiper-slide p:last-child {
    color: var(--font-color1);
}
.main-content .testimonials .swiper-button-next,
.main-content .testimonials .swiper-button-prev {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    box-shadow: 0 4px 16px 0 rgb(0 0 0 / 10%);
}
.main-content .testimonials .swiper-button-next::after ,
.main-content .testimonials .swiper-button-prev::after {
    color: var(--main-color);
}
/* TESTIMONIALS section */

/* BLOG section */
.main-content .blogs {
    margin-bottom: 200px;
}
.main-content .blogs .sec-header {
    text-align: center;
    margin-bottom: 50px;
}
.main-content .blogs .sec-header p {
    font-family: "main-Montserrat", sans-serif;
    display: inline-block;
    padding: 20px 40px;
    text-transform: uppercase;
    background-color: #0fbf6145;
    border-radius: 5px;
    color: var(--main-color);
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}
.main-content .blogs .sec-header h3 {
    font-family: "main-PlayfairDisplay", sans-serif;
    font-size: 36px;
    color: var(--font-color1);
    margin: 20px 0 0 0;
    text-transform: capitalize;
    font-weight: bold;
}
.main-content .blogs .row {
    justify-content: center;
}
.main-content .blogs .row .col-3 {
    margin-right: 50px;
    transition: 400ms;
}
.main-content .blogs .row .col-3:hover {
    transform: scale(1.2);
    background-color: #EEE;
}
.main-content .blogs .row .col-3 article figure img {
    width: 100%;
}
.main-content .blogs .row .col-3 article .content {
    box-shadow: 0 4px 16px 0 rgb(0 0 0 / 10%);
    padding: 15px;
    margin-top: -5px;
}
.main-content .blogs .row .col-3 article .content date {
    font-family: "main-PlayfairDisplay", sans-serif;
    font-size: 18px;
    color: var(--main-color);
    display: block;
    margin: 10px 0;
}
.main-content .blogs .row .col-3 article .content h4 {
    font-family: "main-PlayfairDisplay", sans-serif;
    font-size: 19px;
    font-weight: bold;
    color: var(--font-color1);
    position: relative;
    margin: 30px 0;
}
.main-content .blogs .row .col-3 article .content h4::before {
    content: "";
    width: 22px;
    height: 3px;
    border-radius: 2px;
    background-color: var(--main-color);
    position: absolute;
    bottom: -15px;
    left: 40px;
}
.main-content .blogs .row .col-3 article .content h4::after {
    content: "";
    width: 22px;
    height: 3px;
    border-radius: 2px;
    background-color: var(--main-color);
    position: absolute;
    bottom: -15px;
    left: 0;
}
.main-content .blogs .row .col-3 article .content p {
    font-family: "main-Montserrat", sans-serif;
    color: var(--font-color1);
    position: relative;
    line-height: 2;
}
.main-content .blogs .row .col-3 article .content p::before {
    content: "";
    width: 22px;
    height: 3px;
    border-radius: 2px;
    background-color: var(--main-color);
    position: absolute;
    top: -18px;
    left: 80px;
}
.main-content .blogs .row .col-3 article .content a {
    font-family: "main-PlayfairDisplay", sans-serif;
    font-size: 18px;
    color: var(--main-color);
    text-decoration: none;
}
.main-content .blogs .last {
    /* display: block; */
    text-align: center;
}
/* BLOG section */

/* contact-me section */
.main-content .contact-me {
    margin-bottom: 200px;
}
.main-content .contact-me .sec-header {
    text-align: center;
    margin-bottom: 50px;
}
.main-content .contact-me .sec-header p {
    font-family: "main-Montserrat", sans-serif;
    display: inline-block;
    padding: 20px 40px;
    text-transform: uppercase;
    background-color: #0fbf6145;
    border-radius: 5px;
    color: var(--main-color);
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}
.main-content .contact-me .sec-header h3 {
    font-family: "main-PlayfairDisplay", sans-serif;
    font-size: 36px;
    color: var(--font-color1);
    margin: 20px 0 0 0;
    text-transform: capitalize;
    font-weight: bold;
}
.main-content .contact-me form .row {
    justify-content: center;
    flex-wrap: wrap;
}
.main-content .contact-me form .row .col-4 input {
    display: block;
    width: 90%;
    padding: 20px 15px;
    margin-bottom: 25px;
    border-color: var(--font-color1);
    border-radius: 5px;
    outline: none;
}
.main-content .contact-me form .row .col-4 select {
    display: block;
    width: 90%;
    padding: 20px 15px;
    margin-bottom: 25px;
    border-color: var(--font-color1);
    border-width: 2px;
    border-radius: 5px;
    outline: none;
}
.main-content .contact-me form .col-8 textarea {
    width: 95%;
    padding: 20px 15px;
    margin-bottom: 25px;
    border-color: var(--font-color1);
    border-width: 2px;
    border-radius: 5px;
    outline: none;
}
.main-content .contact-me form .last {
    display: block;
    text-align: center;
}
.main-content .contact-me form .last .button {
    border: none;
    padding: 20px 40px;
}
/* contact-me section */

/* main-content */

/* footer */
.footer .row {
    justify-content: center;
    margin-bottom: 70px;
}
.footer .row .col-2 p {
    font-family: "main-PlayfairDisplay", sans-serif;
    color: var(--font-color1);
    font-size: 18px;
    margin: 0 0 10px 0;
}
.footer .row .col-2 p:first-child {
    color: var(--main-color);
}  
.footer .last {
    font-family: "main-Montserrat", sans-serif;
    text-align: center;
    font-size: 18px;
    color: var(--font-color1);
    margin: 0 0 50px 0;
}
/* footer */

.open-menu {
    display: none;
}
.side-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    background-color: var(--main-color);
    height: 100%;
    box-shadow: 0 0 15px -5px RGBA(3, 3, 3, 0.6);
    z-index: 1042;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.side-menu ul {
    list-style-type: none;
}
.side-menu ul li {
    padding: 15px 0;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
    font-family: "main-Montserrat";
}
.side-menu ul li a {
    text-decoration: none;
    color: white;
}
.side-menu.show {
    left: 0;
    opacity: 1;
    visibility: visible;
}
.side-menu .btn {
    padding: 10px 30px;
    border: none;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: RGBA(0, 0, 0, 0.6);
    z-index: 1041;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.show {
    opacity: 1;
    visibility: visible;
}



/* Media for responsive */
@media (min-width: 1440px) {}

@media (max-width: 1440px) {
    .main-header figure a {
        display: block;
    }
    .main-header figure img {
        width: 100%;
        height: 100%;
        margin-left: -30px;
    }
    .main-header .col-8 ul li {
        margin-left: 0;
        margin-right: 25px;
    }
    .main-content .hero .row .col-5 figure img {
        width: 600px;
        height: 637px;
        margin-left: 20px;
    }
    .main-content .about-me .row .col-5 figure img {
        height: 708px;
        width: 100%;
    }
    .main-content .about-me .col-5 h3 + p {
        line-height: 1.5;
        margin: 0;
    }
    .main-content .scale .row .col-2 {
        margin: 0;
        transition: 400ms;
    }
    .main-content .scale .row .col-2:first-child {
        margin-left: -80px;
    }
    .main-content .my-services .row article h3 {
        font-size: 32px;
    }
    .main-content .portfolio .row .col-3 {
        overflow: hidden;
    }
}

@media (max-width: 1200px) {
    .main-header .row .col-8 ul {
        display: none;
    }
    .open-menu {
        display: inline-block;
        padding: 6px 10px;
        border: 1px solid #e3e3e3;
        margin-right: 70px;
        background-color: var(--main-color);
        color: var(--font-color1);
        border-radius: 5px;
    }
    .open-menu i {
        font-size: 30px;
    }
    .main-header .row .col-2:first-child {
        width: 80%;
    }
    .main-header .row .col-2 figure img {
        width: auto;
        height: auto;
        margin-left: 70px;
    }
    .main-header {
        margin-bottom: 75px;
    }
    .main-header figure img {
        margin-left: -20px;
    }
    .main-header .col-8 ul li {
        margin-left: 20px;
    }
    .main-content .skills .sec-header .d-flex .col-2 {
        width: 20%;
    }
    .main-content .hero .row .col-5 p:first-child {
        margin: 0;
    }
    .main-content .hero .row .col-5 figure img {
        width: 500px;
        height: 537px;
        margin-left: 20px;
    }
    .main-content .hero .row .col-5 h1 + p {
        margin-bottom: 30px ;
    }
    .main-content .hero .row .col-5 a {
        margin-right: 0;
    }
    .main-content .hero .row .col-5 article a:last-child {
        margin-left: 16px;
    }
    .main-content .about-me .row .col-5 article .button {
        margin-top: 25px;
    }
    .main-content .scale .row {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    .main-content .scale .row .col-2 {
        width: 40%;
    }
    .main-content .scale .row .col-2:first-child ,
    .main-content .scale .row .col-2:nth-child(2) {
        padding-left: 110px;
        margin-bottom: 50px;
    }
    .main-content .scale .row .col-2:nth-child(3) ,
    .main-content .scale .row .col-2:last-child {
        padding-left: 70px;
    }
    .main-content .my-services .row article h3 {
        font-size: 25px;
    }
    .main-content .blogs .row {
        justify-content: flex-start;
    }
    .main-content .blogs .row .col-3 {
        width: 30%;
    }
    .main-content .portfolio .row .col-3:nth-child(5) figure {
        width: 100%;
    }
    .main-content .contact-me form .row .col-4 input ,
    .main-content .contact-me form .row .col-4 select {
        width: 98%;
    }
    .main-content .contact-me form .col-8 textarea {
        width: 99%;
    }
    .main-content .contact-me form .row .col-4 input::placeholder ,
    .main-content .contact-me form .row .col-4 select::placeholder ,
    .main-content .contact-me form .col-8 textarea::placeholder {
        font-size: 25px;
    }
    .main-content .contact-me .row .col-4 {
        width: 45%;
    }
    .main-content .contact-me .row .col-8 {
        width: 90%;
    }
    .footer .row {
        justify-content: space-between;
    }
}

@media (max-width: 991px) {
    .main-header .row .col-2 figure img {
        margin: 0;
    }
    .main-header .row .col-2 figure img {
        margin-left: -35px;
    }
    .main-header .row {
        justify-content: space-between;
        align-items: center;
    }
    .main-content .hero .row {
        flex-wrap: wrap;
    }
    .main-content .hero .row .col-5 {
        width: 100%;
    }
    .main-content .hero .row .col-5 article p + p{
        line-height: 1.8;
        font-size: 20px;
    }
    .main-content .hero .row .col-5 article a {
        margin-bottom: 50px;
    }
    .main-content .hero .row .col-5 figure {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .main-content .hero .row .col-5 figure img {
        width: auto;
        height: auto;
    }
    .main-content .about-me .col-5 h3 {
        margin: 20px 0;
    }
    .main-content .about-me .col-5 h3 + p {
        line-height: 1.3;
    }
    .main-content .about-me .row .col-5 article .button {
        margin-top: 15px;
    }
    .main-content .my-services .row .col-3 {
        width: 40%;
    }
    .main-content .my-services .row article h3 {
        font-size: 30px;
    }
    .skills .sec-header .d-flex .col-8 {
        margin-right: 50px;
    }
    .main-content .portfolio .row .col-3 {
        width: 40%;
    }
    .main-content .testimonials .swiper-slide article {
        width: 730px;
    }
    .main-content .blogs .row {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    .main-content .blogs .row .col-3 {
        width: 40%;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .open-menu {
        margin-right: 0;
    }
    .main-content .hero .row .col-5 figure img {
        margin-left: 40px;
        width: 600px;
        height: 637px;
    }
    .main-content .about-me .row {
        flex-wrap: wrap;
    }
    .main-content .about-me .col-5 {
        width: 100%;
    }
    .main-content .about-me .col-5:last-child {
        order: 1;
        margin: 20px 0;
    }
    .main-content .about-me .col-5:first-child {
        order: 2;
    }
    .main-content .about-me .col-5:first-child figure img {
        width: auto;
        height: auto;
    }
    .main-content .about-me .row .col-5 article .button {
        margin: 30px 0;
    }
    .main-content .scale .row {
        flex-wrap: wrap;
    }
    .main-content .scale .row .col-2 {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }
    .main-content .scale .row .col-2 {
        padding: 0;
        /* margin-left: 0; */
    }
    .main-content .scale .row .col-2:nth-child(2) ,
    .main-content .scale .row .col-2:nth-child(3) ,
    .main-content .scale .row .col-2:last-child  {
        padding: 0;
        margin: 0 0 30px 0;
    }
    .main-content .my-services .row .col-3 {
        width: 45%;
    }
    .main-content .my-services .row .col-3:first-child ,
    .main-content .my-services .row .col-3:nth-child(3) ,
    .main-content .my-services .row .col-3:nth-child(5) {
        margin-right: 25px;
    }
    .main-content .my-services .row .col-3:nth-child(2) ,
    .main-content .my-services .row .col-3:nth-child(4) ,
    .main-content .my-services .row .col-3:last-child {
        margin-right: 0;
        margin-left: 25px;
    }
    .main-content .skills .sec-header .d-flex {
        justify-content: space-between;
    }
    .main-content .skills .row .col-3 {
        width: 45%;
        margin-right: 25px;
    }
    .main-content .skills .row .col-3:nth-child(2) ,
    .main-content .skills .row .col-3:nth-child(4) ,
    .main-content .skills .row .col-3:last-child {
        margin-right: 0;
        margin-left: 25px;
    }
    .main-content .portfolio .row .col-3 {
        width: 45%;
        margin-right: 25px;
    }
    .main-content .portfolio .row .col-3:nth-child(2) ,
    .main-content .portfolio .row .col-3:nth-child(4) ,
    .main-content .portfolio .row .col-3:last-child {
        margin-right: 0;
        margin-left: 25px;
    }
    .main-content .testimonials .swiper-slide article {
        width: 550px;
    }
    .main-content .blogs .row .col-3 {
        width: 45%;
        margin-right: 25px;
    }
    .main-content .blogs .row .col-3:nth-child(2) ,
    .main-content .blogs .row .col-3:nth-child(4) ,
    .main-content .blogs .row .col-3:last-child {
        margin-right: 0;
        margin-left: 25px;
    }
    .footer .row {
        flex-wrap: wrap ;
    }
    .footer .col-4 {
        width: 100%;
        margin-bottom: 20px;
        margin-left: -40px;
    }
    .footer .col-2 {
        width: 30%;
    }
}

@media (max-width: 576px) {
    .main-content .hero .row .col-5 figure img {
        width: 100%;
        height: 100%;
    }
    .main-content .about-me .row .col-5 figure img {
        width: 100%;
        height: 100%;
    }
    .main-content .my-services .row .col-3 {
        width: 100%;
        margin: 0 !important;
        margin-bottom: 40px !important;
    }
    .main-content .skills .sec-header .d-flex .col-2 {
        width: 50%;
    }
    .main-content .skills .row .col-3 {
        width: 100%;
        margin: 0 !important;
        margin-bottom: 40px !important;
    }
    .main-content .portfolio .row .col-3 {
        width: 100%;
        margin: 0 !important;
        margin-bottom: 40px !important;
    }
    .main-content .portfolio .row .col-3 article figure img {
        width: 100%;
    }
    .main-content .testimonials .swiper-slide article {
        width: 450px;
    }
    .main-content .testimonials .swiper-button-next , 
    .main-content .testimonials .swiper-button-prev {
        display: none;
    }
    .main-content .blogs .row .col-3 {
        width: 100%;
        margin: 0 !important;
        margin-bottom: 40px !important;
    }
    .main-content .blogs .row .col-3 article figure img {
        width: 100%;
    }
    .main-content .contact-me .row .col-4 ,
    .main-content .contact-me .row .col-8 {
        width: 100%;
    }
    .main-content .contact-me input ,
    .main-content .contact-me select {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .main-content .hero .row .col-5 h1 {
        font-size: 55px;
    }
    .main-content .hero .row .col-5 article a:last-child {
        margin: 0;
    }
}

/* Media for responsive */