.breadcrumbs {
  padding-top: 11px;
}

.adsbox {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
  position: relative;
  text-align: center;
}

a {
  color: #3c99f5;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #64748b;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --border: #e2e8f0;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: white;
    color: var(--text-primary);
    line-height: 1.6;
}

.privacy-banner {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    text-align: center;
    padding: 14px 20px;
    font-weight: 700;
    font-size: 0.95em;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    letter-spacing: 0.3px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
	overflow: hidden;
}

.main-header {
    background: var(--bg-primary);
    padding: 40px 40px;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.logo-section h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: var(--primary);
}

.logo-section p {
    color: var(--text-secondary);
    font-size: 1.05em;
}

.logo-section .brand {
    margin-top: 5px;
}

.logo-section .brand a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.logo-section .brand a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.workspace {
    background: var(--bg-secondary);
    display: flex;
    justify-content: center;
    min-height: auto;
	margin-bottom: 20px;
	padding-top: 44px;
    border: 1px solid #d5dfe9;
}

.content-wrapper {
    width: 100%;
    max-width: 1200px;
}

section {
    margin-bottom: 60px;
}

section h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: var(--text-primary);
    text-align: center;
}

section h3 {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.upload-zone {
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border: 4px dashed var(--border);
    border-radius: 16px;
    padding: 80px 40px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 800px;
}

.upload-content {
    position: relative;
    z-index: 1;
}

.upload-zone::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 0;
}

.upload-zone:hover::before,
.upload-zone.drag-over::before {
    opacity: 1;
}

.upload-zone:hover,
.upload-zone.drag-over {
    border-color: var(--primary);
    background: linear-gradient(135deg, #eff6ff, #ffffff);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.15);
    transform: scale(1.01);
}

.upload-icon {
    font-size: 5em;
    margin-bottom: 25px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.upload-title {
    font-size: 1.6em;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.upload-subtitle {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.05em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), #1e40af);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.supported-formats {
    text-align: center;
    margin-top: 25px;
    color: var(--text-secondary);
    font-size: 0.9em;
}

.supported-formats p {
    margin: 5px 0;
}

/* Processing Section */
.progress-container {
    max-width: 600px;
    margin: 0 auto 30px;
}

.progress-bar {
    height: 12px;
    background: var(--bg-tertiary);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--success));
    border-radius: 10px;
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.progress-text {
    text-align: center;
    margin-top: 15px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.05em;
}

.processing-info {
    text-align: center;
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #eff6ff, #f0f9ff);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.processing-info p {
    margin: 8px 0;
    font-size: 1em;
    color: var(--text-primary);
}

/* Result Section */
.comparison-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.image-box {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border);
}

.image-box h3 {
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.2em;
    color: var(--primary);
}

.image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    background:
        linear-gradient(45deg, #e2e8f0 25%, transparent 25%),
        linear-gradient(-45deg, #e2e8f0 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #e2e8f0 75%),
        linear-gradient(-45deg, transparent 75%, #e2e8f0 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.image-wrapper img,
.image-wrapper canvas {
    max-width: 100%;
    max-height: 500px;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

/* Background Options */
.background-options {
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 16px;
    border: 2px solid var(--border);
    box-shadow: var(--shadow);
}

.bg-controls {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.bg-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.bg-option span:first-child {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    border: 2px solid var(--border);
    display: block;
}

.bg-option.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.bg-option:hover:not(.active) {
    background: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.checkerboard {
    background:
        linear-gradient(45deg, #e2e8f0 25%, transparent 25%),
        linear-gradient(-45deg, #e2e8f0 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #e2e8f0 75%),
        linear-gradient(-45deg, transparent 75%, #e2e8f0 75%);
    background-size: 16px 16px;
    background-position: 0 0, 0 8px, 8px -8px, -8px 0px;
}

.custom-color-wrapper label {
    position: relative;
}

#custom-color {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    top: 0;
    left: 0;
}

.custom-color-wrapper label span:first-child {
    background: linear-gradient(135deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #9400d3);
}

.custom-image-wrapper label {
    position: relative;
}

#custom-bg-image {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    top: 0;
    left: 0;
}

.custom-image-wrapper label span:first-child {
    font-size: 2em;
    line-height: 1;
}

/* Options Container */
.options-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .options-container {
        grid-template-columns: 1fr;
    }
}

/* Background Options */
.background-options {
    padding: 25px;
    background: white;
    border-radius: 16px;
    border: 2px solid var(--border);
    box-shadow: var(--shadow);
}

.background-options h3 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.2em;
    color: var(--text-primary);
}

/* Download Options */
.download-options {
    padding: 25px;
    background: white;
    border-radius: 16px;
    border: 2px solid var(--border);
    box-shadow: var(--shadow);
}

.download-options h3 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.2em;
    color: var(--text-primary);
}

.format-controls {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.format-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.format-option:hover {
    border-color: var(--primary);
    transform: translateX(3px);
}

.format-option:has(input:checked) {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.format-option input[type="radio"] {
    cursor: pointer;
    width: 20px;
    height: 20px;
    margin: 0;
}

.format-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.format-name {
    font-weight: 700;
    font-size: 1.1em;
}

.format-desc {
    font-size: 0.9em;
    opacity: 0.85;
}

.quality-control {
    text-align: center;
    padding: 15px;
    background: var(--bg-secondary);
    border-radius: 10px;
}

.quality-control label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-primary);
}

#quality-value {
    color: var(--primary);
    font-weight: 700;
}

#jpg-quality {
    width: 100%;
    max-width: 300px;
    cursor: pointer;
}

/* Image Info */
.image-info {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #f0f9ff, #eff6ff);
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    margin-bottom: 30px;
    font-size: 0.95em;
}

.image-info p {
    margin: 5px 0;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-action {
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
    border: none;
    padding: 18px 50px;
    border-radius: 12px;
    font-size: 1.15em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.3);
}

.btn-action:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--border);
    padding: 18px 50px;
    border-radius: 12px;
    font-size: 1.15em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-card {
    padding: 5px;
    text-align: center;
}

.feature-icon {
    font-size: 2em;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.feature-card h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: black;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, var(--text-primary), #1e293b);
    color: white;
    padding: 60px 40px 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 8px 0;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.social-link svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.social-link span {
    font-weight: 500;
    font-size: 1.05em;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95em;
}

.footer {
  background-color: whitesmoke;
  margin-top: 50px;
}

.footer-grids {
    text-align: center;
    margin: 0 auto;
    display: block;
    position: relative;
}

.footer-grid p {
  font-size: 0.875em;
  line-height: 1.8em;
}
.footer-grid h3 {
  font-size: 1.2em;
  font-weight: 600;
  color: #282528;
}

.footer-grids {
  padding: 2em 0;
}

.fbbt {
  background-color: #4267b2;
  color: white;
  padding: 8px 22px;
  border-radius: 5px;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  position: relative;
}

.twbt {
  background-color: #55acee;
  color: white;
  padding: 8px 22px;
  border-radius: 5px;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  position: relative;
}

.pnbt {
  background-color: #cb2027;
  color: white;
  padding: 6px 58px;
  border-radius: 5px;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  position: relative;
}

.fbbt:hover,
.twbt:hover,
.pnbt:hover,
.contact-button:hover {
  color: white;
  text-decoration: none;
  opacity: 0.7;
}

.fbbt-img,
.twbt-img,
.pnbt-img {
  display: inline-block;
  height: 16px;
  width: 16px;
  position: relative;
  left: -3px;
  top: 2px;
}

.facebook-bottom-share,
.twitter-bottom-share,
.pinterest-bottom-share {
  display: inline-block;
  padding-left: 10px;
}

.top-headline {
    text-align: center;
}



.logo {
  float: left;
  margin-top: 0.25em;
  display: block;
}

.logo a {
  color: #fff;
  font-weight: 700;
}

.logo a:hover {
  text-decoration: none;
}

.logo320 {
  display: none;
}

/*----navbar-nav----*/

.top-header {
  background: #fff;
}

.top-nav ul li a {
  color: #333;
  padding: 0.4em 0.9em;
  font-size: 13px;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
}

.top-nav ul li a:hover {
  color: white;
  background-color: #f84251;
  border-radius: 4px;
}

.top-nav ul li.active a {
  color: white;
}

.logo a {
  display: block;
}

.online-tools-box {
  padding: 100px 0px;
  background: #3c99f5;
  cursor: pointer;
  background-color: #3c99f5;
  display: block;
  position: relative;
  margin-bottom: 15px;
}

.online-tools-box:hover {
  cursor: pointer;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  background-color: #f84251;
  text-decoration: none !important;
}

/* top-nav */

.top-nav:before,
.top-nav:after {
  content: ' ';
  display: table;
}
.top-nav:after {
  clear: both;
}
nav {
  position: relative;
  float: right;
}
nav ul {
  padding: 0;
  float: right;
  margin: 0.75em 0;
}
nav li {
  display: inline;
  float: left;
  position: relative;
}
nav a {
  color: #fff;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  line-height: 40px;
}
nav a:hover {
  text-decoration: none;
  color: #00a2c1;
}
nav a#pull {
  display: none;
}




/*Smartphone*/
@media only screen and (max-width: 320px) {
  nav {
    float: none;
  }
  nav li {
    display: block;
    float: none;
    width: 100%;
  }
  nav li a {
    border-bottom: 1px solid #eee;
  }
}

@media screen and (max-width: 600px) {
  h1 {
    font-size: 30px;
  }
  .callbacks_nav {
    top: 47%;
  }
}

/*--responsive design--*/
@media (max-width: 1024px) {
  .tab-links li {
    width: 48.9%;
    padding-bottom: 5px;
  }
}

/*--992px-mediaquries--*/
@media (max-width: 992px) {
  .tab-links li {
    width: 48.9%;
    padding-bottom: 5px;
  }

  .respimage {
    margin: 20px 0px;
    overflow: hidden;
  }

  .section-head {
    margin-top: 0px;
  }

  .tp-part {
    padding-top: 23px;
  }
  .md-part {
    display: none;
  }
}



/*Styles for screen 600px and lower*/
@media screen and (max-width: 768px) {
  nav {
    height: auto;
    float: none;
  }
  nav ul {
    width: 100%;
    display: block;
    height: auto;
  }
  nav li {
    width: 100%;
    position: relative;
  }
  nav li a {
    border-bottom: 1px solid #eee;
  }
  nav a {
    text-align: left;
    width: 100%;
  }
}

/*Styles for screen 515px and lower*/
@media only screen and (max-width: 768px) {
  nav {
    border-bottom: 0;
    float: none;
  }
  nav ul {
    display: none;
    height: auto;
    margin: 0;
    background: #fff;
    padding-bottom: 20px;
  }
  nav a#pull {
    display: block;
    position: relative;
    color: #f26d7d;
    text-align: right;
    position: absolute;
    top: 12px;
  }

  nav a#pull img {
    margin-right: 2%;
  }
  .top-nav ul li a {
    color: #2c3e50;
    padding: 0em 0;
  }
}

/*Smartphone*/
@media only screen and (max-width: 320px) {
  nav {
    float: none;
  }
  nav li {
    display: block;
    float: none;
    width: 100%;
  }
  nav li a {
    border-bottom: 1px solid #eee;
  }
}

@media screen and (max-width: 600px) {
  h1 {
    font-size: 30px;
  }
  .callbacks_nav {
    top: 47%;
  }
}

/*--responsive design--*/
@media (max-width: 1024px) {
  .tab-links li {
    width: 48.9%;
    padding-bottom: 5px;
  }
}

/*--992px-mediaquries--*/
@media (max-width: 992px) {
  .tab-links li {
    width: 48.9%;
    padding-bottom: 5px;
  }

  .respimage {
    margin: 20px 0px;
    overflow: hidden;
  }

  .section-head {
    margin-top: 0px;
  }

  .tp-part {
    padding-top: 23px;
  }
  .md-part {
    display: none;
  }
}

/*-----768px-mediaquries----*/
@media (max-width: 768px) {
  .tab-links2 li {
    width: 100%;
  }

  .dropdown-menu {
    position: static !important;
    float: none !important;
    width: auto !important;
    margin-top: 0 !important;
    background-color: transparent !important;
    border: 0 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
  }

  .respimage {
    margin: 19px 0px 19px 0px;
    overflow: hidden;
  }

  .converter-box-size {
    height: 150px;
  }

  .top-header {
    margin: 2.5em 0 0 0;
  }
  .section-head h3 {
    font-size: 1.4em;
    margin: 0;
  }

  .tab-links li {
    width: 48.9%;
    padding-bottom: 5px;
  }

  .section-head p {
    margin: 1em auto 0.8em auto;
  }
}

/*-----640px-mediaquries----*/
@media (max-width: 640px) {
  .top-header {
    margin: 2em 0 0 0;
    padding: 0em 1em;
  }
  .section-head h3 {
    font-size: 1.4em;
    margin: 0;
  }
  .section-head p {
    margin: 1em auto 0.8em auto;
  }
  .tab-links li {
    width: 100%;
    padding-bottom: 5px;
  }
}

/*-----480px-mediaquries----*/
@media (max-width: 480px) {
  .top-header {
    margin: 1.4em 0 0 0;
    padding: 0em 1em;
  }
  .section-head h3 {
    font-size: 1.2em;
    margin: 0;
  }
  .section-head p {
    margin: 0.8em auto 0em auto;
  }

  .tab-links li {
    width: 100%;
    padding-bottom: 5px;
  }
}

/*-----320px-mediaquries----*/
@media (max-width: 320px) {
  .top-header {
    margin: 1.4em 0 0 0;
    padding: 0em 1em;
  }
  .section-head h3 {
    font-size: 1em;
    margin: 0;
  }
  .section-head p {
    margin: 0.8em auto 0em auto;
  }

  .header-section {
    padding: 0 0 2em 0;
    background: #f9e514;
  }

  .tab-links li {
    width: 100%;
    padding-bottom: 5px;
  }

  .col-md-4 {
    margin-top: 20px;
  }
}








/* Responsive */
@media (max-width: 768px) {
    .comparison-container {
        grid-template-columns: 1fr;
    }

    .workspace {
        padding: 40px 20px;
    }

    .main-header {
        padding: 30px 20px;
    }

    .logo-section h1 {
        font-size: 2em;
    }

    .upload-zone {
        padding: 60px 30px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-action,
    .btn-secondary {
        width: 100%;
    }

    .main-footer {
        padding: 40px 20px 20px;
    }

    .footer-content {
        gap: 30px;
    }

    .social-links {
        gap: 10px;
    }
}


/*----- Tabs -----*/

.converterbox {
  border: 1px dashed black;
  padding-top: 14px;
}

ul.tab-links {
  padding: 0;
}

.tabs {
  width: 100%;
  display: inline-block;
}

.tab-links:after {
  display: block;
  clear: both;
  content: '';
}

.tab-links li,
.tab-links2 li {
  margin: 0% 0.5%;
  float: left;
  list-style: none;
  width: 49%;
}

ul.tab-links2 {
  margin: 0;
  padding: 0;
}

.tab-links a {
  padding: 9px 15px;
  display: inline-block;
  border-radius: 3px 3px 3px 3px;
  background: #f9f9f9;
  border: 1px solid #e7e7e7;
  font-size: 16px;
  font-weight: 600;
  color: #212121;
  transition: all linear 0.15s;
  width: 100%;
}

.tab-links2 a {
  display: inline-block;
  border-radius: 3px 3px 3px 3px;
  background: #3c99f5;
  font-size: 16px;
  color: white;
  transition: all linear 0.15s;
  width: 100%;
  padding: 18px;
  cursor: pointer;
  margin-top: 10px;
}

span.tab-text-2 {
  position: relative;
  display: block;
  clear: both;
}

span.tab-text-1 {
  font-weight: bold;
  position: relative;
  display: block;
  clear: both;
  font-size: 18px;
  text-transform: uppercase;
  margin-top: 12px;
}

.tab-links a:hover,
li.active a:hover,
.tab-links2 a:hover {
  background: #f84251;
  border: 1px soli #3c99f5;
  color: white;
  text-decoration: none;
  border-radius: 3px 3px 3px 3px;
  display: block;
}

li.active a {
  background: #3c99f5;
  color: white;
  border-radius: 3px 3px 3px 3px;
}

.tab-content {
  padding: 15px;
  border-radius: 3px;
  background: #3c99f5;
  overflow: hidden;
}

.tab {
  display: none;
}

.tab.active {
  display: block;
}

.section-head h2,
#best-free-vectorization h2,
#advantages-free-autotracer h2,
.section-container h2,
#help h2,
#difference-between-bitmap-vector h2 {
  font-weight: 700;
  text-align: center;
}

h1, .h1, h2, .h2, h3, .h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}

p {
    margin: 0 0 10px;
}

#advantages-free-autotracer, #fea, #best-free-vectorization, #help, .section-container, .section-head {
    margin-top: 20px;
    display: block;
    position: relative;
}

.features-grid-info, #help, .section-container {
    text-align: center;
}

.facebook-bottom-share, .twitter-bottom-share, .pinterest-bottom-share {
    display: inline-block;
    padding-left: 10px;
}

a {
    color: #0071d8;
    text-decoration: none;
}

#home.header  {
    border-bottom: 1px solid #dddddd;
}