@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,900&display=swap");
@import url("https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
body {
    margin: 0;
    font-family: "Poppins", sans-serif;
}

* {
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

header {
    position: absolute;
    left: 0;
    right: 0;
    border-bottom: 1px solid #423940;
    padding: 0px 15px;
    z-index: 11;
    transition: all 0.5s ease;
}

.property {
    background-color: #ff0000;
    flex: 0 0 calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
    margin-bottom: 3%;
    border: 1px solid #eeeeee;
    padding: 20%;
    text-align: center;
    position: relative;
    border-radius: 2%;
}

.property .property_image {
    height: 100%;
    width: 100%;
    padding: 100%;
    text-align: center;
    position: relative;
    border-radius: 2%;
}

.container {
    max-width: 1140px;
    margin: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

header.fixed {
    background-color: #ffffff;
    position: fixed;
    border-color: #eeeeee;
    animation: fixHeader 0.5s ease;
    z-index: 101;
}

@keyframes fixHeader {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0%);
    }
}

header .row {
    justify-content: space-between;
    align-items: center;
}

header .brand-name a {
    text-decoration: none;
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
}

header.fixed .brand-name a {
    color: #000;
}

header .navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

header .navbar ul li {
    display: inline-block;
    margin-left: 35px;
}

header .navbar ul li a {
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    line-height: 72px;
    display: block;
    position: relative;
}

header.fixed .navbar ul li a {
    color: #000;
}

header .navbar ul li a::before {
    content: "";
    height: 3px;
    background-color: #ffffff;
    width: 0%;
    position: absolute;
    right: 0px;
    bottom: -1px;
    transition: all 0.5s ease;
}

header.fixed .navbar ul li a::before {
    background-color: #febd01;
}

header .navbar ul li a:hover::before {
    width: 100%;
    left: 0;
}

header .navbar ul li a.active::before {
    width: 100%;
    left: 0;
}

.home {
    min-height: 100vh;
    background: url(images/hero/bg.jpg);
    background-size: cover;
    background-position: center;
    padding: 15px;
}

.home .fullscreen {
    min-height: 100vh;
}

.home .home-content {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.home .home-content .block {
    flex: 0 0 60%;
    max-width: 60%;
    padding-left: 35px;
    border-left: 5px solid #fff;
    margin-top: 50px;
}

.home .home-content .block h6 {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

.home .home-content .block h1 {
    color: #fff;
    font-size: 70px;
    font-weight: 600;
    margin: 0;
    padding: 0;
}

.home .home-content .block h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

.home .home-content .block .cv-btn {
    padding-top: 20px;
}

.home .home-content .block .cv-btn a {
    border-radius: 4px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.5s ease;
    background-color: transparent;
}

.home .home-content .block .cv-btn a:hover {
    background-color: #fff;
    color: #000;
}

.home .home-content .s-block {
    flex: 0 0 40%;
    max-width: 40%;
    /* padding-left: 35px;
  border-left: 5px solid #fff;
  margin-top: 50px; */
    margin: 0;
    padding: 0;
}

.home .home-content .s-block ul li {
    color: #fff;
    list-style: none;
    font-size: 24px;
    font-weight: 500;
    margin: 0;
    padding: 4px 0px 0px;
}


/* section title */

.section-title {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 40px;
}

.section-title h1 {
    display: inline-block;
    font-size: 35px;
    text-transform: uppercase;
    font-weight: 700;
    color: #000;
    margin: 0 0 10px;
    position: relative;
    padding-bottom: 5px;
}

.section-title h1:before {
    content: "";
    left: 0;
    position: absolute;
    height: 2px;
    right: 30%;
    background-color: #febd01;
    bottom: 0px;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

.text-left {
    text-align: left !important;
}


/* why section */

.why {
    padding: 100px 15px;
    background-color: #fff;
}

.why .section-title p.small {
    display: block;
    font-size: 14px;
    color: #838383;
    font-weight: 400;
}

.why .why-content .img {
    flex: 0 0 33.33%;
    max-width: 33.33%;
}

.why .why-content .img img {
    width: 100%;
    display: block;
}

.why .why-content .text {
    flex: 0 0 66.66%;
    max-width: 66.66%;
    padding-left: 30px;
}

.why .why-content .text h4 {
    font-size: 25px;
    font-weight: 600;
    margin: 0 0 5px;
    color: #000;
}

.why .why-content .text h6 {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 15px;
    color: #000;
}

.why .why-content .text h6 span {
    color: #febd01;
}

.why .why-content .text p {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    color: #838383;
}


/* services section */

.services {
    background-color: #f5f8fd;
    padding: 100px 15px 70px;
}

.services .section-title h1:before {
    left: 30%;
}

.services .service-content {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    /* justify-content: space-evenly; */
    flex-wrap: wrap;
}

.services .service-content .box {
    background-color: #ffffff;
    flex: 0 0 calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
    margin-bottom: 30px;
    border: 1px solid #eeeeee;
    padding: 30px;
    text-align: center;
    position: relative;
    border-radius: 5px;
}

.services .service-content .box::before {
    content: "";
    background-color: #febd01;
    position: absolute;
    width: 50px;
    height: 2px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transition: all 0.5s ease;
}

.services .service-content .box:hover::before {
    width: 100%;
}

.services .service-content .box .icon {
    height: 60px;
    width: 60px;
    background-color: #febd01;
    margin: 10px auto 20px;
    border-radius: 50%;
}

.services .service-content .box .icon .fa {
    font-size: 25px;
    line-height: 60px;
    color: #fff;
}

.services .service-content .box h5 {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

.services .service-content .box p {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    color: #838383;
    margin: 10px 0 10px;
}

.services .more-btn {
    padding-top: 30px;
    text-align: center;
}

.services .more-btn a {
    border-radius: 4px;
    border: 1px solid #febd01;
    color: #febd01;
    text-decoration: none;
    padding: 12px 25px;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.5s ease;
    background-color: transparent;
}

.services .more-btn a:hover {
    background-color: #febd01;
    color: #fff;
}


/* skills section */

.skills {
    padding: 100px 15px;
    background-color: #ffffff;
}

.align-items-center {
    align-items: center;
}

.skills .skills-content {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 40px;
}

.skills .img {
    flex: 0 0 50%;
    max-width: 50%;
}

.skills .img img {
    width: 100%;
    display: block;
}

.skills .skills-content .section-title p {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    color: #838383;
    margin: 15px 0 0px;
}

.skills .skills-content .skill-box {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
}

.skills .skills-content .skill-box h6 {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin: 0 0 8px;
}

.skills .skills-content .skill-box .skill-bar {
    height: 5px;
    background-color: #eeeeee;
    position: relative;
}

.skills .skills-content .skill-box .skill-bar .skill-bar-in {
    background-color: #febd01;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
}

.skills .skills-content .skill-box .skill-bar .skill-bar-in span {
    color: #838383;
    font-size: 16px;
    font-weight: 400;
    position: absolute;
    right: 0;
    top: -30px;
}


/* portfolio section */

.portfolio {
    background-color: #f5f8fd;
    padding: 100px 7px;
}

.portfolio .section-title h1:before {
    left: 30%;
}

.portfolio .filter-buttons {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 25px;
}

.portfolio .filter-buttons ul {
    list-style: none;
    text-align: center;
    padding: 0;
}

.portfolio .filter-buttons li {
    color: #000;
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    margin: 0px 8px;
    text-transform: uppercase;
    cursor: pointer;
    padding-bottom: 0;
}

.portfolio .filter-buttons li.active {
    color: #febd01;
    border-bottom: 2px solid #febd01;
}

.portfolio .portfolio-gallery {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.portfolio .portfolio-gallery .item {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    position: relative;
    padding: 8px;
}

.portfolio .portfolio-gallery .item .inner {
    position: relative;
}

.portfolio .portfolio-gallery .item img {
    width: 100%;
    display: block;
}

.portfolio .portfolio-gallery .item .overlay {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.5s ease;
}

.portfolio .portfolio-gallery .item:hover .overlay {
    opacity: 1;
}

.portfolio .portfolio-gallery .item .overlay .fa {
    height: 50px;
    width: 50px;
    background-color: #febd01;
    display: inline-block;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
}

.portfolio .portfolio-gallery .item:hover .overlay .fa {
    animation: galleryIcon 0.8s ease;
}

@keyframes galleryIcon {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.portfolio .portfolio-gallery .item .overlay h4 {
    margin-top: 15px;
    font-size: 25px;
    color: #fff;
    font-weight: 600;
}

.portfolio .portfolio-gallery .item:hover .overlay h4 {
    animation: galleryText 0.8s ease;
}

@keyframes galleryText {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.lightbox {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.6);
    /* display: flex; */
    align-items: center;
    justify-content: center;
}

.lightbox.hide {
    display: none;
}

.lightbox.show {
    display: flex;
}

.lightbox .close-lightbox {
    height: 35px;
    width: 35px;
    background-color: #fff;
    color: #febd01;
    text-align: center;
    line-height: 35px;
    position: absolute;
    right: 10px;
    top: 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 101;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    display: block;
}


/* message text */

.message-text {
    background-color: #0c0c17;
    padding: 40px 15px;
}

.message-text .text {
    flex: 0 0 66.66%;
    max-width: 66.66%;
}

.message-text h2 {
    font-size: 25px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    padding: 0;
    line-height: 35px;
}

.message-text .button {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    text-align: right;
}

.message-text .button a {
    border-radius: 4px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.5s ease;
    background-color: transparent;
}

.message-text .button a:hover {
    background-color: #fff;
    color: #000;
}


/* testimonials */

.testimonials {
    padding: 100px 0px;
    background-color: #f5f8fd;
}

.testimonials .section-title h1:before {
    left: 30%;
}

.testimonials .testimonials-content {
    position: relative;
    overflow: hidden;
    flex: 0 0 100%;
    max-width: 100%;
}

.testimonials .testimonials-content .testi-slider .slide {
    background-color: #fff;
    margin-bottom: 15px;
    border: 1px solid #eeeeee;
    padding: 40px 20px;
    border-radius: 4px;
    display: flex;
    flex-wrap: no-wrap;
    float: left;
    width: 100%;
}

.testimonials .testimonials-content .testi-slider .slide .img {
    flex: 0 0 128px;
    max-width: 128px;
}

.testimonials .testimonials-content .testi-slider .slide p {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    color: #838383;
    margin: 0;
}

.testimonials .testimonials-content .testi-slider {
    float: left;
    transition: margin 1s ease;
}

.testimonials .testimonials-content .testi-slider .slide h6 {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin: 10px 0 5px;
}

.testimonials .testimonials-content .slide-controls {
    float: left;
    width: 100%;
    text-align: center;
}

.testimonials .testimonials-content .slide-controls div {
    height: 15px;
    width: 15px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #febd01;
    display: inline-block;
    margin: 10px 6px;
    cursor: pointer;
}

.testimonials .testimonials-content .slide-controls div.active {
    background-color: #febd01;
}


/* blog */

.blogs {
    padding: 100px 15px;
}

.blogs .section-title h1:before {
    left: 30%;
}

.blogs .blog-content {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.blogs .blog-content .box {
    flex: 0 0 calc(33.33% - 25px);
    max-width: calc(33.33% - 25px);
    padding-bottom: 40px;
}

.blogs .blog-content .box .img {
    overflow: hidden;
}

.blogs .blog-content .box .img img {
    width: 100%;
    display: block;
    transition: all 0.5s ease;
}

.blogs .blog-content .box:hover .img img {
    transform: scale(1.1);
}

.blogs .blog-content .box .info {
    padding: 10px 0;
}

.blogs .blog-content .box .info span {
    font-size: 12px;
    color: #838383;
}

.blogs .blog-content .box .info span:nth-child(2) {
    border-left: 1px solid #dddddd;
    padding-left: 8px;
    margin-left: 10px;
}

.blogs .blog-content .box h3 {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin: 0 0 10px;
    padding: 0;
}

.blogs .blog-content .box p {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    color: #838383;
    margin: 0 0 10px;
}

.blogs .blog-content .box a {
    font-size: 14px;
    color: #febd01;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    border-bottom: 2px solid #febd01;
    transition: all 0.5 ease;
}

.blogs .blog-content .box a:hover {
    color: #000;
    border-color: #000;
}


/* contact */

.contact {
    background-color: #f5f8fd;
    padding: 100px 15px;
}

.contact .section-title h1:before {
    left: 30%;
}

.contact .contact-form {
    background-color: #fff;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 50px;
    border: 1px solid #eeeeee;
}

.contact .contact-form .text {
    flex: 0 0 100%;
    max-width: 100%;
    padding-bottom: 20px;
}

.contact .contact-form .text h2 {
    font-size: 25px;
    font-weight: 600;
    color: #000;
    margin: 0;
    padding: 0;
}

.contact .contact-form .text p {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    color: #838383;
    margin: 0;
}

.contact .contact-form .space-between {
    justify-content: space-between;
}

.contact .contact-form .col-6 {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
}

.contact .contact-form .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.contact .contact-form .form-control {
    height: 45px;
    width: 100%;
    margin-bottom: 15px;
    border: 1px solid #ced4da;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}

.contact .contact-form .form-control::placeholder {
    color: #838383;
}

.contact .contact-form textarea.form-control {
    height: 140px;
    resize: none;
}

.contact .contact-form .button {
    flex: 0 0 100%;
    max-width: 100%;
}

.contact .contact-form .button button {
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.5s ease;
    background-color: #febd01;
    box-shadow: 0px 10px 15px #e8e8e8;
    border: none;
    outline: none;
    cursor: pointer;
}

.contact .contact-form .button a:hover {
    background-color: #000;
    color: #fff;
}


/* footer */

footer {
    padding: 70px 15px;
    background-color: #0c0c17;
}

footer .logo {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
    font-size: 45px;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}

footer .social {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
    padding-top: 15px;
}

footer .social a {
    color: #999999;
    text-decoration: none;
    display: inline-block;
    margin: 0px 12px;
    transition: all 0.5s all;
}

footer .social a:hover {
    color: #fff;
}


/* copyright */

.copyright {
    background-color: #0c0c17;
    border-top: 1px solid #1d1d27;
    padding: 15px;
}

.copyright p {
    color: #838383;
    margin: 0;
    text-align: center;
    font-weight: 400;
    font-size: 15px;
}

.copyright p a {
    text-decoration: none;
    color: white;
    cursor: default;
}

.about {
    padding: 120px 15px;
}

.about .section-title h1:before {
    left: 30%;
}

.about .about-content {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.about .about-content .about-box {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 10px 0px;
}

.about .about-content .about-box p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #838383;
    margin: 0 0 10px;
    text-align: justify;
}

.team {
    background-color: #f5f8fd;
    padding: 80px 15px;
}

.team .section-title h1:before {
    left: 30%;
}

.team .team-content {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
}

.team .team-content .img {
    background-color: #febd01;
    border-radius: 50%;
    height: 250px;
    width: 250px;
    position: relative;
}

.team .team-content .img img {
    border-radius: 50%;
    width: 180px;
    height: 180px;
}

.team .team-content .box .text {
    position: absolute;
    left: 100px;
    z-index: 1;
}

.team .team-content .box .text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
}

.team .team-content .box .text p {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    color: #423940;
    margin: 0;
}

.s-blog {
    padding: 140px 15px;
}

.s-blog .s-blog-content {
    flex: 100% 0 0;
    max-width: 100%;
}

.s-blog .s-blog-content .img img {
    display: block;
    width: 100%;
}

.s-blog .s-blog-content .info {
    padding: 10px 0;
}

.s-blog .s-blog-content .info span {
    font-size: 14px;
    color: #838383;
}

.s-blog .s-blog-content .info span:nth-child(2) {
    border-left: 1px solid #dddddd;
    padding-left: 8px;
    margin-left: 10px;
}

.s-blog .s-blog-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #838383;
    margin: 10px 0 10px;
    text-align: justify;
}

.other-page {
    background-color: black;
}

.contact .contact-form.login-form {
    flex: 0 0 50%;
    max-width: 50%;
    margin: auto;
}

input[type="file"] {
    display: none;
}

.custom-file-upload {
    color: #838597;
    font-size: 13px;
    border: 1px solid #ccc;
    display: inline-block;
    padding: 12px 12px;
    cursor: pointer;
    width: 100%;
    margin-bottom: 20px;
}

.blogs .blog-content .box a.delete-btn {
    color: crimson;
    margin-left: 20px;
    border-bottom: 2px solid crimson;
}

.error {
    color: crimson;
    font-size: 16px;
}

.success {
    color: #febd01;
    font-size: 16px;
}

@media (max-width: 991px) {
    .home .home-content .block h1 {
        font-size: 50px;
    }
}

.ham-burger .fa {
    font-size: 20px;
    color: #000;
    display: none;
    height: 30px;
    width: 35px;
    background-color: #ffffff;
    border-radius: 3px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    border: 1px solid #eeeeee;
}

@media (max-width: 767px) {
    .other-page {
        background-color: white;
    }
    .home .home-content .block h1 {
        font-size: 40px;
    }
    .home .home-content .block h3 {
        font-size: 25px;
    }
    .home .home-content .block {
        flex: 0 0 100%;
        max-width: 100%;
        /* padding-left: 35px; */
        border-left: 5px solid #fff;
        margin-top: 100px;
    }
    .s-block ul {
        padding: 0;
        margin: 30px 0 0;
    }
    header {
        padding: 15px;
        position: fixed;
        background-color: #fff;
        border: none;
        border-bottom: 1px solid #eeeeee;
    }
    header .brand-name a {
        color: #000;
    }
    .ham-burger .fa {
        display: inline-block;
    }
    .navbar {
        position: absolute;
        background-color: #fff;
        width: 100%;
        left: 0;
        top: 60px;
        padding: 15px;
        border-top: 1px solid #eeeeee;
        display: none;
        border-bottom: 1px solid #eeeeee;
    }
    .navbar.show {
        display: block;
    }
    header .navbar ul li {
        display: block;
        margin-left: 0;
    }
    header .navbar ul li a {
        line-height: 42px;
        color: #000;
    }
    header .navbar ul li a::before {
        background-color: #febd01;
    }
    .why .why-content .text {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 0px;
        padding-top: 30px;
    }
    .why .why-content .img {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .services .service-content .box {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .skills .skills-content {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0px;
    }
    .skills .img {
        flex: 0 0 100%;
        max-width: 100%;
        padding-top: 20px;
    }
    .portfolio .portfolio-gallery .item {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .message-text .text {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .message-text .button {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: left;
        padding-top: 20px;
    }
    .blogs .blog-content .box {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 40px;
    }
    .contact .contact-form {
        padding: 40px 20px;
    }
    .contact .contact-form .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .home .home-content .s-block {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .home .home-content .s-block ul li {
        font-size: 22px;
    }
    .why .section-title h1 {
        font-size: 23px;
    }
    .section-title h1 {
        font-size: 30px;
    }
    .team .team-content {
        flex: 0 0 100%;
        max-width: 100%;
        /* margin-bottom: 40px; */
        justify-content: center;
    }
    .team .team-content .box {
        padding: 20px 0px;
    }
    .contact .contact-form.login-form {
        flex: 0 0 100%;
        max-width: 100%;
        margin: auto;
    }
}

@media (max-width: 500px) {
    .home .home-content .block h1 {
        font-size: 30px;
    }
    .home .home-content .block h3 {
        font-size: 20px;
    }
    .home .home-content .block {
        padding-left: 20px;
    }
    .portfolio .portfolio-gallery .item {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .why .why-content .text .info .list p {
        flex: 0 0 100%;
    }
    .testimonials .testimonials-content .testi-slider {
        text-align: center;
    }
    .testimonials .testimonials-content .testi-slider .slide .img {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .testimonials .testimonials-content .testi-slider .slide {
        flex-wrap: wrap;
    }
}