/*********************************************************************************************
Style Index:

1.  Color Codes
2.  Defaults & Reset & Global elements
3.  Preloader
4.  Nav
5.  Main Sections & Footer
6.  Header
7.  About Us
8.  Our Services
10. Our Team
11. Our Clients
12. Pricing
14. Contact
15. Sub Pages
16. About Page
18. Scroll To Top
19. ***** Responsive *****
    1. Screen Min Width 1200px
    2. Screen Max Width 1199px
    3. Screen Max Width 991px
    4. Screen Max Width 767px
    5. Screen Max Width 600px
    6. Screen Max Width 450px
    7. Screen Max Width 350px
*********************************************************************************************/

/*------------------------------------------------------------------------------------------*/
/* 1. Color Codes */
/*------------------------------------------------------------------------------------------

************** Background Color **************

[ All Sections ]    ===> #6b345b, #2b387d
[ Content Boxes ]   ===> rgba(37, 37, 37, 0.4)
[ Buttons ]         ===> #6495ed, #fff


***************** Text Color *****************

[ Headings ]    ===> #6495ed, #fff
[ Paragraph ]   ===> #ddd
[ Menu ]        ===> #252525
[ Buttons ]     ===> #fff, #252525


/*------------------------------------------------------------------------------------------*/
/* 2. Defaults & Reset & Global elements */
/*------------------------------------------------------------------------------------------*/
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body,
nav .logo,
button,
input,
optgroup,
select,
textarea {
    font-family: 'flat-jooza', sans-serif;
}

q,
blockquote {
    display: block;
    background-color: #353535;
    font-style: italic;
    padding: 15px 20px;
    margin-left: 0;
    margin-right: 0;
    border-left: 3px solid;
    border-color: #6495ed;
}

q:before,
blockquote:before,
q:after,
blockquote:after {
    content: "";
}

b,
strong {
    font-size: 1.2rem;
    color: #6495ed;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

q p,
blockquote p {
    margin: 0;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    height: 60%;
}

a {
    color: white;
    text-decoration: none;
    font-size: 17px;
}

a:hover {
    color: white;
    text-decoration: none;
}

.menu-body ul li a:hover {
    font-size: 22px;
}

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

.bold {
    font-weight: bold;
}

.my-0 {
    margin: 0 auto;
}

.clearfix {
    clear: both;
}

.container {
    margin-left: auto;
    margin-right: auto;
}

a,
button,
i:before,
li {
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

::-webkit-scrollbar {
    display: none;
}

html {
    overflow-x: hidden;
}

body {
    color: #fff;
    overflow-x: hidden;
}

p {
    color: #ddd;
    font-size: 15px;
    line-height: 35px;
}

.ribbons-bg,
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: -webkit-gradient(linear,
            left top,
            right bottom,
            from(#6b345b),
            to(#2b387d));
    background: -webkit-linear-gradient(top left, #1d6976, #204177);
    background: -o-linear-gradient(top left, #1d6976, #204177);
}

.ribbons-bg {
    z-index: -1;
}

.ribbons-bg .background {
    display: block;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/*------------------------------------------------------------------------------------------*/
/* 3. Preloader */
/*------------------------------------------------------------------------------------------*/
.preloader {
    z-index: 6000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.preloader .content {
    height: 102px;
    width: 100px;
    margin: auto;
    border-radius: 50%;
    -webkit-animation: spin 5s infinite linear;
    animation: spin 5s infinite linear;
}

.preloader .content .circle {
    position: absolute;
    height: 100%;
    width: 100%;
}

.preloader .content .circle .inner {
    height: 100%;
    width: 100%;
    border: 5px solid #ff9e147d;
    border-right: none;
    border-top: none;
    border-radius: 100%;
    box-sizing: content-box;
    box-shadow: inset 0px 0px 10px #ff9e1424;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.circle:nth-of-type(0) {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

.circle:nth-of-type(0) .inner {
    -webkit-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear;
}

.circle:nth-of-type(1) {
    -webkit-transform: rotate(70deg);
    -ms-transform: rotate(70deg);
    transform: rotate(70deg);
}

.circle:nth-of-type(1) .inner {
    -webkit-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear;
}

.circle:nth-of-type(2) {
    -webkit-transform: rotate(140deg);
    -ms-transform: rotate(140deg);
    transform: rotate(140deg);
}

.circle:nth-of-type(2) .inner {
    -webkit-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear;
}

/*------------------------------------------------------------------------------------------*/
/* 4. Nav */
/*------------------------------------------------------------------------------------------*/
nav {
    position: fixed;
    z-index: 3000;
    top: 0;
    left: 0;
    right: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

nav .container {
    height: auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

nav .logo {
    font-size: 22px;
    font-weight: normal;
    margin: 0;
    font-family: "Audiowide", sans-serif;
}

nav .menu-button {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 3000;
    height: 20px;
    width: 32px;
    cursor: pointer;
    transition: transform 330ms ease-out;
}

nav .button-when-menu-is-open {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

nav .menu-button span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #fff;
    border-radius: 5px;
}

nav .menu-button span:first-of-type {
    width: 50%;
    -webkit-transition: -webkit-transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transition: -webkit-transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    -o-transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57),
        -webkit-transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right;
}

nav .menu-button span:last-of-type {
    -ms-flex-item-align: end;
    align-self: flex-end;
    width: 50%;
    -webkit-transition: -webkit-transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transition: -webkit-transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    -o-transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57),
        -webkit-transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
}

nav .menu-button span.first-line-when-menu-is-open {
    -webkit-transform: rotate(-90deg) translateX(3px);
    -ms-transform: rotate(-90deg) translateX(3px);
    transform: rotate(-90deg) translateX(3px);
}

nav .menu-button span.last-line-when-menu-is-open {
    -webkit-transform: rotate(-90deg) translateX(-3px);
    -ms-transform: rotate(-90deg) translateX(-3px);
    transform: rotate(-90deg) translateX(-3px);
}

nav .menu-body {
    position: fixed;
    z-index: 2000;
    top: 0;
    right: 0;
    color: #252525;
    text-align: end;
    padding: 80px 30px 90px 90px;
    cursor: default;
    display: none;
}

nav .menu-body .menu-bg1,
nav .menu-body .menu-bg2 {
    position: absolute;
    z-index: -1;
    top: -50%;
    right: -50%;
    background-color: #0a2f6961;
    border-radius: 50% 0 50% 50%;
}

nav .menu-body .menu-bg1 {
    height: 140%;
    width: 145%;
    -webkit-animation: menuBgClose 0.6s ease 0.2s forwards;
    animation: menuBgClose 0.6s ease 0.2s forwards;
}

nav .menu-body .menu-bg1-open {
    -webkit-animation: menuBgOpen 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s backwards;
    animation: menuBgOpen 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s backwards;
}

nav .menu-body .menu-bg2 {
    -webkit-animation: menuBgClose 0.4s ease-in-out forwards;
    animation: menuBgClose 0.4s ease-in-out forwards;
}

nav .menu-body .menu-bg2 {
    height: 145%;
    width: 140%;
}

nav .menu-body .menu-bg2-open {
    -webkit-animation: menuBgOpen 0.4s ease-in-out backwards;
    animation: menuBgOpen 0.4s ease-in-out backwards;
}

@-webkit-keyframes menuBgOpen {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes menuBgOpen {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes menuBgClose {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@keyframes menuBgClose {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

nav .menu-body ul li {
    display: inline;
}

.menu-body ul li:nth-of-type(3n + 0):after {
    content: "\A";
    white-space: pre;
}

.menu-body ul li a {
    text-decoration: none;
    display: inline-block;
    margin: 15px 10px;
    -webkit-animation: myFadeOutRight 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
    animation: myFadeOutRight 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
}

.menu-body ul li a.show-links {
    -webkit-animation: myFadeInLeft 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.4s both;
    animation: myFadeInLeft 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.4s both;
}

@-webkit-keyframes myFadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes myFadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes myFadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@keyframes myFadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

/*------------------------------------------------------------------------------------------*/
/* 5. Main Sections & Footer */
/*------------------------------------------------------------------------------------------*/
.particles-js-canvas-el {
    position: fixed;
    z-index: -1;
    top: 0;
}

.section .container {
    height: 100vh;
    display: flex;
    transition: 0.4s transform 0.6s ease-in-out;
}

.section .container>div {
    margin: auto;
}

body:not(.page) footer {
    position: fixed;
    z-index: 1000;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 14px;
    cursor: default;
}

footer .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

nav .logo:first-letter,
footer .section-number .current,
footer .site-lang .current {
    color: #b64185;
}


footer .copyrights {
    color: rgba(255, 255, 255, 0.4);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 10px;
}

footer .copyrights .spacetoon {
    display: flex;
    align-items: center;
    white-space: nowrap;
    justify-content: flex-end;
}

footer .copyrights .ejad {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 5px;
}

@-webkit-keyframes vibration {

    0%,
    100% {
        -webkit-transform: translateY(3px);
        transform: translateY(3px);
    }

    50% {
        -webkit-transform: translateY(-3px);
        transform: translateY(-3px);
    }
}

@keyframes vibration {

    0%,
    100% {
        -webkit-transform: translateY(3px);
        transform: translateY(3px);
    }

    50% {
        -webkit-transform: translateY(-3px);
        transform: translateY(-3px);
    }
}

/*------------------------------------------------------------------------------------------*/
/* 6. Header */
/*------------------------------------------------------------------------------------------*/
.home .home-content {
    position: relative;
    height: 100%;
    width: 100%;
    text-align: center;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.sub-head {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 0;
    text-align: center;
}

.home .home-content p,
.about .about-content p:first-of-type {
    margin-top: 0;
}

.home .home-content .buttons-container {
    margin-top: 30px;
    cursor: default;
}

.buttons-container .button {
    display: inline-block;
    background-color: #ff9e14;
    font-size: 14px;
    text-transform: capitalize;
    padding: 8px 20px;
    border: 2px solid white;
    outline: none;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
}

.home .home-content .buttons-container .button {
    font-size: 15px;
    padding: 12px 28px 11px;
    margin: 5px;
    border-radius: 30px;
}

.buttons-container .button:nth-of-type(2) {
    background-color: #fff;
    color: #252525;
    border: 2px solid #fff;
}

.buttons-container .button:first-of-type:hover {
    background-color: white;
    color: #fd7e14 !important;
}

.pagers li {
    padding: 5px;
    opacity: 0.5;
    margin: 6px 0;
    cursor: pointer;
}

.pagers li.active,
.pagers li:hover {
    opacity: 1;
}

.pagers li span {
    display: block;
    height: 8px;
    width: 8px;
    background-color: #fff;
    border-radius: 50%;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.pagers li.active span,
.pagers li:active span {
    background-color: #6495ed;
}

/*------------------------------------------------------------------------------------------*/
/* 7. About Us */
/*------------------------------------------------------------------------------------------*/
.main-heading {
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
    font-size: 45px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 20px;
}

.main-heading:first-line {
    color: #fd7e14;
}

.about .about-content .buttons-container .button {
    font-size: 15px;
    padding: 12px 28px 11px;
    margin: 5px 0;
}

/*------------------------------------------------------------------------------------------*/
/* 8. Our Services */
/*------------------------------------------------------------------------------------------*/
.section-content {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.section-text {
    width: 300px;
    margin-right: 50px;
}

.section-text h2 {
    margin-top: 0;
}

.section-text p {
    margin-bottom: 0;
}

/*------------------------------------------------------------------------------------------*/
/* 11. Our Clients */
/*------------------------------------------------------------------------------------------*/
.clients .clients-content .clients-items {
    text-align: center;
    width: 65%;
    padding: 2px;
    margin-bottom: 50px;
}

.clients .clients-items span {
    position: relative;
    z-index: 0;
    float: left;
    display: block;
    height: 100px;
    width: 60px;
    background-color: rgba(37, 37, 37, 0.4);
}

.clients .clients-items span:nth-of-type(odd) {
    margin: 1px 46px;
}

.clients .clients-items span:nth-of-type(even) {
    margin: 52px 1px -50px;
}

.clients .clients-items span:nth-of-type(5) {
    clear: both;
}

.clients .clients-items span:before,
.clients .clients-items span:after {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
    border-style: solid;
    border-width: 50px 45px;
}

.clients .clients-items span:before {
    left: -90px;
    border-top-color: transparent;
    border-right-color: rgba(37, 37, 37, 0.4);
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.clients .clients-items span:after {
    right: -90px;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: rgba(37, 37, 37, 0.4);
}

.clients .clients-items span img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
    width: 80px;
}

/*------------------------------------------------------------------------------------------*/
/* 14. Contact */
/*------------------------------------------------------------------------------------------*/
.contact .contact-text .main-heading {
    margin-bottom: 30px;
}

.contact .contact-text .contact-details>div {
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.contact .contact-text .contact-details>div:last-of-type {
    margin-bottom: 0;
}

.contact .contact-text .contact-details>div h4 {
    margin: 0 0 8px;
}

.contact .contact-text .contact-details>div h4 i {
    color: #6495ed;
    margin-right: 5px;
}

.contact .contact-text .contact-details>div ul a {
    color: #ddd;
    font-size: 13px;
}

.contact .contact-text .contact-details>div ul li {
    line-height: 1.6;
}

.contact .contact-form {
    width: 550px;
}

.contact .contact-form input,
.contact .contact-form textarea {
    display: block;
    width: 100%;
    background-color: rgba(37, 37, 37, 0.4);
    color: #fff;
    font-size: 14px;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: none;
    outline: none;
    border-radius: 30px;
}

.contact .contact-form .small-fields,
.contact .contact-form .buttons-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.contact .contact-form .small-fields input,
.contact .contact-form .buttons-container .button {
    width: 48%;
}

.contact .contact-form textarea {
    height: 130px;
    resize: none;
}

.contact .contact-form .buttons-container .social-media {
    cursor: default;
}

.contact .contact-form .buttons-container .social-media a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 36px;
    width: 36px;
    background-color: rgba(37, 37, 37, 0.4);
    color: #fff;
    margin-right: 5px;
    border-radius: 50%;
}

.contact .contact-form .buttons-container .social-media a:last-of-type {
    margin-right: 0;
}

.contact .contact-form .buttons-container .social-media a i:before {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

.contact .contact-form .buttons-container .social-media a:hover {
    background-color: #fff;
    color: #252525;
}

.contact .contact-form .buttons-container .button {
    color: #fff;
    border-radius: 30px;
}

/*==========================================================================================*/
/* 19. Responsive */
/*==========================================================================================*/

/*------------------------------------------------------------------------------------------*/
/* 1. Large Screen */
/*------------------------------------------------------------------------------------------*/
@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }


}

/*------------------------------------------------------------------------------------------*/
/* 2. Medium Screen */
/*------------------------------------------------------------------------------------------*/
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        width: 970px;
    }

    .about .about-content,
    .section-text:not(.team-text):not(.contact-text),
    .pricing .pricing-plans {
        width: 80% !important;
    }

    .section-text:not(.team-text):not(.contact-text) {
        margin-right: 0 !important;
        margin-bottom: 50px;
    }
}

@media (max-width: 1199px) {
    .section {
        padding: 50px 0;
    }

    .section .container {
        height: auto;
    }

    .main-heading {
        margin-top: 0;
    }

    .section-content {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .team .team-content .team-members {
        width: 600px;
    }

    .contact .contact-form {
        width: 500px;
    }

    .page .statistics .statistics-item {
        width: 50%;
    }
}

/*------------------------------------------------------------------------------------------*/
/* 3. Small Screen */
/*------------------------------------------------------------------------------------------*/
@media (min-width: 768px) and (max-width: 991px) {

    .about .about-content,
    .section-text:not(.team-text):not(.contact-text),
    .pricing .pricing-plans {
        width: 97% !important;
    }

    .section-text:not(.team-text):not(.contact-text) {
        margin-right: 0 !important;
        margin-bottom: 50px;
    }

    .sub-head {
        font-size: 40px;
    }

    .pricing .pricing-plans .plan {
        padding: 15px 16px;
    }
}

@media (max-width: 991px) {
    .pricing .pricing-plans {
        height: auto !important;
    }

    .container {
        width: 750px;
    }

    .about .about-content {
        max-width: none;
    }

    .team .team-content .team-text {
        width: 250px;
    }

    .team .team-content .team-members {
        width: 450px;
    }

    .contact .contact-text {
        width: 250px;
    }

    .contact .contact-form {
        width: 450px;
    }
}

/*------------------------------------------------------------------------------------------*/
/* 4. Extra Small Screen */
/*------------------------------------------------------------------------------------------*/
@media (min-width: 601px) and (max-width: 767px) {

    .about .about-content,
    .section-text,
    .pricing .pricing-plans,
    .contact .contact-form {
        width: 80% !important;
    }

    .section-text {
        margin-right: 0 !important;
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .container {
        width: auto;
    }

    .section {
        padding: 35px 0;
    }

    nav,
    footer {
        padding: 0 20px;
    }

    .home .home-content .home-item {
        width: calc(100% - 60px);
    }

    .team .team-content .team-text .slider-controls {
        display: none;
    }

    .team .team-content>.slider-controls {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 40px;
    }

    .clients .clients-content .clients-items {
        margin-left: -50px;
    }

    .clients .clients-items span:nth-of-type(5) {
        clear: none;
    }

    .clients .clients-items span:nth-of-type(3),
    .clients .clients-items span:nth-of-type(7) {
        clear: both;
    }

    .pricing .pricing-plans {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .pricing .pricing-plans .plan {
        padding: 25px 30px;
        margin-bottom: 30px;
    }

    .pricing .pricing-plans .plan:first-of-type,
    .pricing .pricing-plans .plan:nth-of-type(2),
    .pricing .pricing-plans .plan:last-of-type {
        margin-left: 80px;
        margin-right: 80px;
    }

    .pricing .pricing-plans .plan:last-of-type {
        margin-bottom: 0;
    }

    .page footer .container>div {
        width: 100%;
        line-height: 24px;
    }

    .page .about .about-content .about-img,
    .page .about .about-content .about-text {
        float: none;
        width: 100%;
    }

    .page .about .about-content .about-img {
        margin: 60px 0 30px;
    }

    .page .about .about-content .about-img img {
        width: auto;
        max-width: 100%;
        margin: auto;
    }
}

/*------------------------------------------------------------------------------------------*/
/* 5. Screen Width 600px */
/*------------------------------------------------------------------------------------------*/
@media (max-width: 600px) {

    .home .home-content,
    .about .about-content,
    .section-text,
    .team .team-content .team-members,
    .pricing .pricing-plans,
    .contact .contact-form {
        width: 90% !important;
    }

    .section-text {
        margin-right: 0 !important;
        margin-bottom: 50px;
    }

    .team .team-members .member {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .team .team-members .member .member-info {
        width: 100%;
        text-align: center;
        margin: 30px 0 0;
    }

    .team .team-content>.slider-controls {
        margin-top: 30px;
    }

    .clients .clients-content .clients-items {
        width: 370px;
        margin-left: 0;
    }

    .clients .clients-items span {
        clear: none !important;
    }

    .clients .clients-items span:nth-of-type(3n + 4) {
        clear: both;
    }

    .clients .clients-items span:not(:nth-of-type(3n + 2)) {
        margin: 1px 46px;
    }

    .clients .clients-items span:nth-of-type(3n + 2) {
        margin: 52px 1px -50px;
    }

    .pricing .pricing-plans .plan:first-of-type,
    .pricing .pricing-plans .plan:nth-of-type(2),
    .pricing .pricing-plans .plan:last-of-type {
        margin-left: auto;
        margin-right: auto;
    }

    .contact .contact-form .small-fields input,
    .contact .contact-form .buttons-container .button,
    .contact .contact-form .buttons-container .social-media {
        width: 100%;
    }

    .contact .contact-form .buttons-container .button {
        margin-bottom: 30px;
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }

    .contact .contact-form .buttons-container .social-media {
        text-align: center;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    footer {
        background-color: #204677;
    }

    footer .container {
        padding: 8px 0px;
    }

    .page .statistics .statistics-item {
        width: 100%;
    }

    .page .about .about-content .buttons-container {
        text-align: center;
    }
}

/*------------------------------------------------------------------------------------------*/
/* 6. Screen Width 450px */
/*------------------------------------------------------------------------------------------*/
@media (max-width: 450px) {
    nav .logo {
        font-size: 10px;
    }

    .menu-body ul li:nth-of-type(3n + 0):after {
        content: "";
        white-space: normal;
    }

    .menu-body ul li:nth-of-type(2n + 0):after {
        content: "\A";
        white-space: pre;
    }

    .home .home-content .home-item {
        width: calc(100% - 10px);
    }

    .sub-head {
        font-size: 30px;
        margin-top: 60px;
        margin-bottom: 15px;
    }

    h3 {
        font-size: 1.5rem !important;
    }

    .ser_carousel {
        width: 90% !important;
    }

    .home .home-content .buttons-container {
        margin-top: 15px;
    }

    @-webkit-keyframes vibration {

        0%,
        100% {
            -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
        }

        50% {
            -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
        }
    }

    @keyframes vibration {

        0%,
        100% {
            -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
        }

        50% {
            -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
        }
    }

    .clients .clients-content .clients-items {
        width: 260px;
        margin-bottom: 0;
    }

    .clients .clients-items span:nth-of-type(odd) {
        margin: 1px 46px;
    }

    .clients .clients-items span:nth-of-type(even) {
        margin: 52px 1px -50px;
    }
}

/*------------------------------------------------------------------------------------------*/
/* 7. Screen Width 350px */
/*------------------------------------------------------------------------------------------*/
@media (max-width: 350px) {
    .main-heading {
        font-size: 35px;
    }

    .home .home-content .buttons-container .button,
    .about .about-content .buttons-container .button {
        padding: 7px 15px;
    }

    .buttons-container .button {
        padding: 8px 15px;
    }

}

.logo {
    transition: all 1s ease-in-out;
    width: 1140px;
    margin: 2% auto !important;
    text-align: center;
    height: 16vh;
}

.logo.transition {
    transform: translate(-45%, 40%);
}

.ser_carousel {
    margin: auto;
}

.fp-tableCell {
    height: 100% !important;
}

.se {
    width: 100%;
}

.container2 {
    width: 100%;
    position: fixed;
    z-index: 5000;
}

.ser_carousel {
    margin: 0;
    width: 60%;
}

.carousel-item {
    width: 80%;
    margin: auto;
}

.service-desc {
    margin: 0 30px 30px;
    text-align: justify;
    text-align-last: center;
    flex-grow: 1;
}

.item p {
    margin: auto;
}

.icon {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(150%) contrast(102%);
}


@media (max-width: 1024px) {
    .container {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .logo.transition {
        transform: translate(0, 0);
    }

    .logo {
        margin: 0 !important;
        height: 60px;
        width: 20px;
    }

    .pricing .pricing-plans {
        height: auto;
    }

    ul {
        height: 80%;
    }
}

.item {
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 10%;
    padding: 10px;
}

.flex {
    display: flex;
    justify-content: space-between;
}

.ser_first_sec {
    line-height: 2rem;
    padding: 2%;
}

.ser_first_sec.bold {
    font-size: 1.05em;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.grid-2-cols {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr))
}

.w-full {
    width: 100%;
}

.services-header {
    text-align: center;
    margin-bottom: 15px;
}

.services-header h2 {
    font-size: 40px;
    text-align: center;
}

.item {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.mar-auto {
    margin: 10px auto;
}

.center {
    text-align: center;
}

.width75 {
    width: 75%;
}

h2,
h5 {
    margin-bottom: 1rem;
}

.translate {
    height: auto;
    font-size: 60px;
    color: #6495ed;
}

h6 {
    margin-top: 1rem;
}

.world {
    max-width: 650px;
    margin-top: 30px !important;
    font-size: 22px;
    line-height: 2;
    font-weight: 400;
    text-align: justify;
    text-align-last: center;
}

.bt:hover {
    border-color: #ff9e14 !important;
}

.st {
    color: #ff9e14 !important;
}

@media (max-width: 1024px) {
    .servie {
        flex-direction: column !important;
    }
}

.boxs {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border: none;
    gap: 0 20px;
    padding: 10px
}

.boxs:hover img {
    transform: scale(1.1);
}

.boxs:hover h4 {
    color: #fd7e14;
}

.boxs img {
    padding: 10px;
    transition: 0.5s;
    width: 150px;
    filter: drop-shadow(1px 1px 4px white);
}

.boxs .info h4 {
    font-size: 28px;
    margin-bottom: 10px;
    transition: all .3s;
}

.boxs .info p {
    font-size: 15px !important;
}

@media (max-width: 449px) {

    .world {
        font-size: 20px;
        line-height: 1.8;
    }

    .boxs {
        flex-direction: column;
        text-align: center;
        padding: 0;
    }

    .boxs h4 {
        text-align: center;
    }

    .boxs p {
        text-align: center;
        padding: 0 20px;
    }

    .clients-logo {
        grid-template-columns: 150px 150px !important;
    }
}

.num {
    color: #fd7e14;
    filter: drop-shadow(1px 1px 4px white);
}

.se {
    position: relative;
}

.se .sa {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 50px 20px;
}

.se .sa .box {
    background: linear-gradient(to bottom right, #104a64a6, #204177);
    counter-increment: services;
    border: 0;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

.se .box i {
    display: block;
    text-align: center;
    margin: 40px auto 20px;
    color: red;
}

.se .box h4 {
    color: white;
    font-size: 25px;
    margin: 20px 13px;
    text-align: center;
}

.se .box::before {
    content: "";
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    background-color: #fd7e14;
    width: 0px;
    height: 3px;
    transition: 0.5s;
}

.se .box:hover {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    box-shadow: 0 12px 20px 0 rgba(25, 89, 117, 1),
        0 2px 4px rgba(253, 126, 20, 1);
}

.se .box:hover::before {
    width: 100%;
}

.se .box .info {
    background: linear-gradient(to bottom right, #195975, #204177);
    padding: 20px;
    text-align: right;
    position: relative;
}

.se .box .info::before {
    content: "0"counter(services);
    position: absolute;
    top: 0.5px;
    right: 0;
    height: 100%;
    background-color: #fd7e14;
    color: white;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 30px;
    padding-left: 15px;
}

.se .box .info::after {
    content: "";
    position: absolute;
    background-color: #d5d5d5;
    right: 80px;
    top: -0.5px;
    height: calc(100% + 1px);
    width: 50px;
    transform: skew(30deg);
}

.se .box .info a {
    color: white;
    text-align: left;
    display: block;
    transition: 0.5s;
}

.se .box .info a:hover {
    color: #fd7e14;
}

.clients-logo {
    display: grid;
    grid-template-columns: 150px 150px 150px 150px 150px;
    gap: 20px;
}

.clients-logo img {
    max-width: 100%;
    transition: 0.5s;
}

.clients-logo span {
    background: linear-gradient(to bottom right, #203f56, #204177);
    border-radius: 20px;
    position: relative;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    border: 2px solid;
    border-color: #ffffff4a;
    aspect-ratio: 1;
}

.clients-logo span:hover {
    border-color: #ffffff;
}

.clients-logo span:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .dire {
        flex-direction: column;
    }

    .clients-logo {
        grid-template-columns: 120px 120px 120px;
    }
}

.swiper {
    width: 100%;
    position: relative;
}

.swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    position: relative;
    width: 100%;
    align-items: center;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom right, #0c4058cf, #204177);
    border-radius: 10px;
    padding: 0;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 430px !important;
    overflow: hidden;
    transiton: 0.5s;
    counter-increment: works;
    transition: 0.5s;
}

.swiper-slide:focus {
    transform: translateY(-10px);
}

.swiper-slide img {
    position: relative;
    height: 210px;
    transition: 0.3s;
    object-fit: contain;
}

.type h2 {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    background-color: #1d6976;
    font-size: 16px;
    font-weight: bold;
    padding: 13px 20px;
    width: 80%;
    text-align: center;
    transition: 0.3s;
}

.description {
    display: flex;
    justify-content: center;
    line-height: 2;
}

.description p {
    font-size: 20px;
    margin-top: 30px;
    padding: 20px;
    text-align: center;
    font-weight: bold;
    min-height: 110px;
}

.swiper-button-prev,
.swiper-button-next {
    color: white !important;
    margin: -50px;
    top: 63% !important;
}

@media (max-width: 767px) {
    .swiper-slide img {
        width: 100%;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
}

.swiper-slide .info {
    background: linear-gradient(to bottom right, #195975, #204177);
    padding: 20px;
    text-align: right;
    position: relative;
    bottom: 0px;
    left: 0;
}

.swiper-slide .info::before {
    content: "0"counter(works);
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background-color: #fd7e14;
    color: white;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 30px;
    padding-left: 15px;
}

.swiper-slide .info::after {
    content: "";
    position: absolute;
    background-color: #d5d5d5;
    right: 80px;
    top: 0;
    height: calc(100% + 1px);
    width: 50px;
    transform: skew(30deg);
}

.swiper-slide .info a {
    color: white;
    text-align: left;
    display: block;
    transition: 0.5s;
}

.swiper-slide .info a:hover {
    color: #fd7e14;
}

.swiper-slide::before {
    content: "";
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    background-color: #fd7e14;
    width: 0px;
    height: 3px;
    transition: 0.5s;
}

.swiper-slide:hover {}

.swiper-slide:hover::before {
    width: 100%;
}

.swiper-button-prev,
.swiper-button-next {
    color: white !important;
    position: absolute;
    top: 50%;
}

.swiper-button-prev {
    left: -30px !important;
}

.swiper-button-next {
    right: -30px !important;
}

.post-para {
    text-align: center;
}

.post {
    text-align: center;
    background: linear-gradient(to bottom right, #104a64a6, #204177);
    padding: 15px 25px 10px;
    position: relative;
    transition: 0.5s;
    border-radius: 15px;
}

.post:hover {
    right: 0;
    background-color: #fd7e14;
    font-size: 30px;
}

.post .post-title {
    text-align: center;
    font-weight: bold;
    margin-top: 10px;
}

.post::before {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    background-color: #fd7e14;
    width: 0px;
    height: 3px;
    transition: 0.5s;
}

.post:hover::before {
    width: 95%;
}

.posts-2 {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/*Services 1*/
.se .box-2 .info-2 {
    background: linear-gradient(to bottom right, #195975, #204177);
    padding: 30px;
    text-align: right;
    position: absolute;
    bottom: 0;
    width: 100%;
    right: 0;
}

.se .box-2 .info-2::before {
    content: "0"counter(services);
    position: absolute;
    top: -3px;
    right: 0;
    height: 100%;
    background-color: #fd7e14;
    color: white;
    width: 100px;
    text-align: center;
    font-weight: bold;
    font-size: 30px;
    padding-left: 15px;
}

.se .box-2 .info-2::after {
    content: "";
    position: absolute;
    background-color: #d5d5d5;
    right: 80px;
    top: -3.5px;
    height: calc(100% + 1px);
    width: 50px;
    transform: skew(30deg);
}

.se .sa .box-2 {
    background: linear-gradient(to bottom right, #104a64a6, #204177);
    border-radius: 15px;
    position: relative;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

.text-3 {
    margin-top: -20px;
}

.se .box-2 h4 {
    color: white;
    font-size: 25px;
    text-align: center;
    margin: 20px 13px;
}

.se .box-2::before {
    content: "";
    position: absolute;
    top: -3px !important;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    background-color: #fd7e14;
    width: 0;
    height: 3px;
    transition: 0.5s;
}

.se .box-2:hover::before {
    width: 93%;
}

.se .box-2:hover {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    box-2-shadow: 0 12px 20px 0 rgba(25, 89, 117, 1),
        0 2px 4px rgba(253, 126, 20, 1);
}

/* Section 3 */

.icon2 {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(150%) contrast(102%);
}

.logo-size {
    height: 100%;
}

.logo-small {
    height: 12vh;
}
