
/* Fonts */
:root {
  --font-default: "Segoe UI", Arial, sans-serif;
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Open Sans', sans-serif;
}
/* Colors */
:root {
  --color-default: #333;
  --color-primary:#FF7E00;
  --color-hover:#ec2727;
  --color-secondary: #e52928;
  --color-main-heading:#000000;
  --color-paragraph:#787878;
  --color-background:#f1f8ff;
  --color-white: #fff;
  --color-bg:#f6f6f6;
  --color-paragraph:#4A4A4A;
  --services-bg:#fcfcfc;
  --footer-bg:#1f1f24;
  --footer-links-color:#b9b9b9;
  --footer-social-link:#665D5D;
  --pagination-bullet:#b9b9b9;
  --selling-border:#BFBDBD;
  --menu-content-four:#242424;
  --menu-content-p:#919191;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
 font-family: var(--font-default);
  color: var(--color-default);
}
body,
html {
    font-family:  var(--font-default);
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color:var(--color-hover);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-default);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
 /* overflow: hidden;*/
  padding: 40px 0;
  position: relative;
}

.section-bg {
  background-color: var(--color-bg);
}

.section-header {
  text-align: center;
  padding-bottom: 50px;
}

.section-header h2 {
  font-size:42px;
  line-height: 50px;
  letter-spacing: 1px;
  font-weight: 600;
  margin: 0;
  padding: 0;
}

.section-header p {
  margin: 0;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.3px;
  width: 60%;
  word-wrap: break-word;
  margin:15px auto;
  font-weight: 400;
  color: var(--color-paragraph);
}

/*.section-header p span {
  color: var(--color-primary);
}*/

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color:  var(--color-white);
  line-height: 0;
}

.scroll-top:hover {
  background: var(--color-hover);
  color:  var(--color-white);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

section {
  scroll-margin-top: 90px;
}


@media(max-width: 575px)
{
    section
    {
       padding: 40px 0;
    }
    .section-header p
    {
        font-size: 34px;
        line-height: 44px;
    }
}

@media(min-width: 992px) and (max-width: 1199px)
{
    .section-header p
    {
      width: 85% !important;
    }
}
@media(max-width: 991px)
{
   
   section
   {
      padding: 40px 0;
   }
   .section-header
   {
      padding-bottom: 30px;
   }
   .section-header h2
   {
      font-size: 32px;
      line-height: 40px;
   }
   .section-header p
   {
     width: 100%;
     font-size: 16px;
     line-height: 24px;
   }  
}