@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Advent+Pro:wght@300&display=swap');

body {
    padding: 0;
    margin: 0;
    background: #FFF;
    font-family: 'Source Sans Pro', sans-serif;
}

body a,
body button {
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
    text-decoration: none;
}

body a:hover,
body button:hover {
    text-decoration: none;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

html {
    scroll-behavior: smooth;
}

a {
 color: #101010;
 text-decoration: underline;
 font-weight: 600;
}

a:hover {
    color: #fff;
}

body a:focus,
a:hover {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.9;
    color: #999;
    text-align: left;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

label {
    margin: 0;
}

a:focus,
a:hover {
    text-decoration: none;
    outline: none
}

.let {
    letter-spacing: 1px;
}

/* //Reset Code */

/* colors code */
.text-da {
    color: #343a40;
}

.bg-da {
    background: #343a40;
}

.text-wh {
    color: #fff;
}

.text-blk {
    color: #101010;
}

.bg-wh {
    background: #fff;
}

.text-li {
    color: #f8f9fa;
}

.bg-li {
    background: #f8f9fa;
}

.let {
    letter-spacing: 1px;
}

/* //colors code */


/* ANIMATIONS */
.wow { 
    visibility: hidden;
}

/* bottom-to-top */
a.move-top {
    width: 34px;
    height: 34px;
    background: url(../images/move-top.png) no-repeat;
    display: inline-block;
    position: fixed;
    bottom: 4%;
    right: 2%;
    z-index: 0;
}

/* //bottom-to-top */
/* header */
/* navigation */
.nav_w3ls {
    width: 100%;
}

/* Giving a background-color to the nav container. */
nav {
    margin: 0;
    padding: 0;
}

.header-style {
    background: #fff;
    padding: 25px 0;
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    transition: .5s all;
    z-index: 99;
    box-shadow: 3px 3px 30px 4px rgba(8, 8, 8, 0.07);
}

@media(max-width: 992px) {
    .container {
        max-width: 92%;
    }
}

@media(max-width: 433px) {
    .container {
        max-width: 96%;
        padding-right: 29px;
    }
}

/* logo */
.main_logo {
    display: flex;
    flex-direction: column;
}

.main_logo > a > img:nth-child(1) {
    width: 13rem;
}

.main_logo > a > img:nth-child(2) {
    width: 10%;
    right: 9px;
    position: relative;
}

.main_logo > span {
    padding-left: 1.6rem;
    font-weight: 600;
    font-size: 1.15rem;
    bottom: 10px;
    position: absolute;
}

body > footer > div > div > div.row.footer-p > div.col-lg-8.mt-lg-0.mt-4.pr-lg-5 > div.d-sm-flex.align-items-center.top-footer-content.mb-5 > div > span {
    bottom: 0;
    position: unset;
}

h1.logo {
    position: absolute;
    left: 47%;
}

.logo a {
    font-size: 46px;
    color: #00BFA5;
    font-family: 'Niconne', cursive;
    letter-spacing: 1px;
}

.logo i {
    position: absolute;
    font-size: 26px;
    transform: rotate(-71deg);
    bottom: 30px;
    left: -9px;
    color: #00BFA5;
}

@media(max-width: 992px) {
    .main_logo > span {
        bottom: 1px;
    }
}

@media(max-width: 425px) {
    .main_logo > span {
        top: 0.5px;
        position: relative;
    }
}
/* //logo */

/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav:after {
    content: "";
    display: table;
    clear: both;
}

/* Positioning the navigation items inline */
nav ul li {
    margin: 0px;
    display: inline-block;
    float: left;
}

/* Styling the links */
nav a {
    color: #573e2a;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

ul.menu li {
    margin: 9px;
    text-align: center;
}

nav ul li ul li a:hover {
    background: #f8f9fa;
    color: #C60021;
}

header > div > div {
    display: flex;
}


/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
    display: none;
    top: 50px;
    z-index: 9;
    position: absolute;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}

/* Display Dropdowns on Hover */
nav ul li:hover>ul {
    display: inherit;
}

/* Fisrt Tier Dropdown */
nav ul ul li {
    width: 170px !important;
    float: none;
    display: list-item;
    position: relative;
    margin: 0 !important;
}

nav ul ul li a {
    color: #000;
    padding: 5px 10px;
    display: block;
    font-size: 14px;
}

/* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
    position: relative;
    top: -60px;
    /* has to be the same number as the "width" of "nav ul ul li" */
    left: 170px;
}


/* Change ' +' in order to change the Dropdown symbol */
li>a:only-child:after {
    content: '';
}

a.reqe-button {
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 4px;
}

/* Media Queries
--------------------------------------------- */
@media all and (max-width : 991px) {
    /* .header-style {
        padding: 10px 0;
    } */

    .logo i {
        bottom: 29px;
        left: -10px;
    }

    nav {
        margin: 0;
    }

    nav ul {
        float: right;
    }

    ul.menu li {
        margin: 0 !important;
    }

    ul.menu li:nth-child(4) {
        margin-right: 0;
    }

    /* Display Dropdown when clicked on Parent Lable */
    [id^=drop]:checked+ul {
        display: block;
        background: #fff;
        padding: 15px 0;
        text-align: center;
        width: 100%;
    }

    /* Change menu item's width to 100% */
    nav ul li {
        display: block;
        width: 100%;
        padding: 5px 0;
    }

     nav ul ul a {
        padding: 0 40px;
    }

    nav ul ul ul a {
        padding: 0 80px;
    }

    nav a:hover,
    nav ul ul ul a {
        background-color: transparent;
    }

    nav ul ul a,
    nav ul ul ul a {
        padding: 14px 20px;
        color: #FFF;
        font-size: 17px;
    }

    /* Hide Dropdowns by Default */
    nav ul ul {
        float: none;
        position: static;
        color: #ffffff;
        /* has to be the same number as the "line-height" of "nav a" */
    }

    /* Hide menus on hover */
    nav ul ul li:hover>ul,
    nav ul li:hover>ul {
        display: none;
    }

    /* Fisrt Tier Dropdown */
    nav ul ul li {
        display: block;
        width: 100%;
        padding: 0;
    }

    nav ul ul ul li {
        position: static;
        /* has to be the same number as the "width" of "nav ul ul li" */

    }

    .menu li.active a,
    .menu li a:hover {
        color: #000;
    }

    nav a {
        color: #000;
        font-size: 15px;
    }

    nav ul ul li a {
        color: #000;
    }
}

/* //navigation */
/* //header */

/* //nav */
#modules > header > div > div > div.nav_w3ls > nav > ul > li {
    float: right;
}


/* home */

.w3l-banner {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 80px);
}

.w3l-banner .banner-content {
    display: grid;
    align-items: center;
    min-height: calc(100vh - 80px);
}

.button-style {
    padding: 12px 36px;
    font-size: 16px;
    color: #212121;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 0.5rem 1rem rgb(16 16 16 / 14%);
    outline: none;
    border: none;
    background-size: 200% auto;
    background-image: linear-gradient(90deg, #45f33d 0%, #a1f33d 51%, #68da62 100%);
    transition: all 1.8s ease-in-out;
}

.button-style:hover {
    background-position: right;
    color: #212121;
}

.img-fluid {
    border-radius: 3rem;
    width: 80%;
}

@media(max-width: 767px) {
    .text-content, .text-content p, .border-wrap > div > div > div > p {
        text-align: center;
    }

    .img-fluid {
        width: 60%;
    }

    h3 {
        font-size: 1.3rem;
    }

    p {
        font-size: 0.9rem;
    }

    #home, #home > div > div {
        padding-top: 1rem !important;
    }
}

@media(max-width: 605px) {
    #modules > header > div > div > div.nav_w3ls > nav > ul > li > a.button-style.wow.bounceIn {
        font-size: 12px;
    }
}

@media(max-width: 556px) {
    #modules > header > div > div > div.nav_w3ls > nav > ul > li > a.button-style.wow.bounceIn {
        display: none;
    }

    #modules > header > div > div > div.nav_w3ls > nav > ul > li > a > i {
        display: block !important;
        font-size: 2rem;
        background: -webkit-linear-gradient(#45f33d, #a1f33d);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

@media(max-width: 371px) {
    #modules > header > div > div > div.nav_w3ls > nav > ul > li > a > i {
        display: none !important;
    }

    .main_logo > a > img:nth-child(1) {
        width: 11rem;
    }
}

/* highlightWords */

.highlightWords > div {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    font-size: 3rem;
    background: whitesmoke;
}

.highlightWords > div > div {
    padding: 2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.highlightWords > div > div > i {
    padding-right: 0.5rem;
    background: -webkit-linear-gradient(#a1f33d, #45f33d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 992px) {
    .highlightWords > div {
        font-size: 2rem;
    }
}

@media (max-width: 733px) {
    .highlightWords > div {
        font-size: 1.5rem;
    }
}

@media (max-width: 604px) {
    .highlightWords > div {
        font-size: 1.2rem;
    }

    .highlightWords > div {
        padding: 0 !important;
    }
}

@media (max-width: 526px) {
    .highlightWords > div {
        font-size: 1rem;
    }
}

@media (max-width: 475px) {
    .highlightWords > div {
        flex-direction: column;
        text-align: center;
    }
}
/* highlightWords */

/* divider */
.divider {
    border-top: 1px solid #999;
}

.editorial {
    display: block;
    width: 100%;
    height: 60px;
    max-height: 60px;
    margin: 0;
    z-index:5;
    bottom:0;
    position:absolute;
    left:0px;
    float:left;
}

.parallax1 > use {
animation: move-forever1 10s linear infinite;
    &:nth-child(1) {
        animation-delay: -2s;
    }
}
.parallax2 > use {
    animation: move-forever2 8s linear infinite;
    &:nth-child(1) {
        animation-delay: -2s;
    }
}
.parallax3 > use {
    animation: move-forever3 6s linear infinite;
    &:nth-child(1) {
        animation-delay: -2s;
    }
}
.parallax4 > use {
    animation: move-forever4 4s linear infinite;
    &:nth-child(1) {
        animation-delay: -2s;
    }
}
@keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }
    100% {
        transform: translate(-90px, 0%);
    }
}
@keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }
    100% {
        transform: translate(85px, 0%);
    }
}
@keyframes move-forever3 {
    0% {
        transform: translate(85px, 0%);
    }
    100% {
        transform: translate(-90px, 0%);
    }
}
@keyframes move-forever4 {
    0% {
        transform: translate(-90px, 0%);
    }
    100% {
        transform: translate(85px, 0%);
    }
}

/* border */
.border-wrap {
    margin: 2rem 15rem;
    position: relative;
    background: linear-gradient(to right, #a1f33d , #68da62 );
    padding: 0.3rem;
}

body > section.w3l-content-11-main.border-wrap > div {
    background-color: #fff;
}

@media (max-width: 992px) {
    .border-wrap {
        margin: 2rem 5rem;
    }
}

@media (max-width: 575px) {
    .border-wrap {
        margin: 2rem 1rem;
    }
}

/* contact */
.contact {
    padding: 5em;
}

.agileits-title {
    text-align: center;
    margin-bottom: 3em;
}

.agileits-title h3 {
    color: #212121;
    margin: 0;
    font-size: 3em;
    font-weight: 700;
    position: relative;
    letter-spacing: 2px;
    text-transform: capitalize;
}

.contact-agileinfo.contact-form.wthree {
    width: 80%;
    margin: 0 auto;
}

#subject {
    width: 100%;
}

.contact input[type="text"], .contact input[type="email"] {
    width: 49%;
    color: #999;
    float: left;
    background: none;
    outline: none;
    font-size: 1em;
    padding: .7em 1em;
    margin-bottom: 1.5em;
    border: solid 1px #ccc;
    -webkit-appearance: none;
    display: inline-block;
}

.contact input.email {
    margin-left: 1em;
}

.contact textarea {
    resize: none;
    width: 100%;
    background: none;
    color: #999;
    font-size: 1em;
    outline: none;
    padding: .6em .8em;
    border: solid 1px #ccc;
    min-height: 12em;
    -webkit-appearance: none;
}

@media(max-width:2000px) {
    .contact input[type="text"], .contact input[type="email"] {
        width: 51%;
    }
    
    .contact input.email {
        margin-left: 0em;
    }
}

@media(max-width:700px) {
    .contact input[type="text"], .contact input[type="email"] {
        width: 100%;
    }
    #contact > div > div.contact-agileinfo.contact-form.wthree, #contact > div {
        width: 100%;
    }
}

@media(max-width:508px) {
    .contact {
        padding: 2rem;
    }

    #contact > div > div.agileits-title.wow.zoomIn > h3 {
        font-size: 2rem;
    }
}


/* footer */

/* newsletter sign up */
.w3l-footer-16 .w3l-footer-16-main h3 {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 10px;
    font-weight: 600;
}

.w3l-footer-16 form {
    display: flex;
    margin-bottom: 15px;
}

.w3l-footer-16 .subscribe input[type="email"] {
    background: var(--bg-color);
    border: none;
    padding: 12px 12px;
    font-size: 15px;
    outline: none;
    width: 80%;
    color: #212121;
    border: 1px solid #eee;
    border-radius: 30px 0px 0px 30px;
}

.w3l-footer-16 .subscribe button {
    border: none;
    outline: none;
    font-size: 16px;
    padding: 12px 12px;
    cursor: pointer;
    width: 20%;
    color: #fff;
    border-radius: 0px 30px 30px 0px;
}

.w3l-footer-16 .footer-p p {
    font-size: 15px;
}

.w3l-footer-16 ul.social li, .w3l-footer-16 ul.jst-link li {
    display: inline-block;
    margin-right: 5px;
}

.w3l-footer-16 ul.social li a {
    color: #212121;
    width: 35px;
    height: 35px;
    background: #f4f4f4;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
}

.w3l-footer-16 ul.social li a span {
    font-size: 15px;
    line-height: 35px;
}


/* address, number, email */
body > footer > div > div > div.row.footer-p > div.col-lg-8.mt-lg-0.mt-4.pr-lg-5 > div.row.footer-grids.pt-4 > div > ul, body > footer > div > div > div.row.footer-p > div.col-lg-8.mt-lg-0.mt-4.pr-lg-5 > div.row.footer-grids.pt-4 > div > ul > li > a {
    margin: 0;
    padding: 0;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.9;
    color: #999;
    text-align: left;
    font-weight: 100;
}

body > footer > div > div > div.row.footer-p > div.col-lg-8.mt-lg-0.mt-4.pr-lg-5 > div.row.footer-grids.pt-4 > div:nth-child(1) > ul {
    list-style-type: none;
}

body > footer > div > div > div.row.footer-p > div.col-lg-8.mt-lg-0.mt-4.pr-lg-5 > div.row.footer-grids.pt-4 > div > ul > li > i {
    color: #212121;
    padding-right: 1rem;
}


/* footer logo */
.logo2 {
    position: relative;
}

.logo2 a {
    font-size: 50px;
    color: #FF5722;
    font-family: 'Niconne', cursive;
    letter-spacing: 1px;
}

.logo2 i {
    font-size: 26px;
    bottom: 31px;
    left: 43.69%;
    color: #FF5722;
    position: absolute;
    transform: rotate(-71deg);
}

body > footer > div > div.contact-left-footer.mt-4 > ul > li.mx-4 > p {
    font-weight: 625;
}

body > footer > div > div.contact-left-footer.mt-4 > p {
    color: #101010;
    font-size: 1.1em;
}
/* //footer logo */

/* social icons */
.footercopy-social ul li,
.contact-left-footer ul li {
    display: inline-block;
}

.footercopy-social ul li a {
    color: #333;
    text-align: center;
}

.footercopy-social ul li a span.fa-facebook-f {
    background: #3b5998;
}

.footercopy-social ul li a span:hover {
    opacity: 0.8;
}

.footercopy-social ul li a span.fa-twitter {
    background: #1da1f2;
}

.footercopy-social ul li a span.fa-rss {
    background: #f26522;
}

.footercopy-social ul li a span.fa-vk {
    background: #45668e;
}

.footercopy-social ul li a span {
    height: 38px;
    width: 38px;
    font-size: 15px;
    line-height: 2.5;
    color: #fff;
    border-radius: 50%;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

/* linkedin icon  */

body > footer > div > div > div.row.footer-p > div.col-lg-4.col-md-7.column.mt-lg-0.mt-4 > div.columns-2.mt-4 > ul > li > a {
    background-color: #0072b1;
}

body > footer > div > div > div.row.footer-p > div.col-lg-4.col-md-7.column.mt-lg-0.mt-4 > div.columns-2.mt-4 > ul > li > a > span {
    color: #fff;
}
/* //social icons */

/* copyright */
.w3l-copy p {
    letter-spacing: 2px;
}

.w3l-copy p a {
    color: #FF5722;
}

.w3l-copy p a:hover {
    color: #000;
}

/* //copyright */

@media(max-width: 575px) {
    body > footer > div > div > div.row.footer-p > div.col-lg-8.mt-lg-0.mt-4.pr-lg-5 > div.d-sm-flex.align-items-center.top-footer-content.mb-5 {
        margin-bottom: 1rem !important;
    }
}
/* //footer */

/* responsive */

@media(min-width: 1092px) {
    
}

@media(max-width: 1680px) {}

@media(max-width: 1600px) {}

@media(max-width: 1440px) {
    .w3layouts-banner-info h3 {
        font-size: 3.2em;
    }

    .w3layouts-banner-info {
        padding-top: 14em;
    }
}

@media(max-width: 1366px) {
    .parts-w3pvt i {
        font-size: 60px;
    }
}

@media(max-width: 1280px) {
    .w3layouts-banner-info h3 {
        font-size: 2.8em;
    }

    .team-text h4 {
        font-size: 24px;
    }
}

@media(max-width: 1080px) {
    nav a {
        font-size: 15px;
    }

    h3.tittle-w3layouts {
        font-size: 32px;
    }

    h4.sub-tittle-w3layouts {
        font-size: 14px;
    }

    p {
        font-size: 15px;
    }

    .about {
        padding: 5em;
    }

    .team-text h4 {
        font-size: 22px;
    }

    .feedback-top p {
        font-size: 16px;
    }

    .feedback-top h4 {
        font-size: 22px;
    }

    .logo2 i {
        left: 42.4%;
    }

    h1.logo {
        left: 45.5%;
    }
}

@media(max-width: 1050px) {

    .w3layouts-banner-info {
        padding-top: 12em;
    }
}

@media(max-width: 1024px) {
    h1.logo {
        left: 45%;
    }
}

@media(max-width: 991px) {
    h1.logo {
        left: 11%;
    }

    .w3layouts-banner-info h3 {
        font-size: 2.6em;
    }

    .icon-w3 {
        bottom: 12%;
    }

    .about {
        margin: 0;
    }

    .about-right {
        margin-top: 7em;
    }

    .pos-aboimg2 {
        left: 14%;
    }

    .main-img {
        text-align: center;
    }

    .services-w3ls-grid h4 {
        font-size: 20px;
    }

    h4.stat-text-wthree {
        font-size: 38px;
    }

    .gal-grid-wthree {
        padding: 0 .5em;
    }

    .parts-w3pvt i {
        font-size: 50px;
    }

    .logo2 i {
        left: 39.7%;
    }

    ul.menu li {
        width: 100% !important;
    }
}

@media(max-width: 900px) {}

@media(max-width: 800px) {

    .banner-top,
    .banner-top1,
    .banner-top2,
    .banner-top3,
    .banner-top4 {
        min-height: 530px;
    }

    .w3layouts-banner-info h3 {
        font-size: 2.4em;
    }

    .w3layouts-banner-info {
        padding-top: 10em;
    }

    h3.w3ls-title {
        font-size: 38px;
    }
}

@media(max-width: 768px) {}

@media(max-width: 736px) {
    h3.tittle-w3layouts {
        font-size: 30px;
    }

    .about-right {
        margin-top: 7em;
    }

    .pos-aboimg2 {
        left: 4%;
    }

    h3.w3ls-title {
        font-size: 36px;
    }

    h4.stat-text-wthree {
        font-size: 36px;
    }

    .team-text h4 {
        font-size: 20px;
    }

    .gal-grid-wthree {
        padding: 0 1em;
    }

    .logo2 i {
        left: 36.2%;
    }
}

@media(max-width: 667px) {

    .banner-top,
    .banner-top1,
    .banner-top2,
    .banner-top3,
    .banner-top4 {
        min-height: 500px;
    }

    .w3layouts-banner-info h3 {
        font-size: 2.2em;
    }

    .w3layouts-banner-info p {
        font-size: 14px;
    }

    a.move-top {
        bottom: 1%;
    }

    h3.text-da.let.mb-3 {
        font-size: 25px;
    }
}

@media(max-width: 640px) {}

@media(max-width: 600px) {
    .icon-w3 {
        left: 47%;
    }

    .w3layouts-banner-info h3 {
        font-size: 2em;
    }

    .banner-top,
    .banner-top1,
    .banner-top2,
    .banner-top3,
    .banner-top4 {
        min-height: 500px;
    }

    .counter {
        font-size: 38px;
    }
}

@media(max-width: 568px) {

    .banner-top,
    .banner-top1,
    .banner-top2,
    .banner-top3,
    .banner-top4 {
        min-height: 500px;
    }

    .icon-w3 i {
        font-size: 28px;
        padding: 8px 3px;
    }

    .pos-aboimg2 {
        left: 8%;
    }

    h4.stat-text-wthree {
        font-size: 32px;
    }

    .feedback-top p {
        font-size: 15px;
    }

    .address-grid i {
        font-size: 32px;
    }
}

@media(max-width: 480px) {
    .logo a {
        font-size: 40px;
    }

    .logo i {
        bottom: 28px;
        left: -9px;
        font-size: 23px;
    }

    .w3layouts-banner-info h3 {
        font-size: 1.8em;
    }

    .w3layouts-banner-info p {
        font-size: 13px;
    }

    .button-style {
        padding: 11px 20px;
        font-size: 13px;
    }

    .banner-top,
    .banner-top1,
    .banner-top2,
    .banner-top3,
    .banner-top4 {
        min-height: 480px;
    }

    a.move-top {
        bottom: 4%;
    }

    h3.tittle-w3layouts {
        font-size: 28px;
    }

    .main-img img {
        width: 80%;
    }

    .about {
        padding: 3rem 2rem 3rem;
    }

    .about-right {
        margin-top: 7em;
    }

    h3.tittle-w3layouts {
        font-size: 26px;
    }

    ul.author li {
        font-size: 14px;
    }

    ul.author li span {
        font-size: 20px;
    }

    legend {
        max-width: 70%;
        font-size: 26px;
    }

    button.btn.btn-block {
        font-size: 16px;
    }

    .contact-top1 .form-group label {
        font-size: 15px;
    }

    .logo2 i {
        left: 33.8%;
    }

    .w3l-copy p {
        letter-spacing: 1px;
    }
}

@media(max-width: 440px) {
    .w3layouts-banner-info {
        padding-top: 9em;
    }

    h3.w3ls-title {
        font-size: 32px;
    }

    h4.stat-text-wthree {
        font-size: 28px;
    }

    h3.text-da.let.mb-3 {
        font-size: 23px;
    }

    p.footer-para {
        font-size: 14px;
    }

    .logo2 a {
        font-size: 42px;
    }

    .logo2 i {
        left: 34.7%;
        bottom: 27px;
    }
}

@media(max-width: 414px) {
    .w3layouts-banner-info {
        padding-top: 7.5em;
    }

    .w3layouts-banner-info h3 {
        font-size: 1.6em;
    }

    .banner-top,
    .banner-top1,
    .banner-top2,
    .banner-top3,
    .banner-top4 {
        min-height: 430px;
    }

    .w3layouts-banner-info p {
        max-width: 330px;
    }

    .icon-w3 {
        bottom: 9%;
    }

    .about-right {
        margin-top: 7em;
    }

    legend {
        max-width: 81%;
        font-size: 23px;
    }

    .address {
        padding: 2.5em;
        margin-top: 3em;
    }

    .logo2 i {
        left: 33.8%;
        font-size: 22px;
    }

    h6.text-da.let.mb-3 {
        font-size: 15px;
    }

    .popup {
        margin: 4em 1em;
    }
}

@media(max-width: 384px) {
    .about-right {
        margin-top: 7em;
    }

    h3.w3ls-title {
        font-size: 30px;
    }

    fieldset.contact-top1 {
        padding: 1.5rem;
    }

    form.f-color .form-control {
        padding: 12px;
    }

    .logo2 i {
        left: 32%;
    }
}

@media(max-width: 375px) {
    .address {
        padding: 2.5em .5em;
    }

    h3.text-da.let.mb-3 {
        font-size: 21px;
    }
}

@media(max-width: 320px) {
    .w3layouts-banner-info h3 {
        font-size: 1.5em;
    }

    .w3layouts-banner-info p {
        max-width: 240px;
    }

    h3.tittle-w3layouts {
        font-size: 24px;
    }

    h4.sub-tittle-w3layouts {
        font-size: 13px;
    }

    .about-right {
        margin-top: 7em;
    }

    ul.timeline a.head-text-w3 {
        font-size: 18px;
    }

    ul.timeline>li {
        margin: 2em 0;
        padding-left: 3em;
    }

    ul.timeline li a {
        font-size: 14px;
    }

    h3.w3ls-title {
        font-size: 28px;
    }

    h5.card-title a,
    h5.card-title {
        font-size: 21px;
    }

    .blog_w3icon span {
        font-size: 11px;
    }

    p {
        font-size: 14px;
    }

    h4.stat-text-wthree {
        font-size: 26px;
    }

    .counter {
        font-size: 36px;
    }

    .feedback-top h4 {
        font-size: 20px;
    }

    .parts-w3pvt i {
        font-size: 40px;
    }

    .logo2 i {
        left: 28%;
    }

    h3.text-da.let.mb-3 {
        font-size: 18px;
    }
}

/* //responsive */