*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'regular';
}
@font-face {
    font-family: 'regular';
    src: url('../font/AstoriaRoman.ttf');
}
@font-face {
    font-family: 'bold';
    src: url('../font/zAstoriaBold.ttf');
}
@font-face {
    font-family: 'cinzel-bold';
    src: url('../font/CinzelDecorative-Bold.ttf');
}
@font-face {
    font-family: 'cinzel-black';
    src: url('../font/CinzelDecorative-Black.ttf');
}
.getstarted {
  --c:  #229091; /* the color*/
  
  box-shadow: 0 0 0 .1em inset var(--c); 
  --_g: linear-gradient(var(--c) 0 0) no-repeat;
  background: 
    var(--_g) calc(var(--_p,0%) - 100%) 0%,
    var(--_g) calc(200% - var(--_p,0%)) 0%,
    var(--_g) calc(var(--_p,0%) - 100%) 100%,
    var(--_g) calc(200% - var(--_p,0%)) 100%;
  background-size: 50.5% calc(var(--_p,0%)/2 + .5%);
  outline-offset: .1em;
  transition: background-size .4s, background-position 0s .4s;
}
.getstarted:hover {
  --_p: 100%;
  transition: background-position .4s, background-size 0s;
}
.getstarted button:active {
  box-shadow: 0 0 9e9q inset #0009; 
  background-color: var(--c);
  color: #fff;
}

.getstarted {
  font-family: system-ui, sans-serif;
  cursor: pointer;
  padding: .1em .6em;
  font-weight: bold;  
  border: none;
}
.link-underline {
    position: relative;
    display: inline-block;
}
.link-underline::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #cde6e6;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}
.link-underline:hover::after,
.link-underline.active::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.link-underline.active {
    font-weight: 700;
    color: #33cccc;
}

img.site-logo {
    width: 85%;
}
img.footer-logo {
    width: 45%;
}

.navbar {
    transition: background-color 0.3s, box-shadow 0.3s;
}
.navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #122727;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
/* hero section */
.hero-bg {
    display: flex;
    background-image: linear-gradient(rgba(4, 9, 30, 0.0), rgba(4, 9, 30, 0.0)), url("../images/hero-bg.png");
    background-position: center;
    background-size: cover;
    color: #fff;
}
.form-bg{
    background-color:  rgba(99, 88, 88, 0.5);
}
/* Our service section styling */
.services-bg, .process-bg, .testimonial-bg {
    background-image: linear-gradient(rgba(4, 9, 30, 0.0), rgba(4, 9, 30, 0.0)), url("../images/our-services-bg.png");
    background-position: center;
    background-size: cover;
}
.card{
    background-color:  rgba(123, 117, 117, 0.5);
    transition: all 0.3s ease;
}
.card-bg, .review-bg{
    background-image: linear-gradient(rgba(4, 9, 30, 0.0), rgba(4, 9, 30, 0.0)), url("../images/card-bg.png");
    background-position: bottom;
    background-size: cover;
}
.card:hover{
    background-color:  #33c5c5;
}
.card:hover .heading{
    color: #33cccc;
}
/* Our Portfolio section styling */
.portfolio-bg, .help-bg, .contact-us {
    background-image: linear-gradient(rgba(4, 9, 30, 0.0), rgba(4, 9, 30, 0.0)), url("../images/our-portfolio-bg.png");
    background-position: center;
    background-size: cover;
}
/* Why Choose Us section styling */
.choose-bg {
    background-image: linear-gradient(rgba(4, 9, 30, 0.0), rgba(4, 9, 30, 0.0)), url("../images/why-choose-usBg.png");
    background-position: top center;
    background-size: cover;
}
.faq-bg {
    background-image: linear-gradient(rgba(4, 9, 30, 0.0), rgba(4, 9, 30, 0.0)), url("../images/faq-bg.png");
    background-position: top center;
    background-size: cover;
}
button.accordion {
    position: relative;
    width: 100%;
    background-color: #e8f2f2;
    border: none;
    outline: none;
    text-align: left;
    padding: 15px 20px;
    font-size: 18px;
    color: #000000;
    cursor: pointer;
    transition: background-color 0.2s linear;
  }
  button.accordion:after {
    position: absolute;
    font-family: FontAwesome;
    content: "\f077";
    font-family: "fontawesome";
    font-size: 18px;
    right: 15px;
    top: 10px;
  }
  button.accordion.is-open:after {
    content: "\f078";
  }
  .accordion-content {
    background-color: #e8f2f2;
    border-left: 1px solid whitesmoke;
    border-right: 1px solid whitesmoke;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-in-out;
  }
  /* this styling for portfolio section */
  .tab-button.active {
    background-color: #4A5568;
    color: white;
  }
  .hidden {
    display: none;
  }
  .hidden {
    display: none;
  }
  .group {
    position: relative;
    overflow: hidden;
  }
  .group img {
    display: block;
    width: 100%;
    height: auto;
  }
  .group-hover\:opacity-100 {
    opacity: 1;
  }
  .group-hover\:translate-y-0 {
    transform: translateY(0);
  }
  .group-hover\:translate-y-full {
    transform: translateY(100%);
  }
  .transition {
    transition: all 0.3s ease-in-out;
  }
  /* portfolio section */
  .porfolio-bg {
    display: flex;
    background-image: linear-gradient(rgba(4, 9, 30, 0.0), rgba(4, 9, 30, 0.0)), url("../images/portfolio-bg.png");
    background-position: center;
    background-size: cover;
    color: #fff;
}
.tab-button {
  position: relative;
  overflow: hidden;
}

.tab-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #132727;
  transition: left 0.3s ease;
  z-index: -1;
}
.tab-button:hover::before {
  left: 0;
}
.tab-button.active {
  background-color: #132727;
  color: white;
  z-index: 1;
}
.tab-button > span {
  position: relative;
  z-index: 1;
}
/* This is for About us Sectoin styling */
.about-bg {
  display: flex;
  background-image: linear-gradient(rgba(4, 9, 30, 0.0), rgba(4, 9, 30, 0.0)), url("../images/about-us-hero.png");
  background-position: center;
  background-size: cover;
  color: #fff;
}
/* This is for Ghost Writing styling */
.ghost-bg {
  display: flex;
  background-image: linear-gradient(rgba(4, 9, 30, 0.0), rgba(4, 9, 30, 0.0)), url("../images/ghost-writing-hero.png");
  background-position: center;
  background-size: cover;
  color: #fff;
}
/* This is for Contact Us Section */
.contact-bg {
  display: flex;
  background-image: linear-gradient(rgba(4, 9, 30, 0.0), rgba(4, 9, 30, 0.0)), url("../images/contact-us-hero.png");
  background-position: center;
  background-size: cover;
  color: #fff;
}
.contact-box {
  --c: #fff; /* text color */
  background: 
    linear-gradient(90deg, #0000 33%, #fff5, #0000 67%) var(--_p,100%)/300% no-repeat,
    #132727; /* background color */
  color: #0000;
  border: none;
  /* transform: perspective(500px) rotateY(calc(20deg*var(--_i,-1))); */
  text-shadow: 
    calc(var(--_i,-1)* 0.08em) -.01em 0   var(--c),
    calc(var(--_i,-1)*-0.08em)  .01em 2px #0004;
  outline-offset: .1em;
  transition: 0.3s;
}
.contact-box:hover,
.contact-box:focus-visible {
  --_p: 0%;
  --_i: 1;
}
.contact-box:active {
  text-shadow: none;
  color: var(--c);
  box-shadow: inset 0 0 9e9q #0005;
  transition: 0s;
}
.contact-box {
  font-family: system-ui, sans-serif;
  font-weight:bold;
  margin: 0;
  cursor: pointer;
}
/* This is for Ghost Writing styling */
.bookEdit-bg {
  display: flex;
  background-image: linear-gradient(rgba(4, 9, 30, 0.0), rgba(4, 9, 30, 0.0)), url("../images/book-editing-hero.png");
  background-position: center;
  background-size: cover;
  color: #fff;
}
/* This is for Publishing Book styling */
.bookPublishing-bg {
  display: flex;
  background-image: linear-gradient(rgba(4, 9, 30, 0.0), rgba(4, 9, 30, 0.0)), url("../images/book-publishing-hero.png");
  background-position: center;
  background-size: cover;
  color: #fff;
}
/* This is for Marketing Book styling */
.bookMarketing-bg {
  display: flex;
  background-image: linear-gradient(rgba(4, 9, 30, 0.0), rgba(4, 9, 30, 0.0)), url("../images/book-marketing-hero.png");
  background-position: center;
  background-size: cover;
  color: #fff;
}
/* This is for Book Cover Design styling */
.bookCover-bg {
  display: flex;
  background-image: linear-gradient(rgba(4, 9, 30, 0.0), rgba(4, 9, 30, 0.0)), url("../images/book-cover-hero.png");
  background-position: center;
  background-size: cover;
  color: #fff;
}
.container-box
{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 40px 0;
}
.container-box .box
{
  position: relative;
  width: 299px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 8px 30px;
  transition: 0.5s;
}
.container-box .box span
{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  pointer-events: none;
}
.container-box .box:hover span:after
{
  bottom: -50px;
  right: 50px;
  width: 100px;
  height: 100px;
  opacity: 1;
}

@keyframes animate
{
  0%, 100%
  {
    transform: translateY(10px);
  }
  
  50%
  {
    transform: translate(-10px);
  }
}
.container-box .box .content
{
  position: relative;
  height: 400px;
  width: 500px;
  padding: 20px;
  left: 0;
  background: #33cccc;
  border-radius: 8px;
  z-index: 1;
  transform: 0.5s;
  color: black;
}
.container-box .box .content h2
{
  text-align: center;
  font-size: 20px;
  color: #fff;
  margin-top: 15px;
  margin-bottom: 10px;
}
/* Footer Styling */
.footer-bg {
    display: flex;
    background-image: linear-gradient(rgba(4, 9, 30, 0.0), rgba(4, 9, 30, 0.0)), url("../images/footer-bg.png");
    background-position: center;
    background-size: cover;
    color: #fff;
}
p.mt-4.\#adcdcd {
    margin-top: 20px!important;
    margin-bottom: 20px!important;
}
p.text-xs.text-gray-500 {
    margin-top: 20px!important;
}
/* prics section css */
@font-face {
    font-family: 'ibrand-regular';
    src: url('../fonts/ibrand.otf') format('truetype');   
}


span, button, p, a, li, input, textarea{
    font-family: "Poppins", sans-serif !important;
}

p{
    margin: 0 !important;
}

ul{
    list-style: none;
    padding: 0 !important;
    margin: 0 !important;
}

a{
    text-decoration: none !important;
}

button{
    box-shadow: unset !important;
}



section.sec_3:before, section.sec_4.pricing_package:before {
    content: '';
    display: block;
    position: absolute;
    background-image: url(../images/line.webp);
    background-repeat: no-repeat;
    width: 100%;
    height: 435px;
    left: 0;
    bottom: 0;
    z-index: -1;
}

section.sec_4 {
    padding: 80px 0;
    background: #F4F4F4;
    overflow: hidden;
}
.row {
    display: flex;
}
.sec_4 .container{
    max-width: 1600px;
}
.global_content.text-center {
    padding-left: 200px;
    padding-right: 200px;
}
.global_content h2 span {
    color: #c9220d;
}

.row.mt-5.bg_color {
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 0 60px 10px #00000038;
    width: 1230px;
    margin: auto;
    padding: 0px 0px 0px 0px;
    margin-top: 50px;
}

.packages_inner {
    padding: 30px 21px;
    transition: .5s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.packages_inner h1 {
    font-size: 47px;
    color: #231D4F;
    font-family: 'Poppins' !important;
    font-weight: bold;
    line-height: 47px;
    margin: 0 0 30px 0;
    transition: .5s ease;
    text-align: center;
}

.packages_inner h1 span {
    color: #848199;
    font-weight: 400;
    font-size: 20px;
    line-height: 21px;
    transition: .5s ease;
}

.packages_inner h2 {
    font-size: 27px;
    font-weight: 500;
    font-family: 'Poppins' !important;
    line-height: 36px;
    color: #231D4F;
    margin: 0 0 10px 0;
    transition: .5s ease;
    text-align: center;
}

.packages_inner p {
    color: #848199;
    font-size: 16px;
    line-height: 23px;
    transition: .5s ease;
    text-align: center;
}

.packages_inner ul {
    margin: 20px 0 0 0 !important;
}

.packages_inner ul li {
    font-size: 15px;
    color: #848199;
    font-weight: 400;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    transition: .5s ease;
}

.packages_inner ul li span {
    /* background: #E5E3F6; */
    /* width: 15px; */
    /* height: 15px; */
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
    /* border-radius: 50%; */
    /* margin: 0 10px 0 0; */
    /* transition: .5s ease; */
}

.packages_inner ul li span svg {
    color: #231d4f;
    font-size: 12px;
    transition: .5s ease;
    background: #bcb7b7;
    padding: 3px;
    border-radius: 50%;
    margin: 0 15px 0 0px;
}
.packages_inner.first ul h4 {
    margin-bottom: 20px;
}

.packages_inner button.btn-dark {
    background: #000;
    color: #fff;
    border: none;
    width: 100%;
    margin: 20px 0 0 0;
    height: 55px;
    border-radius: 40px;
    font-size: 19px;
    line-height: 19px;
    transition: .5s ease;
}

.packages_inner.first {
    min-height: 750px;
    padding-top: 80px;
    transition: .5s ease;
}

.packages_inner.first ul {
    height: 259px;
    overflow-y: scroll;
}

.packages_inner.second {
    min-height: 582px;
    padding-top: 80px;
}

.packages_inner.second ul {
    min-height: 259px;
}

.packages_inner.popular h6 {
    text-align: right;
    margin: 0 0 20px 0;
    background: #F8C100;
    width: fit-content;
    margin-left: auto;
    padding: 0 20px;
    line-height: 13px;
    font-size: 13px;
    letter-spacing: 2px;
    font-family: 'Poppins' !important;
    font-weight: 700;
    color: #fff;
    border-radius: 30px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
        transition: .5s ease;
}

.packages_inner:hover {
    color: #fff;
    transition: .5s ease;
    background: #002868;
    border-radius: 30px;
    margin-top: -40px;
}

.packages_inner:hover h2,.packages_inner:hover h4, .packages_inner:hover h1, .packages_inner:hover span, .packages_inner:hover li, .packages_inner:hover p {
    color: #fff;
}

.packages_inner:hover button {
    background: #fff;
    color: #000;
}

.packages_inner:hover button:hover {
    background: #C74E3F;
    color: #fff;
}

section.sec_second_package {
    background-image: url(../images/packages_bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 80px 0 0 0;
}

section.sec_second_package .global_content {
    text-align: center;
}

section.sec_second_package .global_content h2 {
    color: #fff;
}

section.sec_second_package .global_content p {
    color: #fff;
    font-size: 30px;
    font-weight: 400;
    line-height: 40px;
}

.package_img img {
    width: 90%;
}

.inneer_package h4 {
    font-size: 25px;
    font-weight: 500;
    font-family: 'Poppins' !important;
    color: #fff;
    line-height: 30px;
    margin: 15px 0;
    width: 75%;
}

.inneer_package ul li {
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    padding: 0 0 0 15px;
    margin: 0 0 7px 0;
    position: relative;
}

.inneer_package ul li:before {
    content: '';
    display: block;
    position: absolute;
    background: #fff;
    width: 5px;
    height: 5px;
    left: 0;
    border-radius: 50%;
    top: 12px;
}

.inneer_package {
    overflow-y: scroll;
    height: 560px;
    margin-top: 0px;
}


.global_btn.center {
    display: flex;
    justify-content: center;
}

    

    .global_content.text-white h2, .global_content.text-white p {
        color: #fff;
    }


    /* slider */

    .three_dee_slider .slider-container {
        display: block;
        height: 270px;
        width: auto;
        margin: 0 auto;
        position: relative;
        max-width: 1300px;
        margin-top: 20px;
    }
    .three_dee_slider .slider-container .arrow-left {
        position: absolute;
        left: 10%;
        top: 50%;
        transform: translate3d(0, -50%, 0);
        color: white;
        font-size: 28px;
        cursor: pointer;
        z-index: 9;
        border-top: 15px solid transparent;
        border-right: 30px solid #c85054;
        border-bottom: 15px solid transparent;
    }

    .three_dee_slider .slider-container .arrow-right {
        position: absolute;
        right: 10%;
        top: 50%;
        transform: translate3d(0, -50%, 0);
        color: white;
        font-size: 28px;
        cursor: pointer;
        z-index: 9;
        border-top: 15px solid transparent;
        border-left: 30px solid #c85054;
        border-bottom: 15px solid transparent;
    }

    .three_dee_slider .slider-container .dots {
        display: inline-block;
        width: 100%;
        text-align: center;
        margin: 30px 0;
        user-select: none;
    }
    .three_dee_slider .slider-container .dots span {
        display: inline-block;
        width: 20px;
        height: 20px;
        margin-right: 2px;
        cursor: pointer;
        user-select: none;
        padding: 10px 0;
        position: relative;
    }
    .three_dee_slider .slider-container .dots span:before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate3d(-50%, -50%, 0);
        height: 10px;
        width: 10px;
        border-radius: 50%;
        background-color: #ccc;
        opacity: 0.6;
    }

    .three_dee_slider .slider-container .dots span.active:before {
        background-color: #c85054;
        opacity: 1;
    }
    .three_dee_slider .slider-container .slider {
        display: block;
        width: 650px;
        height: 100%;
        margin: 0 auto;
        position: relative;
        text-align: center;
        line-height: 270px;
        color: white;
    }

    .three_dee_slider .slider-container .slider .slide {
        display: inline-block;
        width: 80%;
        height: 270px;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate3d(-50%, -50%, 0) scale3d(0.4, 0.4, 1);
        transition: transform 0.3s ease-in-out 0s, z-index 0.2s ease-in-out 0.1s;
    }

    .three_dee_slider .slider-container .slider .slide.prev-2 {
        transform: translate3d(-105%, -50%, 0) scale3d(0.4, 0.4, 1);
        z-index: 1;
        opacity: 0.5;
    }
    .three_dee_slider .slider-container .slider .slide.prev-1 {
        transform: translate3d(-85%, -50%, 0) scale3d(0.6, 0.6, 1);
        z-index: 2;
    }
    .three_dee_slider .slider-container .slider .slide.next-1 {
        z-index: 2;
        transform: translate3d(-15%, -50%, 0) scale3d(0.6, 0.6, 1);
    }
    .three_dee_slider .slider-container .slider .slide.next-2 {
        z-index: 1;
        transform: translate3d(5%, -50%, 0) scale3d(0.4, 0.4, 1);
        opacity: 0.5;
    }
    .three_dee_slider .slider-container .slider .slide.active {
        z-index: 3;
        transform: translate3d(-50%, -50%, 0) scale3d(1, 1, 1);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }


    .three_dee_slider .slider-container img {
        width: 80%;
    }

    section.sec_1.pricing_sec {
        background-image: url(../images/pricing.webp);
        padding: 0;
        display: flex;
        align-items: center;
        height: auto;
        padding: 145px 0 45px 0;
    }

    section.sec_3.pricing_bg {
        padding: 100px 0;
        background: #F4F4F4;
    }

    section.sec_3.pricing_bg:before {
        display: none;
    }

    section.sec_4.pricing_package {
        background: #fff;
        position: relative;
        z-index: 9;
    }

    section.pricing_chose {
        background-image: url(../images/chose_us_bg.webp);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        padding: 80px 0;
    }

    

    
    .sec_4 .global_content h2 {
        font-size: 70px;
        line-height: 70px;
        margin: 0 0 10px 0;
        color: #000;
        font-weight: 700;
        text-align: center;
    }
    

    .sec_second_package .info_head span h3 {
        color: #fff;
        font-size: 55px;
    }

    .sec_second_package .info_head span h4 {
        font-size: 35px;
        line-height: 60px;
    }
    .sub_packages button.btn-dark {
        background: #000;
        border: none;
        width: 100%;
        /* margin: 20px 0 0 0; */
        height: 55px;
        border-radius: 40px;
        font-size: 19px;
        line-height: 19px;
        transition: .5s ease;
        width: 230px;
    }
    .sub_packages button.btn-dark:hover {
        background: #C74E3F;
    }

    
    .package_slider .slick-slide {
        margin-top: 40px !important;
    }
    .package_slider .slick-next:before, .package_slider .slick-prev:before {
        font-size: 70px;
        color: #072f6c;
        z-index: 9999; 
        opacity: 1 !important;
    }
    .package_slider .slick-next{
        right: -56%;
    }
    .package_slider .slick-prev {
        left: -56%;
    }
    .package_slider .slick-next:hover:before, .package_slider .slick-prev:hover:before{
        opacity: .5;
    }


@media only screen and (max-width: 1600px){
    .sec_4 ul.portfolio li .card p, .sec_4 ul.portfolio li .card h1 {
        font-size: 21px !important;
        font-weight: 500;
    }

    section.sec_form .global_content h2 {
        font-size: 49px;
        line-height: 50px;
    }

    section.sec_1 {
        height: 100%;
        padding-top: 160px;
    }

    section.sec_1.about_sec .banner_inner {
        margin-left: 10%;
    }

    section.sec_1.portfolio_banner {
        height: 100%;
        padding-top: 100px;
    }
    
}
@media only screen and (max-width: 1560px){

    section.cta_single_sec .cta_inner_single h2 {
        font-size: 40px;
        line-height: 50px;
    }
    
    section.cta_single_sec {
        padding: 60px 0;
    }

section.single_sec .row.align-items-center {
    align-items: start !important;
}

section.single_sec .row .col-md-6.p-0:nth-child(1) {
    height: 768px;
}

.single_inner h2 {
    font-size: 50px;
    line-height: 60px;
}

.single_inner p {
    font-size: 18px;
    line-height: 26px;
}


    section.cta_sec .global_content ul li:nth-child(2) {
        left: 292px;
    }

    .modal-dialog {
        top: 10%;
        height: 567px;
    }
    
    div#exampleModal {
        overflow: hidden;
    }

    .banner_inner h1 {font-size: 50px;line-height: 60px;margin: 10px 0 10px 0;}

.banner_inner p {
    font-size: 16px;
    line-height: 26px;
}

.global_content h2 {
    font-size: 50px;
    line-height: 50px;
}

section.sec_form .global_content h2 {
    font-size: 45px;
}

.chose_box {
    width: 380px;
    padding: 60px 0 40px 0;
}
.banner_img.pricing_circle:before {
    width: 400px;
    height: 400px;
}
.banner_img img {
    width: 70%;
    margin: 0 auto;
    display: block;
}
    
}
@media only screen and (max-width: 1360px){
    .number_wrap ul li:after {
        right: 12%;
    }

    .testimonial_inner ul li {
        min-height: 388px;
    }
    .testimonial_inner ul li span {
    margin: 0 0 20px 0;
    }
    .sec_4 ul.portfolio li {
        flex: 0 0 25%;
    }
    .sec_4 ul.portfolio li .card p, .sec_4 ul.portfolio li .card h1 {
        font-size: 18px !important;
        font-weight: 500;
    }

    .container {
        max-width: 1080px !important;
    }
    
    .row.mt-5.bg_color {
        width: 100%;
    }
    
    section.cta_sec .global_content ul li {
        font-size: 25px;
    }
    
    .testimonial_inner ul li p {
        font-size: 12px;
    }
    
    .header_info ul li a {
        font-size: 13px;
    }
    
    .header_desc p {
        font-size: 13px;
    }
    
    .menu_wrap ul li a {
        font-size: 13px;
    }
    
    .menu_wrap ul li {
        margin: 0 12px 0 0;
    }
    
    .banner_inner p {
        width: 100%;
    }
    
    .global_btn button {
        font-size: 13px;
        padding: 0 10px;
    }
    
    section.sec_1 {
        background-position: center;
        height: 100%;
        padding: 160px 0 3%;
    }
    
    .logo_wraper .slick-track img {
        width: 150px;
    }
    
    img.size_wrap {
        width: 100px !important;
    }

.packages_inner ul li {
    font-size: 14px;
}

.packages_inner p {
    font-size: 13px;
}

.portfolio_wraper ul li img {
    height: 500px;
}
.packages_inner ul {
    min-height: 231px !important;
}


.inneer_package h4 {
    font-size: 20px;
    line-height: 30px;
}

.inneer_package ul li {
    font-size: 16px;
}

.inneer_package {
    height: 340px;
}

section.cta_sec .global_content h2 {
    font-size: 95px;
    line-height: 10px;
}

section.cta_sec {
    padding: 310px 0 0 0;
}

section.cta_sec .global_content ul li {
    top: -60px;
}

section.cta_sec .global_content ul li:nth-child(1) {
    left: -266px;
}

section.cta_sec .global_content ul li:nth-child(2) {
    left: 310px;
}

section.sec_form .global_content ul {
    display: block;
}

section.sec_form .global_content ul li {
    margin: 0 0 15px 0;
}

.form_inner textarea {
    height: 100px !important;
}

.form_inner input, .form_inner textarea {
    height: 45px;
    font-size: 14px;
}

.form_inner {
    padding: 15px;
}

.form_inner input[type="submit"] {
    width: 60% !important;
    height: 45px !important;
    font-size: 14px !important;
}

section.sec_form .global_content p {
    font-size: 16px;
}

section.sec_form .global_content h2 {
    font-size: 35px;
    line-height: 35px;
}

.badge_content:after {
    background-size: 100%;
    width: 40%;
    right: -110px;
}

.badge_content.right.top.two:after {
    top: -40px;
}

.badge_content.three:after, .badge_content.four:after {
    width: 60%;
}

.badge_content h4 {
    font-size: 24px;
}

.badge_content.top {margin: 0;}

.badge_content.right.one {
    min-height: 300px;
}

.badge_content.three {
    min-height: 250px;
}

.banner_img.pricing_circle:before {
    width: 500px;
    height: 500px;
}

section.pricing_chose .row.mt-5  .col-md-3 {
    width: 50%;
    flex: 0 0 50%;
}
br {
    display: none;
}

section.portfolio_new_sec {
    height: 980px;
}

.service_box ul li p {
    font-size: 14px;
}

.service_box ul li h4 {
    font-size: 22px;
    width: 80%;
    line-height: 25px;
}


}
@media only screen and (max-width: 1280px){

    section.single_sec .row .col-md-6.p-0.bg_none .single_inner p {
        font-size: 16px !important;
    }


    section.single_sec .row .col-md-6.p-0:nth-child(1) {
        height: 600px;
    }
    
    .single_inner h2 {
        font-size: 40px;
        line-height: 50px;
    }

    .post_content ul li {
        font-size: 12px;
    }
    
    .post_content p {
        font-size: 16px;
        line-height: 22px;
    }
    
    .news_post .show_content {
        padding-top: 20px;
    }
    
    .news_post:hover .show_content h5 {
        margin-bottom: 20px;
    }
    
    .news_post:hover .show_content a {
        font-size: 16px;
    }


section.sec_post_author .container {
    max-width: 1180px !important;
}

.post_author_wrap ul li img {
    height: 250px;
}

    .banner_inner .global_btn {
        gap: 15px !important;
    }
    .global_btn button {
        width: 228px !important;
    }

    .post_author_wrap ul li h2 {
        font-size: 20px;
    }
    
    .post_author_wrap ul li h5 {
        font-size: 12px;
        font-weight: 600;
        line-height: 12px;
    }
    
    .post_author_wrap ul li h3 {
        font-size: 14px;
    }


}
@media only screen and (max-width: 1200px){
   
    .global_btn button {
        background: #C74E3F;
        border: none;
        font-size: 11px;
        height: 55px;
        border-radius: 30px;
        padding: 0 20px;
        display: flex;
        align-items: center;
        width: 230px;
    }
    .global_btn {
        margin: 30px 0 0 0;
    }
    .sec_4 ul.portfolio li .card p, .sec_4 ul.portfolio li .card h1 {
        font-size: 17px !important;
        font-weight: 500;
    }
    .container {
        max-width: 1080px !important;
    }

}
@media only screen and (max-width: 1160px){
    .menu_wrap ul li {
        margin: 0 10px 0 0;
    }
}
@media only screen and (max-width: 767px){

    .single_content {
        width: 100%;
    }
    
    .single_img {
        margin: 0 !important;
    }
    
    section.single_sec .row .col-md-6.p-0:nth-child(1) {
        height: auto;
        padding: 60px 15px !important;
    }
    
    .single_inner h2 {
        font-size: 35px;
        width: 100% !important;
        line-height: 45px;
    }
    
    section.sec_content_wrap {
        padding: 40px 0;
    }
    
    section.cta_single_sec .cta_inner_single h2 {
        font-size: 25px;
        line-height: 35px;
    }

body.new_Page header.header_wrap.mobile {
    background: #1a1a1d;
}

section.sec_post_author {
    padding: 40px 0 20px 0;
}

section.sec_post_author .row {
    margin-top: 0 !important;
}

.author_img img {
    width: 70%;
    margin: auto;
    display: block;
    margin-bottom: 20px;
}

.author_inner h2 {
    font-size: 35px;
    line-height: 35px;
}

.author_inner p {
    font-size: 16px !important;
    width: 100%;
    
}

section.author_sec {
    padding: 40px 0 60px 0;
}

.logo_wraper_new h2 {
    font-size: 40px;
    line-height: 50px;
}

.logo_wraper_new ul {
    flex-wrap: wrap;
}

.logo_wraper_new ul li {
    flex: 0 0 100%;
    margin: 0 0 20px 0;
}

section.thrid_logo_sec {
    padding: 50px 0;
}

.post_author_wrap {
    margin: 0 0 40px 0;
}

    .global_btn button {
        width: 280px !important;
        font-size: 15px;
        font-weight: 500;
    }
    .sec_second_package .info_head {
        justify-content: center;
        margin: 0;
        margin-top: 21px;
        margin-bottom: 29px;
        align-items: center;
    }
    .sec_4 .global_content h2 {
        font-size: 30px;
        line-height: 38px;
    }
    .sec_4 ul.portfolio li .card p, .sec_4 ul.portfolio li .card h1 {
        font-size: 18px !important;
        font-weight: 500;
        line-height: 20px;
    }
    .banner_inner p {
        font-size: 13px!important;
        line-height: 20px!important;
        width: 90%;
        margin: 0 auto !important;
    }

    section.sec_1 {
        height: 100%!important;
        padding-top: 160px;
    }
    .popup_img {
        display: none;
    }
    
    .modal-content {
        height: 620px;
    }
    
    .popup_form_wrp {
        padding: 20px 20px;
    }
 
    section.header_top {
        display: none;
    }

    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    button.navbar-toggler {
        position: absolute;
        right: 0;
        top: -50px;
        background: #fff;
    }

    .banner_inner h1 {
        font-size: 30px;
        line-height: 35px;
    }
    
    .banner_inner h5 {
        font-size: 16px;
        line-height: 16px;
    }

    p {
        font-size: 14px !important;
        line-height: 24px !important;
    }

    .banner_inner .global_btn {
        display: block;
        margin: 15px 0 0 0;
    }
    
    .banner_inner .global_btn span a {
        margin: 0;
    }
    
    .banner_inner {
        text-align: center;
    }
    
    .banner_inner .global_btn button {
        margin: auto;
        margin-bottom: 20px;
    }
    .banner_inner ul {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 20px!important;
    }
    
    .banner_inner ul li {
        flex: 0 0 20%;
        margin: 0;
    }
    
    .banner_inner ul li img {
        width: 80%;
    }
    
    .banner_home {
        margin: 30px 0 0 0;
    }

    .single_btn {
        left: 33%;
        top: 45%;
    }
    
    section.testimonial_sec {
        overflow: hidden !important;
    }
    
    section.cta_sec .global_content ul li {
        position: unset;
        font-size: 18px;
        margin: 0 10px;
    }
    
    section.cta_sec .global_content h2 {
        font-size: 40px;
        line-height: 40px;
    }

    section.sec_3 {
        padding: 40px 0;
    }
    
    .global_content h2 {
        font-size: 30px !important;
        line-height: 35px !important;
    }
    
    .global_content h5 {
        font-size: 16px;
        line-height: 16px;
    }

    .single_img {
        margin: 60px 0 0 0;
    }
    
    section.sec_3:before, section.sec_4.pricing_package:before {
        display: none;
    }
    
    .single_btn button {
        font-size: 14px;
        width: fit-content;
        padding: 0 20px;
        height: 45px;
    }
    
    section.sec_4 {
        padding: 40px 0;
    }
    
    .packages_inner:hover {
        margin: 0;
    }

    section.sec_second_package .row.mt-5 {
        flex-direction: column-reverse;
        margin-top: 0 !important;
    }
    
    .inneer_package h4 {
        width: 100%;
        font-size: 18px;
        line-height: 26px;
    }
    
    .info_head h2 {
        font-size: 30px;
        line-height: 35px;
    }
    
    .info_head span h3 {
        font-size: 30px;
        line-height: 30px;
    }
    
    .info_head span h4 {
        font-size: 16px;    
        line-height: 16px;
    }

    .image_box:before {
        display: none;
    }
    
    .image_box {
        position: unset;
        margin: 30px 0 0 0 !important;
        padding: 0 !important;
    }
    
    .image_box ul {
        display: block;
        text-align: center;
    }
    
    .image_box img {
        margin: 0 0 15px 0;
        width: 35%;
    }
    
    .portfolio_wraper ul li img {
        width: 90%;
        margin: auto;
        display: block;
        margin-top: 40px;
        height: auto !important;
    }

    section.cta_sec {
        height: 300px;
        padding: 0;
        display: flex;
        align-items: center;
        margin: 0;
    }

    .testimonial_inner ul li {padding-left: 15px;padding-right: 15px;}

    section.testimonial_sec {
        padding: 40px 0;
    }

section.sec_form .global_content {
    text-align: center;
}

section.sec_form .global_content ul li {
    justify-content: center;
}

.footer_inner {
    margin: 30px 0;
}

.footer_logo {
    text-align: center;
}

.footer_logo p {
    width: 90%;
    margin: auto !important;
}

.footer_inner {
    text-align: center;
}

.footer_inner.right ul {
    justify-content: center;
}

footer.main_footer {
    padding: 30px 0;
}

.footer_inner.right {
    margin-bottom: 0 !important;
}

.bottom_desc p {
    text-align: center;
}

.bottom_desc ul {
    justify-content: center;
    margin: 15px 0 0 0 !important;
}

.bottom_desc ul li a, .bottom_desc ul li {
    font-size: 14px;
}

.global_content {
    text-align: center;
    margin-bottom: 30px;
}

.global_content button {
    margin: auto;
}

section.sec_1.about_sec .banner_inner {
    margin: 0;
}

.badge_content:after {
    display: none;
}

section.chose_sec {
    padding: 30px 0;
}

.badge_content.right.one {
    min-height: auto;
}

.badge_content {
    text-align: center !important;
    background: #fff;
    margin: 0 0 20px 0 !important;
    border-radius: 15px;
    box-shadow: 0 0 10px #ccc;
    padding: 30px 32px;
    min-height: auto !important;
}

.badge_img {
    display: none;
}

section.chose_sec .row.mt-5 {
    margin-top: 40px !important;
}

section.sec_3.about_bg_sec {
    padding: 40px 0;
}

section.sec_1.about_sec {
    padding-bottom: 50px;
    padding-top: 170px;
}

section.sec_1.about_sec .banner_img {
    margin: 30px 0 0 0;
}

.banner_img.pricing_circle:before {
    width: 300px;
    height: 300px;
}

.banner_img.pricing_circle {
    margin-top: 60px;
}

section.pricing_chose .row.mt-5 .col-md-3 {
    width: 100%;
    flex: 0 0 100%;
}

section.sec_1.pricing_sec {
    padding: 200px 0 80px 0;
}

section.sec_3.pricing_bg {
    padding: 40px 0;
}

.chose_box.top {
    margin: 0;
}

.chose_box {
    margin: 20px 0 0 0 !important;
    padding: 40px 40px;
    background-image: unset;
    background: #fff;
    margin: auto !important;
    display: block;
    width: 85% !important;
    margin-bottom: 20px !important;
    border-radius: 25px;
}

.chose_box h2 {
    width: 100%;
    font-size: 20px;
    line-height: 25px;
}

.chose_box p {
    width: 100%;
    margin: 0 !important;
}

.chose_box img {
    width: 20%;
    margin: 0 0 20px 0;
}

section.pricing_chose {
    padding: 40px 0;
}

.portfolio_mobile img {
    width: 80%;
    height: 500px;
    object-fit: cover;
    margin: auto;
    display: block;
}

section.portfolio_new_sec.mobile {
    height: auto;
    padding: 50px 0;
}

section.sec_1.portfolio_banner {
    height: auto;
    padding: 100px 0 17px 0;
}

section.testimonial_sec.bottom_space {
    padding: 30px 0;
}

.number_wrap ul li {
    flex: 0 0 30%;
}

section.sec_1.pricing_sec.review_sec {
    padding: 170px 0 80px 0;
}

section.sec_1.pricing_sec.review_sec .banner_img {
    margin-top: 60px;
}

.number_wrap ul {
    justify-content: space-between;
}

.number_wrap ul li:after {
    right: 10px;
    top: -10px;
}

section.sec_3.pricing_bg .single_img {
    margin: 0;
}

section.sec_3.pricing_bg .global_content {
    margin-top: 30px;
}

.service_box ul {
    display: block;
}

.banner_img.pricing_circle {
    text-align: center;
    top: -10px !important;
}

.service_box ul li img {
    width: 50%;
    margin: auto;
    display: block;
    margin-bottom: 20px;
}

.service_box {
    text-align: center;
    margin: 0 0 30px 0;
}

.service_box ul li h4 {
    width: 100%;
}

.service_box ul li {
    margin: 0;
}

section.service_sec {
    padding: 40px 0;
}

.global_btn button {
    margin: auto;

}


.form_wraper form .inner_fields {
    display: block;
}

.form_wraper {
    width: 100%;
}

.form_wraper form .inner_fields span {
    margin: 0 0 20px 0 !important;
    display: block;
}

section.contact_form_sec {
    padding: 60px 0 60px 0;
}
.sec_4 ul.portfolio li {
    flex: 1 0 49%;
}
.logo img {
    max-width: 35%;
    filter: brightness(0) invert(1);
}
.sub_packages button.btn-dark {
    width: 150px;
}

section.news_sec {
    padding: 160px 0 60px 0;
}

.new_inner h2 {
    font-size: 40px;
    line-height: 40px;
    margin: 0;
    text-align: center;
}

.news_post {
    margin: 0 0 30px 0;
}
}