* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg_color: #2b2f8d;
    --bg_color_2: #00affa;
    --white: #fff;
    --black: #000;
}

body {
    position: relative;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    transition: ease-in-out .3s;
}

.img {
    overflow: hidden;
}

.img:hover img {
    transform: scale(1.1);
}

@keyframes mymove {
    from {
        width: 0%;
    }

    to {
        width: 100%;
        opacity: 0;
    }
}

p {
    font-size: 15px;
    line-height: 28px;
}

a {
    text-decoration: none;
    transition: ease-in-out .3s;
}

li {
    list-style: none;
}

ul {
    padding-left: 0;
    margin-bottom: 0;
}

.my {
    margin: 70px 0;
}

.toggle {
    display: none;
}

.nav_close {
    display: none;
}

nav {
    position: relative;
    top: 0;
    width: 100%;
    z-index: 99;
}

.toggle .line {
    width: 33px;
    height: 4px;
    background-color: #000;
    margin-bottom: 5px;
    border-radius: 3px;
    transition: ease-in-out .4s;
}

/* .toggle.toggle_active .line:nth-child(1){
    transform: rotate(45deg);
        margin-top: 8px;
}
.toggle.toggle_active .line:nth-child(2){
    display: none;
}
.toggle.toggle_active .line:nth-child(3){
        transform: rotate(-45deg);
            margin-top: -8px;
} */

#myHeader.sticky {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    animation: slideDown 1s ease-out;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    background-color: #fff;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.logo img {
    width: 100px;
    border-radius: 50%;
}

.nav_bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar_nav .nab_flex {
    display: flex;
}

.navbar_nav ul li {
    position: relative;
    padding: 20px 20px;
}

.navbar_nav ul a {
    color: var(--black);
}

.navbar_nav ul li:hover>.dropdown {
    display: block;
    transition: ease-in-out .5s;
}

.dropdown {
    position: absolute;
    width: 250px;
    top: 100%;
    left: 0;
    background-color: #fff;
    transition: ease-in-out .5s;
    display: none;
}

ul.dropdown {
    overflow: auto;
    height: 400px;
}

.navbar_nav ul .dropdown li {
    padding: 10px 20px;
}

.navbar_nav ul .dropdown li:hover {
    background-color: var(--bg_color);
}

.navbar_nav ul .dropdown li:hover a {
    color: var(--white);
}

.dropdown .dropdown {
    left: 100%;
    top: 0;
}

.dropdown_btn {
    position: absolute;
    right: 0;
    top: 35%;
    color: var(--black);
    cursor: pointer;
}

.show_dropdown {
    display: block;
}

.search_btn {
    background-color: #fff;
    border-radius: 50%;
    padding: 5px 10px;
    cursor: pointer;
}

.search {
    position: fixed;
    left: 0;
    top: -100%;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: #000000e2;
    padding: 6% 10% 0% 9%;
    transition: ease-in-out .5s;
    visibility: hidden;
    z-index: 999;
}

.show {
    top: 0%;
    visibility: visible;
}

.search input {
    width: 96%;
    border: none;
    outline: none;
    padding: 10px 15px;
}

.magnifying {
    background-color: #a8a8a8;
    padding: 10px 15px;
    cursor: pointer;
}

.magnifying:hover {
    background-color: var(--bg_color);
    color: var(--white);
}

.cancal {
    color: var(--white);
    position: absolute;
    right: 3%;
    top: 5%;
    font-size: 30px;
    cursor: pointer;
}

.banner_item img {
    width: 100%;
}

.banner_item {
    position: relative;
}

.banner_item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #00000032;
}

.banner_text {
    position: absolute;
    top: 35%;
    left: 0;
    text-align: center;
    width: 100%;
    z-index: 9;
    color: var(--white);
    padding: 0 15%;
}

.head_line {
    font-size: 100px;
    font-weight: 900;
    color: var(--white);
    font-family: "Merriweather Sans", sans-serif;
    font-style: italic;
}

.banner_text p {
    font-size: 20px;
    line-height: 35px;
}

.nextarrow {
    position: absolute;
    right: 5%;
    top: 50%;
    color: var(--white);
    font-size: 30px;
    cursor: pointer;
}

.prevarrow {
    position: absolute;
    left: 5%;
    top: 50%;
    color: var(--white);
    font-size: 30px;
    z-index: 9;
    cursor: pointer;
}

.nav_right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.all_btn {
    background: var(--bg_color);
    padding: 13px 40px;
    color: hsl(0, 0%, 100%);
    font-size: 16px;
    position: relative;
    transition: 0.25s ease-in-out;
    border: none;
    z-index: 2;
    overflow: hidden;
    border-radius: 5px;
}

.all_btn:before {
    content: "";
    width: 0%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--bg_color_2);
    transition: 0.5s ease-in-out;
}

.all_btn span {
    position: relative;
    z-index: 2;
}

.all_btn:hover:before {
    width: 100%;
}


.top_details {
    background-color: var(--bg_color);
}

.socal_media a {
    color: var(--bg_color);
    background-color: var(--white);
    padding: 3px 6px;
}

.top_details p {
    margin-bottom: 0;
    color: var(--white);
}

.small_head {
    display: block;
    font-size: 22px;
    color: var(--bg_color);
    font-weight: 600;
}

.big_head {
    font-size: 30px;
    font-weight: 600;
    display: block;
}

.main_head {
    padding: 0 20%;
}

.ser_item {
    position: relative;
    margin: 5px;
}

.ser_text {
    position: absolute;
    bottom: 0;
    color: var(--white);
    font-size: 20px;
    width: 100%;
    text-align: center;
    padding: 20px;
    z-index: 2;
    transition: ease-in-out .3s;
}

.ser_item a::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.486) 100%);
}

.ser_item:hover .ser_text {
    bottom: 10%;
}

.service {
    background-color: #f5f5f5;
    padding: 60px 0;
}

.hiring .main_head {
    padding: 0;
    margin-bottom: 10px;
}

.hiring_text {
    padding: 30px 0;
}



.video-right-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-vedio-button {
    display: flex;
    justify-content: center;
}

.cta-vedio-button a {
    position: relative;
    background-color: var(--bg_color_2);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.cta-vedio-button a i.fas.fa-play {
    color: #ffffff;
    font-size: 28px;
}

.cta-vedio-button a::before {
    position: absolute;
    content: '';
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 2px dashed var(--bg_color_2);
}

.cta-vedio-button a:after {
    content: '';
    position: absolute;
    border: 30px solid var(--bg_color_2);
    border-radius: 50%;
    top: -20px;
    left: -20px;
    bottom: -20px;
    right: -20px;
    animation: cta-anim 1.5s linear infinite;
    opacity: 0;
}

@keyframes cta-anim {
    0% {
        transform: scale(.5);
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(.9);
    }

}

.videos {
    background-attachment: fixed;
    padding: 15% 0;
    background-size: cover;
    position: relative;
    z-index: 9;
}

.videos::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #0000009e;
    z-index: -1;
}

.why_choose {
    background-color: #f5f5f5;
    padding: 60px 0;
}

.why_choose .icon img {
    width: 50px;
}

.why_choose .icon {
    box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.08);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    background-color: var(--white);
    position: relative;

}

.why_head {
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.why_choose .num {
    position: absolute;
    right: 0;
    top: 10%;
    background-color: var(--bg_color);
    color: var(--white);
    width: 27px;
    height: 27px;
    line-height: 27px;
    border-radius: 50%;
    font-weight: 600;
    font-size: 13px;
}


.testimonial {
    padding: 50px 0;
    position: relative;
}

.testimonial::after {
    content: "";
    width: 60%;
    height: 94%;
    position: absolute;
    left: 0;
    top: 0%;
    background-color: #f3f3f3;
    clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
}

.reviews {
    padding: 0 70px;
}

.name_box img {
    border-radius: 50%;
    width: 80px;
}

.name_box .name {
    display: block;
    font-size: 20px;
    font-weight: 600;
}

.stars {
    width: 100px;
}

.test_bg {
    position: relative;
    z-index: 9;
    padding-right: 80px;
}

.testimonial .main_head {
    padding: 0;
}





.list-style-three a {
    display: block;
    color: var(--white);
}

.list-style-three strong {
    display: block;
    color: #bebebe;
}

.list-style-three li {
    position: relative;
    margin-bottom: 15px;
    color: var(--white);
    font-size: 17px;
    padding-left: 46px;
    padding-bottom: 12px;
    border-bottom: 1px solid #686868;
}

.list-style-three li i {
    position: absolute;
    left: 0;
    color: var(--white);
    font-size: 19px;
}

.upper-box {
    padding: 54px 55px 38px 28px;
    background-color: var(--bg_color);
    border-radius: 5px;
}

.upper-box .big_head {
    color: var(--white);
    margin-bottom: 30px;
}

.contact form input,
textarea,
select {
    width: 100%;
    display: block;
    line-height: 28px;
    padding: 10px 0px;
    color: #848484;
    font-size: 16px;
    border: none;
    outline: none;
    border-bottom: 1px solid #cfcfcf;
    margin-bottom: 20px;
}

.upper-box .socal_media a {
    color: var(--bg_color);
    font-size: 20px;
    padding: 10px 11px;
}

.map .main_head {
    padding: 0 0;
}

footer {
    background-color: #f5f5f5;
    padding-top: 40px;
}

footer ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 30px;
    padding: 20px 0;
    margin: 25px 0;
    border-top: 1px solid #c4c4c4;
    border-bottom: 1px solid #c4c4c4;
}

footer ul li a {
    color: var(--black);
}

footer ul li a:hover {
    color: var(--bg_color);
    text-decoration: underline;
}

.address {
    text-align: left;
}

.address span {
    display: block;
    color: #767676;
}

.address a {
    color: #000;
}

.address p {
    color: var(--black);
}

.copy_right {
    padding: 18px 0;
    border-top: 1px solid #c4c4c4;
    margin-top: 50px;
}

.copy_right p {
    margin-bottom: 0;
    color: #3b3b3b;
}

.copy_right p a {
    color: #3b3b3b;
}









.inner_text {
    position: absolute;
    bottom: 30%;
    width: 100%;
    z-index: 9;
    color: var(--white);
    text-align: center;
    padding: 0 10px;
}

.ab_item {
    width: 47%;
    float: left;
    padding-right: 30px;
}

.share-btn-box ul {
    display: flex;
    gap: 8px;
}

.share-btn-box ul button {
    border: none;
    background-color: var(--bg_color);
    color: var(--white);
    padding: 7px 10px;
    border-radius: 3px;
}


.inner_header img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.inner_header {
    position: relative;
}

.inner_header::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #000000a8;
}

.brade_crom a {
    color: #fff;
}

.what-app {
    position: fixed;
    z-index: 99;
}

.btn-whatsapp-pulse-border {
    bottom: 30px;
    right: 20px;
    animation-play-state: paused;
}

.marcket-plase a {
    display: block;
    margin-bottom: 10px;
}

.back-to-top {
    background: #fff;
    position: fixed;
    right: 1%;
    bottom: 3%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    transition: ease-in-out .5s;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(0);
}

.back-to-top.scroll_show {
    transform: scale(1);
    bottom: 3%;
}

.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 30px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.btn-whatsapp-pulse-border::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 20px;
    border: 5px solid #25d366;
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.what-app i {
    font-size: 38px;
    color: #fff;
}

@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }

    75% {
        padding: 50px;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}



@media only screen and (max-width: 991px) {
    .nab_btn {
        display: none;
    }

    .upper-box {
        margin-bottom: 20px;
    }
}


@media only screen and (max-width: 780px) {
    .navbar_nav {
        position: absolute;
        left: -100%;
        top: 0;
        background-color: #000;
        width: 50%;
        height: 100vh;
        overflow: auto;
        transition: ease-in-out 0.5s;
        padding-top: 20px;
    }

    .navbar_nav.show_nav {
        left: 0;
    }

    .navbar_nav .nab_flex {
        flex-direction: column;
    }

    .nav_close {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        background-color: #fff;
        padding: 5px 11px;
        font-weight: 900;
        z-index: 99;
    }

    .toggle {
        display: block;
    }

    .dropdown {
        position: absolute;
        width: 100%;
        top: 100%;
        left: -100%;
        background-color: #000;
        z-index: 99;
        padding-top: 20px;
        display: block;
        background-color: #fff;
        overflow: auto;
    }

    .navbar_nav .dropdown a {
        color: #000;
    }

    .dropdown_btn {
        background-color: #fff;
        color: #000;
        padding: 4px 8px;
    }

    .dropdown_btn_show i {
        transform: rotate(180deg);
        transition: ease-in-out .5s;
    }

    .show_dropdown {
        left: 0;
    }

    .navbar_nav ul li {
        padding: 12px 20px;
        border-bottom: 1px solid #2e2d2d;
    }

    .navbar_nav ul a {
        color: var(--white);
    }

}

@media only screen and (max-width: 767px) {
    .testimonial::after {
        display: none;
    }

    .my {
        margin: 30px 0;
    }

    .ab_item {
        width: 100%;
        float: left;
        padding-right: 0px;
    }
    .ab_item{
        margin-bottom: 30px;
    }
}


@media only screen and (max-width: 600px) {
    .main_head {
        padding: 0 0%;
    }

    .big_head {
        font-size: 22px;
    }

    .small_head {
        font-size: 18px;
    }

    .top_details p {
        display: none;
    }

    .navbar_nav {
        width: 100%;
    }

    .logo img {
        width: 84px;
    }

    .reviews {
        padding: 0 10px;
    }

    .ser_item img {
        width: 100%;
    }
    .inner_header img {
        height: 200px;
    }
    .inner_hrad{
        font-size: 23px;
    }
}