* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg_color: #ff6809;
    --bg_color_2: #ff65c3;
    --white: #fff;
    --black: #000;
}

body {
    position: relative;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    transition: ease-in-out .3s;
}

.img {
    overflow: hidden;
    position: relative;
}

.img:hover::after {
    transition: all 400ms linear;
    visibility: visible;
    animation: fadeInUp 1s;
}

.img:after {
    background: rgba(255, 255, 255, 0.369);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    z-index: 9;
}

@keyframes fadeInUp {
    from {
        opacity: 1;
        height: 0;
    }

    to {
        opacity: 0;
        height: 100%;
    }
}

@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: 140px;
}

.logo {
    position: relative;
    padding: 0 6%;
    margin-top: -38px;
}

.logo::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    border-right: 4px solid var(--bg_color);
    border-top-right-radius: 100px;
}

.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;
}

.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;
}

.nav_right .all_btn {
    background-color: var(--bg_color);
    color: var(--white);
    padding: 26px 63px;
    font-size: 18px;
}

.socal_media a {
    font-size: 14px;
    color: #54595f;
    padding: 0 2px;

}

.top_details {
    text-align: center;
    padding: 5px 15px;
    position: relative;
}

.top_details::after {
    content: "";
    width: 79%;
    position: absolute;
    bottom: 0;
    right: 0;
    border-bottom: 1px solid #f0f0f0;
}

.top_details p {
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 600;
}

.top_details span {
    font-weight: 700;
    color: var(--bg_color);
}

.top_details a {
    color: #54595f;
    font-size: 15px;
    font-weight: 600;
}

.head_call i {
    margin-right: 10px;
    color: var(--bg_color);
}

.ab_img {
    position: relative;
    float: left;
    width: 50%;
    padding-right: 100px;
    padding-left: 40px;
    margin-right: 40px;
    margin-bottom: 10px;
}

.ab_img img {
    width: 100%;
    border-radius: 15px;
}

.img_2 {
    position: absolute;
    right: 0;
    top: 20%;
    border: 4px solid #fff;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.experience {
    position: absolute;
    left: -50px;
    bottom: 60px;
    min-width: 220px;
    background: var(--bg_color);
    padding: 20px 30px;
    border-radius: 10px 10px 0 10px;
    -webkit-box-shadow: 0 15px 60px rgba(68, 67, 67, 0.08);
    box-shadow: 0 15px 60px rgba(68, 67, 67, 0.08);
    animation: bounce-y 10s infinite linear;
}

.experience::before {
    position: absolute;
    right: -20px;
    bottom: 0;
    border-left: 20px solid var(--bg_color);
    border-top: 20px solid transparent;
    content: "";
}

.experience i {
    position: absolute;
    left: 0px;
    top: 3px;
    font-size: 50px;
    color: #ffffff;

}

.experience .inner {
    position: relative;
    padding-left: 75px;
}

.experience .text {
    position: relative;
    font-size: 16px;
    line-height: 20px;
    color: #ffffff;
}

.experience strong {
    position: relative;
    margin-top: 7px;
    font-size: 24px;
    line-height: 1.2em;
    color: #ffffff;
    font-weight: 700;
    display: block;
}

@keyframes bounce-y {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.ab_home {
    position: relative;
    display: flex;
}

.ab_home::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background-repeat: no-repeat;
    background-position: center right;
    background-image: url(../img/shape.png);
    z-index: -1;
}

.big_head {
    display: block;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

.small_head {
    position: relative;
    padding-left: 25px;
    font-weight: 600;
    color: var(--bg_color);
    font-size: 20px;
}

.small_head:before {
    position: absolute;
    left: 0;
    top: 0;
    letter-spacing: 0.2em;
    content: "//";
    color: var(--bg_color);
}

.bg-pattern {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 70%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.whychose {
    position: relative;
    padding: 101px 0 50px 6%;
    overflow: hidden;
}

.feature-block .inner-box {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding-left: 90px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.feature-block .content {
    padding-bottom: 30px;
    border-bottom: 1px solid #dcdcdd;
    margin-bottom: 15px;
}

.feature-block .icon {
    position: absolute;
    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;
    left: 0;
    top: 5px;
    height: 58px;
    width: 58px;
    font-size: 20px;
    background-color: var(--bg_color);
    color: #ffffff;
    border-radius: 50px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.feature-block .title {
    display: block;
    color: var(--bg_color);
    font-weight: 600;
    margin-bottom: 18px;
    font-size: 25px;
}

.feature-block .text {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 0;
}

.image-box img {
    height: 100%;
}

.pro_item {
    position: relative;
    overflow: hidden;
    margin: 10px;
}

.pro_item a {
    color: #000;
}

.pro_head {
    position: absolute;
    bottom: 10px;
    left: 0;
    padding: 10px 10px;
    font-size: 18px;
    background-color: #fff;
    font-weight: 600;
    border-radius: 0 10px 10px 0;
    transition: ease-in-out .3s;
}

.pro_head:hover {
    background-color: var(--bg_color);
    color: var(--white);
}

.videos {
    position: relative;
    overflow: hidden;
    padding: 40px 0 100px;
}

.sppb-img-responsive {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.video_img {
    border: 1px solid var(--bg_color);
    padding: 25px;
    margin: 0 35px;
    position: relative;
}

.video_img .img::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, rgba(23, 23, 23, 0) 0%, rgb(0 0 0 / 36%) 0%, rgba(4, 97, 193, 0.5882352941) 75%, #ff7029 100%);
}


.video-right-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0%;
    z-index: 99;
}

.cta-vedio-button {
    display: flex;
    justify-content: center;
}

.cta-vedio-button a {
    position: relative;
    background-color: var(--bg_color);
    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);
}

.cta-vedio-button a:after {
    content: '';
    position: absolute;
    border: 30px solid var(--bg_color);
    border-radius: 50%;
    top: -20px;
    left: -20px;
    bottom: -20px;
    right: -20px;
    animation: cta-anim 2s linear infinite;
    opacity: 0;
}

@keyframes cta-anim {
    0% {
        transform: scale(.5);
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }

}


.offering_box {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #e2e2e2;
    padding: 45px 40px 50px 50px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    border-radius: 10px;
    overflow: hidden;
}

.offering_box::before {
    position: absolute;
    width: 124px;
    height: 121px;
    left: 0;
    top: 0;
    background-image: url(../img/dots.png);
    content: "";
}

.offering_box span {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    display: block;
}

.offering_box .icon-box {
    position: absolute;
    right: -52px;
    bottom: -52px;
    height: 180px;
    width: 180px;
    background: #f3f3f3;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    padding: 40px 50px;
    border-radius: 50%;
    transition: all 300ms ease;
}

.offering_box .icon-box img {
    width: 150px;
}

.offering_box p {
    position: relative;
    z-index: 9;
}

.offering_box:hover .icon-box {
    background: var(--bg_color);
}

.offering_box:hover {
    transform: translateY(-15px);
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
}

.offering {
    position: relative;
    padding: 60px 0;
}

.patter_bg {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    opacity: .1;
    animation: bounce-y 10s infinite linear;
}

.testmoinal {
    position: relative;
    padding: 60px 0;
    padding-left: 6%;
}

.patter_bg_test {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: .2;
    animation: bounce-y 10s infinite linear;
}

.test_img_box {
    display: flex;
    align-items: end;
    gap: 30px;
    position: absolute;
    top: 85%;
}

.test_img_box .name {
    display: block;
    font-size: 22px;
    font-weight: 600;
}

.test_box {
    border-left: 3.5px solid var(--bg_color);
    padding: 40px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    position: relative;
    background-color: var(--white);
}

.test_item {
    margin: 10px;
    margin-bottom: 80px;
}

.quotes {
    position: absolute;
    right: 6%;
    bottom: 6%;
}

.count_bg {
    padding: 80px 0;
}

.count-area-content .img {
    border: 1px solid var(--bg_color);
    border-radius: 50%;
    background-color: #f0f0f0;
    padding: 10px;
    width: 130px;
    height: 130px;
    line-height: 100px;
    margin: auto;
}

.count-area-content .img img {
    width: 60px;
}

.coount_num {
    font-size: 60px;
    font-weight: bold;
    text-align: center;
}

.count-title {
    font-size: 20px;
    font-weight: 600;
}

.count_bg {
    background-color: #ffffffdf;
}

.transofrm_bg {
    padding: 130px 0 65px;
    background: linear-gradient(180deg, rgb(0 0 0 / 30%) 0%, #111 100%) transparent;

}

.transofrm_box {
    max-width: 70%;
    margin: auto;
    color: var(--white);
    margin-bottom: 110px;
}

.transofrm_box span {
    display: block;
    font-size: 60px;
    font-weight: bold;
}

.contact_head {
    display: block;
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 10px;
    position: relative;
    color: var(--bg_color);
}

.contact_head::after {
    content: "";
    width: 15%;
    height: 1.5px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--bg_color);
}

.contact input,
.contact select,
.contact textarea {
    background-color: transparent;
    width: 100%;
    margin-bottom: 15px;
    color: var(--d-text-color);
    border-style: solid;
    border-width: 1px;
    border-color: rgb(212, 212, 212);
    padding: 15px 20px;
    border-radius: 10px;
}

.contact_details {
    background-color: var(--black);
    color: var(--white);
    padding: 60px 80px;
    text-align: center;
    position: relative;
}

.contact_details::after {
    content: "";
    width: 35px;
    height: 55%;
    position: absolute;
    top: 20%;
    left: 0;
    background-color: var(--bg_color);
    border-radius: 0 30px 30px 0;
}

.contact_details::before {
    content: "";
    width: 35px;
    height: 55%;
    position: absolute;
    top: 20%;
    right: 0;
    background-color: var(--bg_color);
    border-radius: 30px 0 0 30px;
}

.contact_details li {
    text-align: left;
    margin: 40px 0;
    padding-bottom: 30px;
    display: flex;
    align-items: baseline;
    border-bottom: 1px solid #d9d9d958;
    font-size: 18px;
}

.contact_details li a {
    color: var(--white);
}

.information span {
    font-size: 25px;
    font-weight: 600;
}

.contact_details li i {
    margin-right: 30px;

}

.contact .main_head {
    padding: 0 25%;
}


.all_btn {
    background: var(--bg_color);
    padding: 13px 40px;
    color: var(--white);
    font-size: 16px;
    position: relative;
    transition: 0.25s ease-in-out;
    border: none;
    z-index: 2;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: rgba(253, 253, 253, 0.467) 0px 2px 8px 0px;
}

.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%;
}



footer {
    color: var(--white);

}

.foot_bg {
    padding-top: 50px;
    background-color: #0000008e;
}

.foot_logo img {
    width: 120px;
    margin-bottom: 15px;
    background-color: var(--white);
    border-radius: 8px;
    padding: 5px;
}

.foot_logo p {
    font-size: 13px;
}

.foot_head {
    font-size: 25px;
    color: var(--bg_color);
    display: block;
    font-weight: 800;
    margin-bottom: 15px;
}

.foot_nav ul li a {
    color: var(--white);
    display: block;
    margin: 14px 0;
    font-size: 14px;
}

.contact_box {
    margin-bottom: 15px;
}

.contact_box {
    display: flex;
    gap: 8px;
}

.contact_box span {
    display: block;
}

.foot_nav ul {
    max-height: 247px;
    overflow: auto;
}

.foot_contact .contact_box .icon i {
    width: 44px;
    height: 44px;
    color: #fff;
    background: var(--bg_color);
    display: inline-block;
    text-align: center;
    font-size: 16px;
    line-height: 44px;
    margin: 0;
}

.foot_contact .contact_box a {
    color: var(--white);
    font-size: 16px;
}

.foot_contact .contact_box p {
    color: var(--white);
    font-weight: 400;
}

.foot_contact .contact_box span {
    font-size: 14px;
}

.copy_right {
    padding: 18px 0;
    border-top: 1px solid #757575;
    margin-top: 50px;
}

.copy_right p {
    margin-bottom: 0;
    color: var(--white);
}

.copy_right p a {
    color: var(--white);
}







.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: 1200px) {
    .top_details .col-md-3 {
        display: none;
    }

}

@media only screen and (max-width: 991px) {

    .top_details .col-lg-3 {
        display: none;
    }

    .top_details .col-lg-2:nth-child(1) {
        display: none;
    }

    .nab_btn {
        display: none;
    }

    .logo {
        margin-top: 0;
    }

    .logo img {
        width: 103px;
    }

    .ab_img {
        width: 59%
    }

    .img_2.img img {
        height: 195px;
    }

    .transofrm_box span {
        font-size: 40px;
    }

    .contact_details {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 780px) {
    .navbar_nav {
        position: absolute;
        left: -100%;
        top: 0;
        background-color: #000;
        width: 70%;
        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);
    }

    .inner_header img {
        height: 200px;
    }
}


@media only screen and (max-width: 768px) {
    .ab_img {
        width: 100%;
    }

    .small_head {
        font-size: 20px;
    }

    .big_head {
        font-size: 25px;
    }

    .ab_img {
        margin-bottom: 30px;
    }

    .video_img {
        padding: 10px;
        margin: 0 0px;
    }

    .count-area {
        background-position: bottom;
        background-repeat: no-repeat;
    }

    .count_bg {
        padding: 30px 0;
    }

    .coount_num {
        font-size: 35px;
    }

    .count-area-content {
        margin-bottom: 20px;
    }

    .count-title {
        font-size: 16px;
    }

    .transofrm_box {
        max-width: 100%;
        margin-bottom: 60px;
    }

    .contact .main_head {
        padding: 0 0;
    }

    .bg-pattern {
        width: 100%;
    }

    .ab_item {
        width: 100%;
        margin-bottom: 20px;
    }

}

@media only screen and (max-width: 600px) {
    .experience {
        display: none;
    }

    .content-column {
        padding: 0 4%;
    }

    .whychose {
        padding: 40px 0 0px 0%;
        overflow: hidden;
    }

    .my {
        margin: 40px 0;
    }

    .cta-vedio-button a {
        width: 75px;
        height: 75px;
    }

    .cta-vedio-button a i.fas.fa-play {
        font-size: 20px;
    }

    .cta-vedio-button a::before {
        width: 120px;
        height: 120px;
    }

    .videos {
        padding: 28px 0 44px;
    }

    .transofrm_box span {
        font-size: 25px;
    }

    .search {
        padding: 18% 4% 0% 4%;
    }

    .transofrm_bg {
        padding: 40px 0 65px;
    }

    .testmoinal {
        padding-left: 0;
    }

    .contact_details li i {
        margin-right: 9px;
    }

    .contact_details {
        padding: 40px 48px;
    }

    .contact_details::after {
        width: 20px;
    }

    .contact_details::before {
        width: 20px;
    }

    .copy_right {
        margin-top: 10px;
    }

    .contact_details li a {
        font-size: 16px;
    }

    .contact_details li {
        font-size: 16px;
    }

    .count-area-content .img img {
        width: 46px;
    }

    .count-area-content .img {
        width: 100px;
        height: 100px;
        line-height: 70px;
    }

    .top_details .col-lg-2:nth-child(3) {
        display: none;
    }
}

@media only screen and (max-width: 500px) {
    .img_2.img img {
        height: 149px;
    }

    .top_details a {
        font-size: 14px;
    }

    .socal_media {
        justify-content: center;
        padding: 5px 0;
    }

    .ab_img {
        padding-left: 0;
        padding-right: 70px;
    }

    .big_head {
        font-size: 22px;
    }
}