:root {
  --headings: #675855;
  --secondary: #14539a;
  /* orange #eb5432 */
  --white: #fff;
  --subheadings: #313131;
  --para: #716f6f;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* general styles */

html {
  font-size: 16px;
  /* scroll-behavior: smooth; */
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.container {
  /* max-width: 1300px; */
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

body {
  line-height: 1.5;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
}

a {
  text-decoration: none;
}

button,
input {
  border: 0;
  outline: 0;
}

.bar,
#toggle {
  display: none;
}

.bar {
  color: var(--secondary);
}

.para {
  line-height: 1.8rem;
  margin: 1rem;
}

@media (max-width: 480px) {
  .para {
    line-height: 4rem;
  }
}

/* heading */

.heading {
  font-size: 2rem;
  font-weight: 680;
  letter-spacing: 0.04rem;
  color: var(--headings);
  margin-bottom: 1.4rem;
}

.sub-para {
  color: var(--subheadings);
  font-weight: 450;
}

/* flex */

.flex {
  display: flex;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.item-start {
  align-items: flex-start;
}

.item-center {
  align-items: center;
}

.item-stretch {
  align-items: stretch;
}

.wrap {
  flex-wrap: wrap;
}

.column {
  flex-direction: column;
}

.row-reverse {
  flex-direction: row-reverse;
}

/* columns */

.flex-13 {
  flex: 0 1 13%;
}

.flex-15 {
  flex: 0 1 15%;
}

.flex-20 {
  flex: 0 1 20%;
}

.flex-21 {
  flex: 0 1 21%;
}

.flex-31 {
  flex: 0 1 31%;
}

.flex-23 {
  flex: 0 1 23.5%;
}

.flex-25 {
  flex: 0 1 25%;
}

.flex-28 {
  flex: 0 1 28%;
}

.flex-30 {
  flex: 0 1 30%;
}

.flex-32 {
  flex: 0 1 32%;
}

.flex-40 {
  flex: 0 1 40%;
}

.flex-35 {
  flex: 0 1 35%;
}

.flex-45 {
  flex: 0 1 45%;
}

.flex-50 {
  flex: 0 1 50%;
}

.flex-48 {
  flex: 0 1 48%;
}

.flex-49 {
  flex: 0 1 49%;
}

.flex-70 {
  flex: 0 1 64%;
}

.grow {
  flex: 1 1 auto;
}

/* width */

.width-full {
  width: 100%;
}

/* center */

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* padding */

.padding {
  padding: 5rem 0;
}

/* buttons */

.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background-color: var(--secondary);
  color: white;
  font-weight: 480;
  font-size: 1.1rem;
  transition: all 200ms ease-in-out;
}

.btn:hover {
  background-color: var(--secondary);
}

/* text */

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

.font-0 {
  font-size: 0;
}

.align-right {
  text-align: right;
}

/*  */

.margin-01 {
  margin-top: 0.5rem;
}

/* header */

.nav-bar {
  padding: 1.4rem 0;
}

.nav-bar .brand {
  font-size: 2rem;
  font-weight: 800;
  color: var(--headings);
  text-transform: capitalize;
}

.nav-bar .nav-menu li {
  color: var(--subheadings);
  font-size: 1.15rem;
  font-weight: 500;
  margin-left: 1.7rem;
}

.nav-menu a {
  color: var(--headings);
}

.nav-bar a:hover {
  color: var(--secondary);
}

.nav-bar .active {
  color: var(--secondary);
}

.drop-down {
  position: relative;
}

.sub-menu {
  position: absolute;
  background-color: white;
  width: 150%;
  display: none;
  left: 0;
  top: 110%;
  padding-left: 0.9rem;
  padding-right: 0.4rem;
  border-radius: 6px;
  transform: translateX(-10%);
}

.drop-down:hover .sub-menu {
  display: inline-block;
}

.nav-bar .sub-menu li {
  margin: 1rem 0;
}

.sub-sub-menu {
  position: absolute;
  left: 100%;
  width: 100%;
  display: none;
  text-align: center;
  border-radius: 6px;
}

.span-1 {
  margin-right: 0.4rem;
}

.span-2 {
  margin-right: 1.4rem;
}

.fa-chevron-down {
  font-size: 0.7rem;
}

.drop-menu-2:hover .sub-sub-menu {
  display: inline-block;
  background-color: rgb(255, 255, 255, 0.8);
}

.nav-bar {
  background-color: #ffffff;
  z-index: 99999;
}

/* welcome-to-|17| */

.welcome-to-flexor {
  background-size: cover;
  width: 100%;
  height: 70vh;
  color: var(--white);
}

.welcome-to-flexor h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: #477fc0;
}

@media (max-width: 480px) {
  .welcome-to-flexor h1 {
    margin-bottom: 0.8rem;
  }
}

.welcome-to-flexor p {
  font-size: 1.6rem;
  font-weight: 460;
  color: #8d888d;
}

.welcome-to-flexor .start-btn {
  margin-top: 2.4rem;
}

/* why to choose flexor company */

.choose-flexor .start-btn:hover {
  background: var(--white);
  color: var(--secondary);
}

.choose-article-1 {
  background: var(--secondary);
  padding: 1.5rem;
  color: var(--white);
  height: auto;
  border-radius: 0.4rem;
}

.choose-article-1 h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.choose-article-1 p {
  font-size: 1.2rem;
  font-weight: 450;
  margin-top: 1.5rem;
  margin-bottom: 2.1rem;
  line-height: 2.2rem;
}

.choose-article-1 .start-btn {
  background: white;
  color: #14539a;
  padding: 0.5rem 1rem;
  border-radius: 5rem;
  font-size: 1rem;
}

.start-btn .fa-chevron-right {
  margin-left: 0.3rem;
  font-size: 0.8rem;
}

.choose-article-2 {
  padding: 1.2rem;
  border-radius: 0.4rem;
  box-shadow: 0 0 20px 6px rgba(0, 0, 0, 0.2);
  background: white;
}

.choose-article-2 .pics {
  color: var(--secondary);
  /* font-size: 2.4rem; */
}

.choose-article-2 h3 {
  margin-bottom: 1.2rem;
  color: var(--subheadings);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2rem;
}

.choose-article-2 p {
  line-height: 2rem;
  color: var(--para);
  font-weight: 410;
}

.choose-flexor {
  margin-top: -9rem;
  z-index: 999;
}

@media (max-width: 360px) {
  .choose-flexor {
    margin-top: 0rem;
  }
}

@media (max-width: 480px) {
  .choose-article-2 p {
    line-height: 2.1rem;
    color: var(--para);
    font-size: 1.3rem;
  }
  .choose-flexor {
    margin-top: 0rem;
  }
}

@media (max-width: 375px) {
  .choose-flexor {
    margin-top: 10rem;
  }
}

.sell-logo,
.buy-logo {
  height: 100px;
  width: 100px;
  object-fit: contain;
}

/* about-us */

.fa-play-circle {
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--secondary);
  box-shadow: 0 0 2px 8px rgba(169, 107, 85, 0.4);
  border-radius: 50%;
  position: absolute;
  bottom: 50%;
  right: 45%;
}

.about-us figure {
  position: relative;
  align-items: stretch;
}

.about-us img {
  object-fit: cover;
}

.about-us {
  background: #fff9f6;
  margin-top: 4rem;
}

.about-us h6 {
  color: var(--para);
  font-size: 1.2rem;
  font-weight: 600;
}

.about-us h3 {
  color: #544944;
  font-size: 1.7rem;
  font-weight: 750;
  line-height: 1.2;
  margin: 1.3rem 0;
}

.single-para {
  color: rgb(49, 49, 49);
  font-weight: 500;
}

.about-us h4 {
  color: #544944;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.about-us .icons {
  background: white;
  color: var(--secondary);
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  text-align: center;
  line-height: 4rem;
  font-size: 1.7rem;
  border: 2px solid #f7cabb;
  transition: all 300ms ease-in-out;
}

.sub-description {
  margin-left: 1.4rem;
}

.sub-description-given {
  margin: 2.4rem 0;
}

.sub-description-given:hover .icons {
  background-color: var(--secondary);
  color: white;
}

/* faqs */

.faqs {
  padding: 0rem 0.9rem;
  margin-top: 3rem;
}

.faqs h6 {
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0.7rem;
}

.faqs .margin-0 {
  background-color: white;
  padding: 1.2rem;
  margin: 1rem 0;
  width: 100%;
}

@media (max-width: 480px) {
  .faqs .margin-0 {
    margin: 3rem 0;
  }
}

.faqs span {
  color: #14539a;
  margin-right: 0.12rem;
}

.faqs .fa-chevron-up {
  color: var(--secondary);
  font-weight: 550;
}

.faqs h5 {
  font-weight: 600;
  color: var(--subheadings);
  font-weight: 550;
}

.faqs .fa-chevron-down {
  font-weight: 550;
}

.question {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  border-radius: 8px;
}

/* contact */

.maps {
  background-color: white;
  padding: 1rem;
  margin-right: 1.2rem;
  box-shadow: 0 0 9px 6px rgba(0, 0, 0, 0.1);
}

.maps-cnt {
  color: var(--secondary);
  border-radius: 50%;
  height: 3rem;
  width: 3rem;
  border: 2.5px dotted #f4b7a0;
  line-height: 3rem;
  font-size: 1.8rem;
  text-align: center;
}

.fa-map-marker-alt,
.fa-envelope,
.fa-phone-volume {
  padding: 0.5rem;
}

.address {
  margin-left: 1rem;
}

.contact h5 {
  font-size: 1.5rem;
  color: var(--para);
  font-weight: 700;
  margin-bottom: 0.7rem;
}

address {
  font-size: 0.9rem;
}

.contact article {
  margin: 3.6rem 0 1rem 0;
}

.form-control {
  border: 1px solid #cfd4db;
  color: #717981;
  padding: 0.6rem;
  display: block;
  width: 100%;
  margin: 0.4rem 0 0.8rem 0;
}

.input-2 .email {
  margin-left: 1.3rem;
}

form {
  background-color: white;
  box-shadow: 0 0 8px 5px rgba(0, 0, 0, 0.2);
}

fieldset {
  padding: 1.1rem;
}

textarea {
  font-family: 'Raleway', sans-serif;
}

.buttons .btn:hover {
  opacity: 0.8;
}

/* footer-links */

.flexor h6 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.9rem;
  color: var(--subheadings);
}

.footer-links h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--subheadings);
}

.flexor address {
  margin-bottom: 1.4rem;
  margin-left: 0;
  color: var(--para);
}

.fa-angle-right {
  color: #14539a;
  margin-right: 0.1rem;
  font-size: 0.8rem;
}

.flexor span {
  color: var(--headings);
  font-weight: 620;
}

.Useful-links a {
  color: var(--para);
}

.Useful-links li {
  margin: 1rem 0;
}

.footer-links .blank {
  border-radius: 10rem;
  height: 1rem;
  width: 100%;
  background-color: white;
  padding: 1.3rem 0;
  border: 1px solid #f7a88c;
}

.btn-cnt {
  position: relative;
}

.footer-links .btn {
  position: absolute;
  top: 0;
  right: -0.1rem;
  bottom: 0;
  padding: 0 1.3rem;
}

.footer-links .btn {
  border-radius: 10rem;
}

.footer-links .flex-30 p {
  margin: 1.2rem 0 2rem 0;
  color: var(--subheadings);
}

.footer-nav li {
  background-color: var(--secondary);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  line-height: 2.5rem;
  text-align: center;
  margin-right: 0.9rem;
}

.footer-nav a {
  color: white;
  font-size: 1.2rem;
}

.footer-nav li:hover {
  opacity: 0.7;
}

small {
  font-size: 0.95rem;
}

small span {
  font-weight: 750;
  color: var(--subheadings);
}

cite {
  font-size: 0.89rem;
}

footer {
  padding: 1.6rem 0;
}

cite span {
  color: var(--secondary);
}

.top-btn {
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  background-color: var(--secondary);
  position: fixed;
  right: 0.5rem;
  bottom: 1rem;
}

footer {
  position: relative;
}

.top-btn a {
  color: white;
  font-size: 1.3rem;
}

/* Responsive Styles */

@media screen and (max-width: 1200px) {
  .container {
    max-width: 1100px;
  }
}

@media screen and (max-width: 992px) {
  .container {
    max-width: 940px;
  }
  html {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .sm-h-58 {
    height: 58% !important;
  }
  .sm-w-100 {
    width: 100% !important;
  }
  .container {
    max-width: 720px;
  }
  html {
    font-size: 12px;
  }
  .sm-display-none {
    display: none;
  }
  .heading {
    font-size: 2.5rem;
  }
  .sub-para {
    font-weight: 420;
  }
  /* flex-general*/
  .sm-flex-100 {
    flex: 0 1 100%;
  }
  .sm-column {
    flex-direction: column;
  }
  .sm-flex-19 {
    flex: 0 1 19%;
  }
  .sm-flex-48 {
    flex: 0 1 48%;
  }
  .sm-flex-50 {
    flex: 0 1 50%;
  }
  /* hamburger icon */
  #toggle:checked ~ .navv {
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
  .brand {
    z-index: 99999;
  }
  .navv {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: linear-gradient(rgba(25, 137, 212, 0.8), rgba(0, 0, 0, 0.781));
    padding: 5rem 0;
    z-index: 999;
  }
  .nav-menu li {
    padding: 1.6rem 0;
  }
  .nav-menu li a {
    color: white;
    font-size: 1.6rem;
    font-weight: 550;
  }
  .bar {
    display: inline-block;
    z-index: 9999;
  }
  /* welcome-to-flexor */
  .welcome-to-flexor {
    background-size: cover;
    height: 56vh;
    background-position: center;
  }
  .choose-article-2 {
    margin-top: 2rem;
    padding: 1.5rem;
  }
  .choose-flexor .choose-article-1 {
    margin-top: -7rem;
  }
  /* about us */
  .about-us h6 {
    margin-top: 1.3rem;
  }
  .about-us h3 {
    margin-top: 0.4rem;
    font-size: 2.4rem;
  }
  .about-us h4 {
    font-size: 1.6rem;
  }
  /* contact */
  .contact .sm-flex-100 {
    margin: 1rem 0;
  }
  .contact .justify-between {
    justify-content: flex-start;
  }
  .contact .address-1 {
    font-size: 1.2rem;
  }
  /* footer links */
  .flexor h6 {
    font-size: 1.5rem;
  }
  .flexor address {
    font-size: 1.3rem;
  }
  .flexor p {
    font-size: 1.3rem;
  }
  .footer-links h4 {
    font-size: 1.4rem;
  }
  .Useful-links li {
    font-size: 1.2rem;
  }
  .last-para {
    font-size: 1.2rem;
  }
  .footer-links .sm-flex-50 {
    margin: 1rem 0;
  }
  /* footer */
  .footer small {
    font-size: 1.3rem;
  }
  .footer cite {
    font-size: 1.1rem;
  }
  .sm-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  .footer-nav {
    margin-top: 0.8rem;
  }
  /* blog-page */
  .blog-part p {
    font-size: 1.3rem;
  }
  .blog-part h5 {
    font-size: 1.82rem;
  }
  .user-detail {
    font-size: 1.2rem;
  }
  .blog-part .flex-32 {
    margin: 1.6rem 0;
  }
}

@media screen and (max-width: 576px) {
  .container {
    max-width: 530px;
  }
  html {
    font-size: 10px;
  }
}

@media screen and (max-width: 360px) {
  .container {
    max-width: 345px;
  }
  html {
    font-size: 8px;
  }
  .welcome-to-flexor {
    background-position: center;
  }
  /* flex */
  .sm-flex-40 {
    flex: 0 1 40%;
  }
  .smm-flex-100 {
    flex: 0 1 100%;
  }
  /* choose flexor */
  .choose-flexor .choose-article-1 {
    margin-top: -9rem;
    padding: 2.8rem;
  }
  .choose-article-1 h2 {
    font-size: 2.41rem;
  }
  .choose-article-1 p {
    font-size: 1.4rem;
  }
  .choose-article-1 .start-btn {
    font-size: 1.3rem;
  }
  .choose-article-2 h3 {
    font-size: 2rem;
  }
  .choose-article-2 p {
    font-size: 1.4rem;
  }
  .choose-article-2 {
    padding: 2.5rem;
  }
  .choose-article-2,
  .choose-article-1 {
    margin: 1.6rem 0;
  }
  /* about us */
  .about-us h6 {
    font-size: 1.6rem;
  }
  .about-us .single-para {
    font-size: 1.6rem;
  }
  .sub-description-given .icons {
    font-size: 2.4rem;
    width: 4.5rem;
    height: 4.5rem;
  }
  .about-us h4 {
    font-size: 1.8rem;
  }
  .sub-description p {
    font-size: 1.3rem;
  }
  /* clients */
  .smm-display-none {
    display: none;
  }
  .sm-display-none {
    display: inline-block;
  }
  /* services */
  .services .paras {
    font-size: 1.66rem;
  }
  .stats {
    transform: translateY(-2.6rem);
    font-size: 1.6rem;
  }
  .services h4 {
    font-size: 1.66rem;
    margin-top: -0.7rem;
  }
  .services .flex-30 p {
    font-size: 1.4rem;
  }
  .services .flex-30 {
    padding-bottom: 2.4rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  /* our-mission */
  .small-article h4 {
    font-size: 1.6rem;
  }
  .small-article p {
    font-size: 1.23rem;
  }
  .small-article a {
    font-size: 1.2rem;
  }
  /* testimonials */
  .testimonials-cnt figcaption {
    font-size: 1.7rem;
  }
  .testimonials-cnt span {
    font-size: 1.1rem;
  }
  .testimonial-2 {
    background-position: center;
  }
  .testimonial-2 p {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
  /* portfolio */
  .menu a {
    font-size: 1.11rem;
  }
  .item-1 .web {
    font-size: 1.4rem;
  }
  .team .paras {
    font-size: 1.66rem;
  }
  /* pricing */
  .pricing .paras {
    font-size: 1.66rem;
  }
  .price {
    font-size: 1.8rem;
    margin-top: 1.2rem;
  }
  .price span {
    font-size: 2.4rem;
  }
  .features li {
    font-size: 1.6rem;
  }
  .pricing .button .btn {
    font-size: 1.3rem;
  }
  /* faqs */
  .faqs-1 .paras {
    font-size: 1.66rem;
  }
  .contact .paras {
    font-size: 1.66rem;
  }
  .heading {
    font-size: 2.8rem;
  }
  .faqs h6 {
    font-size: 1.7rem;
  }
  .margin-0 p {
    font-size: 1.5rem;
  }
  .faqs .margin-0 {
    margin: 1.9rem 0;
  }
  .faqs h5 {
    font-size: 1.43rem;
  }
  .smm-column {
    flex-direction: column;
  }
  .header-blog span {
    font-size: 2rem;
  }
  .header-blog h6 {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 411px) {
  .container {
    max-width: 395px;
  }
  /* flex */
  .smm-flex-100 {
    flex: 0 1 100%;
  }
  .smm-column {
    flex-direction: column;
  }
  /* our-mission */
  .small-article h4 {
    font-size: 1.6rem;
  }
  .small-article p {
    font-size: 1.23rem;
  }
  .small-article a {
    font-size: 1.2rem;
  }
}

#main-banner {
  height: 70%;
  width: 50%;
}

@media (max-width: 480px) {
  #main-banner {
    height: auto;
    width: 100%;
  }
}

.privacy-content {
  padding: 32px;
}

.privacy-tag {
  color: #14539a;
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 480px) {
  .privacy-content {
    padding: 16px;
  }
}
