


/*
  Template Name: OLMO - Startup, Software & SaaS HTML5 Template
  Theme URL: https://themeforest.net/user/dsathemes
  Description: OLMO - Startup, Software & SaaS HTML5 Template
  Author: DSAThemes
  Author URL: https://themeforest.net/user/dsathemes
  Version: 1.5.0
  Website: www.dsathemes.com
  Tags: Responsive, HTML5, Bootstrap, DSAThemes, SaaS, Software, Startup, Creative, Mobile App, Freelancers, Digital Product
*/



/* ==========================================================================
  01. GOOGLE FONT
  =========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;700&display=swap");

:root {
  --main-font: "Rubik", sans-serif;
}

.main-font { 
  font-family: var(--main-font);
  font-weight: 500;
  letter-spacing: 0;
}



/* ==========================================================================
  02. GENERAL & BASIC STYLES
  =========================================================================== */

:root {
  --header-color: #2f353e;
  --text-color: #6c757d;
  --black: #181d27;
  --blue: #0195ff;
  --coal: #1f2334;
  --cloud: #f8f8f8;
  --dark-gray: #999;
  --grape: #353451;
  --green: #0fbc49;
  --light-gray: #f5f6f7;
  --magenta: #562d57;
  --nero: #202431;
  --noir: #161821;
  --onyx: #1b1e2b;
  --orange: #ff8903;
  --orange-red: #ff523d;
  --pink: #fc7cc1;
  --plum: #de5e99;
  --purple: #6a26da;
  --silver: #d9dce0;
  --stateblue: #6064e3;
  --sky: #eff6ff;
  --skyblue: #00a5fe;
  --smoke: #e7e7e7;
  --snow: #fbfbfd;
  --violet: #9400d3;
  --violet-red: #c73e9b;
  --white: #fff;
  --whitesmoke: #f4f4f9;
  --yellow: #ffbf15; 
  --tra-black: rgba(5, 5, 5, .05);
  --tra-white: rgba(255, 255, 255, .12); 
  --tra-green: rgba(15, 188, 73, .08); 
  --tra-nero: rgba(32, 36, 49, .5); 
  --tra-orange: rgba(255, 137, 3, .08); 
  --tra-purple: rgba(106, 38, 218, .08); 
  --tra-yellow: rgba(255, 191, 21, .12); 
}

html {
  font-size: 16px;
} 

body {
  font-family: var(--main-font);
  color: var(--text-color);
  line-height: 1.6666;
  font-weight: 400;
}

body.dark {
  background-color: var(--noir);
  color: var(--silver);
}

p {
  line-height: 1.72;
}

section,
.relative,
.container { 
  position: relative!important; 
  z-index: 3; 
}

.section-overlay {
  width: 100%;
  height: 100%;
}

/*------------------------------------------*/
/*  BLOCK SHADOW
/*------------------------------------------*/

.block--shadow { 
  box-shadow: 0 5px 14px 0 var(--tra-black);
}

.dark .block--shadow { 
  box-shadow: 0 5px 12px 0 rgba(0, 0, 0, .09);
}

/*------------------------------------------*/
/*  BORDER SETTINGS
/*------------------------------------------*/

.block--border {
  border: 1.5px solid;
}

.x-border {
  border-top: 1.5px solid;
  border-bottom: 1.5px solid;
}

.t-border {
  border-top: 1.5px solid;
}

.b-border {
  border-bottom: 1.5px solid;
}

.border-silver {
  border-color: var(--silver)!important;
}

.border-smoke {
  border-color: var(--smoke)!important;
}

.dark .border-smoke,
.dark .border-silver {
  border-color: #262d39!important;
}

.border-transparent {
  border-color: transparent!important;
}

/*------------------------------------------*/
/*  BORDER RADIUS SETTING
/*------------------------------------------*/ 

.r-0 { border-radius: 0px; }
.r-02 { border-radius: 2px; }
.r-04 { border-radius: 4px; }
.r-06 { border-radius: 6px; }
.r-08 { border-radius: 8px; }
.r-10 { border-radius: 10px; }
.r-12 { border-radius: 12px; }
.r-14 { border-radius: 14px; }
.r-16 { border-radius: 16px; }
.r-18 { border-radius: 18px; }
.r-20 { border-radius: 20px; }
.r-22 { border-radius: 22px; }
.r-24 { border-radius: 24px; }
.r-26 { border-radius: 26px; }
.r-28 { border-radius: 28px; }
.r-30 { border-radius: 30px; }
.r-32 { border-radius: 32px; }
.r-34 { border-radius: 34px; }
.r-36 { border-radius: 36px; }

/*------------------------------------------*/
/*  OPACITY SETTINGS
/*------------------------------------------*/

.o-0 { opacity: 0; }
.o-03 { opacity: .03; }
.o-04 { opacity: .04; }
.o-05 { opacity: .05; }
.o-06 { opacity: .06; }
.o-07 { opacity: .07; }
.o-08 { opacity: .08; }
.o-09 { opacity: .09; }
.o-10 { opacity: .1; }
.o-11 { opacity: .11; }
.o-12 { opacity: .12; }
.o-13 { opacity: .13; }
.o-14 { opacity: .14; }
.o-15 { opacity: .15; }
.o-16 { opacity: .16; }
.o-17 { opacity: .17; }
.o-18 { opacity: .18; }
.o-19 { opacity: .19; }
.o-20 { opacity: .2; }
.o-25 { opacity: .25; }
.o-30 { opacity: .3; }
.o-35 { opacity: .35; }
.o-40 { opacity: .4; }
.o-45 { opacity: .45; }
.o-50 { opacity: .5; }
.o-55 { opacity: .55; }
.o-60 { opacity: .60; }
.o-65 { opacity: .65; }
.o-70 { opacity: .7; }
.o-75 { opacity: .75; }
.o-80 { opacity: .8; }
.o-85 { opacity: .85; }
.o-90 { opacity: .9; }
.o-95 { opacity: .95; }
.o-100 { opacity: 1; }

/*------------------------------------------*/
/*  Z-INDEX SETTINGS
/*------------------------------------------*/

.z-01 { z-index: 1; }
.z-02 { z-index: 2; }
.z-03 { z-index: 3; }
.z-04 { z-index: 4; }
.z-05 { z-index: 5; }
.z-06 { z-index: 6; }
.z-07 { z-index: 7; }
.z-08 { z-index: 8; }
.z-09 { z-index: 9; }
.z-10 { z-index: 10; }

/*------------------------------------------*/
/*  BLUR SETTINGS
/*------------------------------------------*/

.blur-1 { filter: blur(1px); }
.blur-2 { filter: blur(2px); }
.blur-3 { filter: blur(3px); }
.blur-4 { filter: blur(4px); }
.blur-5 { filter: blur(5px); }
.blur-6 { filter: blur(6px); }
.blur-7 { filter: blur(7px); }
.blur-8 { filter: blur(8px); }
.blur-9 { filter: blur(9px); }
.blur-10 { filter: blur(10px); }

/*------------------------------------------*/
/*  SPACING & INDENTS
/*------------------------------------------*/

.py-25 { padding-top: 25px; padding-bottom: 25px; }
.py-30 { padding-top: 30px; padding-bottom: 30px; }
.py-35 { padding-top: 35px; padding-bottom: 35px; }
.py-40 { padding-top: 40px; padding-bottom: 40px; }
.py-50 { padding-top: 50px; padding-bottom: 50px; }
.py-60 { padding-top: 60px; padding-bottom: 60px; }
.py-70 { padding-top: 70px; padding-bottom: 70px; }
.py-80 { padding-top: 80px; padding-bottom: 80px; }
.py-90 { padding-top: 90px; padding-bottom: 90px; }
.py-100 { padding-top: 100px; padding-bottom: 100px; }
.py-110 { padding-top: 110px; padding-bottom: 110px; }
.py-120 { padding-top: 120px; padding-bottom: 120px; }

.pt-30 { padding-top: 30px; }
.pt-40 { padding-top: 40px; }
.pt-50 { padding-top: 50px; }
.pt-60 { padding-top: 60px; }
.pt-70 { padding-top: 70px; }
.pt-80 { padding-top: 80px; }
.pt-90 { padding-top: 90px; }
.pt-100 { padding-top: 100px; }
.pt-110 { padding-top: 110px; }
.pt-120 { padding-top: 120px; }

.pb-30 { padding-bottom: 30px; }
.pb-40 { padding-bottom: 40px; }
.pb-50 { padding-bottom: 50px; }
.pb-60 { padding-bottom: 60px; }
.pb-70 { padding-bottom: 70px; }
.pb-80 { padding-bottom: 80px; }
.pb-90 { padding-bottom: 90px; }
.pb-100 { padding-bottom: 100px; }
.pb-110 { padding-bottom: 110px; }
.pb-120 { padding-bottom: 120px; }

.px-15 { padding-left: 15px; padding-right: 15px; }
.px-20 { padding-left: 20px; padding-right: 20px; }
.px-25 { padding-left: 25px; padding-right: 25px; }
.px-30 { padding-left: 30px; padding-right: 30px; }
.px-35 { padding-left: 35px; padding-right: 35px; }

.mt-0 { margin-top: 0!important; }
.mt-15 { margin-top: 15px; }
.mt-20 { margin-top: 20px; }
.mt-25 { margin-top: 25px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }
.mt-60 { margin-top: 60px; }
.mt-70 { margin-top: 70px; }
.mt-80 { margin-top: 80px; }
.mt-90 { margin-top: 90px; }
.mt-100 { margin-top: 100px; }
.mt-110 { margin-top: 110px; }
.mt-120 { margin-top: 120px; }

.mb-0 { margin-bottom: 0!important; }
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }
.mb-25 { margin-bottom: 25px; }
.mb-30 { margin-bottom: 30px; }
.mb-35 { margin-bottom: 35px; }
.mb-40 { margin-bottom: 40px; }
.mb-45 { margin-bottom: 45px; }
.mb-50 { margin-bottom: 50px; }
.mb-60 { margin-bottom: 60px; }
.mb-70 { margin-bottom: 70px; }
.mb-80 { margin-bottom: 80px; }
.mb-90 { margin-bottom: 90px; }
.mb-100 { margin-bottom: 100px; }
.mb-110 { margin-bottom: 110px; }
.mb-120 { margin-bottom: 120px; }

.mx-15 { margin-left: 15px; margin-right: 15px; }
.mx-20 { margin-left: 20px; margin-right: 20px; }
.mx-25 { margin-left: 25px; margin-right: 25px; }
.mx-30 { margin-left: 30px; margin-right: 30px; }
.mx-35 { margin-left: 35px; margin-right: 35px; }
.mx-40 { margin-left: 40px; margin-right: 40px; }
.mx-50 { margin-left: 50px; margin-right: 50px; }
.mx-60 { margin-left: 60px; margin-right: 60px; }
.mx-70 { margin-left: 70px; margin-right: 70px; }
.mx-80 { margin-left: 80px; margin-right: 80px; }

.ml-10 { margin-left: 10px; }
.ml-15 { margin-left: 15px; }
.ml-20 { margin-left: 20px; }
.ml-25 { margin-left: 25px; }
.ml-30 { margin-left: 30px; }
.ml-35 { margin-left: 35px; }
.ml-40 { margin-left: 40px; }

/*------------------------------------------*/
/*  BACKGROUND SETTINGS
/*------------------------------------------*/

.bg--fixed,
.bg--scroll {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg--fixed { background-attachment: scroll!important; }
.bg--scroll { background-attachment: fixed!important; }

/*------------------------------------------*/
/*  BACKGROUND COLORS
/*------------------------------------------*/

.bg--white { background-color: var(--white); }
.bg--blue { background-color: var(--blue); }
.bg--grape { background-color: var(--grape); }
.bg--green { background-color: var(--green); }
.bg--lightgray { background-color: var(--light-gray); }
.bg--nero { background-color: var(--nero); }
.bg--noir { background-color: var(--noir); }
.bg--onyx { background-color: var(--onyx); }
.bg--orange-red { background-color: var(--orange-red); }
.bg--pink { background-color: var(--pink); }
.bg--purple { background-color: var(--purple); }
.bg--snow { background-color: var(--snow); }
.bg--stateblue { background-color: var(--stateblue); }
.bg--sky { background-color: var(--sky); }
.bg--skyblue { background-color: var(--skyblue); }
.bg--violet-red { background-color: var(--violet-red); }
.bg--whitesmoke { background-color: var(--whitesmoke); }
.bg--yellow { background-color: var(--yellow); }

.bg--tra-green { background-color: var(--tra-green); }
.bg--tra-nero { background-color: var(--tra-nero); }
.bg--tra-orange { background-color: var(--tra-orange); }
.bg--tra-purple { background-color: var(--tra-purple); }
.bg--tra-white { background-color: var(--tra-white); }
.bg--tra-yellow { background-color: var(--tra-yellow); }

/*------------------------------------------*/
/*  GRADIENT BACKGROUND
/*------------------------------------------*/

.gr--coal {
   background-image: linear-gradient(180deg, rgba(27, 30, 43, .85) 50%, rgba(27, 30, 43, .05) 100%);
}

.gr--lightgray {
   background-image: linear-gradient(180deg, rgba(245, 246, 247, .95) 40%, rgba(245, 246, 247, .05) 100%);
}

.gr--whitesmoke { 
  background-image: linear-gradient(180deg, rgba(244, 244, 251, .95) 50%, rgba(244, 244, 251, .05) 100%); 
}

.bg--whitesmoke-gradient {
  background-image: linear-gradient(180deg, rgba(244, 244, 249, .8) 50%, rgba(244, 244, 249, .05) 100%);
}

/*------------------------------------------*/
/*  BACKGROUND IMAGE
/*------------------------------------------*/

.bg-01,
.bg-02,
.bg-03,
.bg-04,
.bg-05,
.bg-06,
.bg-07,
.bg-08 {
   background-repeat: no-repeat;
   background-position: center center;
   background-size: cover;
}

.bg-01 {
   background-image: url(../images/bg-01.jpg);
}

.bg-02 {
   background-image: url(../images/bg-02.jpg);
}

.bg-03 {
   background-image: url(../images/bg-03.jpg);
}

.bg-04 {
   background-image: url(../images/bg-04.jpg);
}

.bg-05 {
   background-image: url(../images/bg-05.jpg);
}

.bg-06 {
   background-image: url(../images/bg-06.jpg);
}

.bg-07 {
   background-image: url(../images/bg-07.jpg);
}

.bg-08 {
   background-image: url(../images/bg-08.jpg);
}

/*------------------------------------------*/
/*  BACKGROUND SHAPE
/*------------------------------------------*/

.shape--01:after,
.shape--02:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 55%;
  left: 0;
  z-index: -1;
}

.shape--01:after {
  top: 0; 
}

.shape--02:after {
  top: 45%;
}

.shape--grape:after { background-color: var(--grape); }
.shape--lightgray:after { background-color: var(--light-gray); }
.shape--onyx:after { background-color: var(--onyx); }
.shape--whitesmoke:after { background-color: var(--whitesmoke); }

/*------------------------------------------*/
/*  SECTION DIVIDER
/*------------------------------------------*/

hr.divider {
  width: 100%;
  height: 1px;
  background-color: transparent;
  background-image: linear-gradient(90deg, rgba(206,211,246,0) 0, #bbb 38%, #999 64%, rgba(206,211,246,0) 99%);
  opacity: .4;
  border: none;
  margin: 0;
}

.dark hr.divider {
   background-image: linear-gradient(90deg, rgba(122, 125, 147, 0) 0, #7a7d93 38%, #7a7d93 64%, rgba(122, 125, 147, 0) 99%);
}

/*------------------------------------------*/
/*  WAVE SHAPE BOTTOM
/*------------------------------------------*/

.wave-shape-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}

/* ==========================================================================
  03. TYPOGRAPHY
  =========================================================================== */

/*------------------------------------------*/
/*  HEADERS
/*------------------------------------------*/

h6, h5, h4, h3, h2, h1 {  
  font-family: var(--main-font);
  color: var(--header-color);
  letter-spacing: 0;  
  margin-bottom: 0;
}

.dark h6, 
.dark h5, 
.dark h4, 
.dark h3, 
.dark h2, 
.dark h1 {  
  color: var(--white);
}

/*------------------------------------------*/
/*  TEXT SIZE
/*------------------------------------------*/

.fs-10px { font-size: 0.625rem; }
.fs-11px { font-size: 0.6875rem; } 
.fs-12px { font-size: 0.75rem; }  
.fs-13px { font-size: 0.8125rem; }
.fs-14px { font-size: 0.875rem; }  
.fs-15px { font-size: 0.9375rem; } 
.fs-16px { font-size: 1rem; }        
.fs-17px { font-size: 1.0625rem; } 
.fs-18px { font-size: 1.125rem; }  
.fs-19px { font-size: 1.1875rem; } 
.fs-20px { font-size: 1.25rem; }    
.fs-21px { font-size: 1.3125rem; } 
.fs-22px { font-size: 1.375rem; }  
.fs-23px { font-size: 1.4375rem; } 
.fs-24px { font-size: 1.5rem; }   
.fs-25px { font-size: 1.5625rem; } 
.fs-26px { font-size: 1.625rem; }  
.fs-27px { font-size: 1.6875rem; } 
.fs-28px { font-size: 1.75rem; } 
.fs-29px { font-size: 1.8125rem; }      
.fs-30px { font-size: 1.875rem; }  
.fs-32px { font-size: 2rem; }     
.fs-34px { font-size: 2.125rem; }  
.fs-36px { font-size: 2.25rem; }   
.fs-38px { font-size: 2.375rem; }  
.fs-40px { font-size: 2.5rem; }    
.fs-42px { font-size: 2.625rem; } 
.fs-43px { font-size: 2.6875rem; } 
.fs-44px { font-size: 2.75rem; }  
.fs-45px { font-size: 2.8125rem; }  
.fs-46px { font-size: 2.875rem; }  
.fs-48px { font-size: 3rem; }     
.fs-50px { font-size: 3.125rem; } 
.fs-52px { font-size: 3.25rem; }  
.fs-54px { font-size: 3.375rem; } 
.fs-56px { font-size: 3.5rem; }    
.fs-58px { font-size: 3.625rem; } 
.fs-60px { font-size: 3.75rem; }   
.fs-62px { font-size: 3.875rem; } 
.fs-64px { font-size: 4rem; }    
.fs-66px { font-size: 4.125rem; }  
.fs-68px { font-size: 4.25rem; }  
.fs-70px { font-size: 4.375rem; } 
.fs-72px { font-size: 4.5rem; }  
.fs-74px { font-size: 4.625rem; }  
.fs-76px { font-size: 4.75rem; }     
.fs-78px { font-size: 4.875rem; }  
.fs-80px { font-size: 5rem; }  
.fs-82px { font-size: 5.125rem; } 
.fs-84px { font-size: 5.25rem; } 
.fs-86px { font-size: 5.375rem; } 
.fs-88px { font-size: 5.5rem; } 
.fs-90px { font-size: 5.625rem; } 
.fs-92px { font-size: 5.75rem; } 
.fs-94px { font-size: 5.875rem; } 
.fs-96px { font-size: 6rem; } 
.fs-98px { font-size: 6.125rem; } 
.fs-100px { font-size: 6.25rem; } 

/*------------------------------------------*/
/*  LINE HEIGHT
/*------------------------------------------*/

.lh-0 { line-height: 0; }
.lh-0d5 { line-height: 0.5; }
.lh-1 { line-height: 1; }
.lh-1d15 { line-height: 1.15; }
.lh-1d2 { line-height: 1.2; }
.lh-1d25 { line-height: 1.25; }
.lh-1d3 { line-height: 1.3; }
.lh-1d35 { line-height: 1.35; }
.lh-1d4 { line-height: 1.4; }
.lh-1d45 { line-height: 1.45; }
.lh-1d5 { line-height: 1.5; }
.lh-1d55 { line-height: 1.55; }
.lh-1d6 { line-height: 1.6; }

/*------------------------------------------*/
/*  FONT WEIGHT
/*------------------------------------------*/

.fw-300 { font-weight: 300; }
.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

/*------------------------------------------*/
/*  LETTERS SPACING
/*------------------------------------------*/

.ls-0 { letter-spacing: 0; }
.ls-0d25px { letter-spacing: -0.25px; }
.ls-0d35px { letter-spacing: -0.35px; }
.ls-0d5px { letter-spacing: -0.5px; }
.ls-0d75px { letter-spacing: -0.75px; }
.ls-1px { letter-spacing: -1px; }
.ls-1d25px { letter-spacing: -1.25px; }
.ls-1d3px { letter-spacing: -1.3px; }
.ls-1d35px { letter-spacing: -1.35px; }
.ls-1d5px { letter-spacing: -1.5px; }
.ls-1d75px { letter-spacing: -1.75px; }
.ls-2px { letter-spacing: -2px; }

/*------------------------------------------*/
/*  PARAGRAPH
/*------------------------------------------*/

p { font-size: 1rem; }  /* 16px */

p.main-font,
span.main-font {
  display: block;
  font-family: var(--main-font);
  color: var(--header-color);
  letter-spacing: 0;  
}

.dark p.main-font,
.dark span.main-font {
  color: var(--white);
}

/*------------------------------------------*/
/*  LINK SETTINGS
/*------------------------------------------*/

a {
  color: var(--header-color);
  text-decoration: none;
  transition: all 400ms ease-in-out; 
}

.dark a {
  color: var(--white);
}

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

.dark a:hover {
  color: var(--white);
}

.hover--link-white a:hover {
  color: var(--header-color)!important;
}

.hover--link-white a:hover {
  color: var(--white)!important;
}

a:focus {
  outline: none;
  text-decoration: none;
}

.underline {
  text-decoration: underline;
}

/*------------------------------------------*/
/*  LISTS
/*------------------------------------------*/

ul {
  margin: 0;
  padding: 0;
  list-style: none;
} 

/*------------------------------------------*/
/*  TEXT LIST
/*------------------------------------------*/

ul.simple-list {
  list-style: disc;
  margin-left: 15px;
}

ol.digit-list p,
ul.simple-list.long-list p {
  margin-bottom: 8px;
}

/*------------------------------------------*/
/*  BUTTON SETTINGS
/*------------------------------------------*/

.btn {
  overflow: hidden;
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 500;
  background-color: transparent;
  padding: 1rem 1.35rem;
  border: 2px solid transparent;
  transition: all 400ms ease-in-out; 
}

/*------------------------------------------*/
/*  BLACK BUTTON
/*------------------------------------------*/

.btn--black, 
.hover--black:hover {
  color: var(--white)!important; background-color: var(--black)!important; border-color: var(--black)!important; 
}

.btn--tra-black, 
.hover--tra-black:hover {
  color: var(--black)!important; background-color: transparent!important; border-color: var(--black)!important; 
}

/*------------------------------------------*/
/*  WHITE BUTTON
/*------------------------------------------*/

.btn--white, 
.hover--white:hover, 
.color--white .btn--white, 
.color--white .hover--white:hover {
  color: var(--black)!important; background-color: var(--white)!important; border-color: var(--white)!important; 
}

.btn--tra-white, 
.hover--tra-white:hover, 
.color--white .hover--tra-white:hover {
  color: var(--white)!important; background-color: transparent!important; border-color: var(--white)!important; 
}

.scroll .btn--tra-white {
  color: var(--black)!important; background-color: transparent!important; border-color: var(--black)!important; 
}

.scroll .hover--tra-white:hover {
  color: var(--black)!important; background-color: transparent!important; border-color: var(--black)!important; 
}

.dark .scroll .hover--tra-white:hover {
  color: var(--white)!important; background-color: transparent!important; border-color: var(--white)!important; 
}

.scroll .hover--white:hover {
  color: var(--whte)!important; background-color: var(--black)!important; border-color: var(--black)!important; 
}

/*------------------------------------------*/
/*  BLUE BUTTON
/*------------------------------------------*/

.btn--blue, .hover--blue:hover, .scroll .hover--blue:hover, .color--white .hover--blue:hover {
  color: var(--white)!important; border-color: var(--blue)!important; background-color: var(--blue)!important; 
}

/*------------------------------------------*/
/*  GREEN BUTTON
/*------------------------------------------*/

.btn--green, .hover--green:hover, .scroll .hover--green:hover, .color--white .hover--green:hover {
  color: var(--white)!important; border-color: var(--green)!important; background-color: var(--green)!important; 
}

/*------------------------------------------*/
/*  ORANGE RED BUTTON
/*------------------------------------------*/

.btn--orange-red, .hover--orange-red:hover, .scroll .hover--orange-red:hover, .color--white .hover--orange-red:hover {
  color: var(--white)!important; border-color: var(--orange-red)!important; background-color: var(--orange-red)!important; 
}

/*------------------------------------------*/
/*  PINK BUTTON
/*------------------------------------------*/

.btn--pink, .hover--pink:hover, .scroll .hover--pink:hover, .color--white .hover--pink:hover {
  color: var(--white)!important; border-color: var(--pink)!important; background-color: var(--pink)!important; 
}

/*------------------------------------------*/
/*  PLUM BUTTON
/*------------------------------------------*/

.btn--plum, .hover--plum:hover, .scroll .hover--plum:hover, .color--white .hover--plum:hover {
  color: var(--white)!important; border-color: var(--plum)!important; background-color: var(--plum)!important; 
}

/*------------------------------------------*/
/*  PURPLE BUTTON
/*------------------------------------------*/

.btn--purple, .hover--purple:hover, .scroll .hover--purple:hover, .color--white .hover--purple:hover {
  color: var(--white)!important; border-color: var(--purple)!important; background-color: var(--purple)!important; 
}

/*------------------------------------------*/
/*  SKY BLUE BUTTON
/*------------------------------------------*/

.btn--skyblue, .hover--skyblue:hover, .scroll .hover--skyblue:hover, .color--white .hover--skyblue:hover {
  color: var(--white)!important; border-color: var(--skyblue)!important; background-color: var(--skyblue)!important; 
}

/*------------------------------------------*/
/*  STATEBLUE BUTTON
/*------------------------------------------*/

.btn--stateblue, .hover--stateblue:hover, .scroll .hover--stateblue:hover, .color--white .hover--stateblue:hover {
  color: var(--white)!important; border-color: var(--stateblue)!important; background-color: var(--stateblue)!important; 
}

/*------------------------------------------*/
/*  VIOLET RED BUTTON
/*------------------------------------------*/

.btn--violet-red, .hover--violet-red:hover, .scroll .hover--violet-red:hover, .color--white .hover--violet-red:hover {
  color: var(--white)!important; border-color: var(--violet-red)!important; background-color: var(--violet-red)!important; 
}

/*------------------------------------------*/
/*  YELLOW BUTTON
/*------------------------------------------*/

.btn--yellow, 
.color--white .btn--yellow, 
.hover--yellow:hover, 
.color--white .hover--yellow:hover, 
.white-scroll .scroll .hover--yellow:hover {
  color: #1f2334!important; border-color: var(--yellow)!important; background-color: var(--yellow)!important;
}

/*------------------------------------------*/
/*  BUTTON FOCUS
/*------------------------------------------*/

.btn:focus,
.btn.btn--black:focus {
  color: var(--white);
  box-shadow: none; 
}

.btn--transparent:focus {
  background-color: transparent;
  border-color: transparent;
} 

.btn--tra-black:focus, 
.btn--transparent:focus {
  color: var(--header-color); 
  box-shadow: none; 
}

/*------------------------------------------*/
/*  DOWNLOAD BUTTON
/*------------------------------------------*/ 

.os-btn {
  margin-bottom: 20px;
  text-align: left;
  width: 330px;
  min-width: 330px;
  border: 1.5px solid #ddd;
  padding: 25px 20px;
}

.dark .os-btn {
  border-color: #262d39;
}

.os-btn-txt {
  padding-left: 18px;
}

.os-btn-ico {   
  text-align: center;
}

.os-btn-ico img {
  width: auto;
  max-width: inherit;
  max-height: 50px;
}

.os-btn-txt p {
  line-height: 1;
  font-weight: 500;
  margin-bottom: 7px;
}

.os-btn-txt span {
  display: block;
  line-height: 1;
}

/*------------------------------------------*/
/*  VIDEO POPUP LINK
/*------------------------------------------*/

.video-link {
  display: inline-flex;
  align-items: center;
}

.video-link-txt {
  font-size: 1.15rem;
  line-height: 1;
  position: relative;
  top: -1.5px;
  left: 10px;
}

/*------------------------------------------*/
/*  VIDEO POPUP ICON
/*------------------------------------------*/

.video-preview {
  position: relative; 
  text-align: center;
}

.video-btn {
  position: absolute!important;
  top: 50%;
  left: 50%;
  display: inline-block;
  text-align: center;
  color: var(--white);
  width: 7.5rem;
  height: 7.5rem;
  margin-top: -3.75rem;
  margin-left: -3.75rem;
  border-radius: 100%; 
}

.video-block-wrapper {
  transition: all 400ms ease-in-out;
}

.video-btn [class^="flaticon-"]:before, 
.video-btn [class^="flaticon-"]:after {
  font-size: 6rem;
  line-height: 7.5rem!important;   
  margin-left: 10px;
}

.video-btn:hover .video-block-wrapper {
  transform: scale(0.95);
}

.video-btn:before {
  content: '';
  position: absolute;
  left: -5px;
  right: -5px;
  top: -5px;
  bottom: -5px;
  background: var(--tra-white);
  opacity: 0;
  border-radius: 50%;
  transition: all 400ms ease-in-out;
}

.video-btn:hover:before {
  opacity: .75;
  left: -1.5rem;
  right: -1.5rem;
  top: -1.5rem;
  bottom: -1.5rem;
}

/*------------------------------------------*/
/*  STORE BADGE ICONS
/*------------------------------------------*/

.stores-badge {
  display: inline-block;
}

.store {
  display: inline-block;
  text-align: center;
  margin-right: 10px;
}

.badge-img-xs .store,
.badge-img-sm .store {
  margin-right: 6px;
}

.badge-img-md .store {
  margin-right: 8px;
}

.store:last-child {
  margin-right: 0;
} 

.store img {
  width: auto;
  max-width: inherit;
}

.badge-img-xs .store img { max-height: 2.5rem; }
.badge-img-sm .store img { max-height: 2.625rem; }
.badge-img-md .store img { max-height: 2.875rem; }
.badge-img-lg .store img { max-height: 3rem; }
.badge-img-xl .store img { max-height: 3.25rem; }

.os-version-ext {
  margin-top: 20px;
}

.btn-rating p.btn-txt {
  margin-top: 0;
}

.star-rating small,
.star-rating span.rating-txt {
  font-size: 1rem;
}

.star-rating.ico-15 [class*="flaticon-"]:before, 
.star-rating.ico-15 [class*="flaticon-"]:after { position: relative; font-size: 1rem; top: 3px; }

.star-rating.ico-20 [class*="flaticon-"]:before, 
.star-rating.ico-20 [class*="flaticon-"]:after { position: relative; font-size: 0.95rem; top: 1px; }

.os-version-ext .star-rating small {
  font-size: 1rem;
  margin-left: 6px;
}

span.os-version {
  display: block;
  font-size: 1rem;
  line-height: 1;
  margin-top: 7px;
}

/*------------------------------------------*/
/*  SECTION BADGE
/*------------------------------------------*/

.section_badge {
  display: block;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 1.25px;
  text-transform: uppercase;
  margin-bottom: 35px;
}

.module_eyebrow {
  display: inline-block;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 18px;
  border-radius: 36px;
  margin-bottom: 35px;
}

.dark .module_eyebrow.color--purple {
  background-color: #2b2e3a;
  color: #9965f2!important;
}

/*------------------------------------------*/
/*  SECTION TITLE
/*------------------------------------------*/

.title-01 {
  position: relative;
  text-align: center;
}

.section_title h1,
.section_title h2 {
   line-height: 1.25;
}

.title-01 p {
  margin: 14px 0 0;
}

.title-01 p.mt-0 {
  margin: 0;
}

/*------------------------------------------*/
/*  ADVANTAGES LIST
/*------------------------------------------*/

.advantages,
.text-center .advantages {
  margin-top: 24px;
}

.more-btn .advantages {
  margin-top: 18px;
}

.advantages li {
  width: auto!important;
  display: inline-block!important;
  vertical-align: top;
  clear: none !important;
  margin-left: -2px;
}

.advantages li:first-child {
  margin-left: 0;
}

.advantages li p {
  margin: 0;
}

.advantages li span {
  font-size: 19px;
  position: relative;
  top: 1.5px;
}

/*------------------------------------------*/
/*  USER AVATARS
/*------------------------------------------*/

.users {
  display: flex;
  position: relative;
  flex-flow: row wrap;
  align-items: center!important;
  justify-content: flex-start;
}

.users-widget .u-ava {
  margin-right: 15px;
}

.users-widget .u-ava img {
  width: auto;
  max-width: inherit;
  max-height: 50px;
}

.users-widget .u-txt {
  overflow: hidden;
  flex: 1;
  max-width: 100%;
}

.users-widget .u-txt p {
  font-size: 1.025rem;
  line-height: 1.6;
  margin: 0;
}

.users-widget .u-txt p b {
  color: var(--header-color);
  font-weight: 500;
}

.dark .users .u-txt p b,
.color--white .users .u-txt p b {
  color: var(--white);
}

.users-widget .u-txt p span {
  display: block;
}

/*------------------------------------------*/
/*  TEXT COLORS
/*------------------------------------------*/

.color--white,
.color--white a,
.color--white :is(h1, h2, h3, h4, h5, h6) { color: var(--white)!important; }

.color--black,
.color--black a,
.color--black :is(h1, h2, h3, h4, h5, h6) { color: var(--black); }

.color--header,
.color--header a,
.color--header :is(h1, h2, h3, h4, h5, h6) { color: var(--header-color); }

.color--text,
.color--text a,
.color--text :is(h1, h2, h3, h4, h5, h6) { color: var(--text-color); }

.color--blue,
.color--blue a,
.color--blue :is(h1, h2, h3, h4, h5, h6) { color: var(--blue); }

.color--gray,
.color--gray a,
.color--gray :is(h1, h2, h3, h4, h5, h6) { color: var(--gray); }

.color--dark-gray,
.color--dark-gray a,
.color--dark-gray :is(h1, h2, h3, h4, h5, h6) { color: var(--dark-gray); }

.color--green,
.color--green a,
.color--green :is(h1, h2, h3, h4, h5, h6) { color: var(--green); }

.color--orange,
.color--orange a,
.color--orange :is(h1, h2, h3, h4, h5, h6) { color: var(--orange); }

.color--orange-red,
.color--orange-red a,
.color--orange-red :is(h1, h2, h3, h4, h5, h6) { color: var(--orange-red); }

.color--pink,
.color--pink a,
.color--pink :is(h1, h2, h3, h4, h5, h6) { color: var(--pink); }

.color--plum,
.color--plum a,
.color--plum :is(h1, h2, h3, h4, h5, h6) { color: var(--plum)!important; }

.color--purple,
.color--purple a,
.color--purple :is(h1, h2, h3, h4, h5, h6) { color: var(--purple)!important; }

.color--silver,
.color--silver a,
.color--silver :is(h1, h2, h3, h4, h5, h6) { color: var(--silver); }

.color--skyblue,
.color--skyblue a,
.color--skyblue :is(h1, h2, h3, h4, h5, h6) { color: var(--skyblue); }

.color--stateblue,
.color--stateblue a,
.color--stateblue :is(h1, h2, h3, h4, h5, h6) { color: var(--stateblue); }

.color--violet-red,
.color--violet-red a,
.color--violet-red :is(h1, h2, h3, h4, h5, h6) { color: var(--violet-red); }

.color--yellow,
.color--yellow a,
.color--yellow :is(h1, h2, h3, h4, h5, h6) { color: var(--yellow); }

/*------------------------------------------*/
/*  IMAGE HOVER OVERLAY
/*------------------------------------------*/

.hover-overlay {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative; 
}

.hover-overlay img {
  transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  -moz-transform: scale(1);
  overflow: hidden;
  transition: transform 400ms;
}

/*------------------------------------------*/
/*  Overlay Background 
/*------------------------------------------*/ 

.item-overlay {
  opacity: 0;
  -moz-opacity: 0; 
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 20, .45);
  transition: all 400ms ease-in-out;
}

/*------------------------------------------*/
/*  CAROUSEL SETTINGS
/*------------------------------------------*/ 

.loop_carousel_left,
.loop_carousel_right {
  overflow: hidden;
}

/*------------------------------------------*/
/*  CAROUSEL FADE
/*------------------------------------------*/ 

.carousel_fade {
  background-image: linear-gradient(90deg, rgba(244, 244, 249, 1) 40%, rgba(244, 244, 249, .18) 100%);
  width: 10%;
  height: 100%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.carousel_fade.is-right {
  background-image: linear-gradient(270deg, rgba(244, 244, 249, 1) 40%, rgba(244, 244, 249, .18) 100%);
  inset: 0% 0% 0% auto;
}

.carousel_fade.white_fade {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, .18) 100%);
}

.carousel_fade.is-right.white_fade {
  background-image: linear-gradient(270deg, rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, .18) 100%);
}



/* ==========================================================================
  04. PRELOADER SPINNER
  =========================================================================== */

#loading {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 1;
  margin-top: 0;
  top: 0px;
  z-index: 99999;
}

#loading-center {
  width: 100%;
  height: 100%;
  position: relative;
  animation: loading-center 1s infinite;
}

#loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 60px;
  width: 60px;
  margin-top: -30px;
  margin-left: -30px;
  -webkit-animation: loading-center-absolute 1s infinite;
  animation: loading-center-absolute 1s infinite;
}

.object {
  width: 20px;
  height: 20px;
  float: left;
  border-radius: 50% 50% 50% 50%;
  margin-right: 20px;
  margin-bottom: 20px;  
}

.object:nth-child(2n+0) {
  margin-right: 0;
}

#object_one {
   animation: object_one 1s infinite;
}

#object_two {
   animation: object_two 1s infinite;
}

#object_three {
   animation: object_three 1s infinite;
}

#object_four {
   animation: object_four 1s infinite;
}

@keyframes loading-center {
   100% {
      transform: rotate(360deg);
   }
}

@keyframes object_one {
   50% {
      transform: translate(20px, 20px);
   }
}

@keyframes object_two {
   50% {
      transform: translate(-20px, 20px);
   }
}

@keyframes object_three {
   50% {
      transform: translate(20px, -20px);
   }
}

@keyframes object_four {
   50% {
      transform: translate(-20px, -20px);
   }
}



/* ==========================================================================
  05. HEADER & NAVIGATION
  =========================================================================== */

.desktoplogo img {
  max-height: 38px;
}

/*------------------------------------------*/
/* NAVBAR LINKS HOVER
/*------------------------------------------*/

.wsmenu>.wsmenu-list.hover-blue>li>ul.sub-menu>li>a:hover,
.wsmenu>.wsmenu-list.hover-blue>li>ul.sub-menu>li>ul.sub-menu>li>a:hover,
.wsmenu>.wsmenu-list.hover-blue>li>.wsmegamenu.w-70 ul.link-list>li>a:hover,
.wsmenu>.wsmenu-list.hover-blue>li>.wsmegamenu.halfmenu ul.link-list>li>a:hover {
   color: var(--blue) !important;
}

.wsmenu>.wsmenu-list.hover-green>li>ul.sub-menu>li>a:hover,
.wsmenu>.wsmenu-list.hover-green>li>ul.sub-menu>li>ul.sub-menu>li>a:hover,
.wsmenu>.wsmenu-list.hover-green>li>.wsmegamenu.w-70 ul.link-list>li>a:hover,
.wsmenu>.wsmenu-list.hover-green>li>.wsmegamenu.halfmenu ul.link-list>li>a:hover {
   color: var(--green) !important;
}

.wsmenu>.wsmenu-list.hover-orange-red>li>ul.sub-menu>li>a:hover,
.wsmenu>.wsmenu-list.hover-orange-red>li>ul.sub-menu>li>ul.sub-menu>li>a:hover,
.wsmenu>.wsmenu-list.hover-orange-red>li>.wsmegamenu.w-70 ul.link-list>li>a:hover,
.wsmenu>.wsmenu-list.hover-orange-red>li>.wsmegamenu.halfmenu ul.link-list>li>a:hover {
   color: var(--orange-red) !important;
}

.wsmenu>.wsmenu-list.hover-pink>li>ul.sub-menu>li>a:hover,
.wsmenu>.wsmenu-list.hover-pink>li>ul.sub-menu>li>ul.sub-menu>li>a:hover,
.wsmenu>.wsmenu-list.hover-pink>li>.wsmegamenu.w-70 ul.link-list>li>a:hover,
.wsmenu>.wsmenu-list.hover-pink>li>.wsmegamenu.halfmenu ul.link-list>li>a:hover {
   color: var(--pink) !important;
}

.wsmenu>.wsmenu-list.hover-plum>li>ul.sub-menu>li>a:hover,
.wsmenu>.wsmenu-list.hover-plum>li>ul.sub-menu>li>ul.sub-menu>li>a:hover,
.wsmenu>.wsmenu-list.hover-plum>li>.wsmegamenu.w-70 ul.link-list>li>a:hover,
.wsmenu>.wsmenu-list.hover-plum>li>.wsmegamenu.halfmenu ul.link-list>li>a:hover {
   color: var(--plum) !important;
}

.wsmenu>.wsmenu-list.hover-purple>li>ul.sub-menu>li>a:hover,
.wsmenu>.wsmenu-list.hover-purple>li>ul.sub-menu>li>ul.sub-menu>li>a:hover,
.wsmenu>.wsmenu-list.hover-purple>li>.wsmegamenu.w-70 ul.link-list>li>a:hover,
.wsmenu>.wsmenu-list.hover-purple>li>.wsmegamenu.halfmenu ul.link-list>li>a:hover {
   color: var(--purple) !important;
}

.wsmenu>.wsmenu-list.hover-skyblue>li>ul.sub-menu>li>a:hover,
.wsmenu>.wsmenu-list.hover-skyblue>li>ul.sub-menu>li>ul.sub-menu>li>a:hover,
.wsmenu>.wsmenu-list.hover-skyblue>li>.wsmegamenu.w-70 ul.link-list>li>a:hover,
.wsmenu>.wsmenu-list.hover-skyblue>li>.wsmegamenu.halfmenu ul.link-list>li>a:hover {
   color: var(--skyblue) !important;
}

.wsmenu>.wsmenu-list.hover-stateblue>li>ul.sub-menu>li>a:hover,
.wsmenu>.wsmenu-list.hover-stateblue>li>ul.sub-menu>li>ul.sub-menu>li>a:hover,
.wsmenu>.wsmenu-list.hover-stateblue>li>.wsmegamenu.w-70 ul.link-list>li>a:hover,
.wsmenu>.wsmenu-list.hover-stateblue>li>.wsmegamenu.halfmenu ul.link-list>li>a:hover {
   color: var(--stateblue) !important;
}

.wsmenu>.wsmenu-list.hover-violet-red>li>ul.sub-menu>li>a:hover,
.wsmenu>.wsmenu-list.hover-violet-red>li>ul.sub-menu>li>ul.sub-menu>li>a:hover,
.wsmenu>.wsmenu-list.hover-violet-red>li>.wsmegamenu.w-70 ul.link-list>li>a:hover,
.wsmenu>.wsmenu-list.hover-violet-red>li>.wsmegamenu.halfmenu ul.link-list>li>a:hover {
   color: var(--violet-red) !important;
}



/* ==========================================================================
  06. HERO
  =========================================================================== */

.hero-section .container-xxl {
  position: relative;
  z-index: 3;
}

/*------------------------------------------*/
/*  HERO TEXT WIDGET
/*------------------------------------------*/

.txt-widget {
  margin-bottom: 45px;
}

.txt-widget a {
  font-size: 1.0625rem;
  padding: 11px 20px;
  border-radius: 36px;
}

.color--white .txt-widget a.bg--white {
  background-color: rgba(255, 255, 255, .15);
}

.txt-widget span {
  position: relative;
  top: 5px;
  right: 7px;
}

.txt-widget.ico-20 [class*="flaticon-"]:before, 
.txt-widget.ico-20 [class*="flaticon-"]:after { font-size: 1.5rem; }

/*------------------------------------------*/
/*  HERO AVATARS WIDGET
/*------------------------------------------*/

.hero-avatars-widget {
  font-size: 1.125rem;
  margin-bottom: 30px;
}

.hero-avatars-widget img {
  position: relative;
  width: auto;
  max-width: inherit;
  max-height: 38px;
  margin-right: 5px;
}

.hero-avatars-widget span {
  color: var(--header-color);
  font-weight: 500;
}

.dark .hero-avatars-widget span,
.color--white .hero-avatars-widget span {
  color: var(--white);
}

/*------------------------------------------*/
/*  HERO-1
/*------------------------------------------*/

.hero-1 {
  background-image: url(../images/hero-1.jpg);
  padding-top: 180px;
  padding-bottom: 125px;
}

.hero-1-txt {
  margin-top: 25px;
}

.hero-1-txt p.fs-19px {
  margin: 25px 4% 30px 0;
}

.hero-1-img {
  margin-left: 20px;
}

/*------------------------------------------*/
/*  HERO-2
/*------------------------------------------*/

.hero-2 {
  background-image: url(../images/hero-2.jpg);
  padding-top: 180px;
  margin-bottom: 30px;
}

.hero-2-txt {
  margin: -20px 0 0 50px;
}

.hero-2-txt p.fs-21px {
  margin: 22px 0 25px;
}

.hero-2-img {
  position: relative;
  margin: 0 30px -50px 0;
}

/*------------------------------------------*/
/*  HERO-3
/*------------------------------------------*/

.hero-3 {
  background-image: url(../images/hero-3.jpg);
  padding-top: 170px;
  margin-bottom: 60px;
}

.hero-3-txt {
  margin-top: -30px;
}

.hero-3-txt p.fs-19px {
  margin: 18px 0 25px;
}

.hero-3-img {
  position: relative;
  text-align: center;
  margin: 0 -70% -40px 10px;
}

/*------------------------------------------*/
/*  HERO-4
/*------------------------------------------*/

.hero-4 {
  background-image: url(../images/hero-4.jpg);
  padding-top: 180px;
  padding-bottom: 30px;
}

.hero-4-txt {
  margin-top: -20px;
}

.hero-4-txt h1 {
  margin-bottom: 25px;
}

#hero-4-form {
  position: relative;
  z-index: 99;
  border: 1px solid var(--smoke);
  padding: 40px 32px 35px;
  margin: 0 10px -20px 100px;
}

.form-logo {
  margin-bottom: 30px;
}

.form-logo img {
  width: auto;
  max-width: inherit;
  max-height: 37px;
}

.dark #hero-4-form h2 {
  color: var(--header-color);
}

.dark #hero-4-form p {
  color: var(--text-color);
}

#hero-4-form p {
  margin: 15px 0 24px;
}

#hero-4-form .btn {
  width: 100%;
  height: 56px; 
  font-size: 1.125rem; 
}

/*------------------------------------------*/
/*  HERO-5
/*------------------------------------------*/

.hero-5 {
  padding-top: 180px;
}

.hero-5-data {
  position: absolute; 
  top: 120px;
  right: -70px;
  text-align: center;
  border: 1px solid #f5f6f6;
  width: 280px;
}

.dark .hero-5-data.border-smoke {
  border-color: #444!important;
}

.hero-5-data li {
  padding: 25px 0;
}

.dark .hero-5-list li.border-smoke {
  border-color: #444!important;
}

.hero-5-data p {
  line-height: 1;
  margin-top: 8px;
  margin-bottom: 0;
}

.hero-5-data .btn span {
  display: inline-block;
  position: relative;
  transform: rotate(180deg)!important;
}

.hero-5-img img {
  padding-right: 60px;
}

/*------------------------------------------*/
/*  HERO-6
/*------------------------------------------*/

.hero-6 {
  padding-top: 170px;
}

.hero-6-txt p.fs-20px {
  margin: 20px 4% 30px 0;
}

.hero-6-img {
  margin-left: 20px;
}

/*------------------------------------------*/
/*  HERO-7
/*------------------------------------------*/

.hero-7 {
  background-image: url(../images/hero-7.jpg);
  padding-top: 170px;
  margin-bottom: 60px;
}

.hero-7-txt {
  margin-top: -40px;
  margin-right: 5%;
}

.hero-7-text {
  margin: 22px 0 30px;
}

.hero-7-img {
  position: relative;
  text-align: center;
  margin: 0 -90% -60px 0;
}

/*------------------------------------------*/
/*  HERO-8
/*------------------------------------------*/

.hero-8 {
  background-image: url(../images/hero-8.jpg);
  padding-top: 180px;
  margin-bottom: 15px;
}

.dark .hero-8 {
  background-image: url(../images/hero-8d.jpg);
}

.hero-8-txt {
  margin: -50px 0 0 50px;
}

.hero-8-txt p.fs-19px {
  margin: 20px 0 25px;
}

.hero-8.hero-section .quick-form.form-half {
  margin-right: 0;
}

.hero-8-img {
  position: relative;
  margin: 0 30px -15px 0;
  z-index: 99!important;
}

/*------------------------------------------*/
/*  HERO-9
/*------------------------------------------*/

.hero-9 {
  background-image: url(../images/hero-9.jpg);
  padding-top: 180px;
}

.dark .hero-9 {
  background-image: url(../images/hero-9d.jpg);
}

#hero-9-form {
  position: relative;
  z-index: 999!important;
  border: 1px solid var(--smoke);
  padding: 40px 32px 30px;
  margin: 0 25px 0 10px;
}

.dark #hero-9-form h1 {
  color: var(--header-color);
}

#hero-9-form p {
  margin: 15px 0 20px;
}

.dark #hero-9-form p {
  color: var(--text-color);
}

#hero-9-form .btn {
  width: 100%;
  height: 56px; 
  font-size: 1.125rem; 
}

/*------------------------------------------*/
/*  HERO-10
/*------------------------------------------*/

.hero-10 {
  background-image: url(../images/hero-10.jpg);
  padding-top: 200px;
  margin-bottom: 120px;
}

.dark .hero-10 {
  background-image: url(../images/hero-10d.jpg);
}

.hero-10-txt p.fs-21px {
  margin: 20px 6% 30px;
}

.hero-10-img {
  margin: 50px 0 -120px;
}

/*------------------------------------------*/
/*  HERO-11
/*------------------------------------------*/

.hero-11 {
  padding-top: 180px;
}

.hero-11-txt {
  margin: -20px 0 0 40px;
}

.hero-11-txt p.fs-19px {
  margin: 20px 0 25px;
}

.hero-11-img {
  margin-right: 20px;
}

/*------------------------------------------*/
/*  HERO-12
/*------------------------------------------*/

.hero-12 {
  padding-top: 200px;
}

.hero-12.shape--02:after {
  top: 70%;
}

.hero-12-txt {
  margin: 0 0 60px 10px;
}

.hero-12-txt p.fs-21px {
  margin: 20px 0 0;
}

/*------------------------------------------*/
/*  HERO-13
/*------------------------------------------*/

.hero-13 {
  background-image: url(../images/hero-13.jpg);
  padding-top: 200px;
  margin-bottom: 60px;
}

.dark .hero-13 {
  background-image: url(../images/hero-13d.jpg);
}

.hero-13 h1 {
  margin-bottom: 20px;
}

.hero-13-txt {
  margin-top: 70px;
}

.hero-13-text {
  margin-bottom: 30px;
}

.hero-13-img {
  text-align: center;
  margin-bottom: -60px;
  margin-right: -40px;
}

/*------------------------------------------*/
/*  HERO-14
/*------------------------------------------*/

.hero-14 {
  background-image: url(../images/hero-14.jpg);
  padding-top: 200px;
  padding-bottom: 125px;
}

.hero-14-txt {
  padding-left: 15px;
}

.hero-14-txt p.fs-20px {
  margin: 15px 0 25px;
}

/*------------------------------------------*/
/*  HERO-15
/*------------------------------------------*/

.hero-15 {
  overflow: hidden;
  background-image: url(../images/hero-15.jpg);
  padding-top: 200px;
}

.hero-15-txt .txt-widget a {
  background-color: rgba(255, 255, 255, .2);
}

.hero-15-txt p.fs-21px {
  margin: 22px 5% 30px;
}

.hero-15-img {
  margin: 50px 0 -120px;
}

/*------------------------------------------*/
/*  HERO-16
/*------------------------------------------*/

.hero-16 {
  padding-top: 180px;
}

.hero-16-txt {
  margin: -20px 0 0 30px;
}

.hero-16-txt p.fs-20px {
  margin: 20px 0 25px;
}

.hero-16-img {
  margin-right: 20px;
}

/*------------------------------------------*/
/*  HERO-17
/*------------------------------------------*/

.hero-17 {
  overflow: hidden;
  background-image: url(../images/hero-17.jpg);
  padding-top: 200px;
}

.hero-17-txt {
  margin-top: 50px;
}

.hero-17-text {
  margin-bottom: 30px;
}

.hero-17-img {
  position: relative;
  text-align: center;
  margin: 0 -70% -70px 0;
}

/*------------------------------------------*/
/*  HERO-18
/*------------------------------------------*/

.hero-18 {
  padding-top: 180px;
  padding-bottom: 30px;
}

.hero-18:after {
  position: absolute;
  content: '';
  width: 50%;
  height: 100%;
  background-image: linear-gradient(180deg, #dde6f1 0%, #fefefe 100%);
  top: 0;
  left: 50%;
  z-index: -1;
} 

.dark .hero-18:after {
   background-image: linear-gradient(180deg, rgba(28, 32, 45, .5) 50%, rgba(28, 32, 45, .05) 100%);
}

.hero-18-txt {
  padding-right: 50px;
  padding-left: 10px;
}

.hero-18-txt p.fs-20px {
  margin: 18px 0 25px;
}

.hero-18-txt .advantages {
  margin-top: 5px;
}

.hero-18-img {
  padding-left: 20px;
}

.dark .hero-18-txt .request-form .form-control {
  background-color: var(--nero);
  border-color: #262d39;
  color: var(--white);
}

.dark .hero-18-txt .request-form .form-control:focus {
  background-color: transparent;
}

.dark .hero-18-txt .request-form .form-control::-moz-placeholder { color: var(--silver); } 
.dark .hero-18-txt .request-form .form-control:-ms-input-placeholder { color: var(--silver); } 
.dark .hero-18-txt .request-form .form-control::-webkit-input-placeholder { color: var(--silver); } 

/*------------------------------------------*/
/*  HERO-19
/*------------------------------------------*/

.hero-19 {
  overflow: hidden;
  background-image: url(../images/hero-19.jpg);
  padding-top: 170px;
}

.hero-19-txt {
  margin-top: -30px;
}

.hero-19-text {
  margin: 22px 0 30px;
}

.hero-19-img {
  position: relative;
  text-align: center;
  margin: 0 -70% -70px 10px;
}

/*------------------------------------------*/
/*  HERO-20
/*------------------------------------------*/

.hero-20 {
  background-image: url(../images/hero-20.jpg);
  padding-top: 200px;
  padding-bottom: 125px;
}

.hero-20-txt {
  padding-left: 10px;
  padding-right: 2%;
}

.hero-20-txt .section_badge {
  border-left: 4px solid;
  border-color: var(--violet-red);
  padding-left: 10px;
  margin-bottom: 40px;
}

.hero-20-txt p.fs-19px {
  margin: 20px 0 25px;
}

/*------------------------------------------*/
/*  HERO-21
/*------------------------------------------*/

.hero-21 {
  background-image: url(../images/hero-21.jpg);
  padding-top: 200px;
  margin-bottom: 120px;
}

.dark .hero-21 {
  background-image: url(../images/hero-21d.jpg);
}

.hero-21-txt p.fs-21px {
  margin: 20px 3% 30px;
}

.hero-21-img {
  margin: 50px 0 -120px;
}

/*------------------------------------------*/
/*  HERO-22
/*------------------------------------------*/

.hero-22-wrapper {
  padding: 75px 70px 0 70px;
  margin-top: 125px;
  margin-bottom: 40px;
}

.hero-22-txt {
  margin-top: -60px;
}

.hero-22-txt p.fs-19px {
  margin: 14px 0 24px;
}

.hero-22-img {
  margin-bottom: -40px;
}

/*------------------------------------------*/
/*  HERO-23
/*------------------------------------------*/

.hero-23 {
  background-image: url(../images/hero-23.jpg);
  padding-top: 170px;
  padding-bottom: 120px;
}

.hero-23-txt {
  margin-top: 15px;
  padding-right: 2%;
}

.hero-23-txt p.fs-19px {
  margin: 20px 0 25px;
}

.hero-23-img {
  margin-left: 15px;
}

/*------------------------------------------*/
/*  HERO QUICK FORM
/*------------------------------------------*/

.hero-section .quick-form {
  background-color: var(--white);
  padding: 6px;
  border: 1.5px solid var(--silver);
}

.hero-section .quick-form.form-stroke {
  border-color: var(--silver);
}

.hero-section .quick-form.form--shadow {
  border-color: transparent;
  box-shadow: 0 5px 15px rgba(10, 10, 10, .12);
}

.dark .hero-section .quick-form {
  border-color: transparent;
}

.hero-section .text-center .quick-form {
  margin: 0 10%;
}

.hero-section .text-center .quick-form.mx-30 {
  margin: 0 16%;
}

.hero-section .quick-form.form-half {
  margin-right: 10%;
}

/*------------------------------------------*/
/*  Hero Quick Form Input
/*------------------------------------------*/

.hero-section .quick-form .form-control {
  height: 56px;
  background-color: rgba(244, 244, 249, .85);
  border: none;
  color: #666;
  font-size: 1.1875rem;
  font-weight: 400;
  padding: 0 18px;
  transition: all 450ms ease-in-out;  
}

.hero-section .quick-form.r-36 .form-control {
  border-radius: 36px; 
}

.hero-section .quick-form.bg--tra .form-control {
  background-color: transparent;
}

.hero-section .quick-form.form-half .form-control {
  height: 52px;
}

/*------------------------------------------*/
/*  Hero Quick Form Placeholder
/*------------------------------------------*/

.hero-section .quick-form .form-control::-moz-placeholder { color: var(--text-color); }
.hero-section .quick-form .form-control:-ms-input-placeholder { color: var(--text-color); }
.hero-section .quick-form .form-control::-webkit-input-placeholder { color: var(--text-color); }

.dark .hero-section .quick-form .form-control::-moz-placeholder { color: #777; }
.dark .hero-section .form-control:-ms-input-placeholder { color: #777; }
.dark .hero-section .form-control::-webkit-input-placeholder { color: #777; }

/*------------------------------------------*/
/*  Hero Quick Form Focus
/*------------------------------------------*/

.hero-section .quick-form .form-control:focus {
  background-color: var(--white);
  border-color: var(--purple);
  outline: 0;
  box-shadow: none;
}

.dark .hero-section .quick-form .form-control:focus {
  background-color: transparent;
  border-color: transparent;
}

/*------------------------------------------*/
/*  Hero Quick Form Button
/*------------------------------------------*/

.hero-section .quick-form .btn {
  height: 56px;
  font-size: 1.125rem;
  padding: 12px 70px;
  margin-left: 9px;
}

.hero-section .quick-form.mx-30 .btn {
 padding: 12px 60px;
}

.hero-section .quick-form.form-half .btn {
  height: 52px;
  padding: 13px 40px;
  margin-left: 9px;
}

.dark .hero-section .quick-form .hover--black:hover {
  background-color: #353f4f!important;
  color: #fff!important;
  border-color: #353f4f!important;
}

/*------------------------------------------*/
/*  Hero Quick Form Message
/*------------------------------------------*/

.hero-section .quick-form-msg {
  width: 100%!important;
  display: block;
  margin: 20px 0 15px 5px;
}

.hero-section .text-center .quick-form-msg {
  margin: 20px 0 -15px 0;
}

.hero-section .quick-form-msg .loading {
  color: #3eb1ff;
  font-size: 1.05rem;
  line-height: 1;
  font-weight: 500;
}

.hero-section .text-center .quick-form-msg .loading {
  font-size: 1.125rem;
}

/*------------------------------------------*/
/*  HERO REQUEST FORM
/*------------------------------------------*/

/*------------------------------------------*/
/*  Hero Request Form Input
/*------------------------------------------*/

.request-form .form-control {
  height: 60px;
  background-color: #f2f3f5;
  border: 1.5px solid transparent;
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 22px;
  transition: all 400ms ease-in-out;
}

/*------------------------------------------*/
/*  Hero Request Form Placeholder
/*------------------------------------------*/

.hero-form-wrapper .form-control::-moz-placeholder { color: var(--light-gray); } 
.hero-form-wrapper .form-control:-ms-input-placeholder { color: var(--light-gray); } 
.hero-form-wrapper .form-control::-webkit-input-placeholder { color: var(--light-gray); } 

.request-form .form-control:focus {
  background-color: var(--white);
  border-color: var(--blue);
  outline: 0;
  box-shadow: none;
}

.request-form.rf-blue .form-control:focus {
  border-color: var(--blue);
}

.request-form.rf-green .form-control:focus {
  border-color: var(--green);
}

.request-form.rf-purple .form-control:focus {
  border-color: var(--purple);
}

.request-form.rf-skyblue .form-control:focus {
  border-color: var(--skyblue);
}

.request-form.rf-violet-red .form-control:focus {
  border-color: var(--violet-red);
}

/*------------------------------------------*/
/*  Hero Request Form Message
/*------------------------------------------*/

.request-form-msg {
  width: 100%!important;
  display: block;
  text-align: center;
  margin-top: 15px;
}

.request-form-msg .loading {
  color: #00b2e4;
  font-size: 1.0625rem;
  line-height: 1;
  font-weight: 500;
}

.request-form .error {
  color: #e74c3c;
  font-size: 0.85rem;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 10px;
  padding-left: 10px;
}



/* ==========================================================================
  07. ABOUT
  ========================================================================== */

.about-1 {
  margin-bottom: 70px;
}

.about-1-txt h1 {
  margin-bottom: 16px;
}

.about-1-images img {
  text-align: center;
  margin-bottom: -70px;
}



/* ==========================================================================
  08. FEATURES
  ========================================================================== */

.rows-2 .fb-1, 
.rows-2 .fb-2 { 
  margin-bottom: 38px; 
}

.rows-3 .fb-1, 
.rows-3 .fb-2, 
.rows-3 .fb-3,
.rows-3 .fb-4 { 
  margin-bottom: 38px; 
}

/*------------------------------------------*/
/*  FBOX-2
/*------------------------------------------*/ 

.features-2 .col {
  border-left: 1px solid var(--silver);
}

.dark .features-2 .col {
  border-color: #353535;
}

.fbox-2 {
  padding-left: 10px;
}

/*------------------------------------------*/
/*  FBOX-3
/*------------------------------------------*/ 

.fbox-3 {
  display: flex;
  position: relative;
  flex-flow: row wrap;
  align-items: stretch!important;
  justify-content: flex-start;
}

.fbox-3 .fbox-ico-wrap {
  position: relative;
  margin-right: 30px;
}

.fbox-3 .fbox-txt {
  overflow: hidden;
  flex: 1;
  max-width: 100%;
}

/*------------------------------------------*/
/*  FBOX-4
/*------------------------------------------*/ 

.fbox-4 .fbox-img {
  padding-top: 42px;
  margin: 0 2% 50px;
  border-radius: 12px 12px 0 0;
} 

.fbox-4 .fbox-img img { 
  max-height: 195px;
  margin-bottom: -25px; 
} 

/*------------------------------------------*/
/*  FBOX-6
/*------------------------------------------*/ 

.fbox-6 {
  padding: 0 30px;
} 

.fbox-6.fb-2 {
  padding: 40px 30px;
} 

.ico-rounded {
  display: inline-block;
  text-align: center;
  width: 100px; 
  height: 100px;
  border-radius: 100%;
}

.ico-rounded [class*="flaticon-"]:before, 
.ico-rounded [class*="flaticon-"]:after { line-height: 100px!important; }

/*------------------------------------------*/
/*  FBOX-7
/*------------------------------------------*/ 

.fbox-7 {
  padding: 35px;
} 

.fbox-7.fb-2 {
  margin-bottom: 25px;
}

.txt-block-tra-link {
  margin-top: 14px;
}

.fbox-7 a.tra-link {
  font-size: 1.125rem;
  line-height: 1;
}

.fbox-7 a.tra-link:after {
  position: relative;
  font-family: Flaticon;
  font-weight: 300; 
  content: "\f165";
  font-size: 0.725rem;
  top: 0.5px;
  left: 5px;
}

/*------------------------------------------*/
/*  FBOX-8
/*------------------------------------------*/ 

.fbox-8 {
  display: flex;
  position: relative;
  flex-flow: row wrap;
  align-items: stretch!important;
  justify-content: flex-start;
  padding: 35px; 
  transition: all 400ms ease-in-out;
  border: 1.5px solid transparent;
}

.fbox-8.fb-1 {
  margin-right: 5px;
}

.fbox-8.fb-2 {
  margin-left: 5px;
}

.fbox-8 .fbox-ico-wrap {
  position: relative;
  margin-right: 25px;
}

.fbox-8 .fbox-txt {
  overflow: hidden;
  flex: 1;
  max-width: 100%;
}

/*------------------------------------------*/
/*  FBOX TYPOGRAPHY
/*------------------------------------------*/ 

.fbox-1 span.main-font,
.fbox-2 span.main-font {
  margin: 16px 0 12px;
}

.fbox-3 span.main-font,
.fbox-4 span.main-font,
.fbox-8 span.main-font {
  margin-bottom: 14px;
}

.fbox-5 span.main-font {
  margin: 20px 0 15px;
}

.fbox-6 span.main-font {
  line-height: 1;
  margin: 24px 0 12px;
}

.fbox-7 span.main-font {
  margin-top: 22px;
}

.fbox-7 p.fs-18px {
  margin-top: 12px;
}



/* ==========================================================================
  09. CONTENT
  ========================================================================== */

.ct-03-wrapper {
  overflow: hidden;
  padding: 80px 70px;
}

.ct-04 {
  margin-bottom: 100px;
}

.ct-01 .txt-block.left-column,
.ct-05 .txt-block.left-column {
  padding-right: 40px;
}

.ct-01 .txt-block.right-column {
  padding-left: 40px;
}

.ct-02 .txt-block.left-column {
  padding-right: 10px;
}

.ct-02 .txt-block.right-column {
  padding-left: 10px;
}

.ct-03-txt {
  padding-left: 15px;
}

/*------------------------------------------*/
/*  FEATURE BOX
/*------------------------------------------*/ 

.fea-box {
  width: 320px;
  display: inline-flex;
  align-items: center;
  padding: 16px 20px;
  margin-top: 25px;
}

.fea-box p {
  position: relative;
  top: -0.5px;
  line-height: 1;
  font-weight: 500;
  margin-left: 20px;
  margin-bottom: 0;
}

.fea-box p span {
  line-height: 1;
  font-weight: 400;
  display: block;
  margin-top: 10px;
}

/*------------------------------------------*/
/*  TEXT BLOCK TYPOGRAPHY
/*------------------------------------------*/ 

.txt-box { 
  margin-bottom: 25px;
}

.txt-box:last-child { 
  margin-bottom: 0; 
}

.txt-block h2 {
  margin-bottom: 18px;
}

.txt-block span.main-font {
  margin: 18px 0;
}

.txt-block .btn {
  margin-top: 15px;
}

/*------------------------------------------*/
/*  CBOX #1
/*------------------------------------------*/ 

.cbox-1-wrapper {
  position: relative;
  margin-left: 35px;
}

.cbox-1 {
  padding: 35px;
  margin: 0 5%;
  z-index: 1;
}

.cbox-1 hr {
  margin-top: 30px;
  margin-bottom: 25px;
}

/*------------------------------------------*/
/*  CBOX #1 TITLE
/*------------------------------------------*/ 

.cbox-1-title {
  position: relative;
}

.cbox-1-title span.main-font {
  line-height: 1;
  margin-bottom: 30px;
}

.cbox-1-menu {
  position: absolute;
  top: -10px;
  right: 0;
}

.cbox-1-menu span {
  opacity: .6;
}

.dark .cbox-1-menu span {
  opacity: 1;
}

.cbox-1-title .statistic-number {
  margin-bottom: 0;
}

.cbox-1 .statistic-number sup {
  font-size: 3.25rem;
  top: -2px;
  margin-right: 8px;
}

.cbox-1-title p.ico-10 {
  font-size: 1.125rem;
  margin-top: 20px;
  margin-bottom: 0;
}

.cbox-1-title p.ico-10 span.r-06 {
  font-weight: 500;
  padding: 6px 10px;
  margin-right: 4px;
}

.cbox-1-title p.ico-10 span[class*="flaticon-"]:before,
.cbox-1-title p.ico-10 span[class*="flaticon-"]:after {   
  font-size: 0.9rem;
  margin-right: 2px;
}

/*------------------------------------------*/
/*  CBOX #1 IMAGE
/*------------------------------------------*/ 

.cbox-1-img {
  margin-top: 25px;
}

/*------------------------------------------*/
/* ACCORDION
/*------------------------------------------*/

.txt-block .accordion {
  margin-top: 25px;
 }

.txt-block .accordion-item {
  background-color: transparent;
  padding: 9px 0;
  border: none;
  border-radius: 0 0;
}

.txt-block .accordion-thumb {
  position: relative;
  cursor: pointer;
  margin: 0;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--silver);
}

.dark .txt-block .accordion-thumb {
  border-color: #3f3f3f;
}

.txt-accordion .accordion-thumb:after,
.txt-accordion .is-active .accordion-thumb:after {
   text-align: center;
   font-family: Flaticon;
   width: 32px;
   height: 32px;
   background-color: var(--whitesmoke);
   color: var(--header);
   font-size: 0.85rem;
   line-height: 32px;
   border-radius: 100%;
   content: "\f15d";
   position: absolute;
   top: 0;
   right: 0;
   transition: all 200ms ease-in-out;
}

.dark .txt-accordion .accordion-thumb:after,
.dark .txt-accordion .is-active .accordion-thumb:after {
   background-color: var(--nero);
   color: var(--silver);
}

.txt-accordion .is-active .accordion-thumb:after {
   transform: rotate(45deg);
}

.txt-block .accordion-panel {
  color: var(--text-color);
  margin: 0;
  padding: 18px 0 10px 0;
  display: none;
}

.dark .txt-block .accordion-panel {
  color: var(--silver);
}

.txt-block .accordion-thumb span.main-font {
  color: var(--header-color);
  line-height: 1;
  padding-left: 3px;
  margin: 0;
}

.dark .txt-block .accordion-thumb span.main-font {
  color: var(--white);
}

/*------------------------------------------*/
/*  TABS
/*------------------------------------------*/

.tab-content {
   display: none;
}

.tab-content.current {
   display: inherit;
}

.tabs-1 li {
   cursor: pointer;
   border: 1px solid #eee;
   padding: 30px 32px;
   margin-bottom: 20px;
   transition: all 350ms ease-in-out;
}

.dark .tabs-1 li {
  background-color: #202431;
  border-color: #2d313d;
}

.tabs-1 li span.main-font {
   line-height: 1;
   margin: 0 0 12px;
}

.tabs-1 li:hover {
   background-color: var(--white);
   border-color: #ddd !important;
}

.dark .tabs-1 li:hover {
  background-color: #202431;
  border-color: #1f2334 !important;
}

.tabs-1 li.current,
.tabs-1 li.current:hover {
  background-color: var(--white);
  border-color: #ddd!important;
  box-shadow: 0px 15px 20px 0px rgba(5, 5, 5, .05);
}

.dark .tabs-1 li.current,
.dark .tabs-1 li.current:hover {
  background-color: #202431;
  border-color: #555!important;
  box-shadow: 0px 15px 20px 0px rgba(1, 1, 1, .1);
}

/*------------------------------------------*/
/*  TEXT BLOCK STATISTIC
/*------------------------------------------*/ 

.txt-block-stat {
  margin-top: 70px;
}

.txt-block-stat h2.statistic-number {
  line-height: 1;
  margin-bottom: 15px;
}

/*------------------------------------------*/
/*  IMG BLOCK IMAGE
/*------------------------------------------*/ 

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

.ct-02 .img-block.left-column {
  margin-right: 15px;
}

.ct-02 .img-block.right-column {
  margin-left: 15px;
}

.ct-03-img.right-column {
  margin-left: 10px;
}

.ct-03-img.left-column {
  margin-right: 10px;
}

.ct-04 .img-block {
  margin-bottom: -100px;
}

.ct-05 .img-block img {
  max-width: 210%;
  display: inline-block;
  margin-left: 15px;
}


/* ==========================================================================
  10. TEAM
  =========================================================================== */

.tm-1, .tm-2, 
.tm-3, .tm-4 {
  margin-bottom: 45px;
}

/*------------------------------------------*/
/*  TEAM MEMBER PHOTO
/*------------------------------------------*/

.team-member-photo {
  position: relative;
  overflow: hidden;
  text-align: center;
  margin-bottom: 30px;
}

.team-member .item-overlay {
  background: rgba(10, 10, 10, .18);
}

/*------------------------------------------*/
/*  PHOTO HOVER ZOOM
/*------------------------------------------*/ 

.team-member:hover img {
  transform: scale(1.05);
}

.team-member:hover .item-overlay {
  opacity: 1; 
}

/*------------------------------------------*/
/*  TEAM MEMBER TYPOGRAPHY
/*------------------------------------------*/

.team-member-data {
  padding: 0 10px;
}

.team-member-data p {
  line-height: 1;
  margin: 3px 0 0;
}



/* ==========================================================================
  11. PROJECTS
  =========================================================================== */

.project-preview {
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 30px;
}

/*------------------------------------------*/
/*  MASONRY IMAGES HOLDER
/*------------------------------------------*/ 

.projects-1 .masonry-item {
  position: relative; 
  width: 33.333%;
  padding: 0 15px;
  margin-bottom: 40px;
}

.projects-2 .masonry-item {
  position: relative; 
  width: 50%;
  padding: 0 15px;
  margin-bottom: 40px;
}

.projects-1 .project-txt {
  margin-top: 25px;
  padding: 0 15px;
}

.projects-2 .project-txt {
  padding: 15px 100px 0 30px;
}

.projects-1 .project-txt p {
  line-height: 1;
  margin: 15px 0 0;
}

.projects-2 .project-txt p {
  line-height: 1;
  margin-bottom: 20px;
}

.project-rating {
  margin-top: 20px;
}

.project-rating span {
  font-size: 1.125rem;
}

.project-rating small {
  position: relative;
  top: -1.5px;
  left: 5px;
  font-size: 1.125rem;
}

.masonry-item .item-overlay {
  background: rgba(10, 10, 10, .15);
}

/*------------------------------------------*/
/*  Image Hover Effect 
/*------------------------------------------*/ 

.masonry-item:hover img {
  transform: scale(1.1);
}

.masonry-item:hover .item-overlay {
  opacity: 1; 
}



/* ==========================================================================
  12. PROJECT DETAILS
  ========================================================================== */

.project-category {
  margin-bottom: 30px;
}

.project-title h1 {
  padding-right: 10%;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--silver);
}

.dark .project-title h1 {
  border-color: #353535;
}

/*------------------------------------------*/
/*  PROJECT DATA
/*------------------------------------------*/

.project-data {
  margin: 40px 0 50px;
}

.project-data p {
  margin-bottom: 4px;
}

.project-data p span {
  color: var(--header-color);
  font-weight: 500;
  margin-right: 5px;
}

.dark .project-data p span {
  color: var(--white);
}

.project-data p a {
  text-decoration: underline;
}

.dark .project-data p a.color--blue {
  color: var(--blue);
}

.dark .project-data p a.color--blue:hover {
  color: var(--white);
}

/*------------------------------------------*/
/*  PROJECT TYPOGRAPHY
/*------------------------------------------*/

.project-description span.main-font.fs-26px {
  margin: 20px 0;
}

/*------------------------------------------*/
/*  PROJECT IMAGE
/*------------------------------------------*/

.project-inner-img {
  text-align: center;
  margin: 45px 0;
}

.project-inner-img .item-overlay {
  background: rgba(10, 10, 10, .15);
}

.project-image:hover img {
  transform: scale(1.05);
}

.project-image:hover .item-overlay {
  opacity: 1; 
}

/*------------------------------------------*/
/*  PROJECT SHARE ICONS
/*-----------------------------------------*/

.project-share-icons {
  margin-top: 60px;
  padding-top: 50px;
}

.project-share-icons li {
  padding: 0;
}

.project-share-icons .share-social-icons a span {
  margin-right: 5px;
}

/*------------------------------------------*/
/*  MORE PROJECTS BUTTON
/*------------------------------------------*/

#project-details .more-projects {
  text-align: right;
}

#project-details .more-projects span.main-font {
  display: inline-block;
  text-decoration: underline;
  margin-bottom: 0;
}

#project-details .more-projects span.fs-22px {
  position: relative;
  top: 2px;
  left: 5px;
}



/* ==========================================================================
  13. INTEGRATIONS
  =========================================================================== */

.int_tool-1 {
  position: relative;
  padding: 30px 22px 22px;
  margin-bottom: 30px;
}

/*------------------------------------------*/
/*  INTEGRATION TOOL LOGO
/*------------------------------------------*/ 

.int_tool-1 img {
  width: auto;
  max-width: inherit;
  max-height: 60px;
}

/*------------------------------------------*/
/*  INTEGRATION TOOL TYPOGRAPHY
/*------------------------------------------*/ 

.int_tool-1 span.main-font {
  line-height: 1;
  margin: 25px 0 15px;
  padding-top: 25px;
  border-top: 1px solid var(--silver);
}

.dark .int_tool-1 span.main-font {
  border-color: #444;
}

/*------------------------------------------*/
/*  TOOL CATEGORY
/*------------------------------------------*/ 

.tool_category {
  position: absolute;
  top: 25px;
  right: 25px;
  padding: 2px 14px 4px;
}

.tool_category span {
  color: var(--text-color);
  font-size: 1.05rem;
  line-height: 1!important;
}

.dark .tool_category span {
  color: var(--silver);
}



/* ==========================================================================
  14. TESTIMONIALS
  =========================================================================== */

.reviews-wrapper {
  position: relative;
  padding-top: 70px;
  padding-bottom: 55px;
}

.reviews-wrapper:after {
  position: absolute;
  content: '';
  width: 86%;
  height: 100%;
  background-color: var(--whitesmoke);
  top: 0;
  left: 6%;
  z-index: -1;
  border-radius: 12px;
}

.reviews-wrapper.ghost-bg:after { background-color: var(--ghost); }
.reviews-wrapper.lightgray-bg:after { background-color: var(--light-gray); }
.reviews-wrapper.onyx-bg:after { background-color: var(--onyx); }

.review-1,
.review-2 { 
  position: relative;
  padding: 30px 27px 35px;
  border: 1px solid var(--silver);
  margin: 0 12px 30px;
}

.review-2 { 
  padding: 32px 27px 25px;                  
}

.review-1.block--shadow,
.review-2.block--shadow { 
  border-color: transparent;             
}

/*------------------------------------------*/
/*  QUOTE ICON
/*------------------------------------------*/ 

.review-1 .review-ico {   
  position: absolute;
  top: 0;
  right: 30px;
  opacity: .12;
}

.review-1 .review-ico span {
  font-size: 3.5rem;
}

.review-source {
  position: absolute;
  top: 24px;
  right: 26px;
}

.review-source img,
.owl-item .review-source img {
  width: auto;
  max-width: inherit;
  max-height: 30px;
}

/*------------------------------------------*/
/*  TESTIMONIAL TEXT
/*------------------------------------------*/ 

.review-1 .review-txt p,
.review-2 .review-txt p {
  font-size: 1.15rem;
  margin-bottom: 20px;
}

.review-2 .review-txt p {
  margin-bottom: 15px;
}

/*------------------------------------------*/
/*  TESTIMONIAL AVATAR
/*------------------------------------------*/ 

.review-avatar img,
.owl-item .review-avatar img {
  border-radius: 100%;
}

.review-1 .review-avatar img {
  width: 52px;
  height: 52px;
}

.review-2 .review-avatar img {
  width: 56px;
  height: 56px;
}

/*------------------------------------------*/
/*  TESTIMONIAL AUTHOR
/*------------------------------------------*/ 

.author-data {
  display: flex;
  align-items: center;
}

.review-2 .author-data {
  margin-bottom: 20px;
}

.review-author {
  margin-left: 18px;
}

.review-author p {
  font-family: var(--main-font);
  color: var(--header-color);
  font-size: 1.15rem;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 8px;
}

.dark .review-author p {
  color: var(--white);
}

.review-author span {
  display: block;
  font-size: 1.0625rem;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 0;
}

/*------------------------------------------*/
/*  TESTIMONIAL RATING
/*------------------------------------------*/ 

.review-1 .star-rating {
  margin-bottom: 10px;
}

.reviews-section .star-rating [class^="flaticon-"]:before,
.reviews-section .star-rating [class^="flaticon-"]:after {
  font-size: 1.125rem;
}



/* ==========================================================================
  15. BRANDS
  =========================================================================== */

.brands-2-wrapper {
  padding: 0 10%;
}

#brand-2-1, #brand-2-2, 
#brand-2-3, #brand-2-4, #brand-2-5 { 
  margin-bottom: 35px; 
}

/*------------------------------------------*/
/*  BRANDS LOGO IMAGE
/*------------------------------------------*/ 

.brands-1 .loop_carousel_left img {
  padding: 0 24px;
  height: 4rem;
  transition: all 400ms ease-in-out;
}

.brands-2-wrapper {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.brands-2-wrapper .brand-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20%;
  flex-grow: 0;
  padding: 0 18px;
}



/* ==========================================================================
  16. RATING
  =========================================================================== */

.rating-1-wrapper {
  padding: 0 8%;
}

/*------------------------------------------*/
/*  RATING BOX LOGO
/*------------------------------------------*/

.rbox-1-img {
  margin-bottom: 18px;
}

.rbox-1-img img {
  width: auto;
  max-width: inherit;
  max-height: 40px;
}

/*------------------------------------------*/
/*  RATING BOX TYPOGRAPHY
/*------------------------------------------*/

.rbox-1 .star-rating {
  display: inline-block;
  font-size: 1.0625rem; 
  line-height: 1; 
  vertical-align: inherit;
}

.rbox-1 .star-rating small {
  font-size: 1.05rem;
  font-weight: 400;
  position: relative;
  top: -1.25px;
  left: 3px;
}



/* ==========================================================================
  17. STATISTIC
  =========================================================================== */

.statistic-block-digit {   
  text-align: center;
  width: 36%;
  display: inline-block!important;  
  float: left;
}

.statistic-block-txt {
  width: 64%;
  display: inline-block!important;
  padding: 0 16px;
}

#stb-2-1 {
  padding-left: 14%;
}

/*------------------------------------------*/
/*  STATISTIC BLOCK NUMBER
/*------------------------------------------*/

h2.statistic-number {
  line-height: 1; 
  margin-bottom: 0;
}

.statistic-2-wrapper h2 {
  margin-bottom: 14px;
}



/* ==========================================================================
  18. PRICING
  =========================================================================== */

/*------------------------------------------*/
/*  Price Table
/*------------------------------------------*/

.pricing-1-table,
.pricing-2-table { 
  background-color: var(--white);
  padding: 35px 42px 40px; 
  border: 1.5px solid #d2d2d2;
}

.dark .pricing-1-table,
.dark .pricing-2-table { 
  background-color: var(--nero);
  border-color: #262d39;
}

.pricing-2-table { 
  padding: 30px 40px 25px; 
}

.pricing-1-table.bg--white,
.pricing-2-table.bg--white { 
  background-color: var(--white);
  border-color: var(--grey);
}

.pricing-1-table.block--shadow,
.pricing-2-table.block--shadow { 
  background-color: var(--white);
  border-color: transparent;
}

.dark .pricing-1-table.block--shadow,
.dark .pricing-2-table.block--shadow { 
  background-color: var(--nero);
  border-color: #262d39;
}

/*------------------------------------------*/
/*  PRICING TABLE DISCOUNT
/*------------------------------------------*/

.pricing-discount {
  position: absolute;
  top: -5px;
  right: -10px;
  padding: 7px 13px;
}

.pricing-discount span.main-font {
  color: var(--header-color)!important;
  font-size: 1.1rem;
  line-height: 1!important;
  letter-spacing: 0;
  margin-bottom: 0!important;
}

/*------------------------------------------*/
/*  TABLE HEADER 
/*------------------------------------------*/

.pricing-table-header {
  position: relative;
}

.pricing-table-header span.main-font {
  line-height: 1;
  margin-bottom: 25px;
}

/*------------------------------------------*/
/*  PRICE
/*------------------------------------------*/

.price span {
  font-family: var(--main-font);
  font-size: 3.875rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -1px;
} 

/*------------------------------------------*/
/*  DOLLAR SIGN
/*------------------------------------------*/

.price sup {
  font-family: var(--main-font);
  font-size: 2.875rem;
  font-weight: 400;
  top: -5px;
  right: 2px;
  letter-spacing: -1px;
}

/*------------------------------------------*/
/*  Validity
/*------------------------------------------*/

.price sup.validity {
  font-family: var(--main-font);
  font-size: 1.875rem;
  font-weight: 300;
  letter-spacing: 0;
  top: -3px;
  left: 0;
}

/*------------------------------------------*/
/*  Text
/*------------------------------------------*/

.price p {
  margin-top: 15px;
}

.pricing-plan p {
  margin: 12px 0 0;
}

/*------------------------------------------*/
/*  PRICING TABLE HORIZONTAL LINE
/*------------------------------------------*/

.pricing-1-table hr {
  margin-top: 22px;
  margin-bottom: 20px;
}

/*------------------------------------------*/
/*  PRICING FEATURES
/*------------------------------------------*/

.pricing-features li {
  padding: 10px 8px;
}

.pricing-features li p {
  font-size: 1.15rem;
  line-height: 1;
  margin-bottom: 0;
}

.pricing-features li p span {
  font-size: 0.9rem;
  position: relative;
  top: 0.5px;
  right: 10px;
}

.pricing-features.ico--blue span { color: var(--blue); }
.pricing-features.ico--green span { color: var(--green); }
.pricing-features.ico--purple span { color: var(--purple); }
.pricing-features.ico--skyblue span { color: var(--skyblue); }
.pricing-features.ico--violet-red span { color: var(--violet-red); }

.pricing-features li.disabled-option p,
.pricing-features li.disabled-option span {
  color: var(--dark-gray)!important;
}

/*------------------------------------------*/
/*  PRICING TABLE BUTTON
/*------------------------------------------*/

.pt-btn {
  display: block;
  width: 100%;
  margin-top: 20px;
}

.pricing-2-table .pt-btn {
  margin: 20px 0 25px;
}

/*------------------------------------------*/
/*  PRICING TOGGLE BUTTON
/*------------------------------------------*/

.ext-toggle-btn {
  text-align: center;
}

.toggle-btn.inn-toggle-btn {
  position: absolute;
}

.toggle-btn.mt-35 {
  margin-top: 35px;
}

/*------------------------------------------*/
/*  TOGGLE BUTTON TYPOGRAPHY
/*------------------------------------------*/

.toggler-txt {
  font-size: 1.1875rem;
  font-weight: 400;
  line-height: 36px;
}

.toggler-txt span {
  font-weight: 500;
  margin-left: 3px;
}

/*------------------------------------------*/
/*  TOGGLE BUTTON SWITCHER
/*------------------------------------------*/

.switch-wrap {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  min-width: 60px;
  height: 36px;
  margin: 0 8px;
}

.switcher {
  display: block;
  cursor: pointer;
  background-color: var(--blue);
  color: var(--white);
  font-size: 0.925rem;
  font-weight: 500;
  height: 36px;
  padding: 0 20px 0 40px;
  position: relative;
  border-radius: 36px;
  transition: all 450ms ease-in-out;
}

.theme--blue .switcher { background-color: var(--blue); }
.theme--green .switcher { background-color: var(--green); }
.theme--purple .switcher { background-color: var(--purple); }
.theme--skyblue .switcher { background-color: var(--skyblue); }
.theme--stateblue .switcher { background-color: var(--stateblue); }
.theme--violet-red .switcher { background-color: var(--violet-red); }

.switcher .show-annual, 
.switcher .show-monthly {
  line-height: 36px;
}

.switcher .show-monthly {
  display: block;
}

.switcher .show-annual {
  display: none;
}

.switcher:before {
  position: absolute;
  left: 5px;
  bottom: 4px;
  content: " ";
  background-color: var(--white);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  transition: all 450ms ease-in-out;
}

.switch-wrap input {
  display: none;
}

.switch-wrap input:checked + .switcher {
  padding: 0 40px 0 20px;
}

.switch-wrap input:checked + .switcher:before {
  left: auto;
  right: 4px;
  transition: all 350ms ease-in-out;
}

.switch-wrap input:checked + .switcher .show-annual {
  display: block;
}

.switch-wrap input:checked + .switcher .show-monthly {
  display: none;
}

/*------------------------------------------*/
/*  PRICING NOTICE TEXT
/*------------------------------------------*/

.pricing-notice {
  text-align: center;
  margin-top: 60px;
}

.pricing-notice p {
  padding: 0 10%;
  margin-bottom: 0;
}

/*------------------------------------------*/
/*  COMPARE PRICING TABLE
/*------------------------------------------*/

.table>:not(caption)>*>* {
  padding: 17px 0;
  border: none!important;
  background-color: transparent!important;
}

.comp-table .pricing-header {
  max-width: 700px;
}

.comp-table .table thead tr,
.comp-table .table tbody tr {
  border-bottom: 1px solid var(--silver)!important;
}

.dark .comp-table .table thead tr,
.dark .comp-table .table tbody tr {
  border-color: #353535!important;
}

.comp-table .table tbody tr.table-last-tr {
  border-bottom: none!important;
}

.comp-table .table-responsive thead th {
  font-size: 1.125rem;
  font-family: var(--main-font);
  font-weight: 500;
}

.comp-table .table-responsive tbody th {
  font-size: 1.125rem;
  font-family: var(--main-font);
  font-weight: 500;
}

.comp-table .table-responsive tbody td {
  position: relative;
  font-size: 1.125rem;
  line-height: inherit;
  top: 1px;
}

.comp-table .table-responsive tbody td span {
  position: relative;
  top: 1px;
}

.table>:not(caption)>*>* {
  color: var(--header-color);
}

.dark .table>:not(caption)>*>* {
  color: var(--white);
}

.table-responsive .ico-15 [class*="flaticon-"]:before, 
.table-responsive .ico-15 [class*="flaticon-"]:after { font-size: 0.9rem; }

.table-responsive .ico-20 [class*="flaticon-"]:before, 
.table-responsive .ico-20 [class*="flaticon-"]:after { font-size: 1rem; }

.comp-table .disabled-option, .dark .comp-table .disabled-option { color: var(--dark-gray); }
.comp-table .color--blue, .dark .comp-table .color--blue { color: var(--blue); }
.comp-table .color--green, .dark .comp-table .color--green { color: var(--green); }
.comp-table .color--purple, .dark .comp-table .color--purple { color: var(--purple); }
.comp-table .color--skyblue, .dark .comp-table .color--skyblue { color: var(--skyblue); }
.comp-table .color--violet-red, .dark .comp-table .color--violet-red { color: var(--violet-red); }

/*------------------------------------------*/
/*  PRICING COMPARE PAYMENT
/*------------------------------------------*/

.comp-table-payment span.main-font {
  margin-bottom: 10px;
}

/*------------------------------------------*/
/*  Payment Icons
/*------------------------------------------*/

.payment-icons li {
  display: inline-block!important;
  vertical-align: top;
  clear: none!important;
  margin: 0;
  padding-right: 5px;
}

.payment-icons li:last-child {
  padding-right: 0;
}

.payment-icons img {
  width: auto;
  max-width: inherit;
  max-height: 40px;
  display: inline-block;
}



/* ==========================================================================
  19.CHANGELOG
  =========================================================================== */

.version-release {
  margin-bottom: 80px;
}

.version-releas.last-item {
  margin-bottom: 0;
}

.release-data {
  padding-bottom: 30px;
  border-bottom: 1px dashed var(--silver);
  margin-bottom: 30px;
}

.dark .release-data {
  border-color: #333c49;
}

.release-data span.main-font {
  margin-bottom: 40px;
}

.release-data .btn span {
  display: inline-block;
  position: relative;
  transform: rotate(180deg);
  top: -0.5px;
  right: 2px;
}

span.version-data {
  line-height: 1;
  margin-right: 20px;
  margin-bottom: 0;
}

span.release-date {
  color: var(--lightgray);
  line-height: 1;
  margin-bottom: 0;
}

span.release-date span {
  color: var(--black);
  font-weight: 500;
  margin-left: 20px;
}

.dark span.release-date,
.dark span.release-date span {
  color: var(--silver);
}

.release-download {
  position: absolute;
  right: 5px;
  bottom: 0;
}

.release-highlights p {
  font-size: 1.125rem;
}

.release-highlights p b {
  color: var(--header-color);
  font-weight: 500;
}

.dark .release-highlights p b {
  color: var(--white);
}

.release-highlights .simple-list p {
  margin-bottom: 3px;
}



/* ==========================================================================
  20. FAQs
  =========================================================================== */

.faqs-2-wrapper .left_column {
  padding-right: 10px;
}

.faqs-2-wrapper .right_column {
  padding-left: 10px;
}

/*------------------------------------------*/
/*  FAQs TITLE
/*------------------------------------------*/

.faq-1-title {
  padding-right: 20%;
  margin-top: 10px;
}

.faq-1-title p {
  margin: 15px 0 24px;
}

/*------------------------------------------*/
/*  FAQs TYPOGRAPHY
/*------------------------------------------*/ 

.faqs-2-wrapper span.main-font {
  margin-bottom: 12px;
}

/*------------------------------------------*/
/*  FAQS ACCORDION  
/*------------------------------------------*/

.faqs-section .accordion-item {
  background-color: transparent!important;
  border: none;
  border-bottom: 1px solid var(--silver);
}

.dark .faqs-section .accordion-item {
  border-bottom: 1px solid #262d39;
}

/*------------------------------------------*/
/*  Question
/*------------------------------------------*/

.faqs-section .accordion-thumb {
  margin: 0;
  padding: 22px 0;
  cursor: pointer;
  position: relative;
}

.faqs-section .accordion-item .accordion-thumb:after,
.faqs-section .accordion-item.is-active .accordion-thumb:after {
  font-family: Flaticon;
  color: var(--header-color);
  font-weight: 300; 
  content: "\f15d";
  position: absolute;
  top: 18px;
  right: 0;
  text-align: center;
  background-color: var(--whitesmoke);
  width: 34px;
  height: 34px;
  color: var(--header-color);
  font-size: 0.9rem;
  line-height: 34px;
  border-radius: 100%;
  transition: all 200ms ease-in-out; 
}

.dark .faqs-section .accordion-item .accordion-thumb:after,
.dark .faqs-section .accordion-item.is-active .accordion-thumb:after {
   background-color: var(--nero);
   color: var(--silver);
}

.faqs-section .accordion-item.is-active .accordion-thumb:after {
  transform: rotate(45deg);
}

/*------------------------------------------*/
/*  Answer
/*------------------------------------------*/

.faqs-section .accordion-panel {
  margin: 0;
  padding: 0 0 10px 0;
  display: none;
}

.faqs-section .accordion-panel p {
  color: var(--text-color);
}

.dark .faqs-section .accordion-panel p {
  color: var(--silver);
}

.faqs-section .accordion-thumb span.main-font {
  line-height: 1;
  margin-bottom: 0;
}

.faqs-section .accordion-thumb p {
  color: var(--header-color);
  line-height: 1;
  font-weight: 600;
  margin-bottom: 0;
}

/*------------------------------------------*/
/*  MORE QUESTIONS LINK
/*------------------------------------------*/ 

.more-questions {
  margin-top: 50px;
}

.more-questions span {
  font-weight: 500;
}

.more-questions a {
  font-weight: 400;
  text-decoration: underline;
  transition: all 400ms ease-in-out; 
}

.more-questions a:hover {
  text-decoration: none;
}



/* ==========================================================================
  21. BLOG
  =========================================================================== */

.blog-1 .blog-post {
  padding: 0 5px;
}

#blog-page .masonry-item {
  position: relative; 
  width: 33.333%;
  padding: 0 15px;
  margin-bottom: 50px;
}

/*------------------------------------------*/
/*  BLOG POST TEXT
/*------------------------------------------*/

.blog-post-txt {
  position: relative;
  margin-top: 30px;
}

#blog-page .blog-post-txt {
  padding: 0 10px;
}

/*------------------------------------------*/
/*  BLOG POST META
/*------------------------------------------*/

.post-meta {
  margin-bottom: 10px;
}

.post-meta li {
  width: auto!important;
  display: inline-block!important;
  vertical-align: top;
  clear: none !important;
  margin-left: -2px;
}

.post-meta li:first-child {
  margin-left: 0;
}

.post-meta li p {
  margin: 0!important;
}

.post-meta li span {
  font-size: 20px;
  position: relative;
  top: 2.5px;
}

/*------------------------------------------*/
/*  BLOG POST TYPOGRAPHY
/*------------------------------------------*/

.blog-1 .post-link {
  line-height: 1.4;
  margin-bottom: 14px;
}

#blog-page .post-link {
  line-height: 1.4;
}

.blog-1 p.post-comments,
#blog-page p.post-comments {
  line-height: 1;
  margin-top: 20px;
  margin-bottom: 0;
}

/*------------------------------------------*/
/*  BLOG POST IMAGE
/*------------------------------------------*/

.blog-post-img {
  overflow: hidden;
}

.blog-post .item-overlay {
  background: rgba(10, 10, 10, .15);
}

.blog-post:hover img {
  transform: scale(1.05);
}

.blog-post:hover .item-overlay {
  opacity: 1; 
}

/*------------------------------------------*/
/*  BLOG POSTS CATEGORY
/*------------------------------------------*/

.posts-category {
  padding-bottom: 40px;
  margin-bottom: 60px;
}

/*------------------------------------------*/
/*  WIDE POST
/*------------------------------------------*/

.wide-post {
  position: relative;
  padding: 20px;
  margin-bottom: 80px;
}

/*------------------------------------------*/
/*  Featured Post Badge
/*------------------------------------------*/ 

.featured-badge {
  text-align: center;
  z-index: 70;
  position: absolute;
  padding: 0;
  top: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  line-height: 50px!important;
  border-radius: 100%;
}

.featured-badge span {
  line-height: 54px!important;
}

/*------------------------------------------*/
/*  WIDE POST TEXT
/*------------------------------------------*/ 

#blog-page .wide-post .blog-post-txt {
  margin: 0 0 0 -15px;
  padding-right: 25px;
}

.wide-post .post-meta {
  margin-bottom: 20px;
}

.wide-post .blog-post-txt h2 {
  margin-bottom: 14px;
}

#blog-page .wide-post p.post-comments {
  margin-top: 25px;
}

.wide-post .blog-post-img {
  padding-right: 30px;
}



/* ==========================================================================
  22. SINGLE BLOG POST
  =========================================================================== */

/*------------------------------------------*/
/*  POST TITLE
/*------------------------------------------*/

.single-post-title {
  padding-bottom: 50px;
  margin-bottom: 50px;
}

.single-post-title h1 {
  margin-bottom: 40px;
}

/*------------------------------------------*/
/*  BLOG POST DATA
/*------------------------------------------*/ 

.blog-post-data {
  display: flex;
  position: relative;
  flex-flow: row wrap;
  align-items: stretch!important;
  justify-content: flex-start;
}

.author-avatar {
  margin-right: 20px;
}

.author-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 100%;
}

.post-title-meta {
  position: relative;
  overflow: hidden;
  flex: 1;
  max-width: 100%;
  margin-top: 6px;
}

.post-title-meta span.main-font {
  font-weight: 500;
  line-height: 1;
  margin-bottom: 11px;
}

.post-title-meta span.main-font span {
  margin-left: 8px;
}

.post-title-meta p {
  line-height: 1;
  margin-bottom: 0;
}

.post-title-meta p span {
  font-weight: 500;
}

/*------------------------------------------*/
/*  BLOG POST SHARE ICONS
/*-----------------------------------------*/

.post-title-icons {
 position: absolute;
 bottom: 55px;
 right: 5px;
}

.share-social-icons {
  display: inline-block; 
  padding-left: 0;
  margin-top: 5px;
}

.share-social-icons li {
  width: auto !important;
  display: inline-block!important;
  vertical-align: top;
  clear: none !important;
  padding: 0;
}

.share-social-icons a {
  margin-left: 15px;
  transition: all 450ms ease-in-out;
}

/*------------------------------------------*/
/*  BLOG POST TYPOGRAPHY
/*------------------------------------------*/

.single-post-txt span.main-font.fs-20px {
  margin-bottom: 18px;
}

.single-post-txt span.main-font.fs-28px {
  margin: 20px 0;
}

.single-post-txt span.main-font.fs-28 span {
  display: block;
}

.simple-list p span {
  color: var(--header-color);
  font-weight: 500;
}

.dark .simple-list p span {
  color: var(--white);
}

/*------------------------------------------*/
/*  BLOG POST IMAGE
/*------------------------------------------*/

.post-inner-img {
  text-align: center;
  margin: 45px 0;
}

.post-inner-img .item-overlay {
  background: rgba(10, 10, 10, .15);
}

.blog-post-img:hover img {
  transform: scale(1.05);
}

.blog-post-img:hover .item-overlay {
  opacity: 1; 
}

/*------------------------------------------*/
/*  SINGLE POST SHARE LINKS
/*------------------------------------------*/

.post-share-links {
  padding: 60px 0;
}

.post-share-links .col-md-8,
.post-share-links .col-md-4 {
  padding: 0;
}

/*------------------------------------------*/
/*  BLOG POST TAGS 
/*------------------------------------------*/ 

.post-tags-list span a {
  color: var(--text-color);
  font-size: 1.0625rem;
  font-weight: 400;
  background-color: var(--whitesmoke);
  border: 1.5px solid transparent;
  padding: 9px 18px;
  margin-right: 6px;
  border-radius: 6px;
  transition: all 450ms ease-in-out;
}

.dark .post-tags-list span a {
  color: var(--white);
  background-color: var(--nero);
}

.post-tags-list span a:hover {
  background-color: transparent;
  border-color: var(--text-color);
}

.dark .post-tags-list span a:hover {
  background-color: transparent;
  border-color: var(--white);
}

/*------------------------------------------*/
/*  BLOG POST SHARE ICONS
/*-----------------------------------------*/

.post-share-list .share-social-icons a.share-ico span {
  margin-left: 0;
  margin-right: 22px;
}

/*------------------------------------------*/
/*  BLOG POST AUTHOR INFO
/*------------------------------------------*/ 

.author-info {
  display: flex;
  position: relative;
  flex-flow: row wrap;
  align-items: stretch!important;
  justify-content: flex-start;
  margin-top: 80px;
  padding: 40px;
}

.author-info-avatar {
  position: relative;
  margin-right: 30px;
}

.author-info-avatar img {
  width: 85px;
  height: 85px;
  border-radius: 100%;
}

.author-info-txt {
  overflow: hidden;
  flex: 1;
  max-width: 100%;
}

.author-info-txt span.fs-22px {
  margin-bottom: 10px;
}

.author-info-txt span.fs-22px span {
  display: inline-block;
  font-weight: 500;
}

.author-info-txt p a {
  text-decoration: underline;
}

.author-follow-btn {
  position: absolute;
  top: 40px;
  right: 50px;
}

.author-follow-btn .btn {
  font-size: 1.05rem;
  padding: 0.7rem 1.25rem;
}

/*------------------------------------------*/
/*  POST COMMENTS
/*------------------------------------------*/

#post-comments {
  padding-top: 80px;
  padding-bottom: 70px;
}

#post-comments span.fs-28px {
  margin-bottom: 60px;
}

#post-comments hr {
  margin-top: 24px; 
  margin-bottom: 40px; 
}

.dark #post-comments hr {
  opacity: 1;
  border-color: #262d39;
}

#post-comments img {
  width: 60px;
  height: 60px;
  border-radius: 100%;
}

.comment-body {
  margin-left: 25px;
}

.comment-meta {
  margin-bottom: 10px;
}

.comment-meta span.main-font {
  line-height: 1;
  margin-bottom: 4px;
}

.comment-date {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 5px;
}

/*------------------------------------------*/
/*  Comment Reply 
/*------------------------------------------*/

.btn-reply {
  margin-left: 3px;
}

.btn-reply a {
  font-size: 1.125rem;
  font-weight: 400; 
}

.btn-reply span {
  position: relative;
  top: 3px;
  margin-right: 4px;
  left: 3px;
}

.btn-reply.ico-20 [class*="flaticon-"]:before, 
.btn-reply.ico-20 [class*="flaticon-"]:after { font-size: 0.925rem; }

/*------------------------------------------*/
/*  SINGLE POST COMMENT FORM
/*------------------------------------------*/

#leave-comment {
  margin-top: 80px;
}

#leave-comment span.fs-28px {
  margin-bottom: 10px;
}

#leave-comment p span {
  color: #ff3366;
}

.comment-form {
  position: relative;
  margin-top: 50px;
}

.comment-form p {
  position: relative;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 15px;
  padding-left: 8px;
}

.comment-form p span {
  position: relative;
  color: #ff3366;
  top: -3px;
}

.comment-form .form-control {
  height: 62px;
  background-color: var(--white);
  border: 1.5px solid var(--silver);
  box-shadow: 0 0 0 0;
  color: var(--text-color);
  font-size: 1.15rem;
  line-height: 1;
  font-weight: 400;
  padding: 0 15px;
  margin-bottom: 30px;
  border-radius: 6px;
  transition: all 300ms ease-in-out;
}

.dark .comment-form .form-control {
  background-color: var(--nero);
  border-color: #262d39;
  color: var(--white);
}

.comment-form textarea { min-height: 200px; }
.comment-form textarea.form-control { 
  padding: 25px 15px;
}

/*------------------------------------------*/
/*  Form Input Placeholder
/*------------------------------------------*/

.comment-form .form-control::-moz-placeholder { color: var(--text-color); } 
.comment-form .form-control:-ms-input-placeholder { color: var(--text-color); } 
.comment-form .form-control::-webkit-input-placeholder { color: var(--text-color); } 

.dark .comment-form .form-control::-moz-placeholder { color: var(--silver); } 
.dark .comment-form .form-control:-ms-input-placeholder { color: var(--silver); } 
.dark .comment-form .form-control::-webkit-input-placeholder { color: var(--silver); } 

/*------------------------------------------*/
/*  Comment Form Input Focus
/*------------------------------------------*/

.comment-form .form-control:focus {
  outline: 0px none;
  box-shadow: none;
  background-color: var(--white);
  border-color: var(--blue);
}

.dark .comment-form .form-control:focus {
  background-color: transparent;
}

/*------------------------------------------*/
/*  Comment Form Button
/*------------------------------------------*/

.comment-form .btn {
  margin-top: 5px;
}

.comment-form .btn:focus {
  outline: 0px none;
  box-shadow: none;
}

/*------------------------------------------*/
/*  Comment Form Message
/*------------------------------------------*/

.comment-form-msg {
  width: 100%!important;
  display: block;
  margin-top: 15px;
  padding-left: 0;
}

.comment-form .loading {
  color: #00b2e4;
  font-size: 1.0625rem;
  line-height: 1;
  font-weight: 500;
}

.comment-form .error {
  color: #e74c3c;
  font-size: 0.85rem;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 10px;
  padding-left: 10px;
}



/* ==========================================================================
  23. BANNER
  =========================================================================== */

.banner-1-full {
  text-align: center;
  padding-top: 90px;
  padding-bottom: 100px;
}

.banner-1-wrapper {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 80px 0 90px;
} 

.banner-2-wrapper {
  overflow: hidden;
  padding: 55px;
}

.banner-3 {
  overflow: hidden;
}

.banner-3-wrapper {
  margin-top: 80px;
}

.banner-4-wrapper {
  padding: 80px 70px;
}

.banner-5-wrapper {
  overflow: hidden;
  padding: 45px 40px;
  margin: 0 14%;
}

.banner-3-full .banner-3-txt {
  padding-left: 30px;
}

.banner-5-wrapper p {
  padding-right: 5%;
}

/*------------------------------------------*/
/*  BANNER TYPOGRAPHY
/*------------------------------------------*/

.banner-1-txt p.fs-20px {
  margin: 18px 8% 24px;
}

.banner-2-btn {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  top: 10px;
}

.banner-2-btn p {
  margin: 12px 0 0;
}

.banner-2-btn p a {
  text-decoration: underline;
}

.banner-2-btn p a:hover {
  text-decoration: none;
}

.banner-3-txt p.fs-20px {
  margin: 20px 0 25px;
}

.banner-4-txt h2 {
  margin-bottom: 20px;
}

.banner-4-txt .stores-badge {
  margin-top: 25px;
}

/*------------------------------------------*/
/*  BANNER IMAGE
/*------------------------------------------*/

.banner-3-img {
  margin-top: -80px;
  margin-bottom: -90px;
}

.banner-3-full .banner-3-img {
  margin-bottom: 0;
}

.banner-3-img.right-column {
  padding-left: 20px;
}

.banner-4-img {
  margin-left: 20px;
}



/* ==========================================================================
  24. NEWSLETTER
  =========================================================================== */

.newsletter-1 .newsletter-txt {
  padding-right: 5%;
}

.newsletter-1 .newsletter-form {
  margin-top: 15px;
  padding-left: 6%;
}

/*------------------------------------------*/
/*  Newsletter Form Input
/*------------------------------------------*/

.newsletter-section .form-control {
  height: 62px;
  background-color: var(--white);
  border: 2px solid var(--silver);
  font-size: 1.1975rem;
  color: #353f4f;
  font-weight: 400;
  padding: 0 15px;  
  margin-right: 12px;
  box-shadow: none;
  border-radius: 6px;
  transition: all 400ms ease-in-out; 
}

.dark .newsletter-section .form-control {
  background-color: var(--nero);
  border-color: #262d39;
  color: var(--white);
}

.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

/*------------------------------------------*/
/*  Newsletter Form Input Focus
/*------------------------------------------*/

.newsletter-section .form-control:focus {
  background-color: var(--white);
  border-color: var(--blue);
  outline: 0;
  box-shadow: none;
}

.dark .newsletter-section .form-control:focus {
  background-color: transparent;
}

.newsletter-section .form-blue-focus .form-control:focus {
  border-color: var(--blue);
}

.newsletter-section .form-green-focus .form-control:focus {
  border-color: var(--green);
}

.newsletter-section .form-orange-red-focus .form-control:focus {
  border-color: var(--orange-red);
}

.newsletter-section .form-purple-focus .form-control:focus {
  border-color: var(--purple);
}

.newsletter-section .form-skyblue-focus .form-control:focus {
  border-color: var(--skyblue);
}

.newsletter-section .form-stateblue-focus .form-control:focus {
  border-color: var(--stateblue);
}

.newsletter-section .form-violet-red-focus .form-control:focus {
  border-color: var(--violet-red);
}

/*------------------------------------------*/
/*  Newsletter Form Input Placeholder
/*------------------------------------------*/

.newsletter-section .form-control::-moz-placeholder { color: var(--text-color); } 
.newsletter-section .form-control:-ms-input-placeholder { color: var(--text-color); } 
.newsletter-section .form-control::-webkit-input-placeholder { color: var(--text-color); } 

.dark .newsletter-section .form-control::-moz-placeholder { color: var(--silver); } 
.dark .newsletter-section .form-control:-ms-input-placeholder { color: var(--silver); } 
.dark .newsletter-section .form-control::-webkit-input-placeholder { color: var(--silver); } 

/*------------------------------------------*/
/*  Newsletter Form Button
/*------------------------------------------*/

.newsletter-section .btn {
  display: block; 
  width: 100%!important;
  height: 62px;
  font-size: 1.125rem;
  padding: 0.7rem 1.5rem;
}

/*------------------------------------------*/
/*  Newsletter Form Notification
/*------------------------------------------*/

.newsletter-section .form-notification {
  color: #3eb1ff;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1;
  margin-top: 15px;
  margin-left: 5px;
}

.newsletter-section .text-center .form-notification {
  margin-left: 0;
}

.newsletter-section .form-notification.valid,
.newsletter-section .form-notification.error {
  color: #fc2f4b;
}

.newsletter-section .newsletter-form.valid {
  color: #0fbc49;
}



/* ==========================================================================
  25. CONTACTS
  =========================================================================== */

.contact-form p.fs-19px {
  color: var(--header-color);
  line-height: 1;
  font-weight: 500;
  margin-bottom: 12px;
}

.dark .contact-form p.fs-19px {
  color: var(--white);
}

.contact-form span.fs-17px {
  display: block;
  line-height: 1;
  margin-bottom: 25px;
}

/*------------------------------------------*/
/*  CONTACT FORM INPUT
/*------------------------------------------*/

.contact-form .form-control,
.contact-form .form-select {
  height: 62px;
  background-color: var(--white);
  border: 1.5px solid var(--silver);
  box-shadow: 0 0 0 0;
  color: var(--text-color);
  font-size: 1.15rem;
  line-height: 1;
  font-weight: 400;
  padding: 0 20px;
  margin-bottom: 35px;
  border-radius: 6px;
  transition: all 300ms ease-in-out;
}

.contact-form .form-select {
  display: inline-block;
  width: 100%;
  color: var(--text-color);
  box-shadow: none;
  border-radius: 6px;
}

.dark .contact-form .form-control,
.dark .contact-form .form-select {
  background-color: var(--nero);
  border-color: #262d39;
  color: var(--white);
}

/*------------------------------------------*/
/*  Contact Form Textarea
/*------------------------------------------*/

.contact-form textarea { min-height: 220px; }
.contact-form textarea.form-control { 
  padding: 20px 15px;
}

/*------------------------------------------*/
/*  Contact Form Button
/*------------------------------------------*/

.contact-form .form-btn { 
  margin-top: 10px;
}

/*------------------------------------------*/
/*  Contact Form Placeholder
/*------------------------------------------*/

.contact-form .form-control::-moz-placeholder { color: var(--text-color); } 
.contact-form .form-control:-ms-input-placeholder { color: var(--text-color); } 
.contact-form .form-control::-webkit-input-placeholder { color: var(--text-color); } 

.dark .contact-form .form-control::-moz-placeholder { color: var(--silver); } 
.dark .contact-form .form-control:-ms-input-placeholder { color: var(--silver); } 
.dark .contact-form .form-control::-webkit-input-placeholder { color: var(--silver); } 

/*------------------------------------------*/
/*  Contact Form Input Focus
/*------------------------------------------*/

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  outline: 0px none;
  box-shadow: none;
  background-color: var(--white);
  border-color: var(--blue);
}

.dark .contact-form .form-control:focus,
.dark .contact-form .form-select:focus {
  background-color: transparent;
}

/*------------------------------------------*/
/*  Contact Form Message
/*------------------------------------------*/

.contact-form-msg {
  width: 100%!important;
  display: block;
  margin-top: 15px;
  padding-left: 0;
}

.contact-form .loading {
  color: #00b2e4;
  font-size: 1.0625rem;
  line-height: 1;
  font-weight: 500;
  padding-left: 15px;
}

.contact-form  .error {
  color: #e74c3c;
  font-size: 0.85rem;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 10px;
  padding-left: 10px;
}



/* ==========================================================================
  26. FOOTER
  =========================================================================== */

.footer {
  padding-bottom: 50px;
}

.footer-info,
.footer-links {
  margin-bottom: 40px;
}

.footer-1 .footer-links {
  padding-left: 5%;
}

.footer-1 .fl-1,
.footer-1 .fl-3,
.footer-1 .fl-4 {
  padding-left: 8%;
}

.footer-2 .fl-1 {
  padding-left: 6%;
}

/*------------------------------------------*/
/*  FOOTER LOGO
/*------------------------------------------*/

img.footer-logo {
  width: auto;
  max-width: inherit;
  max-height: 38px;
  margin-bottom: 22px;
}

.footer-copyright-logo {
  position: relative;
  display: inline-block;
  float: left;
  top: -4px;
}

.footer-copyright-logo img.footer-logo {
  position: relative;
  top: 1.5px;
  max-height: 28px;
  margin-bottom: 0;
}

/*------------------------------------------*/
/*  FOOTER QR CODE
/*------------------------------------------*/

.footer-qr-code {
  max-width: 105px;
  text-align: center;
  padding: 9px;
  margin-top: 5px;
}

/*------------------------------------------*/
/*  FOOTER TYPOGRAPHY
/*------------------------------------------*/

.footer span.main-font {
  line-height: 1;
  margin-bottom: 20px;
}

.footer a {
  color: var(--text-color);
}

.dark .footer a,
.bg--grape.footer a {
  color: var(--silver);
}

/*------------------------------------------*/
/*  FOOTER LINKS
/*------------------------------------------*/

.foo-links li {
  width: auto!important;
  display: block!important;
  vertical-align: top;
  clear: none !important;
  margin: 0;
  padding: 0;
}

.footer-4 .foo-links li {
  display: inline-block!important;
  padding: 0 15px;
}

.foo-links li p {
  font-weight: 400;
  margin-bottom: 7px;
}

.foo-links li:last-child p {
  margin-bottom: 0;
}

/*------------------------------------------*/
/*  FOOTER SOCIAL
/*------------------------------------------*/

.footer-socials {
  margin: 0;
  display: inline-block; 
}

.footer-socials li {
  float: left;
  width: auto!important;
  display: inline-block!important;
  vertical-align: top;
  clear: none!important;
  margin: 0;
}

.footer-socials a {
  display: block;
  margin-right: 13px;
}

.footer-4 .footer-socials a {
  margin: 0 11px;
}

.footer-socials li span { 
  opacity: .7;
  transition: all 400ms ease-in-out;
}

.footer-socials li span:hover { 
  opacity: 1;
} 

/*------------------------------------------*/
/*  FOOTER NEWSLETTER FORM
/*------------------------------------------*/

.footer-form {
  margin-bottom: 20px;
}

.footer .newsletter-form {
  margin-top: 25px;
}

.footer-form .newsletter-form .input-group {
  background-color: var(--form-control);
  border: 1.5px solid var(--silver);
  padding: 9px 2px;
  transition: all 400ms ease-in-out;
}

.dark .footer-form .newsletter-form .input-group {
  background-color: var(--onyx);
  border-color: #353535;
}

.footer-form .form-control {
  height: 32px;
  background-color: transparent;
  border: none;
  color: var(--black);
  font-size: 1.125rem;
  font-weight: 400;
  padding: 0 10px;
  box-shadow: none;
}

.dark .footer-form .form-control {
  color: var(--white);
}

.bg--coal .newsletter-form .input-group,
.bg--grape .newsletter-form .input-group {
  background-color: var(--white);
}

/*------------------------------------------*/
/*  Newsletter Form Input Focus
/*------------------------------------------*/

.footer-form .newsletter-form .input-group:focus-within {
  background-color: var(--white)!important;
  border-color: var(--blue)!important;
}

.dark .footer-form .newsletter-form .input-group:focus-within {
  background-color: transparent!important;
}

.footer-form .newsletter-form .input-group.input-group-blue:focus-within {
  border-color: var(--blue)!important;
}

.footer-form .newsletter-form .input-group.input-group-green:focus-within {
  border-color: var(--green)!important;
}

.footer-form .newsletter-form .input-group.input-group-orange-red:focus-within {
  border-color: var(--orange-red)!important;
}

.footer-form .newsletter-form .input-group.input-group-pink:focus-within {
  border-color: var(--pink)!important;
}

.footer-form .newsletter-form .input-group.input-group-plum:focus-within {
  border-color: var(--plum)!important;
}

.footer-form .newsletter-form .input-group.input-group-purple:focus-within {
  border-color: var(--purple)!important;
}

.footer-form .newsletter-form .input-group.input-group-skyblue:focus-within {
  border-color: var(--skyblue)!important;
}

.footer-form .newsletter-form .input-group.input-group-violet-red:focus-within {
  border-color: var(--violet-red)!important;
}

.footer-form .form-control:focus {
  border: none;
  border-right: none;
  outline: 0;
  box-shadow: none;
}

/*------------------------------------------*/
/*  Footer Form Placeholder
/*------------------------------------------*/

.footer-form .form-control::-moz-placeholder { color: var(--text-color); } 
.footer-form .form-control:-ms-input-placeholder { color: var(--text-color); } 
.footer-form .form-control::-webkit-input-placeholder { color: var(--text-color); } 

.dark .footer-form .form-control::-moz-placeholder { color: var(--silver); } 
.dark .footer-form .form-control:-ms-input-placeholder { color: var(--silver); } 
.dark .footer-form .form-control::-webkit-input-placeholder { color: var(--silver); } 

/*------------------------------------------*/
/*  Newsletter Form Button
/*------------------------------------------*/

.footer-form .btn {
  color: var(--blue);
  height: 32px;
  padding: 0 10px;
}

.footer-form .input-group-blue .btn {
  color: var(--blue);
}

.footer-form .input-group-green .btn {
  color: var(--green);
}

.footer-form .input-group-orange-red .btn {
  color: var(--orange-red);
}

.footer-form .input-group-pink .btn {
  color: var(--pink);
}

.footer-form .input-group-plum .btn {
  color: var(--plum);
}

.footer-form .input-group-purple .btn {
  color: var(--purple);
}

.footer-form .input-group-skyblue .btn {
  color: var(--skyblue);
}

.footer-form .input-group-violet-red .btn {
  color: var(--violet-red);
}

.footer-form .ico-15 [class*="flaticon-"]:before, 
.footer-form .ico-15 [class*="flaticon-"]:after { line-height: 28px!important; }

/*------------------------------------------*/
/*  Footer Form Notification
/*------------------------------------------*/

.footer-form .form-notification {
  color: #1680fb;
  font-size: 0.85rem;
  line-height: 1.25;
  font-weight: 400;
  margin-top: 12px;
  margin-left: 5px;
}

.footer-form .form-notification.error {
  color: #fc2f4b;
}

.footer-form .form-notification.valid {
  color: #48af4b;
}

/*------------------------------------------*/
/*  BOTTOM FOOTER
/*------------------------------------------*/

.footer hr {
  margin-top: 30px;
  margin-bottom: 50px;
}

.dark .footer hr {
  opacity: 1;
  border-color: #262d39;
}

/*------------------------------------------*/
/*  BOTTOM FOOTER COPYRIGHT
/*------------------------------------------*/

.footer-copyright p {
  margin-bottom: 0;
}

.footer-copyright.copyright-logo p {
  display: inline-block;
  line-height: 28px;
  margin-left: 15px;
}

/*------------------------------------------*/
/*  BOTTOM FOOTER SECONDARY LINK
/*------------------------------------------*/

.bottom-secondary-link p {
  margin-bottom: 0;
}

.bottom-secondary-link p span {
  position: relative;
  top: 1.5px;
  padding: 0 2px;
}

.bottom-secondary-link.ico-15 [class*="flaticon-"]:before, 
.bottom-secondary-link.ico-15 [class*="flaticon-"]:after { font-size: 0.75rem; }

/*------------------------------------------*/
/*  BOTTOM FOOTER LINKS
/*------------------------------------------*/

.bottom-footer-list {
  position: relative;
  top: 2px;
  z-index: 1;
}

.bottom-footer-list li {
  width: auto!important;
  display: inline-block!important;
  vertical-align: top;
  clear: none !important;
}

.bottom-footer-list li {
  margin-left: -2px;
}

.bottom-footer-list li:first-child {
  margin-left: 0;
}

.bottom-footer-list li p {
  margin-bottom: 0;
}

.bottom-footer-list li span {
  font-size: 19px;
  position: relative;
  top: 3.5px;
}



/* ==========================================================================
  27. INNER PAGE WRAPPER
  =========================================================================== */

.inner-page-hero {
  padding-top: 195px;
}

.page-hero-section {
  padding-top: 180px;
  padding-bottom: 110px;
}

/*------------------------------------------*/
/*  INNER PAGE TITLE
/*------------------------------------------*/

.inner-page-title {
  padding-bottom: 70px;
  margin-bottom: 70px;
  border-bottom: 1px solid var(--silver);
}

.dark .inner-page-title {
  border-bottom: 1px solid #262d39;
}

.inner-page-title p {
  line-height: 1;
  margin-top: 20px;
  margin-bottom: 0;
}

.inner-page-title p span {
  color: var(--header-color);
  font-weight: 500;
}

.dark .inner-page-title p span {
  color: var(--white);
}

.page-hero-section p {
  padding: 0 5%;
  margin-top: 20px;
}



/* ==========================================================================
  28. PAGE PAGINATION
  =========================================================================== */

.page-link {
  color: var(--text-color);
  font-size: 1.15rem;
  font-weight: 500;
  padding: 3px 15px;
  margin: 0 8px;
  background-color: transparent;
  border: 2px solid transparent;
  border-radius: 6px;
  transition: all 400ms ease-in-out; 
}

.pagination.ico-20 [class*="flaticon-"]:before, 
.pagination.ico-20 [class*="flaticon-"]:after { font-size: 0.9rem; } 

.page-item:first-child .page-link {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.page-item:last-child .page-link {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.page-item.disabled .page-link {
  color: var(--text-color);
  background-color: transparent;
  border-color: transparent;
}

.page-link:hover {
  color: var(--text-color);
  background-color: transparent;
  border-color: var(--text-color);
}

.page-link:focus {
  color: var(--text-color);
  background-color: transparent;
  border-color: transparent;
  box-shadow: 0 0;
}

.page-item.active .page-link {
  color: var(--white)!important;
}

.page-item.active .page-link { background-color: var(--theme-color); border-color: var(--theme-color); }
.theme--main .page-item.active .page-link { background-color: var(--theme-color); border-color: var(--theme-color); }
.theme--blue .page-item.active .page-link { background-color: var(--blue); border-color: var(--blue); }
.theme--black .page-item.active .page-link { background-color: var(--black); border-color: var(--black); }
.theme--green .page-item.active .page-link { background-color: var(--green); border-color: var(--green); }
.theme--lotus .page-item.active .page-link { background-color: var(--lotus); border-color: var(--lotus); }
.theme--pink .page-item.active .page-link { background-color: var(--pink); border-color: var(--pink); }
.theme--purple .page-item.active .page-link { background-color: var(--purple); border-color: var(--purple); }
.theme--skyblue .page-item.active .page-link { background-color: var(--skyblue); border-color: var(--skyblue); }



/* ==========================================================================
  29. TERMS, PRIVACY, COOKIES PAGES
  =========================================================================== */

.txt-block.legal-info span.fs-28px {
  margin: 35px 0 15px;
}

.txt-block.legal-info span.fs-25px {
  margin: 20px 0;
}

.txt-block.legal-info span.fs-28px span,
.txt-block.legal-info span.fs-25px span {
  margin-right: 4px;
}

.legal-info p span {
  color: var(--header-color);
  font-weight: 500;
}

.legal-info a {
  font-weight: 500;
  text-decoration: underline;
}

.dark .legal-info a.color--blue {
  color: var(--blue);
}

.dark .legal-info a.color--blue:hover {
  color: var(--white);
}



/* ==========================================================================
  30. PAGE 404
  =========================================================================== */

#page-404 {
  min-height: 100vh;
  padding-top: 185px;
  padding-bottom: 110px;
}

#page-404 h1.tra-header {
  position: absolute;
  top: -20px;
  left: 0;
  z-index: -1;
  font-size: 24rem;
  line-height: 1;
  letter-spacing: -5px;
  opacity: .15;
}

.dark #page-404 h1.tra-header {
  opacity: .1;
}

#page-404 p {
  margin: 25px 12% 20px;
}

.page-404-img {
  margin-bottom: 40px;
}

.page-404-img img {
  position: relative;
  width: auto;
  max-width: inherit;
  max-height: 360px;
  left: 40px;
}



/* ==========================================================================
  31. SIGN-IN / SIGN-UP PAGE
  =========================================================================== */

.register-page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url(../images/register-page.jpg);
}

.dark .register-page {
   background: url(../images/register-page-dark.jpg);
}

.login-1 .register-page-form,
.signup-1 .register-page-form {
  padding: 150px 0;
}

.login-2,
.signup-2 {
  padding: 130px 0;
}

.login-3,
.signup-3 {
  padding-bottom: 130px;
}

.login-2 .register-page-form,
.signup-2 .register-page-form {
  padding: 45px 30px 40px;
}

.login-3 .register-page-form {
  padding-right: 40px;
}

.signup-3 .register-page-form {
  padding-left: 40px;
}

.reset-pass-1 .reset-page-wrapper {
  padding: 180px 20px 150px;
}

.reset-pass-2 .reset-page-wrapper {
  padding-top: 90px;
  padding-bottom: 130px;
}

.reset-pass-2 .reset-form-wrap {
  margin: 60px 0 0 40px;
}

.reset-password-img {
  padding-right: 30px;
}

/*------------------------------------------*/
/*  REGISTER PAGE LOGO
/*------------------------------------------*/

.register-page-logo {
  position: fixed;
  padding-top: 30px;
  z-index: 99;
}

.login-3 .register-page-logo,
.signup-3 .register-page-logo {
  position: relative;
  margin-bottom: 90px;
}

.reset-pass-2 .register-page-logo {
  position: relative;
}

.register-page-logo img {
  width: auto;
  max-width: inherit;
  max-height: 36px;
}

/*------------------------------------------*/
/*  RESET PASSWORD PAGE TITLE
/*------------------------------------------*/

.register-form-title {
  margin-bottom: 30px;
}

.register-form-title h1 {
  margin-bottom: 5px;
}

.reset-form-title p {
  margin: 16px 0 20px;
}

/*------------------------------------------*/
/*  REGISTER PAGE TYPOGRAPHY
/*------------------------------------------*/

.reset-password-link p {
  position: relative;
  margin-bottom: 28px;
}

.signup-1 .form-data,
.signup-3 .form-data { 
  margin-left: 10px; 
}

.signup-2 .form-data { 
  margin-left: 5px; 
}

.reset-password-form .form-data p { 
  margin: 22px 0 12px; 
}

.dark .form-data a.color--blue,
.dark .reset-password-link a.color--blue,
.dark .register-form-title a.color--blue {
  color: var(--blue);
}

.dark .form-data a.color--blue:hover,
.dark .reset-password-link a.color--blue:hover,
.dark .register-form-title a.color--blue:hover {
  color: var(--white);
}

/*------------------------------------------*/
/*  FORM NOTICE
/*------------------------------------------*/

.form-notice {
  padding: 0 8%;
  margin-top: 40px;
}

/*------------------------------------------*/
/*  REGISTER PAGE SEPARATOR LINE
/*------------------------------------------*/

.separator-line {
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
  font-family: var(--main-font);
  font-size: 1.125rem;
  margin: 20px 0;
}

.separator-line::before, 
.separator-line::after {
  content: "";
  border-top: 1.5px solid rgba(5, 5, 5, .18);
  margin: 0 15px 0 0;
  flex: 1 0 20px;
}

.dark .separator-line::before, 
.dark .separator-line::after {
  border-color: rgba(255, 255, 255, .12);
}

.separator-line::after {
  margin: 0 0 0 15px;
}

/*------------------------------------------*/
/*  REGISTER PAGE FORM INPUT
/*------------------------------------------*/

.reset-page-wrapper .form-control,
.register-page-form .form-control {
  height: 58px;
  background-color: var(--white);
  border: 1.5px solid var(--silver);
  color: var(--header-color);
  font-size: 1.15rem;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 20px;
  padding: 5px 18px;
  border-radius: 8px;
  transition: all 300ms ease-in-out;
}

.reset-page-wrapper .form-control {
  text-align: center;
  margin-bottom: 20px;
}

.dark .reset-page-wrapper .form-control,
.dark .register-page-form .form-control {
  background-color: var(--nero);
  border-color: #262d39;
  color: var(--white);
}

.register-page-form .form-control::-moz-placeholder { color: var(--text-color); } 
.register-page-form .form-control:-ms-input-placeholder { color: var(--text-color); } 
.register-page-form .form-control::-webkit-input-placeholder { color: var(--text-color); } 

.dark .register-page-form .form-control::-moz-placeholder { color: var(--silver); } 
.dark .register-page-form .form-control:-ms-input-placeholder { color: var(--silver); } 
.dark .register-page-form .form-control::-webkit-input-placeholder { color: var(--silver); } 

.reset-page-wrapper .form-control::-moz-placeholder { color: var(--text-color); } 
.reset-page-wrapper .form-control:-ms-input-placeholder { color: var(--text-color); } 
.reset-page-wrapper .form-control::-webkit-input-placeholder { color: var(--text-color); } 

.dark .reset-page-wrapper .form-control::-moz-placeholder { color: var(--silver); } 
.dark .reset-page-wrapper .form-control:-ms-input-placeholder { color: var(--silver); } 
.dark .reset-page-wrapper .form-control::-webkit-input-placeholder { color: var(--silver); } 

/*------------------------------------------*/
/*  REGISTER PAGE FORM FOCUS
/*------------------------------------------*/

.reset-page-wrapper .form-control:focus,
.register-page-form .form-control:focus {
  border-color: var(--blue);
  outline: 0px none;
  box-shadow: none;
}

.dark .reset-page-wrapper .form-control:focus,
.dark .register-page-form .form-control:focus {
  background-color: transparent;
}

/*------------------------------------------*/
/*  REGISTER PAGE FORM BUTTON
/*------------------------------------------*/

.reset-page-wrapper .btn.submit,
#login .register-page-form .btn.submit,
#signup .register-page-form .btn.submit {
  width: 100%;
  height: 58px;
  font-size: 1.125rem;
  margin-top: 0;
}

#signup .register-page-form .btn.submit {
  margin-top: 25px;
}

.btn-register {
  width: 100%;
  color: var(--header-color);
  font-size: 1.125rem;
  padding: 1.125rem 1.65rem;
  background-color: var(--white);
  border: 1px solid var(--silver);
  transition: all 300ms ease-in-out;
}

.dark .btn-register {
  color: var(--white);
  background-color: var(--nero);
  border-color: #353535;
}

.btn-register img {
  position: relative;
  width: 20px;
  height: 20px;
  top: -2px;
  right: 5px;
}

.btn-register span {
  position: relative;
  margin-right: 0!important;
}

.btn-register:hover {
  color: var(--header-color);
  background-color: var(--white);
  border: 1px solid var(--header-color);
}

.dark .btn-register:hover {
  color: var(--white);
  background-color: transparent;
  border-color: #353535;
}

/*------------------------------------------*/
/*  RESET PASSWORD FORM MESSAGE
/*------------------------------------------*/

.reset-form-msg {
  text-align: center;
  width: 100%!important;
  display: block;
}

.reset-password-form .loading {
  color: #00b2e4;
  font-size: 1.0625rem;
  line-height: 1;
  font-weight: 500;
  padding-left: 15px;
}

.reset-password-form .error {
  position: relative;
  color: #e74c3c;
  font-size: 0.85rem;
  line-height: 1;
  font-weight: 400;
  top: -10px;
  margin-bottom: 12px;
  padding-left: 10px;
}

/*------------------------------------------*/
/*  FORM HIDE PASSWORD
/*------------------------------------------*/

.wrap-input {
  position: relative;
}

.btn-show-pass {
  color: var(--dark-gray); 
  align-items: center;
  position: absolute;
  height: auto;
  top: 19px;
  right: 20px;
  cursor: pointer;
  transition: all 0.4s;
}

.btn-show-pass.ico-20 [class^="flaticon-"]:before, 
.btn-show-pass.ico-20 [class^="flaticon-"]:after {
  font-size: 1.125rem;
}

.btn-show-pass:hover {
  color: var(--blue);
}

.eye-pass.flaticon-invisible {
  color: var(--text-color); 
}


/* ==========================================================================
   MODE CHANGER 
  ========================================================================== */

#stlChanger {
  position: fixed;
  z-index: 9999;
  font-size: 15px;
  right: 0;
  top: 100px;
  cursor: pointer;
  border-radius: 0;
  transition: all 400ms ease-in-out;
}

#stlChanger .bgChanger {
  width: 50px;
  height: 50px;
}

#stlChanger .chBut {
  background: #212121;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 30px;
  left: 0;
  z-index: 1000000;
  text-align: center;
  border: 1px solid #212121;
  border-left: none;
  padding: 0 0 0 5px;
  border-radius: 5px 0 0 5px;
  transition: all 300ms ease-in-out;
  box-shadow: 0 0 2px rgba(50, 50, 50, 0.4); 
}

.dark #stlChanger .chBut {
  background: #fff;
  border: 1px solid #fff;
}

#stlChanger .chBut [class*="flaticon-"]:before,
#stlChanger .chBut [class*="flaticon-"]:after {   
  color: #fff;
  font-size: 2.25rem;
  line-height: 46px!important;
}

.dark #stlChanger .chBut [class*="flaticon-"]:before,
.dark #stlChanger .chBut [class*="flaticon-"]:after {   
  color: #363636;
}
