/*Google Fonts Here*/

@import url("https://fonts.googleapis.com/css2?family=Forum&family=Overlock:wght@400;700;900&display=swap");

/*Google Fonts Here*/


/*font-family: 'Forum', cursive;
font-family: 'Overlock', cursive;*/


/*Color Variable*/

:root {
    --primary: #1b2675;
    --red: #f90708;
    --secondary: #303030;
}


/*Color Variable*/

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    font-family: "Overlock", cursive;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Forum", cursive;
    line-height: 1;
    margin-bottom: 0;
}

p {
    font-family: "Overlock", cursive;
    margin-bottom: 0;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

li {
    display: inline;
}

a,
a:hover {
    text-decoration: none;
}


/*--------------- top_btn ---------------*/

.backToTop {
    background: #3051e3;
    width: 5rem;
    height: 5rem;
    text-align: center;
    font-size: 2rem;
    color: #fff;
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    display: none;
    z-index: 55;
    cursor: pointer;
}

.backToTop i {
    display: inline-block;
    line-height: 6rem;
}

.backToTop:hover {
    background: #4600f1;
}


/*--------------- top_btn ---------------*/


/*---------------- Header ----------------*/

.header {
    padding: 1rem 0;
    position: relative;
    transition: .5s;
}

.navbar-brand img {
    width: 140px;
    border-radius: 10px;
}

.header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #0d1653;
    z-index: 999;
}

.header.sticky .nav-item .nav-link {
    color: #fff !important;
}

.header .navbar {
    padding: 0;
}

.header .nav-item {
    margin-left: 3rem;
    position: relative;
}

.drop_down {
    position: absolute;
    width: 200px;
    background: #fff;
    box-shadow: 0px 5px 8px rgb(0 0 0 / 16%);
    padding: 10px;
    z-index: 999;
    top: 100%;
    right: 0;
    opacity: 0;
    transition: 0.3s;
    visibility: hidden;
    border-radius: 10px;
}

.drop_down li a {
    font-size: 16px;
    width: 100%;
    display: block;
    color: #08254a;
    font-weight: 600;
    padding: 10px;
    line-height: 1;
}

.header .nav-item:hover .drop_down {
    opacity: 1;
    visibility: visible;
    top: 130%;
    transition: 0.3s;
}

.header .nav-item .nav-link {
    font-family: "Overlock", cursive;
    font-size: 2rem;
    color: #333333 !important;
    padding: 0;
    font-style: italic;
    font-weight: 600;
    text-transform: capitalize;
}

.header .nav-item .nav-link i {
    background: #08254a;
    width: 2rem;
    height: 2rem;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 2rem;
    font-size: 1rem;
    margin-left: 1rem;
}

.header .nav-item .nav-link.active i {
    background: #f22613;
}


/*---------------- Header ----------------*/


/*------------------wrapper------------------*/

.wrapper {
    background: url(../images/background.jpg);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    padding: 22rem 0;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.background_overley {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
}

section.wrapper::before {
    background: rgb(2 120 189 / 80%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    z-index: -1;
}

.wrapper_content h1 {
    font-family: "Overlock", cursive;
    font-size: 5rem;
    font-weight: 700;
    color: #fff;
    font-style: italic;
    line-height: 6rem;
    text-transform: uppercase;
}

.wrapper_shape {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    text-align: end;
}

.wrapper_shape img {
    width: 100%;
    height: 70rem;
}

.wrapper_call {
    position: absolute;
    right: 78px;
    display: flex;
    align-items: center;
}

.icon {
    background: #fff;
    width: 5rem;
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 3rem;
    animation: drops 1s linear infinite;
}

@keyframes drops {
    0% {
        box-shadow: 0px 0px 0px 0px rgb(255 255 255 / 50%), 0px 0px 0px 10px rgb(255 255 255 / 50%), 0px 0px 0px 20px rgb(255 255 255 / 50%);
    }
    100% {
        box-shadow: 0px 0px 0px 10px rgb(255 255 255 / 50%), 0px 0px 0px 20px rgb(255 255 255 / 50%), 0px 0px 0px 30px rgb(255 255 255 / 0);
    }
}

.icon img {
    width: 60%;
}

.info h5 {
    font-family: "Overlock", cursive;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    font-style: italic;
    text-transform: capitalize;
    line-height: 1;
    margin-bottom: 1rem;
}

.info a {
    font-family: "Overlock", cursive;
    font-size: 1.8rem;
    font-weight: 500;
    color: #fff;
    font-style: italic;
    text-transform: capitalize;
    line-height: 1;
}

.social ul {
    position: absolute;
    right: -110px;
    top: 50%;
    transform: translateY(-50%) rotate(270deg);
}

.social ul li {
    margin-right: 3rem;
}

.social ul li a {
    font-family: "Overlock", cursive;
    color: #fff;
    font-size: 1.8rem;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url(../images/wrapper_wave.png);
    background-size: 1356px 100px;
}

.wave.wave1 {
    animation: animate 30s linear infinite;
    z-index: 1000;
    opacity: 1;
    animation-delay: 0s;
    bottom: -0.2rem;
}

.wave.wave2 {
    animation: animate2 15s linear infinite;
    z-index: 999;
    opacity: 0.5;
    animation-delay: -5s;
    bottom: 10px;
}

.wave.wave3 {
    animation: animate3 15s linear infinite;
    z-index: 998;
    opacity: 0.2;
    animation-delay: -2s;
    bottom: 15px;
}

.wave.wave4 {
    animation: animate4 5s linear infinite;
    z-index: 997;
    opacity: 0.7;
    animation-delay: -5s;
    bottom: 20px;
}

@keyframes animate {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: 1356px;
    }
}

@keyframes animate2 {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: -1356px;
    }
}

@keyframes animate3 {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: 1356px;
    }
}


/*------------------wrapper------------------*/


/*--------------- about_area ---------------*/

.about_area {
    padding: 5rem 0 8rem;
}

.single_about {
    position: relative;
}

.img_box {
    background: #1b2675;
    padding: 2rem;
    width: 20rem;
    height: 20rem;
    border-radius: 0.5rem;
    position: absolute;
    top: -10px;
    left: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.img_box::before {
    content: "";
    border: 0.1rem solid #fff;
    width: 80%;
    height: 80%;
    position: absolute;
    border-radius: 0.4rem;
}

.img_box p {
    font-family: "Overlock", cursive;
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.img_box h4 {
    font-family: "Overlock", cursive;
    font-size: 2.2rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.img_box h5 {
    font-family: "Overlock", cursive;
    font-size: 2rem;
    color: #fff;
    font-weight: 400;
}

.about_content {
    padding-left: 9rem;
}

.about_content h2 {
    font-size: 4.5rem;
    color: #1b2675;
    line-height: 4.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.about_content h2 span {
    color: #f90708;
}

.about_content p {
    color: #000000;
    font-size: 1.8rem;
    font-weight: 400;
    font-style: italic;
    line-height: 3rem;
    margin-bottom: 2rem;
}


/*--------------- about_area ---------------*/


/*-------------- work_section --------------*/

.work_section {
    background: #f6f7fc;
    padding: 7rem 0 28rem;
    position: relative;
}

.work_section::before {
    content: "";
    background: url(../images/work_before_shape.png);
    width: 100%;
    height: 22rem;
    position: absolute;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-repeat: no-repeat;
}

.custom_title h2 {
    font-size: 4.2rem;
    color: #1b2675;
    font-weight: 700;
    position: relative;
}

.custom_title h2 span {
    color: #f90708;
}

.custom_title h2::before {
    content: "";
    background: #f90708;
    width: 9rem;
    height: 0.4rem;
    border-radius: 1rem;
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
}

.work_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 10rem;
}

.single_grid {
    position: relative;
}

.work_img {
    margin-bottom: 3rem;
}

.work_img img {
    width: 100%;
}

.work_content h3 {
    font-family: "Overlock", cursive;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.work_content p {
    font-family: "Overlock", cursive;
    font-size: 1.6rem;
    color: #000;
}

.arrow_img {
    position: absolute;
    top: 50%;
    right: -175px;
    transform: translateY(-50%);
}

.arrow_img img {
    width: 50%;
}


/*-------------- work_section --------------*/


/*----------------- service -----------------*/

.service_section {
    position: relative;
    padding-bottom: 15rem;
}

.service_section .custom_title {
    padding-bottom: 10rem;
}

.service_content ul li {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
}

.service_content ul li img {
    width: 5rem;
    margin-right: 1.5rem;
}

.service_content ul li p {
    font-family: "Overlock", cursive;
    font-size: 1.8rem;
    color: #3a3a3a;
    font-weight: 700;
}

.service_left_img {
    position: absolute;
    bottom: 0px;
    z-index: 5;
}

.service_left_img img {
    width: 50%;
}


/*----------------- service -----------------*/


/*--------------- get_section ---------------*/

.get_section {
    background: url(../images/get_img.png);
    padding: 5rem 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.get_grid {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.single_get {
    position: relative;
}

.get_line img {
    width: 50%;
}

.single_get p {
    font-family: "Overlock", cursive;
    font-size: 3rem;
    color: #fff;
    line-height: 4.5rem;
}

.single_btn {
    border: 1px solid #d80303;
    padding: 0.8rem 1rem;
    border-radius: 2rem;
}

.single_btn a {
    font-family: "Overlock", cursive;
    color: #fff;
    font-size: 1.8rem;
    background: #d80303;
    padding: 1.5rem 2.5rem;
    border-radius: 0.8rem;
    display: inline-flex;
    align-items: center;
    font-weight: 700;
}

.single_btn a img {
    width: 3rem;
    filter: brightness(0) invert(1);
    margin-right: 1rem;
}


/*--------------- get_section ---------------*/


/*--------------- testimonial ---------------*/

.testimonial {
    padding: 12rem 0 20rem;
    position: relative;
}

.testimonial_img {
    position: absolute;
    top: -157px;
}

.testimonial_img img {
    width: 50%;
}

.testimonial .custom_title {
    margin-bottom: 8rem;
}

.testimonial-slide {
    position: relative;
    z-index: 99;
}

.testimonial_items img {
    display: block;
    width: 15rem;
    height: 15rem;
    border-radius: 50%;
    object-fit: cover;
    opacity: 0.5;
    margin: 0px auto;
    transition: 0.5s;
}

.slider_content_item {
    margin-top: 6rem;
    position: relative;
}

.slick-slide {
    display: none;
    float: left;
    height: auto;
    min-height: 1px;
}

.testimonial_items {
    height: auto !important;
    position: relative;
}

.slider_content_item h4 {
    font-family: "Overlock", cursive;
    text-align: center;
    color: #ff2122;
    font-size: 1.8rem;
    font-weight: 300;
    margin-top: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    font-style: italic;
}

.slider_content_item p {
    font-family: "Overlock", cursive;
    text-align: center;
    font-size: 1.6rem;
    color: #000;
    font-weight: 200;
    line-height: 3rem;
    padding: 0 10rem;
}

.testimonial-img-box {
    margin: 0px auto;
    display: table;
    margin-bottom: 2rem;
}

.testimonial .owl-dots {
    text-align: center;
    padding-top: 3rem;
}

.testimonial .owl-dots button.owl-dot {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: inline-block;
    background: #afd28a;
    margin: 0 0.3rem;
}

.testimonial .owl-dots button.owl-dot.active {
    background-color: #ffffff;
}


/*-------------------------custom dots---------------------*/

.slick-dots {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 1rem 0;
    list-style-type: none;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 15px;
    height: 20px;
    padding: 0;
    cursor: pointer;
    margin: 0px 3px;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 15px;
    height: 15px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: #afd28a;
    border-radius: 50%;
}

.slick-dots li.slick-active button {
    background-color: #fff;
    border-radius: 50%;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding-bottom: 10rem;
}

.testimonial .slider_thumb {
    width: 100%;
}

.slider_thumb .testimonial_items.slick-slide.slick-current img {
    opacity: 1 !important;
    transition: 0.5s;
    transform: scale(1.2);
    text-align: center;
}


/* .slider_thumb .testimonial_items.slick-slide.slick-active.slick-center {
    transform: scale(1.2);
    opacity: 1;
    transition: .5s;
} */

.slider_thumb .slick-list {
    padding: 22px 0px !important;
}

ul.star {
    position: absolute;
    bottom: -8rem;
    left: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    width: 100%;
}

ul.star li i {
    color: #ffbc00;
    font-size: 2rem;
}


/*--------------- testimonial ---------------*/


/*----------------------Contact----------------------*/

.contact_section {
    background-image: linear-gradient(to right, rgb(0 0 0 / 96%), rgb(0 0 0 / 73%)), url(../images/contact_bg.jpg);
    padding: 10rem 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.privacy_section {
    background-image: linear-gradient(to right, rgb(0 0 0 / 96%), rgb(0 0 0 / 73%)), url(../images/privacy_bg.jpg);
    padding: 10rem 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.breadcrumb {
    background: transparent;
    padding: 0 1.5rem;
    margin-top: 3rem;
    align-items: center;
}

.breadcrumb li {
    margin-right: 3rem;
    position: relative;
}

.breadcrumb li::before {
    content: "";
    width: 0.2rem;
    height: 2rem;
    background: #fff;
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
}

.breadcrumb li:last-child::before {
    display: none;
}

.breadcrumb li a {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    color: #fff;
    text-transform: capitalize;
}

.breadcrumb li a.active {
    color: #f22613;
}

.breadcrumb li a i {
    font-size: 2rem;
    margin-right: 0.7rem;
}

h2.title {
    color: #fff;
    font-size: 5rem;
    font-family: 'Poppins';
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 1.5rem;
}

.contact_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #f7f2ff;
}

.grid_contact_itmes {
    position: relative;
    padding: 10rem 0;
}

.grid_contact_itmes::before {
    content: '';
    width: .1rem;
    height: 83%;
    background: linear-gradient(45deg, transparent, #bfbfbf, transparent);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.grid_contact_itmes:last-child::before {
    display: none;
}

.contact_content i {
    width: 6rem;
    height: 6rem;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #ff1111, #d23256);
    color: #fff;
    line-height: 6rem;
    border-radius: 50%;
    margin-bottom: 2rem;
}

.contact_content i.fas.fa-phone {
    transform: rotate(90deg);
}

.contact_content h4 {
    font-family: "Poppins", sans-serif;
    font-size: 1.8rem;
    text-transform: capitalize;
    margin-bottom: 1.5rem;
}

.contact_content p,
.contact_content a {
    font-family: "Poppins", sans-serif;
    color: #787878;
    font-size: 1.8rem;
}

.our_loaction_form {
    padding: 10rem 0 25rem;
}

.loc_title {
    font-family: "Poppins", sans-serif;
    color: #000;
    font-size: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.loc_title::before {
    content: '';
    background: #f22613;
    border-radius: .3rem;
    width: 5rem;
    height: .2rem;
    position: absolute;
    bottom: -11px;
}

.privacy_area {
    background: #efefef;
    padding: 10rem 0 20rem;
}

.privacy_content p {
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    color: #787878;
    margin-bottom: 2rem;
}

.privacy_content h4 {
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 1.5rem;
}

.privacy_content ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.privacy_content ul li {
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    color: #787878;
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 2.4rem;
    word-break: break-all;
}

.privacy_content ul li::before {
    content: '\f192';
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    top: 0;
    left: -25px;
}

ul.list li {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
}

ul.list li::before {
    display: none;
}

.list2 li {
    position: relative;
    padding-left: 5rem;
    display: block;
    font-weight: 400 !important;
    line-height: 2rem !important;
}

.list2 li::before {
    position: relative;
    left: 20px !important;
}

.our_location {
    height: 60rem;
}


/*----------------------Contact----------------------*/


/*------------------ footer ------------------*/

.footer {
    background: #0d2178;
    padding: 10rem 0;
    position: relative;
}

.footer::before {
    content: "";
    background: url(../images/testimonial_shape.png);
    width: 100%;
    height: 25rem;
    position: absolute;
    top: -244px;
    left: 0;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.footer_address ul li {
    display: flex;
    align-items: center;
}

.footer_address ul li .footer_icon img {
    width: 4rem;
    margin-right: 2rem;
}

.footer_address ul li .content h5 {
    font-family: "Overlock", cursive;
    font-size: 1.5rem;
    color: #fff;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 1rem;
}

.footer_address ul li .content p {
    font-family: "Overlock", cursive;
    font-size: 2rem;
    color: #fff;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
}

.social_link {
    text-align: center;
    padding-top: 5rem;
}

.social_link a {
    background: #fff;
    width: 5rem;
    height: 5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 0.5rem;
    transition: 0.5s;
}

.social_link a:hover {
    transform: translateY(-1rem);
}

.social_link a i {
    font-size: 2.2rem;
    color: #0d1653;
}


/*------------------ footer ------------------*/


/*---------------- CopyRight ----------------*/

.copyright {
    background: #0d1653;
    padding: 2rem 1rem;
    text-align: center;
}

.copyright p {
    font-family: "Overlock", cursive;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
}

.copyright p a {
    color: #fa2627;
    text-transform: capitalize;
    padding: 0 .5rem;
}


/*---------------- CopyRight ----------------*/