@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
/*****************
  Common Styles 
******************/

.section-title {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 72px;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    line-height: 1;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.section-title h2:before,
.section-title h2:after {
    content: '';
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-bottom-color: #fd562a;
    position: absolute;
    top: 2.5px;
}

.section-title h2:before {
    border-left-color: #fd562a;
    right: -30px;
}

.section-title h2:after {
    border-right-color: #fd562a;
    left: -30px;
}

.section-title.dark h2 {
    color: #fff;
}

.section-title.dark .lead {
    color: #bdb9cb;
}

.block-title {
    font-size: 48px;
    margin-bottom: 30px;
}

.block-title span {
    display: block;
    font-size: 18px;
    text-transform: uppercase;
    color: #fd562a;
}

.lead {
    color: #948daa;
}

.lead.dark {
    color: #b0aac0;
}

.btn-main {
    padding: 15px 42px;
    background: #fd562a;
    color: #fff;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid #fd562a;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}

a.navbar-brand h3 {
    color: #fd562a;
    font-weight: bold;
}

.btn-check:focus+.btn,
.btn:focus {
    outline: 0px;
    box-shadow: none !important;
}

.btn-main:hover {
    background: transparent;
    border: 2px solid #fd562a;
    color: #fd562a;
}

.btn-ghost {
    padding: 13px 40px;
    background: transparent;
    color: #fff;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    border: 2px solid #fd562a;
}

.btn-ghost:hover {
    background: #fd562a;
    color: #fff;
}

.btn-text {
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}

/*navbar fixed styling */

.fixed-top {
    background: #222;
    z-index: 1001 !important;
}

.fixed-top .navbar-brand img {
    width: 108px;
}

/* Keyframe animations */

@keyframes anim-rotate {
    0% {
        transform: rotate(-30deg);
    }

    50% {
        transform: rotate(-45deg);
    }

    100% {
        transform: rotate(-30deg);
    }
}

@keyframes anim-updown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(30px);
    }

    100% {
        transform: translateY(0);
    }
}

.elem-updown {
    animation: anim-updown 5s infinite;
}

@keyframes anim-move {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(30px);
    }

    100% {
        transform: translateX(0);
    }
}

.elem-move {
    animation: anim-move 5s infinite;
}

@keyframes anim-rotate-full {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.elem-rotate-full {
    animation: anim-rotate-full 12s infinite;
}

@keyframes anim-zoom {
    0% {
        transform: scale(0.8);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.8);
    }
}

.elem-zoom {
    animation: anim-zoom 5s infinite;
}

/****************
  General Style 
*****************/

body {
    font-family:'Poppins', sans-serif;
    font-size: 18px;
    color: #615978;
}

a {
    color: #fd562a;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: #f23402;
}

p:last-of-type {
    margin-bottom: 0;
}

ul {
    padding-left: 0;
}

li {
    list-style: none;
}

.section-block {
    padding-top: 120px;
    padding-bottom: 60px;
}

.section-block .row>div {
    margin-bottom: 60px;
}

/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    color: #222;
}

/*************
  Header
*************/

.site-header {
    position: absolute;
    width: 100%;
    z-index: 1001;
}
.dropdown-menu{
    background-color: #051e36 !important;
}

.site-header .navbar {
    padding-top: 24px;
    padding-bottom: 24px;
    z-index: 1;
    transition: 0.3s;
}

.site-header .navbar.fixed-top {
    padding-top: 12px;
    padding-bottom: 12px;
}

.site-header .nav-item .nav-link {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
}

.site-header .nav-item .active {
    color: #fd562a;
}

.site-header a {
    color: #fff;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}

.site-header a:hover,
.site-header a:focus {
    color: #fd562a;
}

.site-header .navbar-brand {
    width: 160px;
}

/****************
    Hero Area
*****************/

.hero-area {
    background-color: #333;
    background: url(../image/hero-bg.jpg) no-repeat center center;
    background-size: cover;
    color: #fff;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero-area:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: -1;
}

.hero-area .hero-content {
    min-height: 100vh;
    position: relative;
    z-index: 10;
    margin: 50px 0px;
}

.hero-area .hero-content>.row {
    width: 100%;
}

.hero-area .hero-head {
    color: #fff;
    font-size: 85px;
}

.hero-area .hero-head small {
    font-size: 24px;
    margin-bottom: 12px;
    display: block;
}

.hero-area .hero-head strong {
    color: #fd562a;
}

.hero-area .content-block p {
    font-size: 24px;
}

.hero-area .image-block {
    text-align: right;
}

.hero-area .image-wrapper {
    position: relative;
    transform-style: preserve-3d;
}


.hero-area .image-wrapper img {
    border-radius: 100%;
    margin-left: auto;
    width: 500px;
    margin-right: 0;
}

.hero-area .link-group {
    margin-top: 35px;
}

.hero-area .hero-social {
    display: inline-block;
}

.hero-area .hero-social .list-inline-item {
    margin-right: 24px;
}

.hero-area .hero-social a {
    font-size: 24px;
    color: #fff;
    transition: 0.3s;
}

.hero-area .hero-social a:hover {
    color: #fd562a;
}

.hero-area .de-hero-1 {
    left: 8%;
    top: 22%;
    position: absolute;
}

.hero-area .de-hero-2 {
    right: 7%;
    top: 20%;
    position: absolute;
}

.hero-area .de-hero-3 {
    right: 5%;
    bottom: 12%;
    position: absolute;
}

.hero-area .de-hero-4 {
    left: 48%;
    top: 30%;
    position: absolute;
}

.hero-area .de-hero-5 {
    left: 10%;
    bottom: 18%;
    position: absolute;
}

.hero-area .btn-main {
    margin-right: 48px;
}

.hero-area .btn-text:hover {
    color: #fff;
}

/*******************
    Intro Section  
********************/

.intro-section {
    position: relative;
}

.intro-section .item-wrapper {
    border: 1px solid #e0e0e0;
    padding: 48px;
    border-radius: 12px;
    position: relative;
    background: #fff;
    transition: 0.3s;
}

.intro-section .item-wrapper:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #fd562a;
    transition: 0.3s;
    z-index: -1;
    border-radius: 12px;
}

.intro-section .item-wrapper:hover {
    box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
    border-color: #fff;
}

.intro-section .item-wrapper:hover:after {
    transform: rotate(-10deg);
}

.intro-section .icon-box {
    font-size: 48px;
    color: #fd562a;
}

.intro-section h3 {
    font-size: 28px;
    margin-bottom: 18px;
}

.intro-section .de-intro-1 {
    position: absolute;
    left: 5%;
    top: 10%;
}

/********************
   About Section 
**********************/

.about-section {
    padding-bottom: 80px;
    background: #f2f5fb;
    position: relative;
}

.about-section .img-wrapper {
    position: relative;
    text-align: center;
}

.about-section .img-wrapper:before,
.about-section .img-wrapper:after {
    position: absolute;
    content: '';
}

.about-section .img-wrapper:before {
    width: 60px;
    height: 60px;
    border-radius: 7px;
    border: 5px solid #fd562a;
    left: 30px;
    top: 190px;
}

.about-section .img-wrapper:after {
    width: 36px;
    height: 36px;
    background: #fd562a;
    left: 332px;
    bottom: -90px;
    border-radius: 4px;
}

.about-section .about-img-2 {
    position: absolute;
    left: 0;
    bottom: -200px;
}

.about-section .content-block h2 {
    font-size: 48px;
    margin-bottom: 30px;
}

.about-section .content-block h2 span {
    display: block;
    font-size: 18px;
    text-transform: uppercase;
    color: #fd562a;
}

.about-section .content-block h2 strong {
    display: block;
    font-size: 30px;
    margin-top: 24px;
}

.about-section .personal-details {
    margin-top: 36px;
    margin-bottom: 36px;
}

.about-section .personal-details>div {
    margin-bottom: 0;
}

.about-section .personal-info li {
    margin-bottom: 18px;
}

.about-section .personal-info h4 {
    font-size: 16px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.about-section .de-about-1 {
    position: absolute;
    right: 10%;
    top: -8%;
}

.about-section .de-about-2 {
    position: absolute;
    left: 5%;
    bottom: -3%;
    z-index: 2;
}



/**************************
    Resume Section
**************************/

.resume-title {
    font-size: 4rem;
    line-height: 1.25;
    color: #d9dae7;
    font-weight: 600;
    text-align: center !important;
}

.site-tl {
    font-weight: 600;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: -webkit-linear-gradient(122deg, #1d1585 0%, #3a44ca 100%);
    background-image: linear-gradient(122deg, #1d1585 0%, #3a44ca 100%);
}

.exp-area {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    background: #f7f7f7;
}

.exp-area {
    position: relative;
}

.education_area,
.experience_area {
    position: relative;
    margin-right: 0rem;
    padding-left: 4rem;
}

.education_area:before,
.experience_area:before {
    content: "";
    position: absolute;
    width: 3px;
    height: 100%;
    left: 1rem;
    background: #d9dae7;
    border-radius: 35%;
}

.exp-box {
    position: relative;
}

.exp-content p {
    font-weight: 500;
    padding-bottom: 8px;
}

.exp-box:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    left: -56px;
    background: #000;
    top: 46%;
    border-radius: 5rem;
    z-index: 1;
}

.exp-box:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    left: -51px;
    background: #f23402;
    top: 47.9%;
    border-radius: 5rem;
    z-index: 2;
}

.exp-box {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    box-shadow: 0px 7px 27.84px 1.16px rgba(227, 229, 243, 0.1);
    background-color: #fff;
    padding: 3rem;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.fun-icon i,
.exp-icon i {
    font-size: 3.2rem;
    color: #f23402 !important;
}

.exp-box h4 {
    font-weight: 500;
    line-height: 1;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.exp-box p {
    line-height: 1;
    margin-bottom: 7px;
    color: #615978;
}
.modal.fade.exp.show span {
    font-size: 1rem;
    margin-bottom: 5px;
}
.exp-box span {
    font-size: 1rem;
    color: #615978;
}

.skill-section {
    position: relative;
    z-index: 1;
}

.skill-section h2 span {
    display: block;
    font-size: 18px;
    text-transform: uppercase;
    color: #fd562a;
}

.skill-section .lead {
    color: #bdb9cb;
}

.skill-section .content-block {
    padding-right: 72px;
}
.skill-section .progress-block h4 {
    font-size: 16px;
    margin-bottom: 12px;
}

.skill-section .progress-wrapper {
    margin-bottom: 24px;
    position: relative;
    margin: 20px;
}

.skill-section .progress {
    height: 0.5rem;
    position: relative;
}

.skill-section .progress-bar {
    background-color: #fd562a;
}

.skill-section .progress-value {
    position: absolute;
    right: 0;
    font-weight: 600;
    top: 2px;
    color: #fd562a;
    font-size: 16px;
}

.progress-bar {
    transition-duration: 3s;
}


/****************************
    Portfolio Section
******************************/

.portfolio-section {
    padding-bottom: 100px;
    position: relative;
    /* portfolio detials styling */
}

.portfolio-section .row>div {
    margin-bottom: 24px;
}

.portfolio-section .filter-button-group {
    text-align: center;
    margin-bottom: 48px;
}

.portfolio-section .filter-button-group button {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: transparent;
    padding: 6px 12px;
    color: #615978;
    font-size: 16px;
    transition: 0.3s;
}

.portfolio-section .filter-button-group button:hover {
    border-color: #fd562a;
}

.portfolio-section .filter-button-group .active {
    background: #fd562a;
    color: #fff;
    border-color: #fd562a;
}

.portfolio-section .box {
    background-color: #e7e7e7;
    overflow: hidden;
    position: relative;
    text-align: center;
    border-radius: 10px;
}

.portfolio-section .box:before,
.portfolio-section .box:after {
    content: '';
    background: #fd562a;
    height: 50%;
    width: 100%;
    opacity: 0.8;
    position: absolute;
    top: -50%;
    left: 0;
    z-index: 1;
    transition: all 0.3s ease-in 0s;
}

.portfolio-section .box:after {
    top: auto;
    bottom: -50%;
}

/* .portfolio-section .box img {
    width: 100%;
    height: auto;
} */

.portfolio-section .box .box-content {
    color: #fff;
    text-align: center;
    width: 100%;
    opacity: 0;
    position: absolute;
    bottom: 40%;
    left: 0;
    z-index: 2;
    transition: all 0.3s ease-out 0.1s;
    padding: 36px;
}

.portfolio-section .box .title {
    font-size: 21px;
    line-height: 1.3;
    color: #fff;
    text-transform: capitalize;
    margin: 0;
}

.portfolio-section .box .category {
    color: #fff;
    opacity: 0.8;
    font-size: 16px;
    text-transform: uppercase;
    display: block;
    font-weight: bold;
    margin-bottom: 6px;
}

.portfolio-section .box .icon-box {
    padding: 0;
    margin: 0;
    opacity: 0;
    transform: translate(-50%, -50%);
    position: absolute;
    left: 50%;
    top: 70%;
    z-index: 2;
    transition: all 0.3s ease-out 0.1s;
}

.portfolio-section .box .icon-box a {
    width: 48px;
    height: 48px;
    line-height: 49px;
    background: rgba(255, 255, 255, 0.6);
    display: block;
    text-align: center;
    border-radius: 50%;
    transition: 0.3s;
    color: #222;
}

.portfolio-section .box .icon-box a:hover {
    background: #ffffff;
    color: #fd562a;
}

.portfolio-section .box:hover:before {
    top: 0;
}

.portfolio-section .box:hover:after {
    bottom: 0;
}

.portfolio-section .box:hover .box-content {
    opacity: 1;
    bottom: 0;
}

.portfolio-section .box:hover .icon-box {
    opacity: 1;
    top: 50%;
}

.portfolio-section .box .icon li {
    margin: 0 3px;
    display: inline-block;
}

.portfolio-section .box .icon li a {
    color: #444;
    background-color: #fff;
    font-size: 15px;
    text-align: center;
    line-height: 36px;
    height: 35px;
    width: 35px;
    border-radius: 10px;
    display: block;
    transition: all 0.3s ease 0s;
}

.portfolio-section .box .icon li a:hover {
    color: #fff;
    background: #12c2e9;
}

.portfolio-section .btn-close {
    position: absolute;
    right: 54px;
    top: 54px;
    background: #fd562a;
    color: #fff;
    text-align: center;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    transition: 0.3s;
}
.experience_area{
    position: relative;
}
.experience_area .btn-close {
    position: absolute;
    right: 54px;
    top: 54px;
    background: #fd562a;
    color: #fff;
    text-align: center;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    transition: 0.3s;
}
.education_area .btn-close {
    position: absolute;
    right: 54px;
    top: 54px;
    background: #fd562a;
    color: #fff;
    text-align: center;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    transition: 0.3s;
}
.portfolio-section .item-content>div {
    margin-bottom: 0;
}

.portfolio-section .content-wrapper {
    padding: 30px 12px 24px 0;
    text-align: left;
}

.content-wrapper ul li {
    list-style-type: disc;
    line-height: 30px;
}

.content-wrapper ul {
    padding-left: 40px;
}

.portfolio-section .content-wrapper .item-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.portfolio-section .modal-body {
    padding: 36px 36px 12px;
}

.portfolio-section .modal-body img {
    border-radius: 12px;
}

.portfolio-section .meta-wrapper {
    background: #f6f6f6;
    padding: 30px;
    margin-top: 42px;
    border-radius: 8px;
}

.portfolio-section .item-meta {
    font-size: 16px;
}

.portfolio-section .item-meta li {
    margin-bottom: 18px;
}

.portfolio-section .item-meta li span {
    font-weight: bold;
    color: #222;
    margin-left: 8px;
}

.portfolio-section .de-portfolio-1,
.portfolio-section .de-portfolio-2 {
    position: absolute;
}

.portfolio-section .de-portfolio-1 {
    left: 5%;
    top: 10%;
}

.portfolio-section .de-portfolio-2 {
    right: 5%;
    bottom: -2%;
    z-index: 1;
}

/********************
  Contact Section
**********************/

.contact-section {
    padding-top: 120px;
    background: #f7f7f7;
    position: relative;
    /* contact form message */
}

.contact-section .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fd562a;
    line-height: 60px;
    text-align: center;
    color: #fff;
    margin-right: 24px;
    font-size: 24px;
}

.contact-section a {
    font-family: 'Poppins', sans-serif;
    color: #615978;
    text-transform: initial;
    transition: 0.3s;
}

.contact-section a:hover {
    color: #fd562a;
}
#my-form-message {
    font-size: 1rem;
    color: #fd562a;
}
.contact-section address {
    margin-bottom: 0;
}

.contact-section h3 {
    font-size: 36px;
    margin-bottom: 48px;
}

.contact-section .map-wrapper {
    min-height: 396px;
    background: #f9f9f9;
    margin-right: 90px;
    border-radius: 10px;
}

.contact-section form>div {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

.contact-section input,
.contact-section textarea {
    border-radius: 20px !important;
}

.contact-section textarea {
    min-height: 120px;
}

.contact-section .form-control {
    padding: 12px 18px;
}

.contact-section .form-control:focus {
    border-color: #fea68f;
    box-shadow: none;
}

.contact-section button {
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}

.contact-section .form-message p {
    font-size: 14px;
}

.contact-section .form-message p.error,
.contact-section .form-message p.success {
    margin-bottom: 12px;
}

.contact-section .form-message p.success {
    color: #00b300;
}

.contact-section .form-message p.error {
    color: #ff3333;
}

.contact-section .de-contact-1,
.contact-section .de-contact-2 {
    position: absolute;
}

.contact-section .de-contact-1 {
    right: 7%;
    top: 12%;
}

.contact-section .de-contact-2 {
    left: 4%;
    bottom: -2%;
    z-index: 2;
}


/* swiper */

.swiper {
    width: 100%;
    height: 420px;
}

.swiper .swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.5;
    width: 8px;
    height: 8px;
}

.swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #fd562a;
    opacity: 1;
}

.partnerCarousel {
    overflow: hidden;
    width: 100%;
}

/*******************
   Media Queries 
*********************/

/* max-width: 1599px and min-width:992px */

@media (max-width: 1599px) and (min-width: 992px) {
    .hero-area .hero-head {
        font-size: 75px;
    }
}

/* max-width: 1599px and min-width:1200px */

@media (max-width: 1599px) and (min-width: 1200px) {

    .hero-area .hero-facts li {
        padding: 16px;
    }

    .hero-area .hero-facts li:first-child {
        left: 96px;
    }

    .hero-area .hero-facts li:nth-child(2) {
        right: -90px;
    }

    .hero-area .hero-facts li p {
        font-size: 36px;
    }

    .hero-area .hero-facts li h4 {
        font-size: 15px;
    }

    .about-section .img-wrapper:before {
        left: 24px;
    }

    .service-section .content-wrapper {
        padding: 48px 36px;
    }

    .testimonial-section .swiper {
        height: 480px;
    }
}

/* Max-width: 1599px and Min-width: 1400px */

@media (max-width: 1599px) and (min-width: 1400px) {
    .hero-area .de-hero-1 {
        left: 1%;
        top: 16%;
    }

    .hero-area .de-hero-2 {
        right: 3%;
    }

    .hero-area .de-hero-3 {
        right: 2%;
    }

    .hero-area .de-hero-5 {
        bottom: 12%;
    }
}

/* Max-width: 1399px */

@media (max-width: 1599px) {


    .service-section .de-service-1,
    .service-section .de-service-2 {
        display: none;
    }

    .blog-section .de-blog-2 {
        bottom: 5%;
    }

    .contact-section .de-contact-1 {
        top: 12%;
    }
}

/* Max-width: 1399px and Min-width: 1200px */

@media (max-width: 1399px) and (min-width: 1200px) {
    .hero-area .hero-content>.row {
        margin-top: 72px;
    }

    .hero-area .de-hero-1 {
        left: 3%;
        top: 20%;
    }

    .hero-area .de-hero-2 {
        right: 3%;
    }

    .hero-area .de-hero-3 {
        right: 2%;
    }

    .hero-area .de-hero-5 {
        left: 1%;
        bottom: 8%;
    }
}

/* max-width: 1199px */

@media (max-width: 1199px) {
    .btn-main {
        padding: 12px 30px;
    }

    .btn-ghost {
        padding: 10px 28px;
    }

    .section-title {
        width: 80%;
    }

    .design-elements {
        display: none;
    }

    .site-header .navbar-toggler {
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.3);
        padding: 0.25rem;
    }

    .site-header .navbar-toggler:focus {
        box-shadow: none;
    }

    .site-header .navbar-toggler-icon {
        line-height: 1.5em;
    }

    .site-header .nav-link {
        color: #222;
        padding-top: 12px;
        padding-bottom: 12px;
        border-bottom: 1px solid #e0e0e0;
    }

    .site-header .navbar-collapse {
        background: #fff;
    }

    .site-header .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .hero-area {
        text-align: center;
    }

    .hero-area .content-block {
        margin-bottom: 120px;
    }

    .hero-area .hero-head {
        font-size: 60px;
    }

    .hero-area .image-wrapper {
        text-align: center;
        margin-top: 160px;
        margin-bottom: 72px;
    }

    .hero-area .hero-facts li {
        padding: 14px 16px;
    }

    .hero-area .hero-facts li:first-child {
        left: 80px;
    }

    .hero-area .hero-facts li:nth-child(2) {
        right: 85px;
    }

    .hero-area .hero-facts li h4 {
        font-size: 14px;
    }

    .hero-area .hero-facts li p {
        font-size: 36px;
    }

    .hero-area .de-hero-4 {
        left: 18%;
        top: 48%;
    }

    .about-section .content-block {
        margin-top: 72px;
    }

    .about-section .content-block h2 {
        font-size: 48px;
    }

    .about-section .content-block h2 span {
        margin-bottom: 12px;
    }

    .about-section .content-block h2 strong {
        font-size: 24px;
    }

    .about-section .img-wrapper {
        text-align: left;
    }

    .about-section .img-wrapper:before {
        left: 430px;
        top: 84px;
    }

    .about-section .img-wrapper:after {
        left: 240px;
        bottom: -72px;
    }

    .about-section .about-img-2 {
        bottom: -96px;
        left: 312px;
    }

    .skill-section .content-block {
        padding-right: calc(var(--bs-gutter-x) * 0.5);
    }

    .skill-section h2 span {
        margin-bottom: 12px;
    }

    .portfolio-section .meta-wrapper {
        margin-top: 12px;
        margin-bottom: 30px;
    }

    .features-section .image-wrapper {
        text-align: center;
    }

    .features-section .image-wrapper img {
        width: 60%;
    }

    .features-section .content-block {
        padding-left: calc(var(--bs-gutter-x) * 0.5);
    }

    .features-section h4 span {
        display: block;
        margin-top: 12px;
        float: none;
    }

    .features-section .icon-box:after {
        content: none;
    }

    .blog-section .large-post .post-content h3 {
        font-size: 24px;
    }

    .blog-section .large-post img {
        width: 100%;
    }

    .blog-section .post-group h3 {
        font-size: 18px;
    }

    .contact-section .icon-box {
        flex-shrink: 0;
    }

    .contact-section .map-wrapper {
        margin-right: 0;
    }

    .site-footer .social-block li {
        margin-right: 15px;
    }
}

/* max-width: 1199px and min-width:992px */

@media (max-width: 1199px) and (min-width: 992px) {
    .blog-section .post-group h3 {
        line-height: 1.2;
        margin-top: 24px;
    }
}

/* max-width: 991px and min-width:768px */

@media (max-width: 991px) and (min-width: 768px) {
    .testimonial-section .swiper {
        height: 360px;
    }

    .blog-section .row .large-post {
        margin-bottom: 24px;
    }

    .blog-section .post-footer>div.blog-tags {
        margin-bottom: 18px;
    }

    .blog-section .modal .blog-title {
        font-size: 30px;
    }

    .site-footer .row>div {
        margin-bottom: 48px;
    }

    .site-footer .row>div:last-child {
        margin-bottom: 0;
    }
}

/* max-width: 767px */

@media (max-width: 767px) {

    .btn-main,
    .btn-ghost,
    .bt-text {
        font-size: 16px;
    }

    .block-title {
        font-size: 36px;
    }

    .fixed-top .navbar-brand img {
        width: 96px;
    }

    .hero-area .btn-main {
        margin-right: 0;
        margin-bottom: 30px;
        display: inline-block;
    }

    .hero-area .hero-social {
        display: block;
    }

    .hero-area .hero-social li:last-child {
        margin-right: 0;
    }

    .hero-area .hero-social a {
        font-size: 21px;
    }

    .hero-area .hero-facts li:first-child {
        left: 0;
        top: 48px;
    }

    .hero-area .hero-facts li:nth-child(2) {
        right: 0;
        bottom: 48px;
    }

    .hero-area .hero-head {
        font-size: 40px;
    }

    .hero-area .hero-head small {
        font-size: 21px;
        margin-bottom: 12px;
    }

    .hero-area .content-block p {
        font-size: 18px;
    }

    .hero-area .design-elements {
        display: none;
    }

    .intro-section .row>div {
        margin-bottom: 36px;
    }

    .intro-section .design-elements {
        display: none;
    }

    .about-section .design-elements {
        display: none;
    }

    .facts-section .row>div {
        margin-bottom: 36px;
    }

    .skill-section {
        padding-bottom: 20px;
    }

    .skill-section .row>div {
        margin-bottom: 36px;
    }

    .skill-section h2 {
        font-size: 30px;
    }

    .skill-section .content-block {
        margin-bottom: 36px;
    }

    .portfolio-section .content-wrapper {
        padding-top: 24px;
    }

    .portfolio-section .content-wrapper .item-title {
        font-size: 30px;
    }

    .portfolio-section .design-elements {
        display: none;
    }

    .portfolio-section .modal-body {
        padding: 18px 18px 6px;
    }

    .portfolio-section .meta-wrapper {
        margin-top: 0;
        margin-bottom: 12px;
    }

    .portfolio-section .btn-close {
        right: 30px;
        top: 30px;
    }

    .service-section .design-elements {
        display: none;
    }

    .features-section .image-wrapper img {
        width: 80%;
        position: relative;
        left: -20px;
    }

    .testimonial-section {
        padding-top: 80px;
        padding-bottom: 70px;
    }

    .testimonial-section .swiper {
        height: 440px;
    }

    .testimonial-section .swiper-pagination {
        bottom: 0;
    }

    .blog-section .row .large-post {
        margin-bottom: 24px;
    }

    .blog-section .row .large-post .post-content {
        left: 30px;
        right: 30px;
        bottom: 30px;
    }

    .blog-section .row .large-post .post-content h3 {
        font-size: 21px;
    }

    .blog-section .post-meta li {
        font-size: 14px;
    }

    .blog-section .modal .blog-title {
        font-size: 24px;
        text-align: left;
        margin-bottom: 18px;
    }

    .blog-section .modal .blog-content>div {
        margin-bottom: 24px;
    }

    .blog-section .modal .blog-meta {
        margin-bottom: 18px;
    }

    .blog-section .modal .blog-meta li {
        margin-bottom: 6px;
    }

    .blog-section .modal .btn-close {
        top: 24px;
        right: 24px;
        width: 24px;
        height: 24px;
        line-height: 24px;
    }

    .blog-section .post-footer>div.blog-tags {
        margin-bottom: 18px;
    }

    .blog-section .post-footer>div.blog-tags h4 {
        margin-bottom: 6px;
    }

    .blog-section .design-elements {
        display: none;
    }

    .contact-section .contact-options>div {
        margin-bottom: 30px;
    }

    .contact-section form>div {
        margin-top: 0;
    }

    .contact-section form>div:first-child {
        margin-bottom: 0;
    }

    .contact-section .design-elements {
        display: none;
    }

    .site-footer {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .site-footer .btn-main {
        padding-left: 21px;
        padding-right: 21px;
    }

    .site-footer input {
        padding-left: 12px;
        padding-right: 12px;
    }

    .site-footer .row>div {
        margin-bottom: 48px;
    }

    .site-footer .footer-bottom {
        margin-top: 0;
        text-align: center;
    }

    .site-footer .footer-bottom>div {
        margin-bottom: 24px;
    }

    .site-footer .footer-bottom>div:last-child {
        margin-bottom: 0;
    }
}

/* max-width: 576px */

@media (max-width: 576px) {

    section,
    .site-footer {
        padding-left: 15px;
        padding-right: 15px;
    }

    .section-title {
        width: 90%;
        margin-bottom: 48px;
    }

    .lead {
        font-size: 1.1rem;
    }

    .site-header .navbar-brand {
        width: 108px;
    }

    .hero-area .image-wrapper {
        margin-top: 136px;
        margin-bottom: 36px;
    }

    .hero-area .content-block {
        margin-bottom: 96px;
    }

    .hero-area .hero-facts {
        display: none;
    }

    .hero-area .link-group {
        margin-top: 36px;
    }

    .intro-section {
        padding-top: 80px;
        padding-bottom: 20px;
    }

    .intro-section .item-wrapper {
        padding: 30px;
    }

    .intro-section .content-wrapper {
        margin-left: 0;
    }

    .intro-section .icon-box {
        float: none;
    }

    .facts-section {
        padding-top: 60px;
        padding-bottom: 20px;
    }

    .facts-section .icon-box {
        font-size: 36px;
    }

    .facts-section .number-data {
        font-size: 36px;
    }

    .about-section {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .about-section .content-block {
        margin-top: 48px;
    }

    .about-section .content-block h2 {
        font-size: 36px;
    }

    .about-section .content-block h2 span {
        margin-bottom: 8px;
    }

    .about-section .img-wrapper:before,
    .about-section .img-wrapper:after {
        display: none;
    }

    .about-section .about-img-2 {
        left: auto;
        right: 0;
        width: 120px;
    }

    .portfolio-section {
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .portfolio-section .filter-button-group button {
        margin-bottom: 6px;
    }

    .service-section {
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .service-section .content-wrapper {
        padding: 36px 24px;
        text-align: left;
    }

    .service-section .content-wrapper h3 {
        margin-bottom: 24px;
    }

    .service-section .icon-box {
        width: 84px;
        height: 84px;
        margin-left: 0;
    }

    .features-section {
        padding-top: 80px;
        padding-bottom: 20px;
    }

    .features-section .image-wrapper img {
        width: 90%;
        left: -10px;
    }

    .testimonial-section .swiper {
        height: 420px;
    }

    .testimonial-section .item-wrapper {
        padding: 54px 36px 42px;
    }

    .blog-section {
        padding-top: 80px;
        padding-bottom: 0;
    }

    .blog-section .modal-body {
        padding-left: 24px;
        padding-right: 24px;
        padding-top: 24px;
    }

    .blog-section .modal .btn-close {
        right: 36px;
        top: 36px;
    }

    .partner-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .contact-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .contact-section .row .form-block {
        margin-bottom: 0;
    }

    .site-footer .footer-brand img {
        width: 130px;
    }

    .site-footer .back-to-top {
        top: -90px;
    }

    .site-footer .footer-social a {
        font-size: 21px;
    }


    .education_area, .experience_area {
        padding-left: 0rem;
    }
    .exp-box{
        padding: 1rem;
        display: flow;
    }
    .education_area:before, .experience_area:before{
        display: none;
    }
    .exp-box:before{
        display: none
    }
    .exp-box:after{
        display: none;
    }
}



/* max-width: 360px */

@media (max-width: 360px) {
    .block-title {
        font-size: 30px;
    }

    .section-title h2 {
        font-size: 16px;
    }

   

    .hero-area .hero-head {
        font-size: 36px;
    }

    .hero-area .hero-head small {
        font-size: 18px;
    }

    .about-section .content-block h2 {
        font-size: 30px;
    }

    .about-section .content-block h2 strong {
        font-size: 21px;
    }

    .skill-section .progress-block h4 {
        font-size: 14px;
    }

    .service-section .content-wrapper {
        padding: 24px;
    }

    .testimonial-section .quote-author {
        text-align: center;
    }

    .testimonial-section .quote-author .image-block {
        display: none;
    }

    .testimonial-section .item-wrapper {
        padding: 42px 24px 30px;
    }

    .testimonial-section .item-wrapper h4 {
        font-size: 18px;
    }

    .testimonial-section .item-wrapper p {
        margin-bottom: 24px;
    }

    .blog-section .row .large-post .post-content {
        left: 21px;
        right: 21px;
        bottom: 21px;
    }

    .blog-section .post-group .post-content {
        top: 21px;
        left: 21px;
        right: 21px;
        bottom: 21px;
    }

    .blog-section .row .large-post .post-content h3 {
        font-size: 18px;
    }
}