/* DEFAULT SETTINGS */
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* ==========  COLORS VARIABLES START  ============ */
:root {
    --primary-bg-color: #a81017;
    --secondary-bg-color: #eceaff;
    --text-color: #fff;
    --black-color: #111;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--black-color);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--text-color);
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-bg-color);
}

body,
html {
    scroll-behavior: smooth;
    background-color: var(--secondary-bg-color) !important;
}

/* Website Preloader */
#preloader{
    background: #000 url('images/ftc-preloader.gif') no-repeat center center;
    background-size: 20%;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 100000;
}

.scrollToTop {
    position: fixed;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--text-color);
    cursor: pointer;
    display: grid;
    place-items: center;
    background-color: var(--primary-bg-color);
    right: 10px;
    bottom: 800px;
    visibility: hidden;
    opacity: 0;
    transition: 1s ease;
    z-index: 1000;
}

.scrollToTop i {
    font-size: 25px;
    color: var(--text-color);
}

.scrollToTop.active {
    bottom: 35px;
    visibility: visible;
    opacity: 1;
}

/* FTC COOKIE STYLING START HERE */
#FTC_Cookie {
    width: 400px;
    position: fixed;
    bottom: 20px;
    left: -500px;
    padding: 15px;
    background-color: var(--primary-bg-color);
    box-shadow: 0 0 1px 1px var(--primary-bg-color);
    text-align: center;
    transition: all 0.50s ease-in-out;
    animation: cookie both 3s 10s;
}

#FTC_Cookie.hidecookie {
    display: none;
}

@keyframes cookie {
    from {
        left: -500px;
    }

    to {
        left: 20px;
    }
}

#FTC_Cookie .cookie-heading h1 {
    color: var(--text-color);
    font-size: 25px;
    font-weight: bold;
}

#FTC_Cookie .cookie-text {
    text-align: justify;
    color: var(--text-color);
}

#FTC_Cookie .cookie-text a {
    color: orange;
    font-weight: bold;
}


#FTC_Cookie .cookie-text a:hover {
    text-decoration: none;
}

#FTC_Cookie .cookie-btn button {
    padding: 7px 7px;
    background-color: var(--text-color);
    color: var(--primary-bg-color);
    border: 1px solid var(--text-color);
    font-size: 15px;
    transition: all 0.20s ease-in-out;
}

#FTC_Cookie .cookie-btn .diclinebtn {
    background: transparent;
    color: var(--text-color);
}

#FTC_Cookie .cookie-btn .diclinebtn:hover {
    background-color: var(--text-color);
    color: var(--primary-bg-color);
}

#FTC_Cookie .cookie-btn button:hover {
    background: transparent;
    color: var(--text-color);
}

#very_top_nav {
    width: 100%;
    height: 27px;
    background-color: var(--primary-bg-color);
    display: flex;
    align-items: center;
    padding: 0 60px;
    justify-content: space-between;
    transition: 0.6s;
}

#very_top_nav .email-and-phone a {
    color: var(--text-color);
    text-decoration: none;
    margin-right: 10px;
    border-left: 1px solid var(--text-color);
    padding: 10px;
    font-size: 17px;
}

#very_top_nav .notification a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 17px;
}

/* ==========  TOP NAV START HERE  ========== */
#top_navbar {
    width: 100%;
    height: 90px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    background-color: #fff;
    position: absolute;
    transition: 0.6s;
    z-index: 1000;
}

#top_navbar .menus {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 5px 5px;
}

.menus .nav-items {
    position: relative;
}

.menus .FTC_logo img {
    width: 100px;
    height: auto !important;
    display: flex;
    align-items: center;
    padding: 10px;
}

.menus .nav-items ul {
    display: flex;
    margin-bottom: 0;
}

.menus .nav-items ul li {
    list-style: none;
}

.nav-items ul li .nav-link {
    text-decoration: none;
    margin: 0 10px;
    color: var(--primary-bg-color);
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
}

.nav-items ul li .nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-bg-color);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.nav-items ul li .nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.sub-menus {
    font-weight: bold;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    display: none;
    background-color: var(--text-color);
}

.sub-menus a {
    text-decoration: none;
    color: var(--primary-bg-color);
}

.nav-items ul li:hover .sub-menus {
    display: block;
    position: absolute;
    margin-left: -40px;
    height: auto;
}

.nav-items ul li:hover .sub-menus ul {
    display: block;
    margin: 10px;
    background-color: var(--text-color);
}

.nav-items ul li:hover .sub-menus ul li {
    width: 250px;
    padding: 10px 5px;
    border-bottom: 1px solid var(--primary-bg-color);
    background: transparent;
    border-radius: 0;
    text-align: left;
    transition: all 0.3s ease;
}

.nav-items ul li:hover .sub-menus ul li:last-child {
    border-bottom: none;
    position: relative;
}

.nav-items ul li:hover .sub-menus ul li:hover {
    transform: translateX(5px);
}

.nav-items .area-guide {
    background-color: transparent;
}

.nav-items .sub-menus2 {
    display: block;
    position: absolute;
    left: 245px;
    top: 0.09px;
    height: auto;
    color: var(--text-color);
    background-color: var(--text-color);
    border: 1px solid var(--primary-bg-color);
}

.nav-items .sub-menus2 {
    display: none;
}

.nav-items .area-guide ul li:hover :last-child {
    display: block;
}

.menus .user-help {
    display: flex;
    align-items: center;
}

.user-help a {
    text-decoration: none;
    color: var(--primary-bg-color);
    cursor: pointer;
    transition: all 0.50s ease;
}

.user-help a i {
    font-size: 25px;
    margin-left: 0;
}

.user-help .help {
    padding: 7px 7px;
    color: var(--primary-bg-color);
    border: 1px solid var(--primary-bg-color);
    font-size: 15px;
    transition: all 1s ease;
}

.user-help .sign-up-btn {
    padding: 7px 7px;
    background-color: var(--primary-bg-color);
    color: var(--text-color);
    border: 1px solid var(--primary-bg-color);
    font-size: 15px;
    transition: all 1s ease;
}

.help:hover {
    background-color: var(--primary-bg-color);
    color: var(--text-color);
}

.sign-up-btn:hover {
    background: transparent;
    color: var(--primary-bg-color);
}

.signup-heading {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-bg-color);
}

.auth-form .check-box-dev{
    display: flex;
}
.auth-form .check-box-dev p{
    font-size: 14px;
}

.form-floating input:focus {
    border: 1px solid var(--primary-bg-color);
}

.auth-terms,
.auth-privacy {
    text-decoration: none;
    color: var(--primary-bg-color);
}

.user-signup-form .signUp-btn {
    background-color: var(--primary-bg-color);
    color: var(--text-color);
    border: 1px solid var(--primary-bg-color);
    font-size: 15px;
    transition: all 0.30s ease;
}

.user-signup-form .signUp-btn:hover {
    background: transparent;
    border: 1px solid var(--primary-bg-color);
    color: var(--primary-bg-color);
}

.account-option p a {
    text-decoration: none;
    color: var(--primary-bg-color);
}

.account-option p a:hover {
    text-decoration: underline;
}

.menuIcon {
    width: 30px;
    height: 30px;
    background-color: var(--primary-bg-color);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    cursor: pointer;
    overflow: hidden;
    display: none;
    right: 3px;
}

.menuIcon span {
    position: absolute;
    width: 23px;
    height: 3px;
    background-color: #fff;
    border-radius: 5px;
    transition: 0.5s;
}


.menuIcon span:nth-child(1) {
    transform: translateY(-8px);
    width: 18px;
    left: 3px;
}

.menuIcon.change span:nth-child(1) {
    transform: translateY(0px) rotate(37deg);
    width: 23px;
}


.menuIcon span:nth-child(2) {
    transform: translateY(8px);
    width: 10px;
    left: 3px;
}

.menuIcon.change span:nth-child(2) {
    transform: translateY(0px) rotate(-37deg);
    width: 23px;
}

.menuIcon.change span:nth-child(3) {
    transform: translateX(45px);
}

/* ==========  TOP NAV END HERE  ========== */

/* ==========  HERO BANNER START HERE  ========== */
#hero_banner {
    width: 100%;
    height: 85vh;
    background: rgb(46,10,71);
    background: linear-gradient(90deg, rgba(46,10,71,1) 0%, rgba(70,4,4,1) 50%, rgba(46,10,71,1) 100%);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

#hero_banner .text-animation {
    text-align: center;
    color: white;
    padding-top: 190px;
    font-size: 17px;
}

#hero_banner .text-animation h1 {
    font-size: 25px;
}

#hero_banner .text-animation span {
    font-size: 20px;
}

.text-animation button:hover {
    background: transparent;
}

#pupolar_conversion {
    position: absolute;
    width: 90%;
    height: auto;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--text-color);
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.267);
}

#pupolar_conversion .cards-container {
    display: flex;
    justify-content: center;
}

#pupolar_conversion h2 {
    text-align: center;
    margin: 15px auto;
    color: var(--primary-bg-color);
    font-size: 20px;
    font-weight: bold;
}

#pupolar_conversion p {
    text-align: center;
    margin: 15px auto;
    color: var(--black-color);
    font-size: 16px;
}

#pupolar_conversion a {
    text-decoration: none;
}

#pupolar_conversion .features-cards {
    width: auto;
    height: auto;
    margin: 10px 10px;
    background-color: var(--secondary-bg-color);
    text-align: center;
    padding: 5px;
    border-radius: 20px;
    border-right: 5px solid var(--primary-bg-color);
    border-left: 5px solid var(--primary-bg-color);
    transition: all 1s ease;
}

#pupolar_conversion .features-cards:hover {
    border-left: 5px solid var(--black-color);
    border-right: 5px solid var(--black-color);
}


.features-cards .feature-icon {
    width: 50px;
    height: auto;
    padding: 10px;
    background-color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border-radius: 50%;
    border: 1px dashed var(--primary-bg-color);
}

.features-cards i {
    font-size: 20px;
    color: var(--primary-bg-color);

}

.features-cards .cards-title {
    font-size: 16px;
    color: var(--primary-bg-color);
    padding-top: 5px;
}

.features-cards p {
    color: #111 !important;
    font-size: 15px !important;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    line-height: 16px;
}

.features-cards .use-feature {
    font-size: 15px;
}

.features-cards .use-feature:hover {
    text-decoration: none;
    color: var(--primary-bg-color);
}

/* ==========  HERO BANNER END HERE  ========== */

/* ==========  WHY FILES TO CONVERT SECTION START HERE  ========== */
#why_choose_ftc {
    width: 90%;
    margin: 280px auto auto auto;
    background-color: var(--text-color);
    padding: 20px;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.267);
}

#why_choose_ftc .why-choose-us-headings {
    text-align: center;
}

#why_choose_ftc .why-choose-us-headings h3 {
    font-size: 20px;
    color: var(--primary-bg-color);
    font-weight: bold;
}

#why_choose_ftc .why-choose-us-headings .why-choose-us-sub-heading {
    font-size: 14px;
}

#why_choose_ftc .why-choose-us-container {
    width: 100%;
    height: auto;
    margin: 10px auto;
    padding: 10px;
    text-align: center;
    display: flex;
    justify-content: space-between;
}

.why-choose-us-container .why-choose-us-cards {
    box-shadow: 0 0 1px 0.2px rgba(0, 0, 0, 0.5);
    width: 320px;
    height: auto;
    margin: 10px 10px;
    background-color: var(--secondary-bg-color);
    text-align: center;
    padding: 10px;
    cursor: pointer;
    transition: all 1s ease;
    border-radius: 20px;
    border: 5px solid var(--primary-bg-color);
    border-top: none;
    border-bottom: none;
}

.why-choose-us-container .why-choose-us-cards:hover {
    border: 5px solid var(--black-color);
    border-bottom: none;
    border-top: none;
}

/* ==========  WHY FILES TO CONVERT SECTION END HERE  ========== */

/* ==========  CUSTOMERS COMMENTS SECTION SART HERE  ========== */

#comment_section {
    width: 90%;
    margin: 100px auto;
    background-color: var(--text-color);
    padding: 20px;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.267);
}

#comment_section .comment-headings {
    text-align: center;
}

#comment_section .comment-headings h3 {
    font-size: 20px;
    color: var(--primary-bg-color);
    font-weight: bold;
}

#comment_section .comment-headings .customer-sub-heading {
    font-size: 14px;
}

#comment_section .comment-boxs {
    width: 100%;
    height: auto;
    margin: 10px auto;
    padding: 10px;
    text-align: center;
    display: flex;
    justify-content: space-between;
}

.comment-boxs .comment-box {
    box-shadow: 0 0 1px 0.2px rgba(182, 144, 144, 0.5);
    width: 350px;
    height: auto;
    margin: 10px 10px;
    background-color: var(--secondary-bg-color);
    padding: 10px;
}

.comment-box .customer-profile {
    text-align: start;
    display: flex;
    align-items: center;
}

.comment-box .customer-profile img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 1px dashed var(--primary-bg-color);
    padding: 4px;
}

.comment-box .customer-profile .customer-name {
    margin-left: 10px;
    font-size: 15px;
    font-weight: bold;
}

.comment-box .customer-comment p {
    font-size: 15px;
    margin: 10px auto;
}

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

.customer-satisfactions .customer-rating-date {
    font-size: 14px;
}

.comment-box .customer-rating i {
    color: #ffaa4a;
}

.comment-boxs {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.comment-box {
    display: inline-block;
    transform: translateX(-50%);
    animation: scroll alternate-reverse 3s infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(-5%);
    }

    100% {
        transform: translateX(5%);
    }
}

/* ==========  CUSTOMERS COMMENTS SECTION END HERE  ========== */
/* ==========  SUBSCRIBE SECTION START HERE  ========== */
#subscribe_section {
    width: 90%;
    margin: 70px auto;
    background: rgb(60,5,5);
    background: linear-gradient(0deg, rgba(60,5,5,1) 0%, rgba(46,10,71,1) 100%);
    padding: 50px;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.267);
}

#subscribe_section .subscribe-headings {
    text-align: center;
    color: var(--text-color);
}

#subscribe_section .subscribe-headings span {
    font-size: 20px;
    color: var(--text-color);
    font-weight: bold;
}

#subscribe_section .subscribe-headings .subscribe-sub-heading {
    font-size: 13px;
    color: var(--text-color);
}

.subscribe-us .sub-input {
    padding: 6px 10px;
    border-radius: 3px;
}

.subscribe-us .subscribe-btn {
    padding: 6px 10px;
    font-size: 14px;
}

/* ==========  SUBSCRIBE SECTION END HERE  ========== */

/* //////////////////////////////      PAGES STYLING START HERE       ////////////////////////// */
.temp-heading {
    text-align: center;
    margin: 20px auto;
}

.pages_hero_banner {
    width: 100%;
    height: 25vh;
    background-color: rgba(0, 0, 0, 0.267);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 90px;
}

.pages_hero_banner .page-info {
    margin: 0 5px;
    color: var(--text-color);
    text-transform: uppercase;
}

.page-info .home-redirection {
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
}

.page-info .home-redirection:hover {
    text-decoration: underline;
}

.page-info span {
    font-size: 15px;
}

#big-arrow {
    width: 98%;
    margin: 50px auto;
}

#big-arrow .tool-top-box {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    letter-spacing: 1px;
}

.tool-top-box .operator-heading {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

#big-arrow-container {
    border-radius: 50px;
    height: 5px;
    background-color: var(--primary-bg-color);
}

#big-arrow .down-arrows {
    display: flex;
    justify-content: space-between;
}

#big-arrow .down-arrows i {
    font-size: 30px;
    color: var(--primary-bg-color);
    margin-top: -13px;
}

#tool_box {
    width: 98%;
    margin: 30px auto;
    display: flex;
    justify-content: space-between;
}

#tool_box .all-usable-tools,
.most-using-tools {
    width: 200px;
    height: 510px;
    background-color: var(--text-color);
    text-align: center;
}

#tool_box .all-usable-tools .aside-tools-heading {
    color: var(--primary-bg-color);
    margin: 17px 0 10px 0;
    font-size: 15px;
}

#tool_box .most-using-tools .aside-tools-heading {
    color: var(--primary-bg-color);
    margin: 17px 0 10px 0;
    font-size: 15px;
}

#tool_box .upload-center {
    width: 850px;
    display: flex;
    justify-content: center;
}

.upload-your-file .fileuploadcontainer {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.upload-your-file #cropper-container {
    margin-bottom: 15px;
}

.fileuploadcontainer {
    background-color: #ffffff;
    width: 100%;
    padding: 2.5em 1.87em;
    box-shadow: 0 1.25em 3.43em rgba(0, 0, 0, 0.08);
    border: 1px dashed #a81017;
}

.uploadinput[type="file"] {
    display: none;
}

.uploadlable {
    display: block;
    position: relative;
    background-color: #a81017;
    color: #ffffff;
    font-size: 15px;
    text-align: center;
    width: 16em;
    padding: 0.5em 0;
    border-radius: 0.3em;
    margin: 0 auto 1em auto;
    cursor: pointer;
}

#image-display {
    position: relative;
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    gap: 1.25em;
    flex-wrap: wrap;
}

#image-display figure {
    width: 45%;
}

#image-display img {
    width: 100%;
    border: 1px solid var(--primary-bg-color);
}

#image-display figcaption {
    font-size: 0.8em;
    text-align: center;
    color: #5a5861;
}

.dropboxactive {
    border: 2px dashed #a81017;
}

#fileuploaderror {
    text-align: center;
    color: #ff3030;
}

.upload-your-file .convert-btn {
    background-color: var(--primary-bg-color);
    padding: 7px 10px;
    color: var(--text-color);
    font-size: 14px;
    border-radius: 3px;
    margin: 20px 0;
    border: none;
    cursor: pointer;
}

.tool-visit .tool-link {
    display: block;
    text-decoration: none;
    color: var(--black-color);
    margin: 5px 0;
    font-size: 14px;
    text-align: start;
    margin-left: 34px;
    padding: 5px 0;
}

.tool-visit .tool-link:hover {
    text-decoration: underline;
}

.operation-box {
    display: block;
    text-align: center;
}

#operation_result {
    width: 400px;
    height: auto;
    background-color: var(--text-color);
    text-align: center;
    padding: 10px;
    display: inline-flex;
    flex-direction: column;
    margin: 30px 125px;
    transition: 1s ease;
}

#operation_result.showfilebox {
    display: block;
    display: inline-flex;
    flex-direction: column;
}

#operation_result .result-heading {
    text-align: center;
    color: green;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
    padding-top: 10px;
    font-weight: bold;
}

#operation_result img {
    width: 300px;
    height: 150px;
    margin: 40px auto;
}

#operation_result .file-download-btn {
    text-decoration: none;
    background-color: var(--primary-bg-color);
    padding: 5px 10px;
    color: var(--text-color);
    font-size: 14px;
    border-radius: 3px;
}

#how_to_use {
    width: 100%;
    height: auto;
    background-color: var(--text-color);
    padding: 10px;
    transition: 1s ease;
}

#how_to_use .how-to-use-heading {
    font-size: 15px;
    color: var(--primary-bg-color);
    margin: 5px 0;
}

#how_to_use .how-to-use-subheading {
    font-size: 14px;
    margin: 5px 0;
}

#how_to_use ol li {
    font-size: 14px;
    margin: 5px 20px;
    line-height: 30px;
}

#converter-description {
    width: 90%;
    margin: 150px auto;
}

#converter-description .brief-heading {
    font-size: 15px;
    color: var(--primary-bg-color);
    font-weight: bold;
}

#converter-description .brief-desc {
    background-color: var(--text-color);
    padding: 10px;
    line-height: 30px;
    font-size: 15px;
    letter-spacing: 0.5px;
}

#feedback_form {
    width: 300px;
    position: fixed;
    right: 0;
    border-right: 2px solid var(--text-color);
    top: 800px;
    background-color: var(--text-color);
    padding: 7px;
    transition: all 2s ease !important;
    animation: feeedback 3s forwards 60s alternate;
}

@keyframes feeedback {
    to {
        top: 230px;
    }
}

#feedback_form #feedbackClose {
    text-align: end;
}

#feedback_form #feedbackClose i {
    font-size: 25px;
    color: var(--primary-bg-color);
    cursor: pointer;
}

#feedback_form #feedbackClose i:hover {
    color: red;
}

#feedback_form.hide {
    display: none;
}

#feedback_form .feedback-heading {
    text-align: center;
    color: var(--primary-bg-color);
    font-size: 17px;
    margin: 5px 0;
    font-weight: bold;
}

#feedback_form .feedback-subheading {
    text-align: center;
    color: var(--primary-bg-color);
    font-size: 14px;
}

#feedback_form .feedback-rating {
    color: var(--primary-bg-color);
    font-size: 14px;
    margin: 10px 0 10px 0;
}

.feedback-brief .feedback-brief-heading {
    color: var(--primary-bg-color);
    font-size: 15px;
    margin: 20px 0 0 0;
}

.feedback-brief .feedback-desc {
    width: 100%;
    border: none;
}

/* ==========  CUSTOMER RATING REVIEW START HERE  ========== */

.success-box {
    margin: 10px 0;
    padding: 5px 5px;
    border: 1px solid #eee;
    background: #f9f9f9;
    display: flex;
    font-size: 13px;
}

.success-box .text-message {
    display: flex;
    align-items: center;
    color: green;
}

.success-box img {
    margin-right: 10px;
}

.success-box>div {
    vertical-align: top;
    display: inline-block;
    color: #888;
}

.success-box .tickimg {
    margin: 0 12px;
}

/* Rating Star Widgets Style */
.rating-stars ul {
    list-style-type: none;
    padding: 0;
}

.rating-stars ul>li.star {
    display: inline-block;
}

/* Idle State of the stars */
.rating-stars ul>li.star>i.fa {
    font-size: 2.5em;
    color: #ccc;
}

/* Hover state of the stars */
.rating-stars ul>li.star.hover>i.fa {
    color: #FFCC36;
}

/* Selected state of the stars */
.rating-stars ul>li.star.selected>i.fa {
    color: #FF912C;
}

/* ==========  CUSTOMER RATING REVIEW END HERE  ========== */
/* ==========  RATING STYLING START HERE  ========== */
.rating .user_name {
    width: 100%;
    padding: 7px 7px;
    display: block;
}

.rating .user_name:focus {
    outline: none;
}

.rating {
    text-align: center;
}

.rating input {
    display: none;
}


/* Style for the star labels */
.rating label {
    font-size: 30px;
    cursor: pointer;
    float: right;
    color: #ccc;
    margin: 5px auto;
}

/* Style for a selected star label */
.rating input:checked~label {
    color: #FF9529;
    /* Change this to your desired selected star color */
}

/* Hover style for stars */
.rating label:hover {
    color: #FF9529;
    /* Change this to your desired hover color */
}

.rating button {
    background-color: var(--primary-bg-color);
    padding: 7px 10px;
    cursor: pointer;
    margin: 10px 0;
    color: var(--text-color);
    border: 1px solid var(--primary-bg-color);
    margin: auto;
    transition: all 0.30s ease;
}

.rating button:hover {
    background: transparent;
    color: var(--primary-bg-color);
}

.fetched-stars {
    color: #FF9529 !important;
    font-size: 15px;
}

.customer-rating strong {
    font-size: 13px;
    
}

.feedback-brief textarea::placeholder {
    padding: 5px;
}

.feedback-brief textarea:focus {
    outline: none;
}

#feedback_form .post-review {
    text-align: center;
}

.post-review .submit-feedback {
    background-color: var(--primary-bg-color);
    border: 1px solid var(--primary-bg-color);
    padding: 7px 10px;
    color: var(--text-color);
    font-size: 15px;
    border-radius: 3px;
    margin: 10px 0;
    cursor: pointer;
    transition: all 0.03s ease;
}

.post-review .submit-feedback:hover {
    background: transparent;
    color: var(--primary-bg-color);
}

/* //////////////////////////////      PAGES STYLING END HERE       ////////////////////////// */

/* ==========  ABOUT US START HERE  ========== */
.pages_hero_banner {
    width: 100%;
    height: 15vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-ftc {
    width: 85%;
    height: auto;
    margin: 50px auto;
    background-color: var(--text-color);
    padding: 20px;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.267);
}

.about-ftc .about-us-heading {
    text-align: center;
    padding-top: 15px;
}

.about-us-heading h1 {
    font-size: 20px;
    color: var(--primary-bg-color);
}

.about-ftc .about-us-img {
    text-align: center;
    margin: 20px auto;
}

.about-us-img img {
    width: 600px;
    height: 250px;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
}

.about-ftc .about-ftc-description {
    text-align: start;
    line-height: 35px;
    letter-spacing: 1px;
}

.about-ftc-description p {
    font-size: 15px;
}

.about-ftc-description span {
    font-weight: bold;
    color: var(--primary-bg-color);
}

.about-ftc-description .about-contact-us-btn {
    margin: 20px auto;
}

.about-contact-us-btn a {
    background-color: var(--primary-bg-color);
    color: var(--text-color);
    text-decoration: none;
    padding: 7px 15px;
    border-radius: 30px;
    border: 1px solid var(--primary-bg-color);
    transition: all 0.50s ease;
}

.about-contact-us-btn a:hover {
    background: transparent;
    color: var(--primary-bg-color);
}

/* ==========  ABOUT US END HERE  ========== */

/* ==========  FTC BLOG POST PAGE START HERE  ========== */
.ftc-blog-page {
    width: 95%;
    height: auto;
    margin: 50px auto;
    background-color: var(--text-color);
    padding: 15px;
}

.ftc-blog-page .blog-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-top h1 {
    font-size: 20px;
    color: var(--primary-bg-color);
    text-transform: uppercase;
    font-weight: bold;
}

.blog-search select {
    padding: 7px 15px;
    border: 1px solid var(--primary-bg-color);
}

.blog-search select:focus {
    outline: none;
}

.blog-search select option:hover {
    background-color: var(--primary-bg-color) !important;
}

.blog-top .blog-search input {
    padding: 7px 15px;
    border: 1px solid var(--primary-bg-color);
}

.blog-top .blog-search input:focus {
    outline: none;
}

.blog-top .blog-search button {
    padding: 7px 15px;
    border: 1px solid var(--primary-bg-color);
    background-color: var(--primary-bg-color);
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.50s ease;
}

.blog-top .blog-search button:hover {
    background: transparent;
    color: var(--primary-bg-color);
}

.blog-post-section {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    column-gap: 30px;
    row-gap: 50px;
    padding: 10px 50px;
}

.blog-post-section .blog-post-left {
    width: 900px;
    height: auto;
    display: grid;
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
    column-gap: 30px;
}

.blog-post-left .blog-post-card {
    width: 400px;
    height: auto;
    margin: 2px 10px;
    padding: 5px;
    background-color: var(--primary-bg-color);
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.2);
}

.blog-post-left img {
    width: 100%;
    height: 200px;
    transition: all 0.30s ease;
    overflow: hidden;
}

.blog-post-left img:hover {
    transform: translateX(3px) rotate(1deg);
}

.blog-post-left .blog-post-title a {
    font-size: 18px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.10s ease;
}

.blog-post-title a:hover {
    text-decoration: underline;
}

.blog-post-left .blog-post-description {
    font-size: 16px;
    text-align: start;
    color: var(--text-color);
}


.blog-post-section .blog-post-right {
    width: 300px;
    height: auto;
    background-color: var(--text-color);
    text-align: center;
}

.blog-post-right .recent-post-title {
    margin: 10px auto;
    color: var(--primary-bg-color);
    font-size: 18px;
    font-weight: bold;
}

.blog-post-right a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--black-color);
    margin: 10px 5px;
    transition: all 0.10s ease;
}

.blog-post-right a:hover {
    color: var(--primary-bg-color);
    text-decoration: underline;
}

/* ==========  FTC BLOG POST PAGE END HERE  ========== */

/* ==========  FTC BLOG POST DETAIL PAGE START HERE  ========== */
#blog-detail {
    width: 98%;
    margin: 150px auto 30px auto;
}

#blog-detail .blog-top-box {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    letter-spacing: 1px;
}

.blog-top-box .blog-heading {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

.blog-top-headings strong a {
    text-decoration: none;
    color: var(--primary-bg-color);
}

#blog-arrow-container {
    border-radius: 50px;
    height: 5px;
    background-color: var(--primary-bg-color);
}

#blog-detail .blog-down-arrows {
    display: flex;
    justify-content: space-between;
}

#blog-detail .blog-down-arrows i {
    font-size: 30px;
    color: var(--primary-bg-color);
    margin-top: -7px !important;
}

.blog-content-and-image {
    height: auto;
    background-color: var(--text-color);
    display: flex;
    justify-content: space-between;
    margin: auto 10px;
    padding: 20px;
}

.blog-content-and-image .blog-content {
    width: 75%;
    padding: 5px;
}

.blog-content .blogpostheading {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 5px auto 10px;
    border-left: 7px solid var(--primary-bg-color);
    border-radius: 5px;
    padding: 0 10px;
}

.blog-content .blogpostimg {
    width: 100%;
    height: 500px;
    margin: 30px auto;
}

.blog-content .blogpostdescription {
    margin: auto 5px auto 10px;
    font-size: 18px;
    text-align: justify;
}

.blog-content-and-image .recommended-blogs {
    width: auto;
    height: 500px;
    border-left: 3px solid var(--primary-bg-color);
    padding: 5px;
}

.recommended-blogs ul li {
    margin: 15px auto;
}

.recommended-blogs ul li a {
    text-decoration: none;
    color: var(--black-color);
    transition: all 0.10s ease;
}

.recommended-blogs ul li a:hover {
    text-decoration: underline;
    color: var(--primary-bg-color);
}

/* ==========  FTC BLOG POST DETAIL PAGE END HERE  ========== */

/* ==========  FTC CONTACT US PAGE START HERE  ========== */
.contact-us-top {
    margin: 50px auto;
    display: flex;
    justify-content: space-around;
}

.contact-us-top .email-address {
    width: 250px;
    height: 60px;
    background-color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.267);
}

.contact-us-top .email-address a {
    font-size: 16px;
    color: var(--black-color);
    text-decoration: none;
}

.email-address i {
    margin: 0 10px;
    width: 37px;
    height: 37px;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-bg-color);
    color: var(--text-color);
    border-radius: 50%;
}

.contact-us-top .contact-us-heading {
    display: flex;
    align-items: center;
}

.contact-us-top .contact-us-heading h1 {
    font-size: 18px;
    color: var(--primary-bg-color);
}

.contact-us-top .quote-btn {
    width: 250px;
    height: 60px;
    background-color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.267);
}

.quote-btn a {
    font-size: 16px;
    color: var(--black-color);
    text-decoration: none;
}

.quote-btn i {
    margin: 0 10px;
    width: 37px;
    height: 37px;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-bg-color);
    color: var(--text-color);
    border-radius: 50%;
}

/* Contact Form */
.contact-form {
    width: 800px;
    height: auto;
    background-color: var(--text-color);
    margin: 50px auto;
    padding: 20px;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.267);
}

.contact-form .formgroup input,
textarea {
    width: 100%;
    padding: 7px 15px;
    border: none;
    border-bottom: 1px solid var(--primary-bg-color);
    margin: 20px auto;
}

.contact-form select {
    width: 100%;
    padding: 7px 15px;
    border: none;
    border-bottom: 1px solid var(--primary-bg-color);
    margin: 20px auto;
    border-radius: 0;
}

.formgroup input:focus {
    outline: none;
}

.formgroup select:focus {
    box-shadow: none;
    outline: none !important;
}

.formgroup textarea:focus {
    outline: none;
}

.send-message {
    text-align: center;
    margin: 15px auto;
}

.send-message button {
    background-color: var(--primary-bg-color);
    padding: 7px 15px;
    border: 1px solid var(--primary-bg-color);
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.10s ease;
}

.send-message button:hover {
    background: transparent;
    color: var(--primary-bg-color);
}

/* ==========  FTC CONTACT US PAGE END HERE  ========== */
/* ==========  FTC IMAGE CONVERTERS PAGE START HERE  ========== */
.img-converters-heading {
    margin: 40px auto;
    text-align: center;
}

.img-converters-heading h1 {
    font-size: 20px;
    color: var(--primary-bg-color);
}

.image-converters-top {
    margin: 50px auto;
    display: grid;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 50px;

}

.image-converters-top .converter-box {
    width: 280px;
    height: auto;
    background-color: var(--text-color);
    padding: 5px;
    text-align: center;
    transition: all 0.50s ease;
    border-radius: 15px;
    border-left: 7px solid var(--primary-bg-color);
}

.converter-box a {
    text-decoration: none;
}

.converter-box:hover {
    transform: translateY(2px);
    border-left: 7px solid var(--black-color);
}

.converter-box .file-type {
    display: flex;
    align-items: center;
    justify-content: center;
}

.converter-box .type-converter {
    margin: 7px auto;
}

.converter-box .type-converter h2 {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--black-color);
    background: transparent;
    transition: all 0.50s ease;
}

.type-converter h2:hover {
    color: var(--primary-bg-color);
}

.file-type .file-icon {
    margin: 0 10px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-bg-color);
    color: var(--text-color);
    border-radius: 50%;
    font-size: 32px;
    padding: 5px;
    border: 2px solid var(--text-color);
}

.file-type .middle-arrow {
    color: var(--primary-bg-color);
    font-size: 40px;
}

.type-converter h2 {
    font-weight: bold;
    font-size: 13px !important;
}

/* Help FAQs Start here */
.img-converters-heading .faqs-heading {
    font-weight: bold;
}

.subheading h2 {
    font-size: 17px;
    font-weight: bold;
    text-align: center;
}

.faqs {
    width: 75%;
    height: auto;
    margin: 10px auto 100px auto;
    background-color: var(--text-color);
    padding: 20px;
}

.accordion .accordion-button {
    background-color: var(--primary-bg-color) !important;
    box-shadow: none !important;
    color: var(--text-color);
}

.accordion .accordion-button:focus {
    color: var(--text-color) !important;
}

.accordion-button::after {
    color: var(--text-color) !important;
}

.getting-advice {
    width: 75%;
    background-color: var(--text-color);
    padding: 20px;
    margin: 25px auto;
    display: flex;
    justify-content: space-between;
}

.radios h3 {
    font-size: 18px;
    text-align: center;
}

.radios input {
    font-size: 20px;
    margin: 10px 5px 10px 10px;
}

.radios button {
    margin: 10px;
    display: block;
    padding: 7px 15px;
    border: 1px solid var(--primary-bg-color);
    cursor: pointer;
    background-color: var(--primary-bg-color);
    color: var(--text-color);
    transition: all 0.50s ease;
}

.radios button:hover {
    background: transparent;
    color: var(--primary-bg-color);
}

.contact-btn h3 {
    font-size: 18px;
}

.contact-btn a {
    margin: 50px 0 10px 0;
    display: block;
    padding: 7px 15px;
    border: 1px solid var(--primary-bg-color);
    cursor: pointer;
    background-color: var(--primary-bg-color);
    color: var(--text-color);
    transition: all 0.50s ease;
    text-decoration: none;
}

.contact-btn a:hover {
    background: transparent;
    color: var(--primary-bg-color);
}

/* ==========  FTC IMAGE CONVERTERS PAGE END HERE  ========== */

/* ==========  ADMIN LOGINPAGE PAGE START HERE  ========== */
#admin-login-form {
    width: 400px;
    height: auto;
    margin: 170px auto;
    background-color: var(--text-color);
    padding: 20px;
}

#admin-login-form .login-heading {
    text-align: center;
}

.login-heading h1 {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-bg-color);
}

.input-field-group label {
    font-size: 16px;
    margin-top: 10px;
}

.input-field-group label span {
    color: red;
    font-size: 17px;
}

.input-field-group input {
    width: 100%;
    padding: 3px 10px;
    margin: 10px 0 0 0;
}

.adminloginbtn {
    text-align: center;
}

.loginBtn {
    width: 100%;
    margin-top: 20px;
    border: 1px solid var(--primary-bg-color);
    background-color: var(--primary-bg-color);
    padding: 5px 15px;
    color: var(--text-color);
    font-size: 15px;
    transition: all 0.30s ease;

}

.loginBtn:hover {
    background: transparent;
    color: var(--primary-bg-color);
}

/* ==========  ADMIN LOGINPAGE PAGE END HERE  ========== */

/* ==========  TERMS OS USE AND PRIVACY POLICY PAGE START HERE  ========== */
#page-header {
    margin: 150px auto 50px auto;
}

#page-header h1 {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: var(--black-color);
}

#page-header h1 span {
    color: var(--primary-bg-color);
}

.bottom-boxs {
    width: 92%;
    display: flex;
    justify-content: space-between;
}

.bottom-boxs .navbox {
    width: 200px;
    height: 180px;
    background-color: var(--text-color);
    padding: 10px;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.2);
}

.bottom-boxs .navbox ul {
    list-style: none;
}

.navbox ul li {
    margin: 10px auto;
}

.navbox ul li a {
    text-decoration: none;
    color: var(--black-color);
    font-size: 18px;
}

.navbox ul li a:hover {
    text-decoration: underline;
}

.bottom-boxs .page-brief {
    width: 1000px;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.2);
    background-color: var(--text-color);
    padding: 20px;
    margin-left: 10px;
}

.bottom-boxs .page-brief p {
    text-align: justify;
    font-size: 16px;
}

/* ==========  TERMS OS USE AND PRIVACY POLICY PAGE END HERE  ========== */

/* ==========  ERROSS PAGE START HERE  ========== */
#page_not_found_error {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

}

#errors_box {
    width: 600px;
    background-color: var(--text-color);
    padding: 20px;
}

#errors_box .error-heading {
    color: var(--primary-bg-color);
    font-size: 25px;
    font-weight: bold;
}

#errors_box .error-subheading {
    color: red;
    font-size: 18px;
    font-weight: bold;
}

#errors_box .error-para {
    font-size: 16px;
}

#errors_box .errors-user-redirect {
    text-decoration: none;
    padding: 10px 15px;
    background-color: var(--primary-bg-color);
    color: var(--text-color);
    border: 1px solid var(--primary-bg-color);
    transition: all 0.30s ease;
    font-size: 16px;
}

#errors_box .errors-user-redirect:hover {
    background: transparent;
    color: var(--primary-bg-color);
}

/* ==========  ERROSS PAGE END HERE  ========== */

/* ==========  CROPPPER CSS START HERE  ========== */
.croppper-heading {
    font-weight: bold;
    font-size: 20px;
}

.cropupload {
    display: block;
    max-width: 100%;
}

.preview {
    text-align: center;
    overflow: hidden;
    width: 160px;
    height: 160px;
    margin: 10px;
    border: 1px solid red;
}

.imageUpload {
    margin-top: 40px;
}

.sections {
    margin-top: 150px;
    background: #fff;
    padding: 50px 30px;
}

.crop-modal {
    max-width: 1000px !important;
}

/* ==========  CROPPPER CSS END HERE  ========== */

/* ==========  FOOTER STYLING START HERE  ========== */
#FTC_footer {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgb(252, 252, 252, 0.7)), url('images/footer-banner.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 30px 60px;
    border-top: 1px solid var(--primary-bg-color);
}

#FTC_footer .brand-logo-footer img {
    width: 80px;
    height: auto;
    margin-left: 60px;
}

.brand-logo-footer .subscribe-us {
    width: 350px;
}

.brand-logo-footer .subscribe-us .subscribe-para {
    margin: 8px;
    font-size: 15px;
}

.subscribe-us form input {
    padding: 6px 10px;
    border: 1px solid var(--primary-bg-color);
    outline: none;
}

.subscribe-us form button {
    padding: 6px 10px;
    border: 1px solid var(--primary-bg-color);
    background-color: var(--primary-bg-color);
    color: var(--text-color);
    outline: none;
    cursor: pointer;
}

#FTC_footer .quick-links {
    margin-top: 25px;
}

#FTC_footer .quick-links .footer-heading {
    font-size: 16px;
    color: var(--primary-bg-color);
    margin-bottom: 10px;
    text-align: center;
}

.contact-details ul li i {
    color: var(--primary-bg-color);
    margin: 5px;
}

.contact-details ul li a {
    color: var(--black-color);
}

#FTC_footer .quick-links ul {
    list-style: none;
}

#FTC_footer .quick-links ul li {
    margin: 5px auto;
}

#FTC_footer .quick-links ul li a {
    text-decoration: none;
    font-size: 17;
    color: var(--black-color);
}

#FTC_footer .quick-links ul li a:hover {
    text-decoration: underline;
    color: var(--primary-bg-color);
}

.copyright_bottom {
    width: 100%;
    height: 30px;
    background-color: var(--primary-bg-color);
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.copyright_text p {
    margin-bottom: 0;
    color: var(--text-color);
    font-size: 15px;
}

.copyright_text p a {
    margin-bottom: 0;
    text-decoration: none;
    font-weight: bold;
    color: var(--text-color);
}

.copyright_bottom ul {
    display: flex;
    list-style: none;
    margin-bottom: 0;
}

.social_icons ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
}

.social_icons ul li a {
    color: var(--text-color);
    font-size: 17px;
}

.social_icons .htmlsitemap{
        font-size: 25px;
        border-left: 1px solid var(--text-color);
        padding-left: 7px;
        height: 20px;
        display: flex;
        align-items: center;
    }

/* ==========  FOOTER STYLING END HERE  ========== */
/* ===================   Media Queryes For Responsiveness   =================== */
@media screen and (min-width: 935px) and (max-width: 1200px) {

    /* FTC COOKIE STYLING START HERE */
    #FTC_Cookie {
        padding: 14px;
    }

    #FTC_Cookie .cookie-heading h1 {
        font-size: 20px;
    }

    #FTC_Cookie .cookie-text {
        font-size: 15px;
    }

    #FTC_Cookie .cookie-btn button {
        padding: 6px 6px;
        font-size: 15px;
    }

    #very_top_nav {
        padding: 0 10px;
    }

    #very_top_nav .email-and-phone a {
        font-size: 16px;
    }

    #very_top_nav .notification a {
        font-size: 16px;
    }

    #top_navbar {
        height: 70px;
    }

    .menus .FTC_logo img {
        width: 60px;
        padding: 8px;
    }

    .nav-items ul li .nav-link {
        margin: 20px 8px;
        font-size: 15px;
    }

    .sub-menus {
        font-size: 15px;
    }

    .nav-items ul li:hover .sub-menus {
        margin-left: 18px;
    }

    .nav-items ul li:hover .sub-menus ul {
        margin: 18px;
    }

    .nav-items ul li:hover .sub-menus ul li {
        width: 125px;
        padding: 8px;
    }

    .nav-items ul li:hover .sub-menus ul li:hover {
        transform: translateX(3px);
    }

    .nav-items .sub-menus2 {
        left: 120px;
        top: 8px;
    }

    .contact-form {
        width: auto;
    }

    .user-help .help {
        padding: 8px 5px;
        font-size: 13px;
        border-radius: 4px;
    }

    .user-help .sign-up-btn {
        padding: 8px 7px;
        font-size: 13px;
        border-radius: 4px;
    }

    #hero_banner .text-animation {
        padding-top: 120px;
        font-size: 15px;
    }

    #hero_banner .text-animation h1 {
        font-size: 20px;
    }

    #hero_banner .text-animation span {
        font-size: 16px;
    }

    .pages_hero_banner {
        margin-top: 70px;
        height: 30vh;
    }

    #pupolar_conversion {
        width: 84%;
        padding: 8px;
        top: 90%;
    }

    #pupolar_conversion h2 {
        text-align: center;
        margin: 14px auto;
        color: var(--primary-bg-color);
        font-size: 16px;
    }

    #pupolar_conversion p {
        text-align: center;
        margin: 15px auto;
        font-size: 14px;
    }

    .features-cards .feature-icon {
        width: 40px;
        padding: 8px;
    }

    .features-cards i {
        font-size: 18px;

    }

    .features-cards .cards-title {
        font-size: 14px;
        padding-top: 4px;
    }

    .features-cards p {
        font-size: 13px !important;
        line-height: 16px;
    }

    .features-cards .use-feature {
        font-size: 14px;
    }

    /*  ==========  COUNTER SECTION START HERE  ========== */

    /* ==========  COUNTER SECTION START HERE  ========== */
    #counter_section {
        width: 85%;
        height: auto;
        padding: 10px;
        background-color: var(--text-color);
    }

    #counter_section .counter-heading {
        text-align: center;
    }

    #counter_section h3 {
        font-size: 18px;
        color: var(--primary-bg-color);
    }

    #counter_section .subheading {
        font-size: 13px;
    }

    #counter_section .counter-container {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .counter-container .counter-box {
        display: flex;
        margin-top: 15px;
    }

    .counter-container .inner-box {
        display: flex;
    }

    .counter-container .counting {
        display: flex;
        flex-direction: column;
        margin: 0 18px;
        align-items: center;
    }

    .counter-container .counting h4 {
        color: var(--primary-bg-color);
        font-size: 13px;
    }

    .counter-container span {
        width: 45px;
        height: 45px;
        border: 2px dashed var(--black-color);
        color: var(--primary-bg-color);
        border-radius: 50%;
        background-color: var(--secondary-bg-color);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* ==========  WHY FILES TO CONVERT SECTION START HERE  ========== */
    #why_choose_ftc {
        width: 80%;
        margin: 150px auto;
        padding: 17px;
    }

    #why_choose_ftc .why-choose-us-headings h3 {
        font-size: 18px;
    }

    #why_choose_ftc .why-choose-us-headings .why-choose-us-sub-heading {
        font-size: 14px;
    }

    #why_choose_ftc .why-choose-us-container {
        margin: 8px auto;
        padding: 8px;
    }

    .why-choose-us-container .why-choose-us-cards {
        width: 320px;
        height: auto;
        margin: 8px 8px;
        padding: 9px;
    }

    /* ==========  COUNTER SECTION END HERE  ========== */
    /* ==========  CUSTOMERS COMMENTS SECTION SART HERE  ========== */
    #comment_section {
        margin: 80px auto;
        padding: 17px;
    }

    #comment_section .comment-headings h3 {
        font-size: 18px;
    }

    #comment_section .comment-headings .customer-sub-heading {
        font-size: 13px;
    }

    #comment_section .comment-boxs {
        margin: 9px auto;
        padding: 9px;
    }

    .comment-boxs .comment-box {
        width: 300px;
        margin: 9px 9px;
        padding: 9px;
    }

    .comment-box .customer-profile img {
        width: 60px;
        height: 60px;
    }

    .comment-box .customer-profile .customer-name {
        margin-left: 10px;
        font-size: 14px;
    }

    .comment-box .customer-comment p {
        font-size: 14px;
        margin: 9px auto;
    }

    .customer-satisfactions .customer-rating-date {
        font-size: 13px;
    }

    /* ==========  CUSTOMERS COMMENTS SECTION END HERE  ========== */
    /* ==========  SUBSCRIBE SECTION START HERE  ========== */
    #subscribe_section {
        width: 80%;
        margin: 60px auto;
        padding: 40px;
    }

    #subscribe_section .subscribe-headings span {
        font-size: 18px;
    }

    #subscribe_section .subscribe-headings .subscribe-sub-heading {
        font-size: 13px;
    }

    .subscribe-us .sub-input {
        padding: 6px 13px;
    }

    .subscribe-us .subscribe-btn {
        padding: 6px 13px;
        font-size: 15px;
    }

    /* ==========  SUBSCRIBE SECTION END HERE  ========== */
    .page-info .home-redirection {
        font-size: 14px;
    }

    .page-info span {
        font-size: 14px;
    }

    #big-arrow {
        margin: 40px auto;
    }

    #big-arrow .tool-top-box {
        justify-content: space-between;
    }

    #big-arrow .down-arrows i {
        font-size: 27px;
    }

    #tool_box {
        width: 99%;
        margin: 27px auto;
    }

    #tool_box .all-usable-tools,
    .most-using-tools {
        width: 200px;
        height: auto;
    }

    #tool_box .for-circle-operation {
        width: 200px;
        height: 450px;
    }

    #tool_box .all-usable-tools .aside-tools-heading {
        margin: 15px 0 10px 0;
        font-size: 14px;
    }

    #tool_box .most-using-tools .aside-tools-heading {
        margin: 15px 0 10px 0;
        font-size: 14px;
    }

    #tool_box .upload-center {
        width: 570px;
        margin: 0 10px;
    }

    #tool_box .upload-your-file {
        width: 650px;
        height: 170px;
    }

    .upload-your-file .upload-box-inner {
        width: 100%;
        height: 150px;
    }

    .upload-box-inner .drop-file-heading {
        margin: 9px 0;
        font-size: 14px;
    }

    .upload-box-inner label {
        padding: 6px 6px;
    }

    .upload-box-inner .upload-files {
        margin: 18px 0;
    }

    .upload-your-file .convert-btn {
        padding: 6px 8px;
        color: var(--text-color);
        font-size: 14px;
        margin: 18px 0;
    }

    .tool-visit .tool-link {
        margin: 4px 0;
        margin-left: 32px;
        padding: 4px 0;
    }

    #operation_result {
        padding: 9px;
        margin: 28px 120px;
        /* display: none; */
    }

    #operation_result.showfilebox {
        display: block;
        display: inline-flex;
        flex-direction: column;
    }

    #operation_result .result-heading {
        font-size: 14px;
        padding-top: 9px;
    }

    #operation_result img {
        width: 100%;
        height: auto;
        margin: 37px auto;
    }

    #operation_result .file-download-btn {
        padding: 4px 9px;
        font-size: 14px;
    }

    .circle-operation {
        height: 800px;
    }


    #how_to_use {
        padding: 9px;
    }

    #how_to_use .how-to-use-heading {
        font-size: 14px;
        margin: 4px 0;
    }

    #how_to_use .how-to-use-subheading {
        font-size: 14px;
        margin: 4px 0;
    }

    #how_to_use ol li {
        font-size: 14px;
        margin: 5px 18px;
        line-height: 29px;
    }

    #converter-description {
        width: 92%;
        margin: 450px auto 0 auto;
    }

    #converter-description .brief-heading {
        font-size: 14px;
    }

    #converter-description .brief-desc {
        padding: 9px;
        line-height: 28px;
        font-size: 13px;
        letter-spacing: 0.3px;
    }

    #feedback_form {
        width: 290px;
        right: 10px;
        top: 700px;
        padding: 6px;
    }

    #feedback_form .feedback-heading {
        font-size: 14px;
        margin: 4px 0;
    }

    #feedback_form .feedback-subheading {
        font-size: 13px;
    }

    #feedback_form .feedback-rating {
        font-size: 13px;
        margin: 8px 0 0 0;
    }

    #feedback_form .feedback-stars i {
        font-size: 18px;
        margin: 5px 5px;
    }

    .feedback-brief .feedback-brief-heading {
        font-size: 13px;
        margin: 18px 0 0 0;
    }

    .feedback-brief textarea::placeholder {
        padding: 4px;
    }

    .post-review .submit-feedback {
        padding: 6px 9px;
        font-size: 14px;
        margin: 9px 0;
    }

    /* //////////////////////////////      PAGES STYLING END HERE       ////////////////////////// */
    .about-ftc {
        width: 75%;
        margin: 25px auto;
        padding: 18px;
    }

    .about-ftc .about-us-heading {
        padding-top: 10px;
    }

    .about-us-heading h1 {
        font-size: 18px;
        font-weight: bold;
    }

    .about-ftc .about-us-img {
        margin: 18px auto;
    }

    .about-us-img img {
        width: 500px;
        height: 220px;
    }

    .about-ftc-description p {
        font-size: 13px;
    }

    .about-ftc-description .about-contact-us-btn {
        margin: 16px auto;
    }

    .about-contact-us-btn a {
        padding: 6px 13px;
    }

    /* ==========  FTC BLOG POST PAGE START HERE  ========== */
    .ftc-blog-page {
        width: 95%;
        margin: 40px auto;
        padding: 13px;
    }

    .blog-top h1 {
        font-size: 17px;
        display: none;
    }

    .blog-search select {
        padding: 6px 13px;
    }

    .blog-search button {
        padding: 6px 13px;
    }

    .blog-top .blog-search input {
        padding: 6px 13px;
    }

    .blog-top .blog-search button {
        padding: 6px 13px;
    }

    .blog-post-section {
        width: 95%;
        margin: 40px auto;
        gap: 40px;
    }

    .blog-post-section .blog-post-left {
        width: 750px;
        padding: 9px;
    }

    .blog-post-left .blog-post-card {
        width: 250px;
        height: auto;
        margin: 2px 8px;
        padding: 5px;
    }

    .blog-post-left img {
        width: 100%;
        height: auto;
    }

    .blog-post-left .blog-post-title a {
        font-size: 13px;
    }

    .blog-post-left .blog-post-description {
        font-size: 13px;
    }

    .blog-post-section .blog-post-right {
        width: 280px;
    }

    .blog-post-right .recent-post-title {
        margin: 8px auto;
        font-size: 17px;
    }

    .blog-post-right a {
        margin: 9px auto;
    }

    /* ==========  FTC CONTACT US PAGE START HERE  ========== */
    .contact-us-top {
        margin: 40px auto;
    }

    .contact-us-top .email-address {
        width: 240px;
        height: 50px;
    }

    .contact-us-top .email-address a {
        font-size: 15px;
    }

    .email-address i {
        margin: 0 9px;
    }

    .contact-us-top .contact-us-heading h1 {
        font-size: 15px;
    }

    .contact-us-top .quote-btn {
        width: 240px;
        height: 50px;
    }

    .quote-btn a {
        font-size: 15px;
    }

    .quote-btn i {
        margin: 0 9px;
    }

    /* Contact Form */
    .contact-form {
        width: 820px;
        margin: 40px auto;
        padding: 17px;
    }

    .contact-form .formgroup label {
        font-size: 14px;
    }

    .contact-form .formgroup input,
    textarea,
    select {
        padding: 6px 13px;
        margin: 17px auto;
    }

    .send-message {
        margin: 14px auto;
    }

    .send-message button {
        padding: 6px 14px;
    }

    /* ==========  FTC CONTACT US PAGE END HERE  ==========
    /* ==========  FTC IMAGE CONVERTERS PAGE START HERE  ========== */
    .img-converters-heading {
        margin: 30px auto;
    }

    .img-converters-heading h1 {
        font-size: 15px;
        font-weight: bold;
    }

    .image-converters-top {
        margin: 40px auto;
        column-gap: 27px;
        row-gap: 40px;
    }

    .image-converters-top .converter-box {
        width: 260px;
        padding: 5px;
    }

    .converter-box .type-converter {
        margin: 6px auto;
    }

    .converter-box .type-converter h2 {
        font-size: 14px;
        font-weight: bold;
    }

    .file-type .file-icon {
        margin: 0 9px;
        width: 45px;
        height: 45px;
        font-size: 30px;
    }

    .file-type .middle-arrow {
        font-size: 30px;
    }

    /* ==========  ADMIN LOGINPAGE PAGE START HERE  ========== */
    #admin-login-form {
        width: 300px;
        margin: 150px auto;
        padding: 17px;
    }

    .login-heading h1 {
        font-size: 17px;
    }

    .input-field-group label {
        font-size: 15px;
        margin-top: 8px;
    }

    .input-field-group label span {
        font-size: 15px;
    }

    .input-field-group input {
        padding: 3px 9px;
        margin: 9px 0 0 0;
    }

    .loginBtn {
        margin-top: 17px;
        padding: 4px 13px;
        font-size: 14px;

    }

    /* ==========  ADMIN LOGINPAGE PAGE END HERE  ========== */
    .subheading h2 {
        font-size: 14px;
    }

    .faqs {
        margin: 9px auto 80px auto;
        padding: 18px;
    }

    .getting-advice {
        width: 75%;
        padding: 18px;
        margin: 20px auto;
    }

    .accordion-body {
        text-align: justify;
        font-size: 14px !important;
    }

    .radios h3 {
        font-size: 16px;
    }

    .radios input {
        font-size: 18px;
        margin: 9px 5px 9px 9px;
    }

    .radios button {
        margin: 9px;
        padding: 6px 13px;
    }

    .contact-btn h3 {
        font-size: 16px;
    }

    .contact-btn a {
        margin: 45px 0 9px 0;
        padding: 6px 13px;
    }

    /* ==========  TERMS OS USE AND PRIVACY POLICY PAGE START HERE  ========== */
    #page-header {
        margin: 140px auto 40px auto;
    }

    #page-header h1 {
        font-size: 18px;
    }

    .bottom-boxs {
        width: 92%;
    }

    .bottom-boxs .navbox {
        width: 200px;
        height: 180px;
        padding: 10px;
    }

    .navbox ul li {
        margin: 10px auto;
    }

    .bottom-boxs .page-brief {
        width: 800px;
        background-color: var(--text-color);
        padding: 20px;
    }

    .bottom-boxs .page-brief p {
        text-align: justify;
        font-size: 16px;
    }

    /* ==========  TERMS OS USE AND PRIVACY POLICY PAGE END HERE  ========== */
    /* ==========  ERROSS PAGE START HERE  ========== */
    #page_not_found_error {
        width: 100%;
        height: 70vh;
    }

    #errors_box {
        width: 600px;
        padding: 18px;
    }

    #errors_box .error-heading {
        font-size: 20px;
    }

    #errors_box .error-subheading {
        font-size: 17px;
    }

    #errors_box .error-para {
        font-size: 15px;
    }

    #errors_box .errors-user-redirect {
        padding: 8px 13px;
        font-size: 16px;
    }

    /* ==========  ERROSS PAGE END HERE  ========== */
    /* ==========  FTC BLOG POST DETAIL PAGE START HERE  ========== */
    #blog-detail {
        width: 98%;
        margin: 140px auto 30px auto;
    }

    .blog-top-box .blog-heading {
        font-size: 15px;
    }

    #blog-arrow-container {
        border-radius: 50px;
        height: 5px;
    }

    #blog-detail .blog-down-arrows {
        display: flex;
        justify-content: space-between;
    }

    #blog-detail .blog-down-arrows i {
        font-size: 26px;
        margin-top: -7px !important;
    }

    .blog-content-and-image {
        height: auto;
        justify-content: space-between;
        margin: auto 10px;
        padding: 17px;
    }

    .blog-content-and-image .blog-content {
        width: 75%;
        padding: 5px;
    }

    .blog-content .blogpostheading {
        font-size: 20px;
        margin: 10px 5px auto 10px;
        border-left: 7px solid var(--primary-bg-color);
        border-radius: 5px;
        padding: 0 10px;
    }

    .blog-content .blogpostimg {
        width: 100%;
        height: 400px;
        margin: 30px auto;
    }

    .blog-content .blogpostdescription {
        margin: auto 5px auto 10px;
        font-size: 18px;
        text-align: justify;
    }

    .blog-content-and-image .recommended-blogs {
        width: auto;
        height: 500px;
        border-left: 3px solid var(--primary-bg-color);
        padding: 5px;
    }

    .recommended-blogs ul li {
        margin: 15px auto;
    }

    /* ==========  FTC BLOG POST DETAIL PAGE END HERE  ========== */

    /* ==========  FTC IMAGE CONVERTERS PAGE END HERE  ========== */
    /* Footer Resposive */
    #FTC_footer {
        justify-content: space-around;
        padding: 30px 10px;
        margin-top: 30px !important
    }

    #FTC_footer .brand-logo-footer img {
        width: 60px;
    }

    .brand-logo-footer .subscribe-us {
        width: 300px;
    }

    .brand-logo-footer .subscribe-us .subscribe-para {
        margin: 7px;
        font-size: 13px;
    }

    .subscribe-us form input {
        padding: 5px 8px;
    }

    .subscribe-us form button {
        padding: 5px 8px;
    }

    #FTC_footer .quick-links .footer-heading {
        font-size: 18px;
        margin-bottom: 8px;
        text-align: end;
    }

    #FTC_footer .quick-links {
        margin-top: 15px;
    }


    .contact-details ul li i {
        margin: 4px;
    }

    #FTC_footer .quick-links ul li {
        margin: 4px auto;
    }

    #FTC_footer .quick-links ul li a {
        text-decoration: none;
        font-size: 15;
    }

    #copyright_section {
        width: 100%;
        height: 50px;
        justify-content: center;
        font-size: 14px;
    }

    .copyright_bottom {
        width: 100%;
        height: 30px;
        background-color: var(--primary-bg-color);
        display: flex;
        align-items: center;
        justify-content: space-around;
    }

    .copyright_text p {
        margin-bottom: 0;
        color: var(--text-color);
        font-size: 15px;
    }

    .copyright_text p a {
        margin-bottom: 0;
        text-decoration: none;
        font-weight: bold;
        color: var(--text-color);
    }

    .copyright_bottom ul {
        display: flex;
        list-style: none;
        margin-bottom: 0;
    }

    .social_icons ul li {
        margin: 0 10px;
    }

    .social_icons ul li a {
        color: var(--text-color);
        font-size: 17px;
    }
}

@media screen and (min-width: 690px) and (max-width: 935px) {

    /* FTC COOKIE STYLING START HERE */
    #FTC_Cookie {
        padding: 14px;
    }

    #FTC_Cookie .cookie-heading h1 {
        font-size: 20px;
    }

    #FTC_Cookie .cookie-text {
        font-size: 15px;
    }

    #FTC_Cookie .cookie-btn button {
        padding: 6px 6px;
        font-size: 15px;
    }

    #very_top_nav {
        padding: 0 8px;
    }

    #very_top_nav .email-and-phone a {
        font-size: 14px;
    }

    #very_top_nav .notification a {
        font-size: 14px;
    }

    #top_navbar {
        height: 50px;
    }

    /* SOCIAL SHARING BUTTON */
    #social-links {
        position: fixed;
        left: -40px;
        bottom: 0px;
    }

    #social-links ul li {
        display: flex;
    }

    #social-links ul li a {
        border: none;
        margin: 1px;
        font-size: 15px;
        color: var(--primary-bg-color);
        background: transparent;
    }

    .menus .FTC_logo img {
        width: 60px;
        padding: 7px;
    }

    .nav-items ul li .nav-link {
        margin: 0 7px;
        font-size: 13px;
    }

    .sub-menus {
        font-size: 13px;
    }

    .nav-items ul li:hover .sub-menus {
        margin-left: 15px;
    }

    .nav-items ul li:hover .sub-menus ul {
        margin: 15px;
    }

    .nav-items ul li:hover .sub-menus ul li {
        width: 110px;
        padding: 6px;
    }

    .nav-items ul li:hover .sub-menus ul li:hover {
        transform: translateX(3px);
    }

    /* ==========  ADMIN LOGINPAGE PAGE END HERE  ========== */
    .subheading h2 {
        font-size: 14px;
    }

    .faqs {
        width: 90%;
        margin: 9px auto 80px auto;
        padding: 18px;
    }

    .getting-advice {
        width: 75%;
        padding: 18px;
        margin: 20px auto;
    }

    .accordion-header button {
        font-size: 14px !important;
    }

    .accordion-body {
        text-align: justify;
        font-size: 14px !important;
    }

    .radios h3 {
        font-size: 16px;
    }

    .radios input {
        font-size: 18px;
        margin: 9px 5px 9px 9px;
    }

    .radios button {
        margin: 9px;
        padding: 6px 13px;
    }

    .contact-btn h3 {
        font-size: 16px;
    }

    .contact-btn a {
        margin: 45px 0 9px 0;
        padding: 6px 13px;
    }

    /* ==========  FTC IMAGE CONVERTERS PAGE END HERE  ========== */

    /* ==========  FTC CONTACT US PAGE START HERE  ========== */
    .contact-us-top {
        margin: 40px auto;
    }

    .contact-us-top .email-address {
        width: 240px;
        height: 50px;
    }

    .contact-us-top .email-address a {
        font-size: 15px;
    }

    .email-address i {
        margin: 0 9px;
    }

    .contact-us-top .contact-us-heading h1 {
        font-size: 15px;
    }

    .contact-us-top .quote-btn {
        width: 240px;
        height: 50px;
    }

    .quote-btn a {
        font-size: 15px;
    }

    .quote-btn i {
        margin: 0 9px;
    }

    /* Contact Form */
    .contact-form {
        width: 80% !important;
        margin: 40px auto;
        padding: 17px;
    }

    .contact-form .formgroup label {
        font-size: 14px;
    }

    .contact-form .formgroup input,
    textarea,
    select {
        padding: 6px 13px;
        margin: 17px auto;
    }

    .send-message {
        margin: 14px auto;
    }

    .send-message button {
        padding: 4px 13px;
    }

    /* * ==========  WHY FILES TO CONVERT SECTION START HERE  ========== */
    #why_choose_ftc {
        width: 85%;
        margin: 200px auto;
        padding: 17px;
    }

    #why_choose_ftc .why-choose-us-headings h3 {
        font-size: 18px;
    }

    #why_choose_ftc .why-choose-us-headings .why-choose-us-sub-heading {
        font-size: 13px;
    }

    #why_choose_ftc .why-choose-us-container {
        margin: 8px auto;
        padding: 8px;
    }

    .why-choose-us-container .why-choose-us-cards {
        width: 330px;
        height: auto;
        margin: 7px 7px;
        padding: 8px;
    }

    /* ==========  CUSTOMERS COMMENTS SECTION SART HERE  ========== */
    #comment_section {
        width: 85%;
        margin: 70px auto;
        padding: 15px;
    }

    #comment_section .comment-headings h3 {
        font-size: 15px;
    }

    #comment_section .comment-headings .customer-sub-heading {
        font-size: 14px;
    }

    #comment_section .comment-boxs {
        margin: 7px auto;
        padding: 7px;
    }

    .comment-boxs .comment-box {
        width: 280px;
        margin: 7px 7px;
        padding: 7px;
    }

    .comment-box .customer-profile img {
        width: 50px;
        height: 50px;
    }

    .comment-box .customer-profile .customer-name {
        margin-left: 9px;
        font-size: 13px;
    }

    .comment-box .customer-comment p {
        font-size: 13px;
        margin: 8px auto;
        text-align: start;
    }

    .customer-satisfactions .customer-rating-date {
        font-size: 14px;
    }

    /* ==========  CUSTOMERS COMMENTS SECTION END HERE  ========== */
    /* ==========  SUBSCRIBE SECTION START HERE  ========== */
    #subscribe_section {
        width: 85%;
        margin: 50px auto;
        padding: 30px;
    }

    #subscribe_section .subscribe-headings span {
        font-size: 15px;
    }

    #subscribe_section .subscribe-headings .subscribe-sub-heading {
        font-size: 14px;
    }

    .subscribe-us .sub-input {
        padding: 6px 14px;
    }

    .subscribe-us .subscribe-btn {
        padding: 6px 14px;
        font-size: 14px;
    }

    /* ==========  SUBSCRIBE SECTION END HERE  ========== */
    .page-info .home-redirection {
        font-size: 14px;
    }

    .page-info span {
        font-size: 14px;
    }

    #big-arrow {
        margin: 30px auto;
    }

    #big-arrow .tool-top-box {
        justify-content: space-between;
    }

    #big-arrow .down-arrows i {
        font-size: 27px;
    }

    #tool_box {
        width: 99%;
        margin: 25px auto;
    }

    #tool_box .all-usable-tools,
    .most-using-tools {
        width: 200px;
        height: auto;
    }

    #tool_box .all-usable-tools .aside-tools-heading {
        margin: 14px 0 9px 0;
        font-size: 13px;
    }

    #tool_box .most-using-tools .aside-tools-heading {
        margin: 14px 0 9px 0;
        font-size: 13px;
    }

    #tool_box .tool-visit .tool-link {
        font-size: 14px;
    }

    #tool_box .upload-center {
        width: auto;
        margin: 0 30px;
    }

    #tool_box .upload-your-file {
        width: 400px;
        height: 170px;
    }

    .upload-your-file .upload-box-inner {
        width: 100%;
        height: 150px;
    }

    .upload-box-inner .drop-file-heading {
        margin: 8px 0;
        font-size: 14px;
    }

    .upload-box-inner label {
        padding: 6px 6px;
    }

    .upload-box-inner .upload-files {
        margin: 18px 0;
    }

    .upload-your-file .convert-btn {
        padding: 6px 8px;
        color: var(--text-color);
        font-size: 14px;
        margin: 18px 0;
    }

    .tool-visit .tool-link {
        margin: 4px 0;
        margin-left: 32px;
        padding: 4px 0;
    }

    #tool_box .for-circle-operation {
        width: 200px;
        height: 600px;
    }

    .circle-operation {
        height: 850px;
    }

    #operation_result {
        padding: 9px;
        margin: 20px auto;
        /* display: none; */
    }

    #operation_result.showfilebox {
        display: block;
        display: inline-flex;
        flex-direction: column;
    }

    #operation_result .result-heading {
        font-size: 14px;
        padding-top: 9px;
    }

    #operation_result img {
        width: 100%;
        height: auto;
        margin: 35px auto;
    }

    #operation_result .file-download-btn {
        padding: 4px 9px;
        font-size: 14px;
    }

    #how_to_use {
        padding: 9px;
    }

    #how_to_use .how-to-use-heading {
        font-size: 14px;
        margin: 4px 0;
    }

    #how_to_use .how-to-use-subheading {
        font-size: 14px;
        margin: 4px 0;
    }

    #how_to_use ol li {
        font-size: 14px;
        margin: 4px 15px;
        line-height: 29px;
    }

    #converter-description {
        width: 92%;
        margin: 320px auto 0 auto;
    }

    #converter-description .brief-heading {
        font-size: 14px;
    }

    #converter-description .brief-desc {
        padding: 9px;
        line-height: 28px;
        font-size: 13px;
        letter-spacing: 0.3px;
    }

    #feedback_form {
        width: 290px;
        right: 10px;
        top: 700px;
        padding: 6px;
    }

    #feedback_form .feedback-heading {
        font-size: 14px;
        margin: 4px 0;
    }

    #feedback_form .feedback-subheading {
        font-size: 13px;
    }

    #feedback_form .feedback-rating {
        font-size: 13px;
        margin: 8px 0 0 0;
    }

    #feedback_form .feedback-stars i {
        font-size: 18px;
        margin: 5px 5px;
    }

    .feedback-brief .feedback-brief-heading {
        font-size: 13px;
        margin: 18px 0 0 0;
    }

    .feedback-brief textarea::placeholder {
        padding: 4px;
    }

    .post-review .submit-feedback {
        padding: 6px 9px;
        font-size: 14px;
        margin: 9px 0;
    }

    /* //////////////////////////////      PAGES STYLING END HERE       ////////////////////////// */
    .about-ftc {
        width: 80%;
        margin: 20px auto;
        padding: 15px;
    }

    .about-ftc .about-us-heading {
        padding-top: 8px;
    }

    .about-us-heading h1 {
        font-size: 14px;
        font-weight: bold;
    }

    .about-ftc .about-us-img {
        margin: 13px auto;
    }

    .about-us-img img {
        width: 450px;
        height: 180px;
    }

    .about-ftc-description p {
        font-size: 13px;
    }

    .about-ftc-description .about-contact-us-btn {
        margin: 13px auto;
    }

    .about-contact-us-btn a {
        padding: 5px 13px;
    }

    /* ==========  FTC BLOG POST PAGE START HERE  ========== */
    .ftc-blog-page {
        width: 90%;
        margin: 25px auto;
        padding: 14px;
    }

    .blog-top h1 {
        font-size: 15px;
        display: none;
    }

    .blog-search select {
        padding: 5px 10px;
        margin-bottom: 5px;
    }

    .blog-search button {
        padding: 5px 10px;
    }

    .blog-top .blog-search input {
        padding: 5px 10px;
        margin-bottom: 5px;
    }

    .blog-top .blog-search button {
        padding: 5px 10px;
        font-size: 14px;
    }

    .blog-post-section {
        width: 90%;
        margin: 25px auto;
        gap: 30px;
    }

    .blog-post-section .blog-post-left {
        width: 700px;
        padding: 8px;
    }

    .blog-post-left .blog-post-card {
        width: 200px;
        height: auto;
        margin: 2px 7px;
        padding: 5px;
    }

    .blog-post-left img {
        width: 100%;
        height: auto;
    }

    .blog-post-left .blog-post-title a {
        font-size: 14px;
    }

    .blog-post-left .blog-post-description {
        font-size: 14px;
    }

    .blog-post-section .blog-post-right {
        width: 300px;
    }

    .blog-post-right .recent-post-title {
        margin: 7px auto;
        font-size: 15px;
    }

    .blog-post-right a {
        margin: 8px auto;
    }

    /* ==========  FTC IMAGE CONVERTERS PAGE START HERE  ========== */
    .img-converters-heading {
        margin: 20px auto;
    }

    .img-converters-heading h1 {
        font-size: 14px;
        font-weight: bold;
    }

    .image-converters-top {
        margin: 30px auto;
        column-gap: 24px;
        row-gap: 30px;
    }

    .image-converters-top .converter-box {
        width: 230px;
        padding: 5px;
    }

    .converter-box .type-converter {
        margin: 5px auto;
    }

    .converter-box .type-converter h2 {
        font-size: 13px;
    }

    .file-type .file-icon {
        margin: 0 9px;
        width: 45px;
        height: 45px;
        font-size: 27px;
    }

    .file-type .middle-arrow {
        font-size: 27px;
    }

    /* ==========  ADMIN LOGINPAGE PAGE START HERE  ========== */
    #admin-login-form {
        width: 250px;
        margin: 120px auto;
        padding: 15px;
    }

    .login-heading h1 {
        font-size: 14px;
    }

    .input-field-group label {
        font-size: 13px;
        margin-top: 7px;
    }

    .input-field-group label span {
        font-size: 13px;
    }

    .input-field-group input {
        padding: 3px 7px;
        margin: 7px 0 0 0;
    }

    .loginBtn {
        margin-top: 15px;
        padding: 3px 10px;
        font-size: 13px;

    }

    /* ==========  ADMIN LOGINPAGE PAGE END HERE  ========== */
    /* ==========  TERMS OS USE AND PRIVACY POLICY PAGE START HERE  ========== */
    #page-header {
        margin: 100px auto 40px auto;
    }

    #page-header h1 {
        font-size: 14px;
    }

    .bottom-boxs {
        width: 92%;
    }

    .bottom-boxs .navbox {
        width: 200px;
        height: 150px;
        padding: 10px;
    }

    .navbox ul li {
        margin: 10px auto;
    }

    .bottom-boxs .page-brief {
        width: 800px;
        background-color: var(--text-color);
        padding: 17px;
    }

    .bottom-boxs .page-brief p {
        text-align: justify;
        font-size: 15px;
    }

    /* ==========  TERMS OS USE AND PRIVACY POLICY PAGE END HERE  ========== */
    /* ==========  ERROSS PAGE START HERE  ========== */
    #page_not_found_error {
        height: 80vh;
    }

    #errors_box {
        width: 600px;
        padding: 16px;
    }

    #errors_box .error-heading {
        font-size: 17px;
    }

    #errors_box .error-subheading {
        font-size: 15px;
    }

    #errors_box .error-para {
        font-size: 14px;
    }

    #errors_box .errors-user-redirect {
        padding: 7px 10px;
        font-size: 15px;
    }

    /* ==========  ERROSS PAGE END HERE  ========== */
    /* ==========  FTC BLOG POST DETAIL PAGE START HERE  ========== */
    #blog-detail {
        width: 98%;
        margin: 120px auto 30px auto;
    }

    .blog-top-box .blog-top-headings {
        font-size: 13px;
    }

    #blog-arrow-container {
        border-radius: 50px;
        height: 5px;
    }

    #blog-detail .blog-down-arrows i {
        font-size: 20px;
        margin-top: -5px !important;
    }

    .blog-content-and-image {
        height: auto;
        justify-content: space-between;
        margin: auto 10px;
        padding: 15px;
    }

    .blog-content-and-image .blog-content {
        width: 75%;
        padding: 5px;
    }

    .blog-content .blogpostheading {
        font-size: 15px;
        margin: 10px 5px auto 10px;
        border-left: 5px solid var(--primary-bg-color);
        border-radius: 5px;
        padding: 0 10px;
    }

    .blog-content .blogpostimg {
        width: 100%;
        height: 200px;
        margin: 25px auto;
    }

    .blog-content .blogpostdescription {
        margin: auto 5px auto 10px;
        font-size: 15px;
        text-align: justify;
    }

    .blog-content-and-image .recommended-blogs {
        width: auto;
        height: 400px;
        border-left: 2px solid var(--primary-bg-color);
        padding: 5px;
    }

    .recommended-blogs ul li {
        margin: 14px auto;
    }

    /* ==========  FTC BLOG POST DETAIL PAGE END HERE  ========== */

    /* Footer Responsive */
    #FTC_footer {
        justify-content: space-around;
        padding: 20px 5px;
        margin-top: 15px !important
    }

    #FTC_footer .brand-logo-footer img {
        width: 50px;
        margin-left: 40px;
    }

    .brand-logo-footer .subscribe-us {
        width: 240px;
    }

    .brand-logo-footer .subscribe-us .subscribe-para {
        margin: 5px;
        font-size: 10px;
    }

    .subscribe-us form input {
        padding: 4px 7px;
    }

    .subscribe-us form button {
        padding: 4px 7px;
        margin: 3px 0;
    }

    /* ==========  FTC CONTACT US PAGE START HERE  ========== */
    .contact-us-top {
        margin: 30px auto;
    }

    .contact-us-top .email-address {
        width: 230px;
        height: 40px;
    }

    .contact-us-top .email-address a {
        font-size: 14px;
    }

    .email-address i {
        margin: 0 8px;
    }

    .contact-us-top .contact-us-heading h1 {
        font-size: 14px;
    }

    .contact-us-top .quote-btn {
        width: 230px;
        height: 40px;
    }

    .quote-btn a {
        font-size: 14px;
    }

    .quote-btn i {
        margin: 0 8px;
    }

    /* Contact Form */
    .contact-form {
        width: 790px;
        margin: 30px auto;
        padding: 15px;
    }

    .contact-form .formgroup input,
    textarea,
    select {
        padding: 5px 14px;
        margin: 15px auto;
    }

    .send-message {
        margin: 13px auto;
    }

    .send-message button {
        padding: 5px 13px;
    }


    #FTC_footer .quick-links {
        margin-top: 15px;
    }

    #FTC_footer .quick-links .footer-heading {
        font-size: 14px;
        margin-bottom: 7px;
    }

    .contact-details ul li i {
        margin: 3px;
    }

    #FTC_footer .quick-links ul li {
        margin: 3px auto;
    }

    #FTC_footer .quick-links ul li a {
        font-size: 12;
    }

    .copyright_bottom {
        width: 100%;
        height: 27px;
    }

}

@media screen and (min-width: 300px) and (max-width: 690px) {
    
    /* Website Preloader */
#preloader{
    background-size: 40%;
}

    /* FTC COOKIE STYLING START HERE */
#FTC_Cookie {
    width: 90%;
    left: -500px;
    padding: 12px;
    margin: 0 15px;
}

@keyframes cookie{
    from {
        left: -500px;
    }

    to {
        left: 0;
    }
}

    #FTC_Cookie .cookie-heading h1 {
        font-size: 17px;
    }

    #FTC_Cookie .cookie-text {
        font-size: 14px;
        text-align: justify;
    }

    #FTC_Cookie .cookie-btn button {
        padding: 5px 4px;
        font-size: 14px;
    }
    
    .scrollToTop.active {
    bottom: 7px;
    }

    #very_top_nav {
        padding: 0 3px;
    }

    #very_top_nav .email-and-phone a {
        font-size: 15px;
        font-weight: bold;
        padding-left: 3px;
        border-left: none;
    }

    #very_top_nav .notification a {
        font-size: 14px;
        padding-right: 3px;
    }

    /* SOCIAL SHARING BUTTON */
    #social-links {
        position: fixed;
        left: -40px;
        bottom: 0px;
    }

    #social-links ul li {
        display: flex;
    }

    #social-links ul li a {
        border: none;
        margin: 1px;
        font-size: 15px;
        color: var(--primary-bg-color);
        background: transparent;
    }
    
    .menus .user-help{
        padding-bottom: 5px;
    }

    .menuIcon {
        display: block;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 0;
        margin-top: 7px;
    }

    #top_navbar {
        height: 50px;
    }

    #top_navbar .menus {
        justify-content: space-between;
        padding: 0 10px;
    }

    .menus .nav-items ul {
        width: 150px;
        background-color: var(--text-color);
        border-top: 1px solid var(--primary-bg-color);
        position: absolute;
        flex-direction: column;
        text-align: center;
        transition: all 0.50s ease;
        padding-left: 0;
        top: -500px;
        z-index: 1;
    }

    .menus .nav-items ul.show {
        top: 23px;
    }

    .menus .nav-items ul .nav-link {
        margin: 10px auto;
        padding: 5px 0 0 0;
        color: var(--primary-bg-color);
    }

    .menus .FTC_logo img {
        width: 63px;
        padding: 7px;
    }
    .nav-items ul li{
        border-bottom: 1px solid var(--primary-bg-color);
    }

    .nav-items ul li .nav-link {
        margin: 0 7px;
        font-size: 13px;
    }
    
    .sub-menus a{
        color: var(--text-color);
    }

    .nav-items ul li:hover .sub-menus {
        width: 100px !important;
        position: absolute;
        top: 57px;
        left: -168px;
        border-left: 1px solid var(--primary-bg-color);
    }

    .nav-items ul li:hover .for-sm {
        top: 23px;
        position: absolute;
    }

    .nav-items ul li:hover .sub-menus ul {
        margin: 18px 190px;
        top: 50px;
    }

    .nav-items ul li:hover .sub-menus ul li {
        background-color: var(--primary-bg-color);
        width: 180px;
        padding: 8px;
        border: 1px solid var(--text-color);
        transition: all 0.3s ease;
        font-size: 12px;
        color: var(--text-color) !important;
        z-index: 10000;
    }

    .nav-items .sub-menus2 {
        top: -34px;
        height: auto;
        color: var(--text-color);
        position: absolute;
        left: -197px;
    }

    .user-help a {
        padding: 3px 5px;
    }

    .user-help .help {
        padding: 5px 6px;
        font-size: 14px;
        border-radius: 0;
    }

    .user-help .sign-up-btn {
        padding: 6px 6px;
        font-size: 13px;
        border-radius: 0;
        margin: 0 10px;
    }

    /* ==========  ADMIN LOGINPAGE PAGE END HERE  ========== */
    .subheading h2 {
        font-size: 13px;
        font-weight: normal;
    }

    .faqs {
        width: 98%;
        margin: 8px auto 60px auto;
        padding: 15px;
    }

    .getting-advice {
        width: 98%;
        padding: 15px;
        margin: 15px auto;
    }

    .accordion-header button {
        font-size: 13px !important;
    }

    .accordion-body {
        text-align: justify;
        font-size: 13px !important;
    }

    .radios h3 {
        font-size: 15px;
    }

    .radios input {
        font-size: 15px;
        margin: 6px 5px 6px 6px;
    }

    .radios button {
        margin: 6px;
        padding: 5px 10px;
        font-size: 14px !important;
    }

    .contact-btn h3 {
        font-size: 14px;
    }

    .contact-btn a {
        margin: 30px 0 6px 0;
        padding: 5px 10px;
    }

    /* ==========  FTC IMAGE CONVERTERS PAGE END HERE  ========== */

    #hero_banner .text-animation {
        padding: 90px 0 40px 0;
        font-size: 13px;
    }

    #hero_banner .text-animation h1 {
        font-size: 15px;
    }

    #hero_banner .text-animation h1 span {
        font-size: 13px !important;
    }

    .pages_hero_banner {
        margin-top: 50px;
        height: 10vh;
    }

    #pupolar_conversion {
        width: 90%;
        padding: 6px;
        top: 85%;
    }

    #pupolar_conversion .cards-container {
        display: flex;
        flex-direction: column;
    }

    #pupolar_conversion h2 {
        margin: 13px auto;
        font-size: 16px;
    }

    #pupolar_conversion p {
        margin: 13px auto;
        font-size: 13px;
    }

    #pupolar_conversion .features-cards {
        width: auto;
        margin: 8px 15px;
        padding: 8px;
    }

    .features-cards .feature-icon {
        width: 40px;
        height: 40px;
        padding: 8px;
    }

    .features-cards i {
        font-size: 18px;

    }

    .features-cards .cards-title {
        font-size: 13px;
        padding-top: 3px;
    }

    .features-cards p {
        font-size: 13px !important;
        line-height: 15px;
    }

    .features-cards .use-feature {
        font-size: 14px;
    }

    /* ==========  COUNTER SECTION START HERE  ========== */
    #counter_section {
        width: 90%;
        height: auto;
        padding: 18px;
        margin: 800px auto 0 auto;
        background-color: var(--text-color);
    }

    #counter_section .counter-heading {
        text-align: center;
    }

    #counter_section h3 {
        font-size: 14px;
        color: var(--primary-bg-color);
    }

    #counter_section .subheading {
        font-size: 14px;
    }

    #counter_section .counter-container {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .counter-container .counter-box {
        display: flex;
        margin-top: 15px;
    }

    .counter-container .inner-box {
        display: flex;
    }

    .counter-container .counting {
        display: flex;
        flex-direction: column;
        margin: 0 15px;
        align-items: center;
    }

    .counter-container .counting h4 {
        color: var(--primary-bg-color);
        font-size: 11px;
    }

    .counter-container span {
        width: 35px;
        height: 35px;
        border: 1px dashed var(--black-color);
        color: var(--primary-bg-color);
        border-radius: 50%;
        background-color: var(--secondary-bg-color);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* ==========  COUNTER SECTION END HERE  ========== */
    /* * ==========  WHY FILES TO CONVERT SECTION START HERE  ========== */
    #why_choose_ftc {
        width: 90%;
        margin: 300px auto 0 auto;
        padding: 15px;
    }

    #why_choose_ftc .why-choose-us-headings h3 {
        font-size: 14px;
    }

    #why_choose_ftc .why-choose-us-headings .why-choose-us-sub-heading {
        font-size: 14px;
    }

    #why_choose_ftc .why-choose-us-container {
        margin: 7px auto;
        padding: 7px;
        display: flex;
        flex-direction: column;
    }

    .why-choose-us-container .why-choose-us-cards {
        width: 100%;
        height: auto;
        margin: 7px 0;
        padding: 8px;
    }

    /* ==========  CUSTOMERS COMMENTS SECTION SART HERE  ========== */
    #comment_section {
        width: 90%;
        margin: 60px auto;
    }

    #comment_section .comment-headings h3 {
        font-size: 13px;
    }

    #comment_section .comment-headings .customer-sub-heading {
        font-size: 14px;
    }

    #comment_section .comment-boxs {
        margin: 5px auto;
        padding: 5px;
        display: block;
    }

    .comment-boxs .comment-box {
        width: 100%;
        margin: 10px 5px;
        padding: 5px;
    }

    .comment-box .customer-profile img {
        width: 50px;
        height: 50px;
    }

    .comment-box .customer-profile .customer-name {
        margin-left: 9px;
        font-size: 13px;
    }

    .comment-box .customer-comment p {
        font-size: 13px;
        margin: 8px auto;
        text-align: start;
    }

    .customer-satisfactions .customer-rating-date {
        font-size: 14px;
    }

    /* ==========  CUSTOMERS COMMENTS SECTION END HERE  ========== */
    /* ==========  SUBSCRIBE SECTION START HERE  ========== */
    #subscribe_section {
        width: 90%;
        margin: 40px auto;
        padding: 20px;
    }

    #subscribe_section .subscribe-headings span {
        font-size: 13px;
    }

    #subscribe_section .subscribe-headings .subscribe-sub-heading {
        font-size: 11px;
    }

    .subscribe-us .sub-input {
        padding: 6px 10px;
    }

    .subscribe-us .subscribe-btn {
        padding: 6px 10px;
        font-size: 14px;
    }

    /* ==========  SUBSCRIBE SECTION END HERE  ========== */
    .page-info .home-redirection {
        font-size: 14px;
    }

    .page-info span {
        font-size: 14px;
    }

    #big-arrow {
        width: 90%;
        margin: 30px auto;
    }

    #big-arrow .tool-top-box {
        justify-content: center;
    }

    #big-arrow .tool-top-box .tool-top-headings {
        font-size: 13px;
        display: none;
    }

    #big-arrow .tool-top-box .operator-heading {
        font-size: 12px;
    }

    #big-arrow-container {
        height: 2px;
    }
    #big-arrow .down-arrows{
        justify-content: center;
    }

    #big-arrow .down-arrows i {
        font-size: 15px;
        margin-top: -7px;
    }
    #big-arrow .down-arrows i:first-child{
        display: none;
    }
    #big-arrow .down-arrows i:last-child{
        display: none;
    }

    #tool_box {
        width: 90%;
        height: auto;
        margin: 25px auto;
        display: flex;
        flex-direction: column-reverse;
    }

    #tool_box .all-usable-tools,
    .most-using-tools {
        width: 150px;
        height: auto;
        margin: 90px 10px 0 0;
        display: none;
    }

    .most-using-tools {
        display: none;
    }

    #tool_box .all-usable-tools .aside-tools-heading {
        margin: 14px 0 9px 0;
        font-size: 13px;
    }

    #tool_box .most-using-tools .aside-tools-heading {
        margin: 14px 0 9px 0;
        font-size: 13px;
    }

    #tool_box .tool-visit .tool-link {
        font-size: 14px;
    }

    #tool_box .upload-center {
        width: 100%;
        margin: 0 auto;
    }

    #tool_box .upload-your-file {
        width: 100%;
        height: 170px;
    }

    .upload-your-file .upload-box-inner {
        width: 100%;
        height: 150px;
    }

    .upload-box-inner .drop-file-heading {
        margin: 8px 0;
        font-size: 13px;
    }

    .upload-box-inner label {
        padding: 6px 6px;
    }

    .upload-box-inner .upload-files {
        margin: 18px 0;
    }

    .upload-your-file .convert-btn {
        padding: 6px 8px;
        color: var(--text-color);
        font-size: 14px;
        width: 100%;
        margin: 10px auto;
        display: flex;
        justify-content: center;
    }

    .tool-visit .tool-link {
        margin: 4px 0;
        margin-left: 32px;
        padding: 4px 0;
    }

    #tool_box .for-circle-operation {
        width: 200px;
        height: 600px;
    }
    
    #upload-demo .cr-boundary{
        margin-left: -20px;
    }

    .circle-operation {
        height: 520px;
    }

    #operation_result {
        width: 100%;
        padding: 9px;
        margin: 20px auto;
        /* display: none; */
    }

    #operation_result.showfilebox {
        display: block;
        display: inline-flex;
        flex-direction: column;
        margin-bottom: 130px;
    }

    #operation_result .result-heading {
        font-size: 14px;
        padding-top: 7px;
    }

    #operation_result img {
        width: 100%;
        height: auto;
        margin: 20px auto;
    }

    #operation_result .file-download-btn {
        padding: 4px 9px;
        font-size: 14px;
    }
    
    #image-display figcaption{
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
    }

    #how_to_use {
        padding: 9px;
        margin-bottom: 130px;
    }

    #how_to_use .how-to-use-heading {
        font-size: 13px;
        margin: 4px 0;
    }

    #how_to_use .how-to-use-subheading {
        font-size: 13px;
        margin: 4px 0;
    }

    #how_to_use ol li {
        font-size: 14px;
        margin: 4px 0;
        line-height: 25px;
    }

    #converter-description {
        width: 90%;
        margin: 300px auto 0 auto;
        text-align: justify;
    }
    #operation_result.showfilebox, #converter-description {
        margin: 950px auto 0 auto;
    }

    #converter-description .brief-heading {
        font-size: 14px;
    }

    #converter-description .brief-desc {
        padding: 9px;
        line-height: 28px;
        font-size: 13px;
        letter-spacing: 0.3px;
    }

    #feedback_form {
        width: 290px;
        right: 10px;
        top: 700px;
        padding: 6px;
    }

    #feedback_form .feedback-heading {
        font-size: 14px;
        margin: 4px 0;
    }

    #feedback_form .feedback-subheading {
        font-size: 13px;
    }

    #feedback_form .feedback-rating {
        font-size: 13px;
        margin: 8px 0 0 0;
    }

    #feedback_form .feedback-stars i {
        font-size: 18px;
        margin: 5px 5px;
    }

    .feedback-brief .feedback-brief-heading {
        font-size: 13px;
        margin: 18px 0 0 0;
    }

    .feedback-brief textarea::placeholder {
        padding: 4px;
    }

    .post-review .submit-feedback {
        padding: 6px 9px;
        font-size: 14px;
        margin: 9px 0;
    }

    /* //////////////////////////////      PAGES STYLING END HERE       ////////////////////////// */
    .about-ftc {
        width: 90%;
        margin: 13px auto;
        padding: 13px;
    }

    .about-ftc .about-us-heading {
        padding-top: 5px;
    }

    .about-us-heading h1 {
        font-size: 13px;
        font-weight: bold;
    }

    .about-ftc .about-us-img {
        margin: 13px auto;
    }

    .about-us-img img {
        width: 100% !important;
        border-top-left-radius: 20px;
        border-bottom-right-radius: 50px;
        width: auto;
        height: 150px;
    }

    .about-ftc-description p {
        font-size: 13px;
        text-align: justify;
        line-height: 22px;
    }

    .about-ftc-description .about-contact-us-btn {
        margin: 14px auto;
    }

    .about-contact-us-btn {
        text-align: center;
    }

    .about-contact-us-btn a {
        padding: 5px 10px;
        font-size: 13px;
    }

    /* ==========  FTC BLOG POST PAGE START HERE  ========== */
    .ftc-blog-page {
        width: 90%;
        margin: 20px auto;
        padding: 10px;
    }
    
    .ftc-blog-page .blog-top {
    display: flex;
    flex-direction: column-reverse;
    }

    .blog-top h1 {
        font-size: 13px;
        display: none;
    }

    .blog-search select {
        width: 100%;
        padding: 6px 7px;
        margin-bottom: 5px;
    }

    .blog-search button {
        padding: 2px 7px;
        font-size: 14px;
    }

    .blog-top .blog-search input {
        width: 100%;
        padding: 6px 7px;
        margin: 0 0 5px 0;
    }

    .blog-top .blog-search button {
        padding: 3px 8px;
        font-size: 14px;
        margin: 0 0 5px 0;
    }

    .blog-post-section {
        width: 90%;
        margin: 20px auto;
        flex-direction: column;
        padding: 7px 0;
    }

    .blog-post-section .blog-post-left {
        width: 100%;
        margin: 0 auto;
        padding: 8px;
    }

    .blog-post-left .blog-post-card {
        width: 100%;
        height: auto;
        margin: 10px 0;
        padding: 5px;
        text-align: center;
    }

    .blog-post-left img {
        width: 100%;
        height: auto;
    }

    .blog-post-left .blog-post-title a {
        font-size: 13px;
    }

    .blog-post-left .blog-post-description {
        font-size: 13px;
    }

    .blog-post-section .blog-post-right {
        width: 98%;
    }

    .blog-post-right .recent-post-title {
        margin: 7px auto;
        font-size: 15px;
    }

    .blog-post-right a {
        margin: 8px auto;
    }

    .contact-us-top {
        flex-direction: column;
        margin: 20px auto;
        text-align: center;
    }

    .contact-us-top .email-address {
        width: 90%;
        height: 70px;
        margin: auto !important;
    }

    .contact-us-top .email-address a {
        font-size: 14px;
    }

    .email-address i {
        width: 30px;
        height: 30px;
        margin: 0 10px;
    }

    .contact-us-top .contact-us-heading {
        display: block;
    }

    .contact-us-top .contact-us-heading h1 {
        font-size: 14px;
        margin: 10px auto;
    }

    .contact-us-top .quote-btn {
        width: 90%;
        height: 70px;
        margin: auto !important;
    }

    .quote-btn a {
        font-size: 14px;
    }

    .quote-btn i {
        width: 30px;
        height: 30px;
        margin: 0 10px;
    }

    /* Contact Form */
    .contact-form {
        width: 90%;
        margin: auto !important;
        padding: 10px;
    }

    .contact-form .formgroup input,
    textarea,
    select {
        padding: 3px 10px;
        margin: 13px auto;
    }

    .contact-form .formgroup input {
        width: 100%;
    }

    .send-message {
        margin: 10px auto;
    }

    .send-message button {
        padding: 3px 10px;
    }

    /* ==========  FTC IMAGE CONVERTERS PAGE START HERE  ========== */
    .img-converters-heading {
        margin: 10px auto;
    }

    .img-converters-heading h1 {
        font-size: 13px;
        font-weight: bold;
    }

    .image-converters-top {
        margin: 20px auto;
        column-gap: 20px;
        row-gap: 25px;
    }

    .image-converters-top .converter-box {
        width: 300px;
        padding: 4px;
    }

    .converter-box .type-converter {
        margin: 4px auto;
    }

    .converter-box .type-converter h2 {
        font-size: 13px;
    }

    .file-type .file-icon {
        margin: 0 9px;
        width: 40px;
        height: 40px;
        font-size: 25px;
    }

    .file-type .middle-arrow {
        font-size: 25px;
    }

    /* ==========  ADMIN LOGINPAGE PAGE START HERE  ========== */
    #admin-login-form {
        width: 90%;
        margin: 100px auto;
        padding: 20px;
    }

    .login-heading h1 {
        font-size: 14px;
    }

    .input-field-group label {
        font-size: 13px;
        margin-top: 7px;
    }

    .input-field-group label span {
        font-size: 13px;
    }

    .input-field-group input {
        padding: 3px 7px;
        margin: 7px 0 0 0;
    }
    
    .signup-heading {
    font-size: 15px;
    }
    
    .auth-form p{
    text-align: start;
    font-size: 14px;
    }
    
   .check-box-dev{
    display: flex;
    }
    
    .account-option p{
    font-size: 14px;
    }

    .loginBtn {
        margin-top: 15px;
        padding: 3px 10px;
        font-size: 13px;

    }

    /* ==========  TERMS OS USE AND PRIVACY POLICY PAGE START HERE  ========== */
    #page-header {
        margin: 80px auto 40px auto;
    }

    #page-header h1 {
        font-size: 14px;
    }

    .bottom-boxs {
        width: 95%;
        flex-direction: column-reverse;
        margin: auto;
    }

    .bottom-boxs .navbox {
        width: 220px;
        height: 130px;
        padding: 0;
        font-size: 14px;
        margin: auto;
    }

    .navbox ul {
        padding-left: 0;
    }

    .navbox ul li {
        text-align: center;
    }

    .bottom-boxs .page-brief {
        width: 100%;
        background-color: var(--text-color);
        padding: 17px;
        margin-left: 0;
        margin-bottom: 20px;
    }

    .bottom-boxs .page-brief p {
        text-align: justify;
        font-size: 14px;
    }

    /* ==========  TERMS OS USE AND PRIVACY POLICY PAGE END HERE  ========== */
    /* ==========  ERROSS PAGE START HERE  ========== */
    #page_not_found_error {
        height: 60vh;
    }

    #errors_box {
        width: 95%;
        padding: 16px;
    }

    #errors_box .error-heading {
        font-size: 14px;
    }

    #errors_box .error-subheading {
        font-size: 13px;
    }

    #errors_box .error-para {
        font-size: 13px;
    }

    #errors_box .errors-user-redirect {
        padding: 5px 8px;
        font-size: 13px;
    }

    /* ==========  ERROSS PAGE END HERE  ========== */
    /* ==========  FTC BLOG POST DETAIL PAGE START HERE  ========== */
    #blog-detail {
        width: 98%;
        margin: 120px auto 30px auto;
    }
    #blog-detail .blog-top-box{
        display: flex;
        justify-content: center;
    }

    .blog-top-box .blog-top-headings {
        font-size: 15px;
        text-align: center;
    }
    .blog-top-box .blog-slug{
        display: none;
    }

    #blog-arrow-container {
        border-radius: 50px;
        height: 3px;
    }
    #blog-detail .blog-down-arrows{
        display: flex;
        justify-content: center;
    }

    #blog-detail .blog-down-arrows i {
        font-size: 20px;
        margin-top: -5px !important;
    }
    #blog-detail .blog-down-arrows i:first-child {
        display: none;
    }

    .blog-content-and-image {
        max-width: 90%;
        height: auto;
        margin: auto;
        justify-content: center;
        padding: 5px;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }

    .blog-content-and-image .blog-content {
        width: 100%;
        padding: 5px;
    }

    .blog-content .blogpostheading {
        font-size: 15px;
        margin: 10px 5px auto 10px;
        border-left: 5px solid var(--primary-bg-color);
        border-radius: 5px;
        padding: 0 10px;
    }

    .blog-content .blogpostimg {
        width: 100%;
        height: auto;
        margin: 25px auto;
        text-align: justify;
        max-width: 100%;
    }

    .blog-content .blogpostdescription {
        margin: auto 5px auto 10px;
        font-size: 15px;
        text-align: justify;
        max-width: 100% !important;
        font-size: 18px !important;
        line-height: 1.5 !important;    
        text-align: justify !important;
    }
    
  /* Example with increased specificity */
     div.custom-content {
    margin-right: 0 !important;
    margin-left: 0 !important;
    width: 100% !important;
    float: none !important;
    color: #333 !important;
    font-family: "Your Custom Font", Arial, sans-serif !important;
    font-size: 16px !important;
}


/* Add more specific styles as needed */

    .blog-content-and-image .recommended-blogs {
        width: 90%;
        height: auto;
        border-left: none;
        text-align: center;
        padding: 5px;
        border-top: 2px solid var(--primary-bg-color);
        margin-top: 30px;
    }

    .recommended-blogs ul li {
        margin: 14px auto;
    }
    
    #player{
        width: 100%;
    }

    /* ==========  FTC BLOG POST DETAIL PAGE END HERE  ========== */
    /* ==========  ADMIN LOGINPAGE PAGE END HERE  ========== */
    /* Footer Responsive */
    #FTC_footer {
        flex-direction: column;
        justify-content: space-around;
        padding: 20px 20px;
        margin-top: 20px !important;
    }

    #FTC_footer .brand-logo-footer img {
        width: 50px;
        margin-left: 0;
    }

    .brand-logo-footer .subscribe-us {
        width: 100%;
        display: block;
    }

    .brand-logo-footer .subscribe-us .subscribe-para {
        width: 240px;
        margin: 5px;
        font-size: 13px;
    }

    .subscribe-us form input {
        width: 100%;
        padding: 6px 7px;
        border-radius: 3px;
    }

    .subscribe-us form button {
        padding: 6px 7px;
        margin: 3px 0;
    }

    #FTC_footer .first-child ul {
        justify-content: end;
        text-align: end;
    }

    .first-child .footer-heading {
        display: flex;
        justify-content: end;
    }

    #FTC_footer .contact-details {
        text-align: start;
    }

    #FTC_footer .contact-details .frcontact-heading {
        text-align: start !important;
    }

    #FTC_footer .contact-links {
        font-size: 14px;
        margin-bottom: 7px;
        justify-content: end;
        text-align: end;
    }

    .contact-links .footer-heading {
        display: flex;
        justify-content: end;
    }

    .contact-details ul li i {
        margin: 3px;
    }

    #FTC_footer .quick-links ul li {
        margin: 3px auto;
    }
    #FTC_footer .quick-links .tozero{
        padding-left: 0 !important;
    }

    #FTC_footer .quick-links ul li a {
        font-size: 12;
    }

    .copyright_bottom {
        width: 100%;
        height: auto;
        flex-direction: column;
    }

    .copyright_text p {
        padding: 5px 10px;
        font-size: 15px;
    }

    .social_icons ul li {
        margin: 0 8px;
    }

    .social_icons ul li a {
        font-size: 15px;
    }
    
    


